/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.6.19-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: wp1703811485db_27060
-- ------------------------------------------------------
-- Server version	10.6.19-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES 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 */;

--
-- Table structure for table `hyu_actionscheduler_actions`
--

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

--
-- Dumping data for table `hyu_actionscheduler_actions`
--

LOCK TABLES `hyu_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `hyu_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `hyu_actionscheduler_actions` VALUES (2472,'action_scheduler/migration_hook','failed','2024-02-28 02:00:50','2024-02-28 02:00:50','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1709085650;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1709085650;}',2,1,'2024-02-28 02:01:06','2024-02-28 02:01:06',0,NULL),(5320,'action_scheduler/migration_hook','failed','2024-03-07 21:57:17','2024-03-07 21:57:17','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1709848637;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1709848637;}',2,1,'2024-03-07 21:57:17','2024-03-07 21:57:17',0,NULL),(9974,'action_scheduler/migration_hook','failed','2024-03-17 17:43:16','2024-03-17 17:43:16','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1710697396;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1710697396;}',2,1,'2024-03-17 18:05:28','2024-03-17 18:05:28',0,NULL);
/*!40000 ALTER TABLE `hyu_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_actionscheduler_claims`
--

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

--
-- Dumping data for table `hyu_actionscheduler_claims`
--

LOCK TABLES `hyu_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `hyu_actionscheduler_claims` DISABLE KEYS */;
INSERT INTO `hyu_actionscheduler_claims` VALUES (91,'2024-02-28 22:08:57');
/*!40000 ALTER TABLE `hyu_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_actionscheduler_groups`
--

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

--
-- Dumping data for table `hyu_actionscheduler_groups`
--

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

--
-- Table structure for table `hyu_actionscheduler_logs`
--

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

--
-- Dumping data for table `hyu_actionscheduler_logs`
--

LOCK TABLES `hyu_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `hyu_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `hyu_actionscheduler_logs` VALUES (36,2472,'action created','2024-02-28 01:59:50','2024-02-28 01:59:50'),(71,2472,'action started via Async Request','2024-02-28 02:01:06','2024-02-28 02:01:06'),(72,2472,'action failed via Async Request: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-02-28 02:01:06','2024-02-28 02:01:06'),(8613,5320,'action created','2024-03-07 21:56:17','2024-03-07 21:56:17'),(8618,5320,'action started via WP Cron','2024-03-07 21:57:17','2024-03-07 21:57:17'),(8619,5320,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-03-07 21:57:17','2024-03-07 21:57:17'),(22570,9974,'action created','2024-03-17 17:42:16','2024-03-17 17:42:16'),(22671,9974,'action started via Async Request','2024-03-17 18:05:28','2024-03-17 18:05:28'),(22672,9974,'action failed via Async Request: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-03-17 18:05:28','2024-03-17 18:05:28');
/*!40000 ALTER TABLE `hyu_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_commentmeta`
--

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

--
-- Dumping data for table `hyu_commentmeta`
--

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

--
-- Table structure for table `hyu_comments`
--

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

--
-- Dumping data for table `hyu_comments`
--

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

--
-- Table structure for table `hyu_hidemysiteSecure`
--

DROP TABLE IF EXISTS `hyu_hidemysiteSecure`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_hidemysiteSecure` (
  `id` mediumint(12) NOT NULL AUTO_INCREMENT,
  `ip` text NOT NULL,
  `time` varchar(20) NOT NULL,
  `repeated_fails` varchar(20) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_hidemysiteSecure`
--

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

--
-- Table structure for table `hyu_kbp_countdown_entry`
--

DROP TABLE IF EXISTS `hyu_kbp_countdown_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_kbp_countdown_entry` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `campaign` varchar(255) DEFAULT NULL,
  `end_date` varchar(255) DEFAULT NULL,
  `remove_date` varchar(255) DEFAULT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_ip` varchar(50) NOT NULL DEFAULT '',
  `uuid` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `user_ip` (`user_ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_kbp_countdown_entry`
--

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

--
-- Table structure for table `hyu_kbp_form_entry`
--

DROP TABLE IF EXISTS `hyu_kbp_form_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_kbp_form_entry` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `form_id` varchar(55) DEFAULT NULL,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL,
  `user_ip` varchar(100) NOT NULL DEFAULT '',
  `user_device` varchar(55) DEFAULT NULL,
  `referer` varchar(255) DEFAULT NULL,
  `status` varchar(10) DEFAULT 'publish',
  `uuid` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_kbp_form_entry`
--

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

--
-- Table structure for table `hyu_kbp_form_entrymeta`
--

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

--
-- Dumping data for table `hyu_kbp_form_entrymeta`
--

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

--
-- Table structure for table `hyu_kbp_form_events`
--

DROP TABLE IF EXISTS `hyu_kbp_form_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_kbp_form_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_type` varchar(128) NOT NULL DEFAULT '',
  `event_post` int(11) NOT NULL DEFAULT 0,
  `event_time` datetime NOT NULL,
  `event_count` int(11) unsigned NOT NULL DEFAULT 1,
  `event_consolidated` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `event_type__post__time__consolidated` (`event_type`,`event_post`,`event_time`,`event_consolidated`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_kbp_form_events`
--

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

--
-- Table structure for table `hyu_kbp_query_index`
--

DROP TABLE IF EXISTS `hyu_kbp_query_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_kbp_query_index` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `object_id` int(10) unsigned DEFAULT NULL,
  `hash` varchar(50) DEFAULT NULL,
  `facet_value` varchar(191) DEFAULT NULL,
  `facet_name` varchar(191) DEFAULT NULL,
  `facet_id` int(10) unsigned DEFAULT NULL,
  `facet_parent` int(10) unsigned DEFAULT NULL,
  `facet_order` int(10) unsigned DEFAULT NULL,
  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 `hyu_kbp_query_index`
--

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

--
-- Table structure for table `hyu_links`
--

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

--
-- Dumping data for table `hyu_links`
--

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

--
-- Table structure for table `hyu_options`
--

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

--
-- Dumping data for table `hyu_options`
--

LOCK TABLES `hyu_options` WRITE;
/*!40000 ALTER TABLE `hyu_options` DISABLE KEYS */;
INSERT INTO `hyu_options` VALUES (1,'siteurl','https://atlantagynecomastia.com','yes'),(2,'home','https://atlantagynecomastia.com','yes'),(3,'blogname','Atlanta Gynecomastia Center','yes'),(4,'blogdescription','Gynecomastia Plastic Surgeon in Atlanta, Georgia','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@joltmedical.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','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','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:145:{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:40:\"kadence-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"kadence-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"kadence-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"kadence-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"kadence-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"kadence-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"kadence-form/([^/]+)/embed/?$\";s:45:\"index.php?kadence_form=$matches[1]&embed=true\";s:33:\"kadence-form/([^/]+)/trackback/?$\";s:39:\"index.php?kadence_form=$matches[1]&tb=1\";s:41:\"kadence-form/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?kadence_form=$matches[1]&paged=$matches[2]\";s:48:\"kadence-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?kadence_form=$matches[1]&cpage=$matches[2]\";s:37:\"kadence-form/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?kadence_form=$matches[1]&page=$matches[2]\";s:29:\"kadence-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"kadence-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"kadence-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"kadence-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"kadence-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"kadence-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"kadence_custom_svg/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"kadence_custom_svg/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"kadence_custom_svg/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"kadence_custom_svg/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"kadence_custom_svg/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"kadence_custom_svg/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"kadence_custom_svg/([^/]+)/embed/?$\";s:51:\"index.php?kadence_custom_svg=$matches[1]&embed=true\";s:39:\"kadence_custom_svg/([^/]+)/trackback/?$\";s:45:\"index.php?kadence_custom_svg=$matches[1]&tb=1\";s:47:\"kadence_custom_svg/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?kadence_custom_svg=$matches[1]&paged=$matches[2]\";s:54:\"kadence_custom_svg/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?kadence_custom_svg=$matches[1]&cpage=$matches[2]\";s:43:\"kadence_custom_svg/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?kadence_custom_svg=$matches[1]&page=$matches[2]\";s:35:\"kadence_custom_svg/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"kadence_custom_svg/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"kadence_custom_svg/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"kadence_custom_svg/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"kadence_custom_svg/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"kadence_custom_svg/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"kadence-query/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"kadence-query/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"kadence-query/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"kadence-query/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"kadence-query/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"kadence-query/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"kadence-query/([^/]+)/embed/?$\";s:51:\"index.php?kadence_query_card=$matches[1]&embed=true\";s:34:\"kadence-query/([^/]+)/trackback/?$\";s:45:\"index.php?kadence_query_card=$matches[1]&tb=1\";s:42:\"kadence-query/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?kadence_query_card=$matches[1]&paged=$matches[2]\";s:49:\"kadence-query/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?kadence_query_card=$matches[1]&cpage=$matches[2]\";s:38:\"kadence-query/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?kadence_query_card=$matches[1]&page=$matches[2]\";s:30:\"kadence-query/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"kadence-query/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"kadence-query/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"kadence-query/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"kadence-query/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"kadence-query/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=1329&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:11:{i:0;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:33:\"duplicate-post/duplicate-post.php\";i:3;s:41:\"kadence-blocks-pro/kadence-blocks-pro.php\";i:4;s:33:\"kadence-blocks/kadence-blocks.php\";i:5;s:27:\"kadence-pro/kadence-pro.php\";i:6;s:55:\"kadence-starter-templates/kadence-starter-templates.php\";i:7;s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";i:8;s:40:\"userway-accessibility-widget/userway.php\";i:9;s:23:\"wordfence/wordfence.php\";i:10;s:24:\"wordpress-seo/wp-seo.php\";i:11;s:23:\"wp-rocket/wp-rocket.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:5:{i:0;s:90:\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/functions.php\";i:1;s:87:\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/header.php\";i:2;s:86:\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/index.php\";i:3;s:87:\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/footer.php\";i:4;s:87:\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/theme.json\";}','no'),(40,'template','kadence','yes'),(41,'stylesheet','kadence','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','57155','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','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','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','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','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:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:5:{i:1;a:4:{s:5:\"title\";s:27:\"Atlanta Gynecomastia Center\";s:4:\"text\";s:160:\"Dr. Jonathan Smith MD is one of the premier gynecomastia surgeons in Georgia. Schedule your visit at the Atlanta Gynecomastia Center for your free consultation.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:2;a:4:{s:5:\"title\";s:13:\"Gyno Services\";s:4:\"text\";s:794:\"<a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gyno\n</a><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gyno\n</a><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gyno\n</a><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Revision Surgery</a>\n<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a>\n<a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple</a>\n\n<a href=\"https://atlantagynecomastia.com/accessibility-policy/\">Accessibility Statement</a>\n<a href=\"https://atlantagynecomastia.com/privacy-policy/\">Privacy Policy</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:12:\"Get in Touch\";s:4:\"text\";s:71:\"1230 Peachtree St NE #150\nAtlanta, GA 30309\nPhone: ‪(203) 441-1113‬\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:660:\"<img class=\"alignnone size-thumbnail wp-image-2189\" src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/New_Jersey_Gynecomastia_Center_Logo_Transparent-150x150.png\" alt=\"\" width=\"150\" height=\"150\" />\n<div class=\"site-footer-top-section-3 site-footer-section footer-section-inner-items-1\">\n<div class=\"footer-widget-area widget-area site-footer-focus-item footer-widget2 content-align-default content-tablet-align-default content-mobile-align-default content-valign-default content-tablet-valign-default content-mobile-valign-default\" data-section=\"sidebar-widgets-footer2\">\n<div class=\"footer-widget-area-inner site-info-inner\"></div>\n</div>\n</div>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}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:4:{s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:40:\"userway-accessibility-widget/userway.php\";s:21:\"usw_userway_uninstall\";s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";a:2:{i:0;s:32:\"\\ShortPixel\\Helper\\InstallHelper\";i:1;s:15:\"uninstallPlugin\";}s:29:\"link-whisper/link-whisper.php\";a:2:{i:0;s:9:\"Wpil_Base\";i:1;s:24:\"delete_link_whisper_data\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','1329','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','4229','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','2396','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1721929740','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,'wp_attachment_pages_enabled','0','yes'),(100,'initial_db_version','56657','yes'),(101,'hyu_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:76:{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:10:\"copy_posts\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:37:{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:10:\"copy_posts\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:39:{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:10:\"copy_posts\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:37:{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:10:\"copy_posts\";b:1;}}}','yes'),(102,'fresh_site','0','yes'),(103,'user_count','3','no'),(104,'widget_block','a:13:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}i:10;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:11;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}i:13;a:1:{s:7:\"content\";s:7679:\"<!-- wp:kadence/rowlayout {\"uniqueID\":\"block-13_482e7a-f1\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1ea3b6-fc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[null,\"\",\"\",\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1ea3b6-fc kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"0a1a83-ab\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<h2 class=\"kt-adv-heading0a1a83-ab wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading0a1a83-ab\">Request a Free Consultation</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2e358a-fb\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2e358a-fb wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2e358a-fb\">Fill out this quick form and we will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"8e745c-fc\",\"postID\":\"0\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"requiredColor\":\"palette1\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"Request today\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette9\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[14,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"actions\":[\"email\",\"entry\"],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Sidebar]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}]} -->\n<div class=\"wp-block-kadence-form kadence-form-8e745c-fc kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_8e745c-fc_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_8e745c-fc_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_8e745c-fc_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_8e745c-fc_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_8e745c-fc_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_8e745c-fc_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"8e745c-fc\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"0\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-full\">Request today</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\";}i:15;a:1:{s:7:\"content\";s:360:\"<!-- wp:image {\"id\":4199,\"width\":\"252px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Logo_White.png\" alt=\"\" class=\"wp-image-4199\" style=\"width:252px;height:auto\"/></figure>\n<!-- /wp:image -->\";}i:17;a:1:{s:7:\"content\";s:22:\"<!-- wp:page-list /-->\";}i:25;a:1:{s:7:\"content\";s:423:\"<!-- wp:paragraph {\"fontSize\":[\"\",\"\",\"\"]} -->\n<p class=\"has--font-size\"><a href=\"https://atlantagynecomastia.com/accessibility-policy/\" data-type=\"link\" data-id=\"https://atlantagynecomastia.com/accessibility-policy/\">Accessibility Policy</a><br><a href=\"https://atlantagynecomastia.com/privacy-policy/\" data-type=\"link\" data-id=\"https://atlantagynecomastia.com/privacy-policy/\">Privacy Policy</a></p>\n<!-- /wp:paragraph -->\";}i:26;a:1:{s:7:\"content\";s:66:\"<!-- wp:paragraph -->\n<p>Privacy Policy</p>\n<!-- /wp:paragraph -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(105,'sidebars_widgets','a:12:{s:19:\"wp_inactive_widgets\";a:15:{i:0;s:6:\"text-2\";i:1;s:6:\"text-4\";i:2;s:10:\"nav_menu-3\";i:3;s:10:\"nav_menu-5\";i:4;s:10:\"nav_menu-8\";i:5;s:11:\"nav_menu-11\";i:6;s:11:\"nav_menu-13\";i:7;s:8:\"block-17\";i:8;s:8:\"block-25\";i:9;s:8:\"block-26\";i:10;s:7:\"block-2\";i:11;s:7:\"block-3\";i:12;s:7:\"block-4\";i:13;s:7:\"block-5\";i:14;s:7:\"block-6\";}s:15:\"sidebar-primary\";a:1:{i:0;s:8:\"block-13\";}s:17:\"sidebar-secondary\";a:5:{i:0;s:8:\"block-10\";i:1;s:8:\"block-11\";i:2;s:10:\"archives-1\";i:3;s:12:\"categories-1\";i:4;s:6:\"meta-1\";}s:7:\"footer1\";a:2:{i:0;s:8:\"block-15\";i:1;s:6:\"text-1\";}s:7:\"footer2\";a:1:{i:0;s:10:\"nav_menu-7\";}s:7:\"footer3\";a:2:{i:0;s:6:\"text-3\";i:1;s:11:\"nav_menu-10\";}s:7:\"footer4\";a:2:{i:0;s:10:\"nav_menu-9\";i:1;s:11:\"nav_menu-14\";}s:7:\"footer5\";a:0:{}s:7:\"footer6\";a:0:{}s:7:\"header1\";a:0:{}s:7:\"header2\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(106,'cron','a:34:{i:1728649071;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1728649073;a:1:{s:30:\"rocket_preload_process_pending\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"rocket_preload_process_pending\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1728649098;a:1:{s:32:\"action_scheduler_run_queue_rucss\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1728649100;a:2:{s:24:\"rocket_saas_pending_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:24:\"rocket_saas_pending_jobs\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}s:26:\"rocket_saas_on_submit_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:26:\"rocket_saas_on_submit_jobs\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1728649114;a:1:{s:27:\"wpseo_indexable_index_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:15:\"fifteen_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1728650643;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1728650941;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1728651040;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1728651773;a:1:{s:23:\"rocket_purge_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:34:\"rocket_expired_cache_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1728655433;a:1:{s:37:\"rocket_preload_revert_old_failed_rows\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:29:\"rocket_revert_old_failed_rows\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1728668941;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1728668988;a:2:{s:37:\"siteground_optimizer_check_assets_dir\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:35:\"siteground_security_clear_logs_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1728669025;a:1:{s:26:\"wordfence_daily_autoUpdate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1728669040;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1728669080;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1728669081;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1728670759;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1728677723;a:1:{s:31:\"kadence_countdown_daily_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1728682330;a:1:{s:40:\"puc_cron_check_updates-siteground-wizard\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1728683955;a:1:{s:18:\"rocket_atf_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1728687038;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:1728691188;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1728755341;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1728756114;a:1:{s:29:\"seedprod_lite_fetch_help_docs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1728777576;a:2:{s:31:\"delete_starter_templates_folder\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}s:27:\"delete_block_library_folder\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}i:1728784800;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"8d637301bfe4260e394989c97d34e8b8\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1728784800;}}}}i:1728841741;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1728861680;a:1:{s:30:\"rocket_remove_saas_failed_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"rocket_remove_saas_failed_jobs\";s:4:\"args\";a:0:{}s:8:\"interval\";i:259200;}}}i:1728874500;a:1:{s:14:\"sgs_email_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1728914571;a:1:{s:27:\"rocket_update_dynamic_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1728915171;a:1:{s:36:\"rocket_preload_clean_rows_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1729044000;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"67670e06ca512821dba0688aae039431\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1729044000;}}}}i:1729115955;a:1:{s:33:\"rocket_saas_clean_rows_time_event\";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'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_archives','a:2:{i:1;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_meta','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:10:{s:12:\"_multiwidget\";i:1;i:3;a:2:{s:8:\"collapse\";b:0;s:8:\"nav_menu\";i:3;}i:5;a:3:{s:8:\"collapse\";b:0;s:5:\"title\";s:21:\"Gynecomastia Services\";s:8:\"nav_menu\";i:3;}i:7;a:3:{s:8:\"collapse\";b:0;s:5:\"title\";s:21:\"Gynecomastia Services\";s:8:\"nav_menu\";i:4;}i:8;a:3:{s:8:\"collapse\";b:0;s:5:\"title\";s:4:\"menu\";s:8:\"nav_menu\";i:3;}i:9;a:3:{s:8:\"collapse\";b:0;s:5:\"title\";s:12:\"Our Practice\";s:8:\"nav_menu\";i:6;}i:10;a:2:{s:8:\"collapse\";b:0;s:8:\"nav_menu\";i:5;}i:11;a:1:{s:8:\"collapse\";b:0;}i:13;a:2:{s:8:\"collapse\";b:0;s:8:\"nav_menu\";i:7;}i:14;a:2:{s:8:\"collapse\";b:0;s:8:\"nav_menu\";i:7;}}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(131,'siteground_optimizer_default_enable_cache','0','no'),(132,'siteground_optimizer_default_autoflush_cache','0','no'),(133,'siteground_optimizer_supercacher_permissions','1','no'),(134,'sg_cachepress','a:8:{s:12:\"enable_cache\";i:0;s:15:\"autoflush_cache\";i:0;s:16:\"enable_memcached\";i:0;s:11:\"show_notice\";i:0;s:8:\"is_nginx\";i:0;s:13:\"checked_nginx\";i:0;s:9:\"first_run\";i:0;s:9:\"last_fail\";i:0;}','yes'),(135,'siteground_optimizer_enable_cache','1','yes'),(136,'siteground_optimizer_autoflush_cache','1','yes'),(137,'siteground_optimizer_enable_memcached','0','yes'),(138,'siteground_optimizer_show_notice','0','yes'),(139,'siteground_optimizer_is_nginx','0','yes'),(140,'siteground_optimizer_checked_nginx','0','yes'),(141,'siteground_optimizer_first_run','0','yes'),(142,'siteground_optimizer_last_fail','0','yes'),(143,'siteground_optimizer_ssl_enabled','0','yes'),(144,'siteground_optimizer_optimize_html','0','yes'),(145,'siteground_optimizer_optimize_javascript','0','yes'),(146,'siteground_optimizer_optimize_javascript_async','0','yes'),(147,'siteground_optimizer_optimize_css','0','yes'),(148,'siteground_optimizer_combine_css','0','yes'),(149,'siteground_optimizer_remove_query_strings','0','yes'),(150,'siteground_optimizer_disable_emojis','0','yes'),(152,'siteground_optimizer_version','7.4.0','yes'),(153,'siteground_optimizer_update_timestamp','1706377754','yes'),(154,'siteground_optimizer_phpcompat_status','1','yes'),(155,'siteground_optimizer_phpcompat_progress','0','yes'),(156,'siteground_optimizer_phpcompat_is_compatible','0','yes'),(157,'siteground_optimizer_phpcompat_result','a:0:{}','yes'),(158,'siteground_optimizer_image_optimization_completed','1','no'),(159,'siteground_optimizer_enable_gzip_compression','0','yes'),(160,'siteground_optimizer_enable_browser_caching','0','yes'),(162,'siteground_optimizer_async_javascript_exclude','a:3:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";i:2;s:6:\"jquery\";}','yes'),(163,'siteground_optimizer_excluded_lazy_load_classes','a:1:{i:0;s:9:\"skip-lazy\";}','yes'),(166,'siteground_optimizer_whats_new','a:1:{i:0;a:7:{s:4:\"type\";s:7:\"default\";s:5:\"title\";s:22:\"Web Fonts Optimization\";s:4:\"text\";s:271:\"With this optimization we are changing the default way to load Google fonts in order to save HTTP requests. In addition to that, all other fonts that your website uses will be properly preloaded so browsers take the least possible amount of time to cache and render them.\";s:4:\"icon\";s:33:\"presentational-fonts-optimization\";s:10:\"icon_color\";s:6:\"salmon\";s:12:\"optimization\";s:18:\"optimize_web_fonts\";s:6:\"button\";a:3:{s:4:\"text\";s:10:\"Enable Now\";s:5:\"color\";s:7:\"primary\";s:4:\"link\";s:8:\"frontend\";}}}','yes'),(167,'siteground_optimizer_quality_webp','85','yes'),(168,'siteground_optimizer_quality_type','lossy','yes'),(169,'siteground_optimizer_fonts_preload_urls','a:2:{i:0;s:75:\"https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2\";i:1;s:94:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2\";}','yes'),(170,'siteground_optimizer_heartbeat_post_interval','120','yes'),(171,'siteground_optimizer_heartbeat_dashboard_interval','0','yes'),(172,'siteground_optimizer_heartbeat_frontend_interval','0','yes'),(173,'siteground_optimizer_excluded_lazy_load_media_types','a:6:{i:0;s:18:\"lazyload_gravatars\";i:1;s:19:\"lazyload_thumbnails\";i:2;s:19:\"lazyload_responsive\";i:3;s:20:\"lazyload_textwidgets\";i:4;s:19:\"lazyload_shortcodes\";i:5;s:20:\"lazyload_woocommerce\";}','yes'),(174,'siteground_optimizer_database_optimization','a:0:{}','yes'),(175,'sgo_install_7_4_0','1','yes'),(180,'sg_security_lock_system_folders','1','yes'),(181,'sg_security_disable_file_edit','1','yes'),(182,'sg_security_wp_remove_version','1','yes'),(183,'sg_security_disable_xml_rpc','1','yes'),(184,'sg_security_xss_protection','1','yes'),(185,'sg_security_disable_usernames','1','yes'),(186,'sg_security_login_attempts','5','yes'),(187,'sg_security_version','1.4.7','yes'),(188,'sg_security_update_timestamp','1706377756','yes'),(189,'sg_security_server_address','35.212.92.193','no'),(190,'sg_security_login_type','default','yes'),(191,'sg_security_notification_emails','a:1:{i:0;s:29:\"charles.d.breitbart@gmail.com\";}','yes'),(192,'sg_security_weekly_email_timestamp','1707712657','yes'),(194,'sgs_install_1_4_7','1','yes'),(196,'elementor_disable_color_schemes','yes','yes'),(197,'elementor_disable_typography_schemes','yes','yes'),(198,'siteground_wizard_activation_redirect','no','yes'),(199,'siteground_wizard_install_timestamp','1706377758','yes'),(200,'WPLANG','','yes'),(201,'sco_id','4','yes'),(202,'siteground_optimizer_current_version','7.4.6','yes'),(203,'sg_security_current_version','1.4.10','yes'),(204,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1706379201;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\";}}}}','no'),(205,'external_updates-siteground-wizard','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1707741541;s:14:\"checkedVersion\";s:5:\"3.0.2\";s:6:\"update\";O:8:\"stdClass\":11:{s:4:\"slug\";s:17:\"siteground-wizard\";s:7:\"version\";s:5:\"3.0.2\";s:12:\"download_url\";s:50:\"https://sgwpdemo.com/updater/wordpress-starter.zip\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";N;s:6:\"tested\";N;s:12:\"requires_php\";N;s:14:\"upgrade_notice\";N;s:5:\"icons\";a:0:{}s:8:\"filename\";s:39:\"wordpress-starter/siteground-wizard.php\";}s:11:\"updateClass\";s:23:\"Puc_v4p11_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(206,'recovery_keys','a:0:{}','yes'),(210,'sg_wp_starter_woo','0','yes'),(212,'siteground_wizard_progress','a:2:{i:0;a:1:{s:8:\"selected\";a:0:{}}i:1;a:1:{s:8:\"selected\";a:1:{i:0;s:5:\"Other\";}}}','yes'),(213,'siteground_wizard_next_step','3','yes'),(227,'finished_updating_comment_type','1','yes'),(233,'recently_activated','a:0:{}','yes'),(240,'seedprod_migration_run_once','1','yes'),(241,'seedprod_run_activation','1','yes'),(242,'seedprod_settings','{  \n   \"api_key\":\"\",\n   \"enable_coming_soon_mode\":false,\n   \"enable_maintenance_mode\":false,\n   \"enable_login_mode\":false,\n   \"enable_404_mode\":false\n }','yes'),(243,'seedprod_over_time','a:3:{s:17:\"installed_version\";s:7:\"6.15.21\";s:14:\"installed_date\";i:1706378514;s:13:\"installed_pro\";s:4:\"lite\";}','yes'),(244,'seedprod_token','0df9d751-63f0-4c8a-9e5c-3abced504469','yes'),(248,'seedprod_notifications','a:4:{s:6:\"update\";i:1706378514;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(249,'seedprod_dismiss_setup_wizard','1','yes'),(250,'seedprod_app_settings','{  \n   \"facebook_g_app_id\":\"\",\n   \"google_places_app_key\":\"\",\n   \"yelp_app_api_key\":\"\",\n   \"disable_seedprod_button\":false,\n   \"disable_seedprod_notification\":false\n}','yes'),(251,'seedprod_onetime_flush_rewrite','1','yes'),(252,'seedprod_one_click_upgrade','6dd15364dc98f1310534ea05d956afd10d8602ebf58de49380c7a9c2cfb9c62edcbc7a4dc8c43308a5301e18a90eb4ec6303104c53e65141da6d481c5c38ecb8','yes'),(253,'seedprod_coming_soon_page_id','6','yes'),(254,'seedprod_stripe_connect_origin','ef3c5d3f-8c51-40d1-b366-4420b607ec07','yes'),(257,'siteground_optimizer_total_unoptimized_images','204','yes'),(258,'siteground_optimizer_total_non_converted_images','204','yes'),(268,'kadence_starter_templates_config','{\"starterType\":\"ai\",\"aiStatus\":\"\"}','yes'),(271,'current_theme','Kadence','yes'),(273,'theme_switched','','yes'),(274,'_kadence_starter_templates_last_import_data','a:23:{s:4:\"slug\";s:3:\"g10\";s:4:\"name\";s:8:\"Law Firm\";s:10:\"categories\";a:0:{}s:3:\"pro\";b:0;s:6:\"member\";b:0;s:7:\"content\";s:81:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-content-3.xml\";s:11:\"widget_data\";s:86:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-widget_data-3.json\";s:9:\"form_data\";s:0:\"\";s:14:\"give_form_data\";s:0:\"\";s:18:\"give_donation_data\";s:0:\"\";s:13:\"theme_options\";s:88:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-theme_options-1.json\";s:13:\"depicter_data\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:14:\"kadence-blocks\";}s:3:\"url\";s:37:\"https://startertemplatecloud.com/g10/\";s:5:\"image\";s:86:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-preview_image.jpeg\";s:13:\"content_width\";s:6:\"normal\";s:4:\"type\";s:6:\"blocks\";s:9:\"ecommerce\";b:0;s:8:\"homepage\";s:4:\"Home\";s:8:\"blogpage\";s:4:\"Blog\";s:8:\"keywords\";a:4:{i:0;s:9:\"business\r\";i:1;s:4:\"law\r\";i:2;s:5:\"firm\r\";i:3;s:0:\"\";}s:5:\"pages\";a:6:{s:4:\"home\";a:8:{s:2:\"id\";s:4:\"home\";s:5:\"title\";s:4:\"Home\";s:3:\"url\";s:37:\"https://startertemplatecloud.com/g10/\";s:5:\"image\";s:83:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image.jpeg\";s:9:\"thumbnail\";s:92:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-800x4419.jpeg\";s:14:\"crop_thumbnail\";s:92:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-800x1008.jpeg\";s:7:\"content\";s:95:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_content_group_1329.xml\";s:4:\"meta\";s:7:\"inherit\";}s:7:\"contact\";a:8:{s:2:\"id\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:3:\"url\";s:45:\"https://startertemplatecloud.com/g10/contact/\";s:5:\"image\";s:85:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-1.jpeg\";s:9:\"thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-1-800x1690.jpeg\";s:14:\"crop_thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-1-800x1008.jpeg\";s:7:\"content\";s:95:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_content_group_1132.xml\";s:4:\"meta\";s:7:\"inherit\";}s:9:\"attorneys\";a:8:{s:2:\"id\";s:9:\"attorneys\";s:5:\"title\";s:9:\"Attorneys\";s:3:\"url\";s:47:\"https://startertemplatecloud.com/g10/attorneys/\";s:5:\"image\";s:85:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-2.jpeg\";s:9:\"thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-2-800x1867.jpeg\";s:14:\"crop_thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-2-800x1008.jpeg\";s:7:\"content\";s:95:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_content_group_1187.xml\";s:4:\"meta\";s:7:\"inherit\";}s:11:\"person-page\";a:8:{s:2:\"id\";s:11:\"person-page\";s:5:\"title\";s:11:\"Person Page\";s:3:\"url\";s:49:\"https://startertemplatecloud.com/g10/person-page/\";s:5:\"image\";s:85:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-3.jpeg\";s:9:\"thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-3-800x1823.jpeg\";s:14:\"crop_thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-3-800x1008.jpeg\";s:7:\"content\";s:95:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_content_group_1213.xml\";s:4:\"meta\";s:7:\"inherit\";}s:14:\"practice-areas\";a:8:{s:2:\"id\";s:14:\"practice-areas\";s:5:\"title\";s:14:\"Practice Areas\";s:3:\"url\";s:52:\"https://startertemplatecloud.com/g10/practice-areas/\";s:5:\"image\";s:85:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-4.jpeg\";s:9:\"thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-4-800x2233.jpeg\";s:14:\"crop_thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-4-800x1008.jpeg\";s:7:\"content\";s:95:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_content_group_1230.xml\";s:4:\"meta\";s:7:\"inherit\";}s:5:\"about\";a:8:{s:2:\"id\";s:5:\"about\";s:5:\"title\";s:5:\"About\";s:3:\"url\";s:43:\"https://startertemplatecloud.com/g10/about/\";s:5:\"image\";s:85:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-5.jpeg\";s:9:\"thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-5-800x2863.jpeg\";s:14:\"crop_thumbnail\";s:94:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_image-5-800x1008.jpeg\";s:7:\"content\";s:95:\"https://api.startertemplatecloud.com/wp-content/uploads/2023/08/g10-page_content_group_1275.xml\";s:4:\"meta\";s:7:\"inherit\";}}s:5:\"menus\";a:1:{s:7:\"primary\";a:2:{s:4:\"menu\";s:7:\"primary\";s:5:\"title\";s:4:\"Menu\";}}}','no'),(275,'kadence_blocks_schema_version','1','yes'),(276,'stellarwp_telemetry_last_send','2024-10-05 23:06:12','yes'),(277,'stellarwp_telemetry','a:2:{s:7:\"plugins\";a:1:{s:14:\"kadence-blocks\";a:2:{s:7:\"wp_slug\";s:33:\"kadence-blocks/kadence-blocks.php\";s:5:\"optin\";b:1;}}s:5:\"token\";s:64:\"8174279ecd75a1961510bfd5d6e9fc4f863d23ce5914a6748750c97b22166e5e\";}','yes'),(278,'stellarwp_telemetry_kadence-blocks_show_optin','0','yes'),(279,'kadenceblocks_data_settings','a:4:{s:10:\"db_version\";i:0;s:15:\"version_history\";a:25:{i:1728139895;s:5:\"3.3.1\";i:1728053495;s:5:\"3.3.0\";i:1727362291;s:6:\"3.2.54\";i:1725979874;s:6:\"3.2.53\";i:1724511088;s:6:\"3.2.52\";i:1724424672;s:6:\"3.2.51\";i:1722005077;s:6:\"3.2.50\";i:1721479312;s:6:\"3.2.49\";i:1719931489;s:6:\"3.2.48\";i:1719585888;s:6:\"3.2.47\";i:1719499491;s:6:\"3.2.46\";i:1719067482;s:6:\"3.2.45\";i:1718981058;s:6:\"3.2.43\";i:1718632097;s:6:\"3.2.42\";i:1717624756;s:6:\"3.2.41\";i:1715270038;s:6:\"3.2.37\";i:1714056221;s:6:\"3.2.36\";i:1713562131;s:6:\"3.2.34\";i:1712703318;s:6:\"3.2.33\";i:1712173356;s:6:\"3.2.32\";i:1711641447;s:6:\"3.2.31\";i:1711205867;s:6:\"3.2.30\";i:1711060674;s:6:\"3.2.29\";i:1710948134;s:6:\"3.2.27\";i:1709851131;s:6:\"3.2.26\";}s:13:\"prior_version\";s:5:\"3.3.0\";s:15:\"current_version\";s:5:\"3.3.1\";}','yes'),(282,'_kadence_starter_templates_old_customizer','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(283,'kadence_global_palette','{\"palette\":[{\"color\":\"#2B6CB0\",\"slug\":\"palette1\",\"name\":\"Palette Color 1\"},{\"color\":\"#265E9A\",\"slug\":\"palette2\",\"name\":\"Palette Color 2\"},{\"color\":\"#222222\",\"slug\":\"palette3\",\"name\":\"Palette Color 3\"},{\"color\":\"#3B3B3B\",\"slug\":\"palette4\",\"name\":\"Palette Color 4\"},{\"color\":\"#515151\",\"slug\":\"palette5\",\"name\":\"Palette Color 5\"},{\"color\":\"#626262\",\"slug\":\"palette6\",\"name\":\"Palette Color 6\"},{\"color\":\"#E1E1E1\",\"slug\":\"palette7\",\"name\":\"Palette Color 7\"},{\"color\":\"#F7F7F7\",\"slug\":\"palette8\",\"name\":\"Palette Color 8\"},{\"color\":\"#ffffff\",\"slug\":\"palette9\",\"name\":\"Palette Color 9\"}],\"second-palette\":[{\"color\":\"#941a2b\",\"slug\":\"palette1\",\"name\":\"Palette Color 1\"},{\"color\":\"#bf2237\",\"slug\":\"palette2\",\"name\":\"Palette Color 2\"},{\"color\":\"#202024\",\"slug\":\"palette3\",\"name\":\"Palette Color 3\"},{\"color\":\"#271f1f\",\"slug\":\"palette4\",\"name\":\"Palette Color 4\"},{\"color\":\"#2c2222\",\"slug\":\"palette5\",\"name\":\"Palette Color 5\"},{\"color\":\"#8c8f8f\",\"slug\":\"palette6\",\"name\":\"Palette Color 6\"},{\"color\":\"#d1d1d1\",\"slug\":\"palette7\",\"name\":\"Palette Color 7\"},{\"color\":\"#ebebeb\",\"slug\":\"palette8\",\"name\":\"Palette Color 8\"},{\"color\":\"#FFFFFF\",\"slug\":\"palette9\",\"name\":\"Palette Color 9\"}],\"third-palette\":[{\"color\":\"#3182CE\",\"slug\":\"palette1\",\"name\":\"Palette Color 1\"},{\"color\":\"#2B6CB0\",\"slug\":\"palette2\",\"name\":\"Palette Color 2\"},{\"color\":\"#1A202C\",\"slug\":\"palette3\",\"name\":\"Palette Color 3\"},{\"color\":\"#2D3748\",\"slug\":\"palette4\",\"name\":\"Palette Color 4\"},{\"color\":\"#4A5568\",\"slug\":\"palette5\",\"name\":\"Palette Color 5\"},{\"color\":\"#718096\",\"slug\":\"palette6\",\"name\":\"Palette Color 6\"},{\"color\":\"#EDF2F7\",\"slug\":\"palette7\",\"name\":\"Palette Color 7\"},{\"color\":\"#F7FAFC\",\"slug\":\"palette8\",\"name\":\"Palette Color 8\"},{\"color\":\"#ffffff\",\"slug\":\"palette9\",\"name\":\"Palette Color 9\"}],\"active\":\"second-palette\"}','yes'),(284,'wp_calendar_block_has_published_posts','','yes'),(285,'category_children','a:0:{}','yes'),(286,'theme_mods_kadence','a:168:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:3;s:6:\"footer\";i:7;}s:18:\"custom_css_post_id\";i:2177;s:25:\"transparent_header_enable\";b:0;s:23:\"transparent_header_page\";b:0;s:23:\"transparent_header_post\";b:0;s:35:\"transparent_header_site_title_color\";a:2:{s:5:\"color\";s:7:\"#038387\";s:5:\"hover\";s:0:\"\";}s:13:\"header_sticky\";s:3:\"top\";s:24:\"primary_navigation_color\";a:3:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:7:\"#cfcfcf\";s:6:\"active\";s:7:\"#cfcfcf\";}s:16:\"brand_typography\";a:15:{s:4:\"size\";a:2:{s:7:\"desktop\";i:28;s:6:\"mobile\";i:20;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"700\";s:7:\"variant\";s:3:\"700\";s:5:\"color\";s:7:\"#038387\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;s:8:\"fallback\";s:0:\"\";}s:22:\"header_main_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette3\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:20:\"header_mobile_switch\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:29:\"transparent_header_background\";a:2:{s:7:\"desktop\";a:1:{s:5:\"color\";s:22:\"rgba(255,255,255,0.08)\";}s:4:\"flag\";b:1;}s:21:\"footer_bottom_columns\";s:1:\"2\";s:20:\"footer_bottom_layout\";a:4:{s:6:\"mobile\";s:3:\"row\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:5:\"equal\";s:4:\"flag\";b:1;}s:18:\"footer_top_columns\";s:1:\"4\";s:17:\"footer_top_layout\";a:4:{s:6:\"mobile\";s:3:\"row\";s:6:\"tablet\";s:8:\"two-grid\";s:7:\"desktop\";s:5:\"equal\";s:4:\"flag\";b:0;}s:12:\"footer_items\";a:4:{s:3:\"top\";a:5:{s:5:\"top_1\";a:1:{i:0;s:14:\"footer-widget1\";}s:5:\"top_2\";a:1:{i:0;s:14:\"footer-widget2\";}s:5:\"top_3\";a:1:{i:0;s:14:\"footer-widget4\";}s:5:\"top_4\";a:1:{i:0;s:14:\"footer-widget3\";}s:5:\"top_5\";a:0:{}}s:6:\"middle\";a:5:{s:8:\"middle_1\";a:0:{}s:8:\"middle_2\";a:0:{}s:8:\"middle_3\";a:0:{}s:8:\"middle_4\";a:0:{}s:8:\"middle_5\";a:0:{}}s:6:\"bottom\";a:5:{s:8:\"bottom_1\";a:2:{i:0;s:11:\"footer-html\";i:1;s:14:\"footer-widget5\";}s:8:\"bottom_2\";a:1:{i:0;s:13:\"footer-social\";}s:8:\"bottom_3\";a:0:{}s:8:\"bottom_4\";a:0:{}s:8:\"bottom_5\";a:0:{}}s:4:\"flag\";b:0;}s:22:\"footer_wrap_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette3\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:22:\"footer_top_top_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";i:36;s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:50;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:23:\"footer_top_widget_title\";a:15:{s:4:\"size\";a:1:{s:7:\"desktop\";i:17;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"900\";s:7:\"variant\";s:3:\"900\";s:5:\"color\";s:8:\"palette9\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:10:\"capitalize\";s:4:\"flag\";b:1;s:8:\"fallback\";s:0:\"\";}s:25:\"footer_top_widget_content\";a:15:{s:4:\"size\";a:1:{s:7:\"desktop\";i:14;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:8:\"palette9\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;s:8:\"fallback\";s:0:\"\";}s:19:\"footer_social_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:4:\"left\";s:7:\"desktop\";s:5:\"right\";s:4:\"flag\";b:0;}s:23:\"footer_social_icon_size\";a:2:{s:4:\"size\";d:1.18;s:4:\"unit\";s:2:\"em\";}s:19:\"footer_social_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:19:\"footer_social_style\";s:7:\"outline\";s:27:\"footer_social_border_radius\";a:2:{s:4:\"size\";i:0;s:4:\"unit\";s:2:\"px\";}s:19:\"footer_html_content\";s:53:\"{copyright} {year} {site-title}. All rights reserved.\";s:22:\"footer_html_typography\";a:15:{s:4:\"size\";a:1:{s:7:\"desktop\";i:13;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:8:\"palette9\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;s:8:\"fallback\";s:0:\"\";}s:25:\"footer_top_column_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";i:37;s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:90;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:1;}s:24:\"footer_top_bottom_border\";a:2:{s:7:\"desktop\";a:4:{s:5:\"width\";i:1;s:4:\"unit\";s:2:\"px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:8:\"palette7\";}s:4:\"flag\";b:0;}s:9:\"scroll_up\";b:1;s:14:\"scroll_up_icon\";s:10:\"chevron-up\";s:23:\"scroll_up_border_colors\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:16:\"scroll_up_radius\";a:4:{s:4:\"size\";a:4:{i:0;i:3;i:1;i:3;i:2;i:3;i:3;i:3;}s:4:\"unit\";s:2:\"px\";s:6:\"locked\";b:1;s:4:\"flag\";b:1;}s:19:\"scroll_up_visiblity\";a:4:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:0;s:6:\"mobile\";b:0;s:4:\"flag\";b:1;}s:15:\"scroll_up_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:11:\"custom_logo\";i:4193;s:10:\"logo_width\";a:3:{s:4:\"size\";a:3:{s:6:\"tablet\";i:220;s:7:\"desktop\";i:240;s:6:\"mobile\";i:200;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:11:\"logo_layout\";a:3:{s:7:\"include\";a:3:{s:6:\"mobile\";s:9:\"logo_only\";s:6:\"tablet\";s:9:\"logo_only\";s:7:\"desktop\";s:9:\"logo_only\";}s:6:\"layout\";a:3:{s:6:\"mobile\";s:8:\"standard\";s:6:\"tablet\";s:8:\"standard\";s:7:\"desktop\";s:8:\"standard\";}s:4:\"flag\";b:1;}s:19:\"header_logo_padding\";a:4:{s:4:\"size\";a:3:{s:7:\"desktop\";a:4:{i:0;s:1:\"0\";i:1;s:0:\"\";i:2;s:1:\"0\";i:3;s:0:\"\";}s:6:\"mobile\";a:4:{i:0;s:1:\"8\";i:1;s:1:\"0\";i:2;s:1:\"8\";i:3;s:1:\"0\";}s:6:\"tablet\";a:4:{i:0;s:1:\"8\";i:1;i:0;i:2;s:1:\"8\";i:3;i:0;}}s:4:\"unit\";a:2:{s:7:\"desktop\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";}s:6:\"locked\";a:1:{s:7:\"desktop\";b:0;}s:4:\"flag\";b:1;}s:29:\"primary_navigation_typography\";a:13:{s:4:\"size\";a:1:{s:7:\"desktop\";s:0:\"\";}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"600\";s:7:\"variant\";s:3:\"600\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:22:\"footer_top_link_colors\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:8:\"palette9\";}s:9:\"base_font\";a:15:{s:4:\"size\";a:1:{s:7:\"desktop\";i:17;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.8;}s:6:\"family\";s:6:\"Roboto\";s:6:\"google\";b:1;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette4\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;s:8:\"fallback\";s:10:\"sans-serif\";}s:12:\"heading_font\";a:5:{s:6:\"family\";s:6:\"Roboto\";s:6:\"google\";b:1;s:7:\"variant\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";}s:4:\"flag\";b:0;s:8:\"fallback\";s:10:\"sans-serif\";}s:7:\"h1_font\";a:15:{s:4:\"size\";a:3:{s:7:\"desktop\";i:65;s:6:\"mobile\";i:52;s:6:\"tablet\";i:60;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";i:1;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"600\";s:7:\"variant\";s:3:\"600\";s:5:\"color\";s:8:\"palette3\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:4:\"none\";s:4:\"flag\";b:0;s:8:\"fallback\";s:0:\"\";}s:7:\"h2_font\";a:15:{s:4:\"size\";a:2:{s:7:\"desktop\";i:45;s:6:\"mobile\";i:30;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";i:1;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"600\";s:7:\"variant\";s:3:\"600\";s:5:\"color\";s:8:\"palette3\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;s:8:\"fallback\";s:0:\"\";}s:7:\"h3_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:24;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.5;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"600\";s:7:\"variant\";s:3:\"600\";s:5:\"color\";s:8:\"palette3\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:7:\"h4_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:18;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.5;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"400\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette4\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:7:\"h5_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:16;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.5;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"400\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette4\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:0;}s:7:\"h6_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:11;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.5;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"400\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette5\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:25:\"post_archive_title_layout\";s:5:\"above\";s:29:\"post_archive_title_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:8:\"palette4\";s:4:\"type\";s:5:\"image\";s:5:\"image\";a:1:{s:3:\"url\";s:87:\"https://startertemplatecloud.com/e10/wp-content/uploads/sites/23/2021/01/wave_tr_bg.png\";}}s:4:\"flag\";b:1;}s:19:\"post_archive_layout\";s:6:\"normal\";s:16:\"title_above_font\";a:14:{s:4:\"size\";a:2:{s:7:\"desktop\";i:65;s:6:\"tablet\";i:40;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:8:\"palette8\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:18:\"post_archive_title\";b:1;s:31:\"post_archive_title_inner_layout\";s:8:\"standard\";s:26:\"post_archive_content_style\";s:5:\"boxed\";s:26:\"transparent_header_archive\";b:0;s:21:\"page_title_background\";a:2:{s:7:\"desktop\";a:1:{s:5:\"color\";s:0:\"\";}s:4:\"flag\";b:0;}s:25:\"page_title_featured_image\";b:0;s:24:\"page_title_overlay_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:23:\"page_title_inner_layout\";s:8:\"standard\";s:24:\"page_title_element_title\";a:2:{s:7:\"enabled\";b:1;s:4:\"flag\";b:0;}s:12:\"page_feature\";b:0;s:21:\"page_feature_position\";s:5:\"above\";s:25:\"post_archive_element_meta\";a:20:{s:2:\"id\";s:4:\"meta\";s:7:\"enabled\";b:0;s:7:\"divider\";s:3:\"dot\";s:6:\"author\";b:1;s:10:\"authorLink\";b:1;s:11:\"authorImage\";b:1;s:15:\"authorImageSize\";i:25;s:17:\"authorEnableLabel\";b:1;s:11:\"authorLabel\";s:0:\"\";s:4:\"date\";b:1;s:15:\"dateEnableLabel\";b:0;s:9:\"dateLabel\";s:0:\"\";s:11:\"dateUpdated\";b:0;s:22:\"dateUpdatedEnableLabel\";b:0;s:16:\"dateUpdatedLabel\";s:0:\"\";s:10:\"categories\";b:0;s:21:\"categoriesEnableLabel\";b:0;s:15:\"categoriesLabel\";s:0:\"\";s:8:\"comments\";b:0;s:4:\"flag\";b:1;}s:28:\"post_archive_item_title_font\";a:14:{s:4:\"size\";a:3:{s:7:\"desktop\";i:36;s:6:\"tablet\";i:30;s:6:\"mobile\";i:24;}s:10:\"lineHeight\";a:3:{s:7:\"desktop\";d:1.3;s:6:\"tablet\";d:1.31;s:6:\"mobile\";d:1.4;}s:6:\"family\";s:0:\"\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:8:\"palette4\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:0;}s:28:\"post_archive_element_excerpt\";a:4:{s:7:\"enabled\";b:1;s:5:\"words\";i:40;s:11:\"fullContent\";b:0;s:4:\"flag\";b:1;}s:17:\"post_title_layout\";s:6:\"normal\";s:11:\"post_layout\";s:6:\"normal\";s:21:\"post_feature_position\";s:6:\"behind\";s:18:\"post_feature_ratio\";s:3:\"1-2\";s:13:\"post_comments\";b:1;s:23:\"post_title_inner_layout\";s:8:\"standard\";s:21:\"post_vertical_padding\";s:4:\"hide\";s:18:\"post_feature_width\";s:4:\"full\";s:16:\"post_title_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:6:\"center\";s:4:\"flag\";b:1;}s:15:\"post_title_font\";a:14:{s:4:\"size\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";i:40;s:6:\"mobile\";i:24;}s:10:\"lineHeight\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"mobile\";d:1.6;s:6:\"tablet\";d:1.6;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:0:\"\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:0;}s:28:\"mobile_navigation_background\";a:3:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:8:\"palette8\";}s:20:\"mobile_trigger_color\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:8:\"palette9\";}s:30:\"dropdown_navigation_typography\";a:13:{s:4:\"size\";a:1:{s:7:\"desktop\";i:14;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:0;}s:35:\"transparent_header_navigation_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#6279a0\";s:6:\"active\";s:7:\"#6279a0\";}s:22:\"header_wrap_background\";a:3:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette1\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;s:6:\"tablet\";a:2:{s:4:\"type\";s:5:\"color\";s:5:\"color\";s:8:\"palette4\";}}s:22:\"above_title_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:8:\"palette3\";s:5:\"image\";a:5:{s:3:\"url\";s:0:\"\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";a:2:{s:1:\"x\";d:0.5;s:1:\"y\";d:0.5;}s:10:\"attachment\";s:6:\"scroll\";}s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:18:\"header_main_layout\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:8:\"standard\";s:4:\"flag\";b:0;}s:28:\"header_main_trans_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:7:\"#2d3748\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:24:\"primary_navigation_style\";s:8:\"standard\";s:20:\"header_desktop_items\";a:4:{s:3:\"top\";a:5:{s:8:\"top_left\";a:1:{i:0;s:4:\"logo\";}s:15:\"top_left_center\";a:0:{}s:10:\"top_center\";a:0:{}s:16:\"top_right_center\";a:0:{}s:9:\"top_right\";a:2:{i:0;s:6:\"button\";i:1;s:4:\"html\";}}s:4:\"main\";a:5:{s:9:\"main_left\";a:0:{}s:16:\"main_left_center\";a:0:{}s:11:\"main_center\";a:1:{i:0;s:10:\"navigation\";}s:17:\"main_right_center\";a:0:{}s:10:\"main_right\";a:0:{}}s:6:\"bottom\";a:5:{s:11:\"bottom_left\";a:0:{}s:18:\"bottom_left_center\";a:0:{}s:13:\"bottom_center\";a:0:{}s:19:\"bottom_right_center\";a:0:{}s:12:\"bottom_right\";a:0:{}}s:4:\"flag\";b:0;}s:19:\"header_html_content\";s:64:\"1230 Peachtree St NE #150\nAtlanta, GA 30309\n‪(203) 441-1113‬\";s:11:\"page_layout\";s:5:\"right\";s:10:\"page_title\";b:1;s:29:\"page_title_element_breadcrumb\";a:3:{s:7:\"enabled\";b:1;s:10:\"show_title\";b:1;s:4:\"flag\";b:1;}s:14:\"sidebar_sticky\";b:1;s:26:\"primary_navigation_spacing\";a:2:{s:4:\"size\";d:1.39;s:4:\"unit\";s:2:\"em\";}s:10:\"link_color\";a:4:{s:9:\"highlight\";s:8:\"palette1\";s:13:\"highlight-alt\";s:8:\"palette1\";s:14:\"highlight-alt2\";s:8:\"palette9\";s:5:\"style\";s:8:\"standard\";}s:19:\"header_button_label\";s:24:\"Book a Free Consultation\";s:18:\"header_button_link\";s:40:\"https://atlantagynecomastia.com/contact/\";s:19:\"header_button_style\";s:6:\"filled\";s:24:\"header_button_background\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:18:\"header_button_size\";s:5:\"large\";s:20:\"header_button_radius\";a:4:{s:4:\"size\";a:4:{i:0;i:11;i:1;i:11;i:2;i:11;i:3;i:11;}s:4:\"unit\";s:2:\"px\";s:6:\"locked\";b:1;s:4:\"flag\";b:0;}s:26:\"primary_navigation_stretch\";b:1;s:17:\"header_top_layout\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:8:\"standard\";s:4:\"flag\";b:1;}s:21:\"header_top_background\";a:3:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette9\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;s:6:\"tablet\";a:2:{s:4:\"type\";s:5:\"color\";s:5:\"color\";s:8:\"palette3\";}}s:27:\"header_top_trans_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette9\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:22:\"brand_typography_color\";a:3:{s:5:\"hover\";s:7:\"#038387\";s:6:\"active\";s:7:\"#038387\";s:5:\"color\";s:0:\"\";}s:22:\"header_html_typography\";a:15:{s:4:\"size\";a:1:{s:7:\"desktop\";i:17;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:8:\"palette1\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:4:\"flag\";b:1;}s:22:\"header_html_link_style\";s:6:\"normal\";s:19:\"header_button_color\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:8:\"palette9\";}s:20:\"header_button_margin\";a:4:{s:4:\"size\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:120;}s:4:\"unit\";s:2:\"px\";s:6:\"locked\";b:0;s:4:\"flag\";b:1;}s:29:\"primary_navigation_background\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:30:\"dropdown_navigation_background\";a:3:{s:5:\"color\";s:8:\"palette6\";s:5:\"hover\";s:8:\"palette5\";s:6:\"active\";s:8:\"palette5\";}s:23:\"header_popup_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette9\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:19:\"mobile_trigger_icon\";s:4:\"menu\";s:25:\"transparent_header_device\";a:3:{s:7:\"desktop\";b:1;s:6:\"mobile\";b:1;s:4:\"flag\";b:1;}s:19:\"header_html_wpautop\";b:1;s:18:\"header_top_padding\";a:4:{s:4:\"size\";a:1:{s:7:\"desktop\";a:4:{i:0;s:2:\"10\";i:1;s:1:\"0\";i:2;s:2:\"10\";i:3;s:1:\"0\";}}s:4:\"unit\";a:1:{s:7:\"desktop\";s:2:\"px\";}s:6:\"locked\";a:1:{s:7:\"desktop\";b:0;}s:4:\"flag\";b:0;}s:25:\"footer_top_widget_spacing\";a:3:{s:4:\"size\";a:2:{s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:2:\"30\";}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:25:\"footer_top_bottom_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";i:11;s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:2:\"30\";}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:18:\"mobile_button_size\";s:6:\"medium\";s:19:\"mobile_button_label\";s:24:\"Book a Free Consultation\";s:18:\"mobile_button_link\";s:40:\"https://atlantagynecomastia.com/contact/\";s:19:\"header_mobile_items\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:17:\"mobile-navigation\";}}s:3:\"top\";a:3:{s:8:\"top_left\";a:0:{}s:10:\"top_center\";a:1:{i:0;s:13:\"mobile-button\";}s:9:\"top_right\";a:1:{i:0;s:12:\"popup-toggle\";}}s:4:\"main\";a:3:{s:9:\"main_left\";a:0:{}s:11:\"main_center\";a:1:{i:0;s:11:\"mobile-html\";}s:10:\"main_right\";a:0:{}}s:6:\"bottom\";a:3:{s:11:\"bottom_left\";a:1:{i:0;s:11:\"mobile-logo\";}s:13:\"bottom_center\";a:0:{}s:12:\"bottom_right\";a:0:{}}s:4:\"flag\";b:0;}s:24:\"mobile_button_background\";a:2:{s:5:\"color\";s:7:\"#bf2237\";s:5:\"hover\";s:0:\"\";}s:17:\"page_title_height\";a:3:{s:4:\"size\";a:3:{s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:200;s:6:\"mobile\";i:250;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:1;}s:20:\"mobile_header_sticky\";s:8:\"top_main\";s:19:\"mobile_html_content\";s:51:\"or call <a href=\"tel:2034411113\">(203) 441-1113</a>\";s:24:\"header_bottom_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette9\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:19:\"header_main_padding\";a:4:{s:4:\"size\";a:2:{s:7:\"desktop\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:6:\"mobile\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}}s:4:\"unit\";a:1:{s:7:\"desktop\";b:0;}s:6:\"locked\";a:1:{s:7:\"desktop\";b:0;}s:4:\"flag\";b:1;}s:18:\"header_main_height\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";i:10;s:6:\"tablet\";i:10;s:7:\"desktop\";i:80;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:18:\"mobile_html_margin\";a:4:{s:4:\"size\";a:4:{i:0;i:-25;i:1;i:0;i:2;i:-15;i:3;i:0;}s:4:\"unit\";s:2:\"px\";s:6:\"locked\";b:0;s:4:\"flag\";b:1;}s:22:\"mobile_html_typography\";a:15:{s:4:\"size\";a:1:{s:7:\"desktop\";i:15;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:8:\"palette9\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:4:\"flag\";b:0;}s:22:\"mobile_html_link_color\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:0:\"\";}s:23:\"scroll_up_bottom_offset\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:100;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:14:\"header_scripts\";s:287:\"<!-- Google tag (gtag.js) -->\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=G-B77MNB9LWF\"></script>\n<script>\n  window.dataLayer = window.dataLayer || [];\n  function gtag(){dataLayer.push(arguments);}\n  gtag(\'js\', new Date());\n\n  gtag(\'config\', \'G-B77MNB9LWF\');\n</script>\";s:19:\"footer_social_items\";a:2:{s:5:\"items\";a:4:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:7:\"imageid\";s:0:\"\";s:5:\"width\";i:24;s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:7:\"imageid\";s:0:\"\";s:5:\"width\";i:24;s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:7:\"imageid\";s:0:\"\";s:5:\"width\";i:24;s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}i:3;a:9:{s:2:\"id\";s:7:\"youtube\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:7:\"imageid\";s:0:\"\";s:5:\"width\";i:24;s:4:\"icon\";s:7:\"youtube\";s:5:\"label\";s:7:\"YouTube\";s:3:\"svg\";s:0:\"\";}}s:4:\"flag\";b:1;}s:13:\"facebook_link\";s:45:\"https://www.facebook.com/atlantagynecomastia/\";s:12:\"twitter_link\";s:35:\"https://twitter.com/atlgynecomastia\";s:14:\"instagram_link\";s:45:\"https://www.instagram.com/atlantagynecomastia\";s:12:\"youtube_link\";s:44:\"https://www.youtube.com/@atlantagynecomastia\";s:13:\"linkedin_link\";s:54:\"https://www.linkedin.com/company/atlanta-gynecomastia/\";s:22:\"mobile_trigger_padding\";a:4:{s:4:\"size\";a:4:{i:0;i:1;i:1;d:1.5;i:2;d:0.4;i:3;d:0.6;}s:4:\"unit\";s:2:\"em\";s:6:\"locked\";b:0;s:4:\"flag\";b:1;}s:17:\"breadcrumb_engine\";s:5:\"yoast\";s:27:\"page_title_breadcrumb_color\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:8:\"palette9\";}s:23:\"header_reveal_scroll_up\";b:0;s:20:\"header_sticky_shrink\";b:0;s:24:\"header_sticky_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette9\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:24:\"header_top_bottom_border\";a:4:{s:7:\"desktop\";a:4:{s:5:\"width\";i:1;s:4:\"unit\";s:2:\"px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:8:\"palette7\";}s:4:\"flag\";b:1;s:6:\"tablet\";a:4:{s:5:\"width\";i:0;s:4:\"unit\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:6:\"mobile\";a:4:{s:5:\"width\";i:0;s:4:\"unit\";s:0:\"\";s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";}}s:25:\"footer_bottom_top_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:20;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:28:\"footer_bottom_bottom_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:20;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:23:\"footer_bottom_direction\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:3:\"row\";s:4:\"flag\";b:0;}s:22:\"footer_bottom_collapse\";s:3:\"rtl\";s:15:\"site_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:8:\"palette8\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:18:\"buttons_background\";a:2:{s:5:\"color\";s:8:\"palette1\";s:5:\"hover\";s:8:\"palette4\";}s:25:\"footer_bottom_link_colors\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:8:\"palette9\";}s:25:\"footer_middle_link_colors\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:8:\"palette9\";}s:21:\"footer_top_link_style\";s:5:\"plain\";s:17:\"scroll_up_padding\";a:4:{s:4:\"size\";a:1:{s:7:\"desktop\";a:4:{i:0;d:0.4;i:1;d:0.4;i:2;d:0.4;i:3;d:0.4;}}s:4:\"unit\";a:1:{s:7:\"desktop\";s:2:\"em\";}s:6:\"locked\";a:1:{s:7:\"desktop\";b:1;}s:4:\"flag\";b:0;}s:15:\"use_mobile_logo\";b:0;s:11:\"mobile_logo\";i:3652;s:27:\"header_bottom_bottom_border\";a:2:{s:7:\"desktop\";a:4:{s:5:\"width\";i:1;s:4:\"unit\";s:2:\"px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:8:\"palette6\";}s:4:\"flag\";b:1;}s:19:\"mobile_button_color\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:0:\"\";}s:23:\"mobile_navigation_color\";a:3:{s:5:\"color\";s:8:\"palette3\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:8:\"palette3\";}s:24:\"mobile_button_typography\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";s:0:\"\";}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:3:\"500\";s:7:\"variant\";s:3:\"500\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:4:\"flag\";b:1;}s:15:\"initial_version\";s:5:\"1.2.2\";s:31:\"primary_navigation_fill_stretch\";b:0;s:24:\"header_popup_close_color\";a:2:{s:5:\"color\";s:8:\"palette3\";s:5:\"hover\";s:8:\"palette3\";}}','yes'),(287,'site_logo','4193','yes'),(296,'siteground_optimizer_smart_cache_purge_queue','a:0:{}','yes'),(302,'stellarwp_telemetry_user_info','a:1:{s:4:\"user\";s:544:\"{\"name\":\"CharlesB\",\"email\":\"charles.d.breitbart@gmail.com\",\"plugin_slug\":\"kadence-blocks\",\"opt_in_text\":\"Hi, CharlesB! At KadenceWP, we\\\\\'re always looking for more ways to make our products better for you. If you opt into sharing some data on your usage of Kadence Blocks, it helps us identify key areas where we can improve. In return, we\\\\\'ll also email helpful articles and guides to get more out of Kadence, WordPress, and more. If you skip this, that\\\\\'s okay. Kadence Blocks will work just fine. We hope you love building with Kadence.\"}\";}','no'),(327,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"23.6\";}','yes'),(328,'wpseo','a:105:{s:8:\"tracking\";b:1;s:16:\"toggled_tracking\";b:1;s:22:\"license_server_version\";s:5:\"false\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:0;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:21:\"post_type_made_public\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"23.6\";s:16:\"previous_version\";s:4:\"23.5\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:1;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";s:10:\"1706395838\";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:31:\"https://atlantagynecomastia.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a: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:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:5:{s:30:\"aioseo_custom_archive_settings\";b:1;s:31:\"aioseo_default_archive_settings\";b:1;s:23:\"aioseo_general_settings\";b:1;s:32:\"aioseo_posttype_default_settings\";b:1;s:24:\"aioseo_taxonomy_settings\";b:1;}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";s:10:\"1706395839\";s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1728570818;s:31:\"wpseo_unindexed_term_link_count\";i:1728594537;s:31:\"wpseo_unindexed_post_link_count\";i:1708295973;s:35:\"wpseo_total_unindexed_general_items\";i:1711893814;s:27:\"wpseo_total_unindexed_posts\";i:1728594537;s:27:\"wpseo_total_unindexed_terms\";i:1728594537;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','yes'),(329,'wpseo_titles','a:129:{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:1;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:2:\"»\";s:12:\"website_name\";s:27:\"Atlanta Gynecomastia Center\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:99:\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Org_Logo.png\";s:12:\"company_name\";s:27:\"Atlanta Gynecomastia Center\";s:22:\"company_alternate_name\";s:0:\"\";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:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:15:\"org-description\";s:0:\"\";s:9:\"org-email\";s:0:\"\";s:9:\"org-phone\";s:0:\"\";s:14:\"org-legal-name\";s:0:\"\";s:17:\"org-founding-date\";s:0:\"\";s:20:\"org-number-employees\";s:0:\"\";s:10:\"org-vat-id\";s:0:\"\";s:10:\"org-tax-id\";s:0:\"\";s:7:\"org-iso\";s:0:\"\";s:8:\"org-duns\";s:0:\"\";s:11:\"org-leicode\";s:0:\"\";s:9:\"org-naics\";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:26:\"taxonomy-category-ptparent\";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:26:\"taxonomy-post_tag-ptparent\";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:29:\"taxonomy-post_format-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:4205;s:17:\"company_logo_meta\";a:10:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:8:\"filesize\";i:6137;s:3:\"url\";s:99:\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Org_Logo.png\";s:4:\"path\";s:118:\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Org_Logo.png\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:4205;s:3:\"alt\";s:27:\"Atlanta Gynecomastia Center\";s:6:\"pixels\";i:562500;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:20:{s:13:\"facebook_site\";s:45:\"https://www.facebook.com/atlantagynecomastia/\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:101:\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Site_Image.png\";s:19:\"og_default_image_id\";i:4206;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:15:\"atlgynecomastia\";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:2:{i:0;s:44:\"https://www.youtube.com/@atlantagynecomastia\";i:1;s:45:\"https://www.instagram.com/atlantagynecomastia\";}s:12:\"mastodon_url\";s:0:\"\";}','yes'),(348,'duplicate_post_show_notice','0','no'),(349,'duplicate_post_copytitle','1','yes'),(350,'duplicate_post_copydate','0','yes'),(351,'duplicate_post_copystatus','0','yes'),(352,'duplicate_post_copyslug','0','yes'),(353,'duplicate_post_copyexcerpt','1','yes'),(354,'duplicate_post_copycontent','1','yes'),(355,'duplicate_post_copythumbnail','1','yes'),(356,'duplicate_post_copytemplate','1','yes'),(357,'duplicate_post_copyformat','1','yes'),(358,'duplicate_post_copyauthor','0','yes'),(359,'duplicate_post_copypassword','0','yes'),(360,'duplicate_post_copyattachments','0','yes'),(361,'duplicate_post_copychildren','0','yes'),(362,'duplicate_post_copycomments','0','yes'),(363,'duplicate_post_copymenuorder','1','yes'),(364,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(365,'duplicate_post_blacklist','','yes'),(366,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(367,'duplicate_post_show_original_column','0','yes'),(368,'duplicate_post_show_original_in_post_states','0','yes'),(369,'duplicate_post_show_original_meta_box','0','yes'),(370,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),(371,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),(372,'duplicate_post_version','4.5','yes'),(378,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(508,'sg_security_total_blocked_visits','0','yes'),(509,'sg_security_total_blocked_logins','0','yes'),(1086,'wordfence_ls_version','1.1.12','yes'),(1087,'wfls_last_role_change','1718307833','no'),(1088,'wordfence_version','7.11.7','yes'),(1089,'wordfence_case','1','yes'),(1090,'wordfence_installed','1','yes'),(1091,'wordfenceActivated','1','yes'),(1092,'wf_plugin_act_error','','yes'),(1206,'kadence_uplink_auth_token','e7815220-4110-4ac2-8159-cc61ae4f6f10','yes'),(1207,'stellarwp_uplink_license_key_kadence-blocks','ktm_wc_order_QntgzZthxGmwU_am_KNCvYgXgYw3Y','yes'),(1208,'stellarwp_uplink_license_key_status_kadence-blocks_atlantagynecomastia.com','valid','yes'),(1209,'stellarwp_uplink_license_key_status_kadence-blocks_atlantagynecomastia.com_timeout','43200','yes'),(1223,'stellar_schema_version_kbp-form-events','1.0.0','yes'),(1224,'stellar_schema_version_kbo-query-index','1.0.2','yes'),(1226,'kadence-blocks-pro-license-updated','1','yes'),(1227,'wpdb_kbp_form_entry_version','2021101212','yes'),(1228,'wpdb_kbp_form_entrymeta_version','2019101021','yes'),(1229,'kbp_is_installed','1','yes'),(1230,'wpdb_kbp_countdown_entry_version','2021031602','yes'),(1232,'stellarwp_uplink_license_key_kadence-blocks-pro','ktm_wc_order_QntgzZthxGmwU_am_KNCvYgXgYw3Y','yes'),(1233,'stellarwp_uplink_license_key_status_kadence-blocks-pro_atlantagynecomastia.com','valid','yes'),(1234,'stellarwp_uplink_license_key_status_kadence-blocks-pro_atlantagynecomastia.com_timeout','43200','yes'),(1241,'stellarwp_uplink_update_status_kadence-blocks-pro','O:8:\"stdClass\":3:{s:10:\"last_check\";i:1728625786;s:15:\"checked_version\";s:5:\"2.5.0\";s:6:\"update\";O:8:\"stdClass\":27:{s:4:\"name\";s:10:\"Blocks Pro\";s:4:\"slug\";s:18:\"kadence-blocks-pro\";s:7:\"zip_url\";s:0:\"\";s:11:\"file_prefix\";s:24:\"kadence-blocks-pro.2.5.0\";s:8:\"homepage\";s:41:\"https://www.kadencewp.com/kadence-blocks/\";s:12:\"download_url\";s:95:\"https://licensing.kadencewp.com/api/plugins/v2/download?plugin=kadence-blocks-pro&version=2.5.0\";s:12:\"icon_svg_url\";s:76:\"https://www.kadencewp.com/wp-content/uploads/kadence-misc/kadence-plugin.svg\";s:7:\"version\";s:5:\"2.5.0\";s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"release_date\";s:19:\"2024-10-03 00:00:00\";s:14:\"upgrade_notice\";s:0:\"\";s:12:\"last_updated\";s:19:\"2024-10-03 17:59:04\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:59:\"Premium WordPress Blocks for Beautifully Effective Websites\";s:12:\"installation\";s:0:\"\";s:9:\"changelog\";s:291:\"== 2.5.0 | 3rd October 2024 ==\r\n<ul>\r\n  <li>New: Pro Header Adv features.</li>\r\n  <li>New: Pro Navigation Mega menus.</li>\r\n  <li>New: Pro Navigation icons.</li>\r\n  <li>New: Pro Navigation highlight links.</li>\r\n  <li>Fix: Query loop in stock / out of stock text not translating.</li>\r\n</ul>\";}s:10:\"expiration\";s:10:\"2025-02-06\";s:11:\"daily_limit\";N;s:13:\"custom_update\";O:8:\"stdClass\":1:{s:5:\"icons\";O:8:\"stdClass\":1:{s:3:\"svg\";s:76:\"https://www.kadencewp.com/wp-content/uploads/kadence-misc/kadence-plugin.svg\";}}s:7:\"credits\";O:8:\"stdClass\":9:{s:5:\"total\";i:8000;s:9:\"available\";i:8000;s:4:\"used\";i:0;s:12:\"period_total\";i:8000;s:25:\"period_total_from_product\";s:4:\"8000\";s:25:\"period_total_from_license\";i:0;s:11:\"period_used\";i:0;s:14:\"lifetime_total\";i:0;s:13:\"lifetime_used\";i:0;}s:4:\"plan\";O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Full Bundle\";s:4:\"slug\";s:19:\"kadence-full-bundle\";s:4:\"type\";s:8:\"standard\";}s:10:\"origin_url\";s:26:\"https://www.kadencewp.com/\";s:8:\"home_url\";s:26:\"https://www.kadencewp.com/\";s:8:\"auth_url\";s:0:\"\";s:13:\"auth_required\";b:1;s:13:\"is_authorized\";b:0;s:11:\"api_upgrade\";b:0;s:11:\"api_expired\";b:0;s:11:\"api_message\";N;}}','yes'),(1250,'sg_wizard_themes_data_updated','1707251014','yes'),(1393,'kadence-theme-pro-license-updated','1','yes'),(1395,'stellarwp_uplink_license_key_kadence-theme-pro','ktm_wc_order_QntgzZthxGmwU_am_KNCvYgXgYw3Y','yes'),(1396,'stellarwp_uplink_license_key_status_kadence-theme-pro_atlantagynecomastia.com','valid','yes'),(1397,'stellarwp_uplink_license_key_status_kadence-theme-pro_atlantagynecomastia.com_timeout','43200','yes'),(1418,'stellarwp_uplink_update_status_kadence-theme-pro','O:8:\"stdClass\":3:{s:10:\"last_check\";i:1728625786;s:15:\"checked_version\";s:6:\"1.0.21\";s:6:\"update\";O:8:\"stdClass\":26:{s:4:\"name\";s:9:\"Theme Pro\";s:4:\"slug\";s:17:\"kadence-theme-pro\";s:7:\"zip_url\";s:0:\"\";s:11:\"file_prefix\";s:18:\"kadence-pro.1.0.21\";s:8:\"homepage\";s:40:\"https://www.kadencewp.com/kadence-theme/\";s:12:\"download_url\";s:95:\"https://licensing.kadencewp.com/api/plugins/v2/download?plugin=kadence-theme-pro&version=1.0.21\";s:12:\"icon_svg_url\";s:76:\"https://www.kadencewp.com/wp-content/uploads/kadence-misc/kadence-plugin.svg\";s:7:\"version\";s:6:\"1.0.21\";s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.6.3\";s:12:\"release_date\";s:19:\"2024-10-04 00:00:00\";s:14:\"upgrade_notice\";s:0:\"\";s:12:\"last_updated\";s:19:\"2024-10-04 21:26:15\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:67:\"Premium features that will help you get the most from your website.\";s:12:\"installation\";s:0:\"\";s:9:\"changelog\";s:256:\"<p>== 1.0.21 | 4th October 2024 ==<br />* Add: Option to set a custom box shadow.<br />* Update: Element previews when using query builder.<br />* Update: Tweak css for element titles.<br />* Fix: Issue with some full width mega menus causing overflow.</p>\";}s:10:\"expiration\";s:10:\"2025-02-06\";s:11:\"daily_limit\";N;s:13:\"custom_update\";O:8:\"stdClass\":1:{s:5:\"icons\";O:8:\"stdClass\":1:{s:3:\"svg\";s:76:\"https://www.kadencewp.com/wp-content/uploads/kadence-misc/kadence-plugin.svg\";}}s:4:\"plan\";O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Full Bundle\";s:4:\"slug\";s:19:\"kadence-full-bundle\";s:4:\"type\";s:8:\"standard\";}s:10:\"origin_url\";s:26:\"https://www.kadencewp.com/\";s:8:\"home_url\";s:26:\"https://www.kadencewp.com/\";s:8:\"auth_url\";s:0:\"\";s:13:\"auth_required\";b:0;s:13:\"is_authorized\";b:1;s:11:\"api_upgrade\";b:0;s:11:\"api_expired\";b:0;s:11:\"api_message\";N;}}','yes'),(1709,'kadence_pro_theme_config','{\"header_addons\":true,\"scripts\":true}','yes'),(1917,'ai1wm_secret_key','Bno1dE07H3or','yes'),(1920,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:353:\"<a href=\"https://atlantagynecomastia.com/wp-content/ai1wm-backups/atlantagynecomastia.com-20240213-000003-qrz1mq.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"atlantagynecomastia.com\" download=\"atlantagynecomastia.com-20240213-000003-qrz1mq.wpress\"><span>Download atlantagynecomastia.com</span><em>Size: 268 MB</em></a>\";}','yes'),(1959,'_site_transient_ai1wm_last_check_for_updates','1728625785','no'),(1960,'ai1wm_updater','a:0:{}','yes'),(1967,'siteground_data_token','eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJodHRwOi8vY2hhcmxlc2IyMTAuc2ctaG9zdC5jb20iLCJ1cGRhdGVkX2F0IjoiMjAyNC0wMi0xMyAwMDo1MDoxNSIsImV4cCI6MjAyMzE2NzAxNX0.CPGBKUa9JmQYDK6tGQaeRhMaxtckar0fFd41_SR-UiE','yes'),(1968,'siteground_last_data_tracking','1707807016','yes'),(1974,'ai1wm_auth_user','dev','yes'),(1975,'ai1wm_auth_password','dev','yes'),(2032,'wp_cli_login','{\"endpoint\":\"f2a2ae6c\",\"version\":\"^1.5\"}','yes'),(2343,'wp-short-pixel-activation-date','1728522624','no'),(2344,'shortqwp_SPIO','a:1:{s:6:\"queues\";a:4:{s:11:\"mediaSingle\";O:24:\"ShortPixel\\ShortQ\\Status\":15:{s:8:\"\0*\0items\";i:0;s:13:\"\0*\0in_process\";i:0;s:12:\"\0*\0preparing\";b:0;s:10:\"\0*\0running\";b:0;s:11:\"\0*\0finished\";b:1;s:15:\"\0*\0bulk_running\";b:0;s:7:\"\0*\0done\";i:0;s:9:\"\0*\0errors\";i:0;s:15:\"\0*\0fatal_errors\";i:0;s:11:\"\0*\0last_run\";i:1728594633;s:14:\"\0*\0last_update\";i:1728594633;s:12:\"\0*\0times_ran\";i:20773;s:14:\"\0*\0average_ask\";i:0;s:15:\"\0*\0last_item_id\";i:4340;s:14:\"\0*\0custom_data\";N;}s:12:\"customSingle\";O:24:\"ShortPixel\\ShortQ\\Status\":15:{s:8:\"\0*\0items\";i:0;s:13:\"\0*\0in_process\";i:0;s:12:\"\0*\0preparing\";b:0;s:10:\"\0*\0running\";b:0;s:11:\"\0*\0finished\";b:1;s:15:\"\0*\0bulk_running\";b:0;s:7:\"\0*\0done\";i:0;s:9:\"\0*\0errors\";i:0;s:15:\"\0*\0fatal_errors\";i:0;s:11:\"\0*\0last_run\";i:1728594633;s:14:\"\0*\0last_update\";i:1728594633;s:12:\"\0*\0times_ran\";i:21230;s:14:\"\0*\0average_ask\";i:0;s:15:\"\0*\0last_item_id\";i:0;s:14:\"\0*\0custom_data\";N;}s:5:\"media\";O:24:\"ShortPixel\\ShortQ\\Status\":15:{s:8:\"\0*\0items\";i:0;s:13:\"\0*\0in_process\";i:0;s:12:\"\0*\0preparing\";b:0;s:10:\"\0*\0running\";b:0;s:11:\"\0*\0finished\";b:1;s:15:\"\0*\0bulk_running\";b:0;s:7:\"\0*\0done\";i:0;s:9:\"\0*\0errors\";i:0;s:15:\"\0*\0fatal_errors\";i:0;s:11:\"\0*\0last_run\";i:1708720378;s:14:\"\0*\0last_update\";i:1708720378;s:12:\"\0*\0times_ran\";i:2;s:14:\"\0*\0average_ask\";i:0;s:15:\"\0*\0last_item_id\";i:0;s:14:\"\0*\0custom_data\";N;}s:6:\"custom\";O:24:\"ShortPixel\\ShortQ\\Status\":15:{s:8:\"\0*\0items\";i:0;s:13:\"\0*\0in_process\";i:0;s:12:\"\0*\0preparing\";b:0;s:10:\"\0*\0running\";b:0;s:11:\"\0*\0finished\";b:1;s:15:\"\0*\0bulk_running\";b:0;s:7:\"\0*\0done\";i:0;s:9:\"\0*\0errors\";i:0;s:15:\"\0*\0fatal_errors\";i:0;s:11:\"\0*\0last_run\";i:1708720378;s:14:\"\0*\0last_update\";i:1708720378;s:12:\"\0*\0times_ran\";i:2;s:14:\"\0*\0average_ask\";i:0;s:15:\"\0*\0last_item_id\";i:0;s:14:\"\0*\0custom_data\";N;}}}','yes'),(2345,'wp-short-pixel-currentVersion','5.6.4','yes'),(2346,'wp-short-pixel-view-mode','1','yes'),(2347,'wp-short-pixel-apiKey','zx5RWNSBGVefFusHXZGY','yes'),(2348,'wp-short-pixel-redirected-settings','2','yes'),(2349,'wp-short-pixel-apiKeyTried','','yes'),(2358,'wp-short-pixel-quota-exceeded','0','yes'),(2360,'wp-short-pixel-verifiedKey','1','yes'),(2365,'wp-short-pixel-compression','1','yes'),(2366,'wp-short-process_thumbnails','1','yes'),(2367,'wp-short-backup_images','1','yes'),(2368,'wp-short-pixel-resize-type','outer','yes'),(2369,'wp-short-pixel-auto-media-library','1','yes'),(2370,'wp-short-pixel-optimize-pdfs','1','yes'),(2371,'wp-short-pixel-optimize-retina','1','yes'),(2372,'wp-short-pixel-optimize-unlisted','1','yes'),(2373,'wp-short-pixel-png2jpg','1','yes'),(2374,'wp-short-pixel-show-custom-media','1','yes'),(2375,'wp-short-pixel-site-auth-user','','yes'),(2376,'wp-short-pixel-site-auth-pass','','yes'),(2377,'wp-short-pixel-cloudflareAPIZoneID','','yes'),(2378,'wp-short-pixel-cloudflareToken','','yes'),(2379,'wp-short-pixel-keep-exif','0','yes'),(2380,'wp-short-pixel-excludeSizes','a:0:{}','yes'),(2381,'wp-short-pixel-create-webp-markup','0','yes'),(2382,'wp-short-pixel_cmyk2rgb','1','yes'),(2383,'wp-short-pixel-resize-width','','yes'),(2384,'wp-short-pixel-resize-height','','yes'),(2385,'wpspio-usesmartcrop','0','yes'),(2386,'wp-short-pixel-resize-images','0','yes'),(2387,'wp-short-pixel-include-next-gen','0','yes'),(2388,'wp-short-create-webp','1','yes'),(2389,'wp-short-create-avif','0','yes'),(2390,'wp-short-pixel-exclude-patterns','','yes'),(2392,'wp-short-pixel-cloudflareAPIEmail','','yes'),(2393,'wp-short-pixel-cloudflareAuthKey','','yes'),(2439,'shortpixel-bulk-logs','a:3:{i:0;a:7:{s:9:\"processed\";i:0;s:13:\"not_processed\";i:3;s:6:\"errors\";i:0;s:12:\"fatal_errors\";i:213;s:4:\"type\";s:5:\"media\";s:4:\"date\";i:1708371207;s:7:\"logfile\";s:25:\"bulk_media_1708371207.log\";}i:1;a:7:{s:9:\"processed\";i:0;s:13:\"not_processed\";i:213;s:6:\"errors\";i:0;s:12:\"fatal_errors\";i:12;s:4:\"type\";s:5:\"media\";s:4:\"date\";i:1708371383;s:7:\"logfile\";s:25:\"bulk_media_1708371383.log\";}i:2;a:8:{s:9:\"processed\";i:225;s:13:\"not_processed\";i:0;s:6:\"errors\";i:0;s:12:\"fatal_errors\";i:0;s:12:\"total_images\";i:1758;s:4:\"type\";s:5:\"media\";s:4:\"date\";i:1708720378;s:7:\"logfile\";s:25:\"bulk_media_1708720378.log\";}}','no'),(2483,'ai1wm_auth_header','ZGV2OmRldg==','yes'),(2541,'wpil_email_offer_dismissed','1','yes'),(2542,'wpil_premium_notice_dismissed','','yes'),(2543,'wpil_2_ignore_numbers','1','yes'),(2544,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(2545,'wpil_selected_language','english','yes'),(2546,'wpil_2_ignore_words','-\r\n-\r\na\r\nabout\r\nabove\r\nactually\r\nadd\r\nafter\r\nagain\r\nagainst\r\nago\r\nall\r\nam\r\nan\r\nand\r\nanother\r\nanswer\r\nany\r\nare\r\naren\'t\r\nas\r\nat\r\nbase\r\nbe\r\nbecause\r\nbeen\r\nbefore\r\nbeing\r\nbelow\r\nbest\r\nbetter\r\nbetween\r\nboth\r\nbut\r\nby\r\ncan\r\ncan\'t\r\ncannot\r\ncons\r\ncould\r\ncouldn\'t\r\ndid\r\ndidn\'t\r\ndifference\r\ndifferent\r\ndo\r\ndoes\r\ndoesn\'t\r\ndoing\r\ndon\'t\r\ndone\r\ndown\r\nduring\r\neach\r\neasier\r\neasy\r\neight\r\neven\r\nfar\r\nfew\r\nfind\r\nfirst\r\nfive\r\nfor\r\nfour\r\nfree\r\nfrom\r\nfurther\r\ngeneral\r\nget\r\ngett\r\ngetting\r\ngo\r\ngood\r\ngot\r\ngreat\r\nhad\r\nhadn\'t\r\nhas\r\nhasn\'t\r\nhave\r\nhaven\'t\r\nhaver\r\nhaving\r\nhe\r\nhe\'d\r\nhe\'ll\r\nhe\'s\r\nhelp\r\nher\r\nhere\r\nhere\'s\r\nhers\r\nherself\r\nhigh\r\nhim\r\nhimself\r\nhis\r\nhow\r\nhow\'s\r\ni\r\ni\'d\r\ni\'ll\r\ni\'m\r\ni\'ve\r\nif\r\nin\r\ninto\r\nis\r\nisn\'t\r\nit\r\nit\'s\r\nits\r\nitself\r\njust\r\nless\r\nlet\'s\r\nlike\r\nlong\r\nlook\r\nlove\r\nmake\r\nmany\r\nmatt\r\nmatter\r\nmay\r\nme\r\nmore\r\nmost\r\nmuch\r\nmustn\'t\r\nmy\r\nmyself\r\nnever\r\nnew\r\nnine\r\nno\r\nnor\r\nnot\r\nnow\r\nof\r\noff\r\non\r\nonce\r\none\r\nonly\r\nor\r\nother\r\nought\r\nour\r\nours\r\nourselves\r\nout\r\nover\r\noverall\r\nown\r\nper\r\npros\r\nquestion\r\nreview\r\nright\r\nsame\r\nseven\r\nshan\'t\r\nshe\r\nshe\'d\r\nshe\'ll\r\nshe\'s\r\nshock\r\nshocking\r\nshould\r\nshouldn\'t\r\nshow\r\nsimple\r\nsix\r\nso\r\nsome\r\nstart\r\nstill\r\nsuch\r\ntake\r\nten\r\nthan\r\nthat\r\nthat\'s\r\nthe\r\ntheir\r\ntheirs\r\nthem\r\nthemselves\r\nthen\r\nthere\r\nthere\'s\r\nthese\r\nthey\r\nthey\'d\r\nthey\'ll\r\nthey\'re\r\nthey\'ve\r\nthis\r\nthose\r\nthree\r\nthrough\r\nto\r\ntoo\r\ntool\r\ntwo\r\nunder\r\nuntil\r\nup\r\nuse\r\nusing\r\nvery\r\nwant\r\nwas\r\nwasn\'t\r\nwe\r\nwe\'d\r\nwe\'ll\r\nwe\'re\r\nwe\'ve\r\nwere\r\nweren\'t\r\nwhat\r\nwhat\'s\r\nwhen\r\nwhen\'s\r\nwhere\r\nwhere\'s\r\nwhich\r\nwhile\r\nwho\r\nwho\'s\r\nwhom\r\nwhy\r\nwhy\'s\r\nwill\r\nwith\r\nwithin\r\nwithout\r\nwon\'t\r\nwould\r\nwouldn\'t\r\nyou\r\nyou\'d\r\nyou\'ll\r\nyou\'re\r\nyou\'ve\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nzero\'\r\n-','yes'),(2547,'wpil_link_table_is_created','1','yes'),(2548,'wpil_free_install_date','2024-02-20 23:48:36','yes'),(2549,'wpil_free_update_count','3','yes'),(2562,'wpil_2_report_last_updated','2024-02-20T23:49:16+00:00','yes'),(3931,'wp-short-pixel-download-protocol','http','yes'),(4821,'action_scheduler_hybrid_store_demarkation','2448','yes'),(4822,'schema-ActionScheduler_StoreSchema','6.0.1709085492','yes'),(4823,'schema-ActionScheduler_LoggerSchema','3.0.1709085492','yes'),(4828,'action_scheduler_lock_async-request-runner','1728594975','yes'),(4886,'wordfence_syncAttackDataAttempts','0','no'),(4887,'wordfence_syncingAttackData','0','no'),(4888,'wordfence_lastSyncAttackData','1728613223','no'),(12137,'wpseo_local_xml_update','2024-03-18T21:49:06+00:00','yes'),(12138,'widget_wpseo_show_address','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(12139,'widget_wpseo_show_map','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(12140,'widget_wpseo_show_openinghours','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(12141,'widget_wpseo_show_open_closed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(12142,'wpseo_local','a:91:{s:22:\"use_multiple_locations\";s:3:\"off\";s:36:\"multiple_locations_same_organization\";s:3:\"off\";s:35:\"multiple_locations_primary_location\";s:0:\"\";s:39:\"multiple_locations_shared_business_info\";s:3:\"off\";s:39:\"multiple_locations_shared_opening_hours\";s:3:\"off\";s:19:\"locations_taxo_slug\";s:0:\"\";s:13:\"business_type\";s:9:\"Physician\";s:16:\"location_address\";s:20:\"1567 Palisade Avenue\";s:18:\"location_address_2\";s:3:\"#3A\";s:13:\"location_city\";s:8:\"Fort Lee\";s:14:\"location_state\";s:10:\"New Jersey\";s:16:\"location_zipcode\";s:5:\"07024\";s:16:\"location_country\";s:2:\"US\";s:22:\"global_location_number\";s:0:\"\";s:14:\"location_phone\";s:16:\"+1(551) 201-1110\";s:18:\"location_phone_2nd\";s:0:\"\";s:12:\"location_fax\";s:0:\"\";s:14:\"location_email\";s:29:\"hello@atlantagynecomastia.com\";s:22:\"location_contact_email\";s:0:\"\";s:22:\"location_contact_phone\";s:0:\"\";s:12:\"location_url\";s:32:\"https://atlantagynecomastia.com/\";s:15:\"location_vat_id\";s:0:\"\";s:15:\"location_tax_id\";s:0:\"\";s:15:\"location_coc_id\";s:0:\"\";s:20:\"location_price_range\";s:2:\"$$\";s:28:\"location_currencies_accepted\";s:0:\"\";s:25:\"location_payment_accepted\";s:0:\"\";s:20:\"location_area_served\";s:0:\"\";s:19:\"location_coords_lat\";s:10:\"40.8478745\";s:20:\"location_coords_long\";s:11:\"-73.9700581\";s:14:\"locations_slug\";s:9:\"locations\";s:24:\"locations_label_singular\";s:8:\"Location\";s:22:\"locations_label_plural\";s:9:\"Locations\";s:14:\"sl_num_results\";i:10;s:12:\"closed_label\";s:0:\"\";s:18:\"hide_opening_hours\";s:3:\"off\";s:8:\"open_247\";s:3:\"off\";s:22:\"multiple_opening_hours\";s:3:\"off\";s:14:\"open_247_label\";s:0:\"\";s:14:\"open_24h_label\";s:0:\"\";s:17:\"opening_hours_24h\";s:3:\"off\";s:25:\"opening_hours_monday_from\";s:5:\"09:00\";s:23:\"opening_hours_monday_to\";s:5:\"17:00\";s:32:\"opening_hours_monday_second_from\";s:5:\"09:00\";s:30:\"opening_hours_monday_second_to\";s:5:\"17:00\";s:26:\"opening_hours_tuesday_from\";s:5:\"09:00\";s:24:\"opening_hours_tuesday_to\";s:5:\"19:00\";s:33:\"opening_hours_tuesday_second_from\";s:5:\"09:00\";s:31:\"opening_hours_tuesday_second_to\";s:5:\"17:00\";s:28:\"opening_hours_wednesday_from\";s:5:\"09:00\";s:26:\"opening_hours_wednesday_to\";s:5:\"17:00\";s:35:\"opening_hours_wednesday_second_from\";s:5:\"09:00\";s:33:\"opening_hours_wednesday_second_to\";s:5:\"17:00\";s:27:\"opening_hours_thursday_from\";s:5:\"11:00\";s:25:\"opening_hours_thursday_to\";s:5:\"19:00\";s:34:\"opening_hours_thursday_second_from\";s:5:\"09:00\";s:32:\"opening_hours_thursday_second_to\";s:5:\"17:00\";s:25:\"opening_hours_friday_from\";s:5:\"09:00\";s:23:\"opening_hours_friday_to\";s:5:\"15:00\";s:32:\"opening_hours_friday_second_from\";s:5:\"09:00\";s:30:\"opening_hours_friday_second_to\";s:5:\"17:00\";s:27:\"opening_hours_saturday_from\";s:6:\"closed\";s:25:\"opening_hours_saturday_to\";s:6:\"closed\";s:34:\"opening_hours_saturday_second_from\";s:6:\"closed\";s:32:\"opening_hours_saturday_second_to\";s:6:\"closed\";s:25:\"opening_hours_sunday_from\";s:6:\"closed\";s:23:\"opening_hours_sunday_to\";s:6:\"closed\";s:32:\"opening_hours_sunday_second_from\";s:6:\"closed\";s:30:\"opening_hours_sunday_second_to\";s:6:\"closed\";s:24:\"opening_hours_monday_24h\";s:3:\"off\";s:25:\"opening_hours_tuesday_24h\";s:3:\"off\";s:27:\"opening_hours_wednesday_24h\";s:3:\"off\";s:26:\"opening_hours_thursday_24h\";s:3:\"off\";s:24:\"opening_hours_friday_24h\";s:3:\"off\";s:26:\"opening_hours_saturday_24h\";s:3:\"off\";s:24:\"opening_hours_sunday_24h\";s:3:\"off\";s:17:\"location_timezone\";s:10:\"US/Eastern\";s:11:\"unit_system\";s:6:\"METRIC\";s:14:\"map_view_style\";s:6:\"HYBRID\";s:14:\"address_format\";s:20:\"address-state-postal\";s:15:\"default_country\";s:0:\"\";s:16:\"show_route_label\";s:0:\"\";s:15:\"detect_location\";s:3:\"off\";s:19:\"local_custom_marker\";s:0:\"\";s:21:\"local_api_key_browser\";s:0:\"\";s:13:\"local_api_key\";s:0:\"\";s:18:\"googlemaps_api_key\";s:0:\"\";s:21:\"local_enhanced_search\";s:2:\"no\";s:13:\"local_version\";s:4:\"15.3\";s:32:\"woocommerce_local_pickup_setting\";s:2:\"no\";s:27:\"dismiss_local_pickup_notice\";b:0;}','yes'),(12618,'recovery_mode_email_last_sent','1709930022','yes'),(19753,'_site_transient_yoast_translations_yoast-local-seo','a:2:{s:15:\"yoast-local-seo\";a:1:{s:12:\"translations\";a:33:{i:0;a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-04T14:14:10+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:83:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}i:1;a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-10T13:22:28+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:83:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}i:2;a:7:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-02T19:08:01+00:00\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-cs_CZ.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"cs\";i:1;s:3:\"ces\";}}i:3;a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:29:51+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}i:4;a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:30:12+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}i:5;a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-22T13:50:32+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}i:6;a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-10T14:13:19+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}i:7;a:7:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-20T13:18:27+00:00\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-en_CA.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}i:8;a:7:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-20T13:19:23+00:00\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-en_NZ.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}i:9;a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-10T14:30:17+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}i:10;a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-20T13:20:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:83:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}i:11;a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:30:01+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}i:12;a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:29:53+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}i:13;a:7:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-12-19T19:56:04+00:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:83:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-el.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"el\";i:1;s:3:\"ell\";}}i:14;a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-20T15:09:20+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}i:15;a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-23T08:42:22+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}i:16;a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-20T15:46:53+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}i:17;a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-16T08:27:08+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}i:18;a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:30:06+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}i:19;a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:30:09+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:83:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}i:20;a:7:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-20T13:20:04+00:00\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-fa_IR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fa\";i:1;s:3:\"fas\";}}i:21;a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-09T20:13:33+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}i:22;a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:30:15+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}i:23;a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:30:17+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}i:24;a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-28T06:20:34+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}i:25;a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-03T13:13:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}i:26;a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-07T21:18:05+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}i:27;a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-11T07:44:03+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}i:28;a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-01-23T10:52:22+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}i:29;a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2024-02-13T08:30:21+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}i:30;a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-10-01T20:57:30+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:86:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}i:31;a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-28T16:21:18+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:83:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}i:32;a:7:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:4:\"15.3\";s:7:\"updated\";s:25:\"2023-09-20T13:22:30+00:00\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:83:\"https://packages.translationspress.com/yoast/yoast-local-seo/yoast-local-seo-vi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"vi\";i:1;s:3:\"vie\";}}}}s:13:\"_last_checked\";i:1710742388;}','no'),(20327,'wp-short-pixel-protocol','https','yes'),(21928,'wpseo_tracking_last_request','1728594536','yes'),(28841,'wp-short-pixel-unlisted-counter','33','yes'),(29114,'_transient_timeout_wpseo_total_unindexed_general_items','1728734664','no'),(29115,'_transient_wpseo_total_unindexed_general_items','0','no'),(29276,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":3,\"critical\":2}','yes'),(29921,'wpr_rocket_cache_version','20220927','yes'),(29929,'wpr_rucss_used_css_version','20231031','yes'),(29933,'wp_rocket_debug','a:1:{s:20:\"last_rucss_job_added\";s:0:\"\";}','yes'),(29936,'wp_rocket_no_licence','0','yes'),(29937,'wp_rocket_last_base_url','aHR0cHM6Ly9hdGxhbnRhZ3luZWNvbWFzdGlhLmNvbS8=','yes'),(29940,'wp_rocket_settings','a:76:{s:12:\"cache_mobile\";i:1;s:19:\"purge_cron_interval\";i:10;s:15:\"purge_cron_unit\";s:15:\"HOUR_IN_SECONDS\";s:11:\"exclude_css\";a:0:{}s:21:\"optimize_css_delivery\";s:1:\"1\";s:26:\"remove_unused_css_safelist\";a:0:{}s:12:\"critical_css\";s:0:\"\";s:17:\"exclude_inline_js\";a:0:{}s:10:\"exclude_js\";a:0:{}s:16:\"exclude_defer_js\";a:0:{}s:8:\"delay_js\";i:1;s:19:\"delay_js_exclusions\";a:0:{}s:8:\"lazyload\";i:1;s:19:\"lazyload_css_bg_img\";s:1:\"1\";s:16:\"lazyload_iframes\";i:1;s:16:\"lazyload_youtube\";i:1;s:16:\"exclude_lazyload\";a:0:{}s:16:\"image_dimensions\";i:1;s:14:\"manual_preload\";i:1;s:20:\"preload_excluded_uri\";a:0:{}s:13:\"preload_links\";s:1:\"1\";s:12:\"dns_prefetch\";a:0:{}s:13:\"preload_fonts\";a:0:{}s:16:\"cache_reject_uri\";a:0:{}s:20:\"cache_reject_cookies\";a:0:{}s:15:\"cache_reject_ua\";a:0:{}s:17:\"cache_purge_pages\";a:0:{}s:19:\"cache_query_strings\";a:0:{}s:27:\"automatic_cleanup_frequency\";s:0:\"\";s:10:\"cdn_cnames\";a:0:{}s:8:\"cdn_zone\";a:0:{}s:16:\"cdn_reject_files\";a:0:{}s:17:\"control_heartbeat\";i:1;s:24:\"heartbeat_admin_behavior\";s:18:\"reduce_periodicity\";s:25:\"heartbeat_editor_behavior\";s:18:\"reduce_periodicity\";s:23:\"heartbeat_site_behavior\";s:18:\"reduce_periodicity\";s:16:\"cloudflare_email\";s:0:\"\";s:18:\"sucury_waf_api_key\";s:0:\"\";s:12:\"consumer_key\";s:8:\"2c173c35\";s:14:\"consumer_email\";s:29:\"charles.d.breitbart@gmail.com\";s:10:\"secret_key\";s:8:\"b958860b\";s:7:\"license\";s:10:\"1711980174\";s:16:\"secret_cache_key\";s:22:\"660abe8c34d42345495296\";s:14:\"minify_css_key\";s:22:\"663cf1a379d2d299631078\";s:13:\"minify_js_key\";s:22:\"663cf1a379d3a216655863\";s:7:\"version\";s:8:\"3.16.2.1\";s:23:\"cloudflare_old_settings\";s:0:\"\";s:9:\"cache_ssl\";i:1;s:19:\"minify_google_fonts\";i:1;s:5:\"emoji\";i:1;s:17:\"remove_unused_css\";i:1;s:9:\"async_css\";i:0;s:22:\"minify_concatenate_css\";s:0:\"\";s:18:\"cloudflare_api_key\";s:0:\"\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:16:\"async_css_mobile\";s:1:\"1\";s:17:\"cache_logged_user\";i:0;s:23:\"do_caching_mobile_files\";i:1;s:10:\"minify_css\";i:0;s:9:\"minify_js\";i:0;s:21:\"minify_concatenate_js\";i:0;s:12:\"defer_all_js\";i:0;s:18:\"database_revisions\";i:0;s:20:\"database_auto_drafts\";i:0;s:22:\"database_trashed_posts\";i:0;s:22:\"database_spam_comments\";i:0;s:25:\"database_trashed_comments\";i:0;s:23:\"database_all_transients\";i:0;s:24:\"database_optimize_tables\";i:0;s:26:\"schedule_automatic_cleanup\";i:0;s:21:\"sucury_waf_cache_sync\";i:0;s:3:\"cdn\";i:0;s:18:\"varnish_auto_purge\";i:0;s:28:\"delay_js_exclusions_selected\";a:0:{}s:39:\"delay_js_exclusions_selected_exclusions\";a:0:{}s:16:\"previous_version\";s:4:\"3.16\";}','yes'),(29973,'rocket_analytics_notice_displayed','1','yes'),(46264,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"admin@joltmedical.com\";s:7:\"version\";s:5:\"6.5.5\";s:9:\"timestamp\";i:1719294553;}','no'),(46277,'db_upgraded','','yes'),(46284,'can_compress_scripts','1','yes'),(76011,'ShortPixel-notices','a:1:{i:0;O:30:\"ShortPixel\\Notices\\NoticeModel\":15:{s:7:\"message\";s:156:\"Our Unlimited Plan can now be used for an unlimited number of domains for only $9.99/month.\r\nDiscover all the benefits today: https://shortpixel.com/pricing\";s:7:\"details\";a:0:{}s:4:\"code\";N;s:34:\"\0ShortPixel\\Notices\\NoticeModel\0id\";s:20:\"GlobalNotification46\";s:9:\"\0*\0viewed\";b:1;s:16:\"\0*\0is_persistent\";b:1;s:15:\"\0*\0is_dismissed\";b:0;s:17:\"\0*\0suppress_until\";N;s:18:\"\0*\0suppress_period\";i:2592000;s:18:\"\0*\0include_screens\";a:0:{}s:18:\"\0*\0exclude_screens\";a:0:{}s:12:\"is_removable\";b:1;s:11:\"messageType\";i:1;s:13:\"notice_action\";s:18:\"ShortPixel-notices\";s:11:\"\0*\0callback\";N;}}','yes'),(76042,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','no'),(103031,'action_scheduler_migration_status','complete','yes'),(104627,'new_admin_email','admin@joltmedical.com','yes'),(154780,'wpr_above_the_fold_version','20240313','yes'),(177111,'auto_update_plugins','a:16:{i:0;s:40:\"userway-accessibility-widget/userway.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:55:\"kadence-starter-templates/kadence-starter-templates.php\";i:3;s:41:\"kadence-blocks-pro/kadence-blocks-pro.php\";i:4;s:33:\"kadence-blocks/kadence-blocks.php\";i:5;s:27:\"kadence-pro/kadence-pro.php\";i:6;s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";i:7;s:23:\"wordfence/wordfence.php\";i:8;s:33:\"duplicate-post/duplicate-post.php\";i:9;s:24:\"wordpress-seo/wp-seo.php\";i:10;s:40:\"wordpress-seo-premium/wp-seo-premium.php\";i:11;s:25:\"wpseo-video/video-seo.php\";i:12;s:25:\"wpseo-local/local-seo.php\";i:13;s:39:\"wpseo-woocommerce/wpseo-woocommerce.php\";i:14;s:25:\"wpseo-news/wpseo-news.php\";i:15;s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";}','no'),(191534,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.6.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.6.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.6.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.6.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.4\";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.6.1.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.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.1\";s:7:\"version\";s:5:\"6.6.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1728632198;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no'),(192613,'wp-short-pixel-backgroundprocess','0','yes'),(368633,'_transient_timeout_wpr_dynamic_lists','1728914598','no'),(368634,'_transient_wpr_dynamic_lists','O:8:\"stdClass\":14:{s:28:\"rucss_inline_atts_exclusions\";a:18:{i:0;s:26:\"rocket-lazyload-inline-css\";i:1;s:35:\"divi-style-parent-inline-inline-css\";i:2;s:14:\"gsf-custom-css\";i:3;s:29:\"extra-style-inline-inline-css\";i:4;s:30:\"woodmart-inline-css-inline-css\";i:5;s:30:\"woodmart_shortcodes-custom-css\";i:6;s:29:\"rs-plugin-settings-inline-css\";i:7;s:28:\"divi-style-inline-inline-css\";i:8;s:27:\"tcb-post-list-dynamic-style\";i:9;s:6:\"n2-ss-\";i:10;s:6:\"wpcf7-\";i:11;s:32:\"siteorigin-panels-layouts-footer\";i:12;s:28:\"xstore-inline-css-inline-css\";i:13;s:17:\"assets.reviews.io\";i:14;s:8:\"ezoicCSS\";i:15;s:4:\"stk-\";i:16;s:28:\"rocket-lazyrender-inline-css\";i:17;s:13:\"umsMapStyles_\";}s:31:\"rucss_inline_content_exclusions\";a:48:{i:0;s:14:\".wp-container-\";i:1;s:13:\".wp-elements-\";i:2;s:16:\"#wpv-expandable-\";i:3;s:16:\".custom-content-\";i:4;s:5:\"#thb-\";i:5;s:16:\".et_pb_text_dap_\";i:6;s:24:\"#gdlr-core-shape-divider\";i:7;s:8:\"#ultib3-\";i:8;s:10:\".uvc-wrap-\";i:9;s:26:\".jet-listing-dynamic-post-\";i:10;s:6:\".vcex_\";i:11;s:20:\".wprm-advanced-list-\";i:12;s:9:\".adsslot_\";i:13;s:7:\".jnews_\";i:14;s:21:\".cp-info-bar.content-\";i:15;s:16:\"#stockie-custom-\";i:16;s:13:\"#ohio-custom-\";i:17;s:5:\".uid-\";i:18;s:15:\"#wpfMainWrapper\";i:19;s:7:\"#penci_\";i:20;s:7:\"#penci-\";i:21;s:7:\".wpbs_s\";i:22;s:8:\"#apcore_\";i:23;s:8:\"#apress_\";i:24;s:6:\"#zolo_\";i:25;s:30:\".extended-products-grid#style-\";i:26;s:27:\".preloader#style-preloader-\";i:27;s:16:\".thegem-heading-\";i:28;s:15:\".thegem-button-\";i:29;s:15:\".thegem-custom-\";i:30;s:14:\".thegem-popup-\";i:31;s:9:\"#pattern-\";i:32;s:20:\"#thegem-video-frame-\";i:33;s:8:\"#thegem-\";i:34;s:14:\".qwery_inline_\";i:35;s:19:\".dcgd_submit_button\";i:36;s:8:\".irs-bar\";i:37;s:14:\".gallery-grid-\";i:38;s:13:\".cmplz-hidden\";i:39;s:13:\"#sqbquizouter\";i:40;s:19:\"#start_sqbquizouter\";i:41;s:13:\".flo-header--\";i:42;s:19:\".trx_addons_inline_\";i:43;s:21:\".wpp-cardview-compact\";i:44;s:13:\".e-loop-item-\";i:45;s:26:\".tiered-pricing-plain-text\";i:46;s:26:\".vc_cta3_content-container\";i:47;s:21:\".vc_btn-gradient-btn-\";}s:26:\"defer_js_inline_exclusions\";a:10:{i:0;s:16:\"DOMContentLoaded\";i:1;s:14:\"document.write\";i:2;s:22:\"window.lazyLoadOptions\";i:3;s:5:\"N.N2_\";i:4;s:18:\"rev_slider_wrapper\";i:5;s:18:\"FB3D_CLIENT_LOCALE\";i:6;s:19:\"ewww_webp_supported\";i:7;s:21:\"anr_captcha_field_div\";i:8;s:24:\"renderInvisibleReCaptcha\";i:9;s:17:\"bookingInProgress\";}s:28:\"defer_js_external_exclusions\";a:37:{i:0;s:15:\"gist.github.com\";i:1;s:22:\"content.jwplatform.com\";i:2;s:14:\"js.hsforms.net\";i:3;s:16:\"www.uplaunch.com\";i:4;s:20:\"google.com/recaptcha\";i:5;s:20:\"widget.reviews.co.uk\";i:6;s:29:\"verify.authorize.net/anetseal\";i:7;s:43:\"lib/admin/assets/lib/webfont/webfont.min.js\";i:8;s:18:\"app.mailerlite.com\";i:9;s:17:\"widget.reviews.io\";i:10;s:35:\"simplybook.(.*)/v2/widget/widget.js\";i:11;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:12;s:79:\"/wp-content/plugins/wpfront-notification-bar/js/wpfront-notification-bar(.*).js\";i:13;s:64:\"/wp-content/plugins/oxygen/component-framework/vendor/aos/aos.js\";i:14;s:70:\"/wp-content/plugins/ewww-image-optimizer/includes/check-webp(.min)?.js\";i:15;s:34:\"static.mailerlite.com/data/(.*).js\";i:16;s:37:\"cdn.voxpow.com/static/libs/v1/(.*).js\";i:17;s:40:\"cdn.voxpow.com/media/trackers/js/(.*).js\";i:18;s:15:\"use.typekit.net\";i:19;s:15:\"www.idxhome.com\";i:20;s:44:\"/wp-includes/js/dist/vendor/lodash(.min)?.js\";i:21;s:40:\"/wp-includes/js/dist/api-fetch(.min)?.js\";i:22;s:35:\"/wp-includes/js/dist/i18n(.min)?.js\";i:23;s:49:\"/wp-includes/js/dist/vendor/wp-polyfill(.min)?.js\";i:24;s:34:\"/wp-includes/js/dist/url(.min)?.js\";i:25;s:36:\"/wp-includes/js/dist/hooks(.min)?.js\";i:26;s:21:\"www.paypal.com/sdk/js\";i:27;s:18:\"js-eu1.hsforms.net\";i:28;s:18:\"yanovis.Voucher.js\";i:29;s:76:\"/carousel-upsells-and-related-product-for-woocommerce/assets/js/glide.min.js\";i:30;s:15:\"use.typekit.com\";i:31;s:39:\"/artale/modules/kirki/assets/webfont.js\";i:32;s:21:\"/api/scripts/lb_cs.js\";i:33;s:27:\"js.hscta.net/cta/current.js\";i:34;s:16:\"widget.refari.co\";i:35;s:20:\"player.vdocipher.com\";i:36;s:60:\"/wp-content/plugins/wp-rocket/assets/js/lcp-beacon(.min)?.js\";}s:19:\"delay_js_exclusions\";a:73:{i:0;s:10:\"nowprocket\";i:1;s:31:\"/wp-includes/js/wp-embed.min.js\";i:2;s:15:\"lazyLoadOptions\";i:3;s:13:\"lazyLoadThumb\";i:4;s:33:\"wp-rocket/assets/js/lazyload/(.*)\";i:5;s:30:\"et_core_page_resource_fallback\";i:6;s:25:\"window.\\$us === undefined\";i:7;s:8:\"js-extra\";i:8;s:20:\"fusionNavIsCollapsed\";i:9;s:26:\"/assets/js/smush-lazy-load\";i:10;s:13:\"eio_lazy_vars\";i:11;s:34:\"\\/lazysizes(\\.min|-pre|-post)?\\.js\";i:12;s:44:\"document\\.body\\.classList\\.remove\\(\"no-js\"\\)\";i:13;s:64:\"document\\.documentElement\\.className\\.replace\\( \'no-js\', \'js\' \\)\";i:14;s:17:\"et_animation_data\";i:15;s:16:\"wpforms_settings\";i:16;s:11:\"var nfForms\";i:17;s:14:\"//stats.wp.com\";i:18;s:9:\"_stq.push\";i:19;s:29:\"fluent_form_ff_form_instance_\";i:20;s:9:\"cpLoadCSS\";i:21;s:13:\"ninja_column_\";i:22;s:16:\"var rbs_gallery_\";i:23;s:12:\"var lepopup_\";i:24;s:28:\"var billing_additional_field\";i:25;s:10:\"var gtm4wp\";i:26;s:21:\"var dataLayer_content\";i:27;s:54:\"/ewww-image-optimizer/includes/load[_-]webp(\\.min)?.js\";i:28;s:52:\"/ewww-image-optimizer/includes/check-webp(\\.min)?.js\";i:29;s:19:\"ewww_webp_supported\";i:30;s:32:\"/dist/js/browser-redirect/app.js\";i:31;s:31:\"/perfmatters/js/lazyload.min.js\";i:32;s:16:\"lazyLoadInstance\";i:33;s:27:\"scripts.mediavine.com/tags/\";i:34;s:17:\"initCubePortfolio\";i:35;s:9:\"simpli.fi\";i:36;s:17:\"gforms_recaptcha_\";i:37;s:57:\"/jetpack-boost/vendor/automattic/jetpack-lazy-images/(.*)\";i:38;s:30:\"jetpack-lazy-images-js-enabled\";i:39;s:26:\"jetpack-boost-critical-css\";i:40;s:24:\"wpformsRecaptchaCallback\";i:41;s:20:\"booking-suedtirol-js\";i:42;s:26:\"wpcp_css_disable_selection\";i:43;s:41:\"/gravityforms/js/conditional_logic.min.js\";i:44;s:34:\"statcounter.com/counter/counter.js\";i:45;s:14:\"var sc_project\";i:46;s:59:\"/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/(.*)\";i:47;s:55:\"/themify-builder/themify/js/modules/fallback(\\.min)?.js\";i:48;s:16:\"handlePixMessage\";i:49;s:16:\"var corner_video\";i:50;s:26:\"cdn.pixfuture.com/hb_v2.js\";i:51;s:25:\"cdn.pixfuture.com/pbix.js\";i:52;s:43:\"served-by.pixfuture.com/www/delivery/ads.js\";i:53;s:64:\"served-by.pixfuture.com/www/delivery/headerbid_sticky_refresh.js\";i:54;s:35:\"serv-vdo.pixfuture.com/vpaid/ads.js\";i:55;s:14:\"wprRemoveCPCSS\";i:56;s:19:\"window.jdgmSettings\";i:57;s:67:\"/photonic/include/js/front-end/nomodule/photonic-baguettebox.min.js\";i:58;s:52:\"/photonic/include/ext/baguettebox/baguettebox.min.js\";i:59;s:27:\"window.wsf_form_json_config\";i:60;s:20:\"et_link_options_data\";i:61;s:19:\"FuseboxPlayerAPIKey\";i:62;s:27:\"js.hscta.net/cta/current.js\";i:63;s:14:\"hbspt.cta.load\";i:64;s:27:\"consent.cookiebot.com/uc.js\";i:65;s:53:\"/woofilter-pro/woofilterpro/js/ion.rangeSlider.min.js\";i:66;s:21:\"barra.r7.com/barra.js\";i:67;s:26:\"rocket_css_lazyload_launch\";i:68;s:16:\"#wpr-lazyload-bg\";i:69;s:60:\"/wp-content/plugins/wp-rocket/assets/js/lcp-beacon(.min)?.js\";i:70;s:15:\"rocket_lcp_data\";i:71;s:18:\"rocket_beacon_data\";i:72;s:60:\"/wp-content/plugins/wp-rocket/assets/js/wpr-beacon(.min)?.js\";}s:18:\"js_minify_external\";a:126:{i:0;s:8:\"html5.js\";i:1;s:11:\"show_ads.js\";i:2;s:14:\"histats.com/js\";i:3;s:21:\"ws.amazon.com/widgets\";i:4;s:5:\"/ads/\";i:5;s:17:\"intensedebate.com\";i:6;s:20:\"scripts.chitika.net/\";i:7;s:12:\"jotform.com/\";i:8;s:15:\"gist.github.com\";i:9;s:16:\"forms.aweber.com\";i:10;s:21:\"video.unrulymedia.com\";i:11;s:12:\"stats.wp.com\";i:12;s:19:\"stats.wordpress.com\";i:13;s:23:\"widget.rafflecopter.com\";i:14;s:29:\"widget-prime.rafflecopter.com\";i:15;s:23:\"releases.flowplayer.org\";i:16;s:13:\"c.ad6media.fr\";i:17;s:19:\"cdn.stickyadstv.com\";i:18;s:12:\"www.smava.de\";i:19;s:20:\"contextual.media.net\";i:20;s:19:\"app.getresponse.com\";i:21;s:24:\"adserver.reklamstore.com\";i:22;s:9:\"s0.wp.com\";i:23;s:16:\"wprp.zemanta.com\";i:24;s:21:\"files.bannersnack.com\";i:25;s:22:\"smarticon.geotrust.com\";i:26;s:11:\"js.gleam.io\";i:27;s:25:\"ir-na.amazon-adsystem.com\";i:28;s:19:\"web.ventunotech.com\";i:29;s:20:\"verify.authorize.net\";i:30;s:21:\"ads.themoneytizer.com\";i:31;s:20:\"embed.finanzcheck.de\";i:32;s:20:\"imagesrv.adition.com\";i:33;s:15:\"js.juicyads.com\";i:34;s:18:\"form.jotformeu.com\";i:35;s:15:\"speakerdeck.com\";i:36;s:22:\"content.jwplatform.com\";i:37;s:24:\"ads.investingchannel.com\";i:38;s:13:\"app.ecwid.com\";i:39;s:20:\"www.industriejobs.de\";i:40;s:14:\"s.gravatar.com\";i:41;s:21:\"googlesyndication.com\";i:42;s:13:\"a.optmstr.com\";i:43;s:14:\"a.optmnstr.com\";i:44;s:13:\"a.opmnstr.com\";i:45;s:12:\"adthrive.com\";i:46;s:13:\"mediavine.com\";i:47;s:14:\"js.hsforms.net\";i:48;s:20:\"googleadservices.com\";i:49;s:16:\"f.convertkit.com\";i:50;s:16:\"recaptcha/api.js\";i:51;s:12:\"mailmunch.co\";i:52;s:20:\"apps.shareaholic.com\";i:53;s:28:\"dsms0mj1bbhn4.cloudfront.net\";i:54;s:12:\"nutrifox.com\";i:55;s:13:\"code.tidio.co\";i:56;s:16:\"www.uplaunch.com\";i:57;s:24:\"widget.reviewability.com\";i:58;s:36:\"embed-cdn.gettyimages.com/widgets.js\";i:59;s:18:\"app.mailerlite.com\";i:60;s:7:\"ck.page\";i:61;s:28:\"cdn.jsdelivr.net/gh/AmauriC/\";i:62;s:39:\"static.klaviyo.com/onsite/js/klaviyo.js\";i:63;s:32:\"a.omappapi.com/app/js/api.min.js\";i:64;s:19:\"static.zdassets.com\";i:65;s:58:\"feedbackcompany.com/widgets/feedback-company-widget.min.js\";i:66;s:17:\"widget.gleamjs.io\";i:67;s:14:\"phonewagon.com\";i:68;s:35:\"simplybook.asia/v2/widget/widget.js\";i:69;s:33:\"simplybook.it/v2/widget/widget.js\";i:70;s:33:\"simplybook.me/v2/widget/widget.js\";i:71;s:48:\"static.botsrv.com/website/js/widget2.36cf1446.js\";i:72;s:27:\"static.mailerlite.com/data/\";i:73;s:14:\"cdn.voxpow.com\";i:74;s:16:\"loader.knack.com\";i:75;s:46:\"embed.lpcontent.net/leadboxes/current/embed.js\";i:76;s:52:\"cc.cdn.civiccomputing.com/9/cookieControl-9.x.min.js\";i:77;s:21:\"cse.google.com/cse.js\";i:78;s:19:\"kit.fontawesome.com\";i:79;s:51:\"cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js\";i:80;s:46:\"static.leadpages.net/leadbars/current/embed.js\";i:81;s:27:\"booqable.com/v2/booqable.js\";i:82;s:18:\"googleoptimize.com\";i:83;s:52:\"cdna.hubpeople.com/js/widget_standalone_two_modes.js\";i:84;s:18:\"s3.tradingview.com\";i:85;s:26:\"www.vbt.io/ext/vbtforms.js\";i:86;s:16:\"cdn.callrail.com\";i:87;s:40:\"documentcloud.adobe.com/view-sdk/main.js\";i:88;s:21:\"static.cleverpush.com\";i:89;s:15:\"js.afterpay.com\";i:90;s:33:\"cdn.enable.co.il/licenses/enable-\";i:91;s:21:\"hcaptcha.com/1/api.js\";i:92;s:46:\"voucher.getavo.it/public/js/yanovis.Voucher.js\";i:93;s:18:\"js-eu1.hsforms.net\";i:94;s:34:\"statcounter.com/counter/counter.js\";i:95;s:11:\"snapppt.com\";i:96;s:15:\"use.typekit.com\";i:97;s:35:\"secure.gravatar.com/js/gprofiles.js\";i:98;s:32:\"cdn.jsdelivr.net/npm/hockeystack\";i:99;s:22:\"widget.prod.faslet.net\";i:100;s:31:\"ga.getresponse.com/script/ga.js\";i:101;s:16:\"cognitoforms.com\";i:102;s:15:\"usercentrics.eu\";i:103;s:16:\"cdn.amcharts.com\";i:104;s:5:\"umami\";i:105;s:20:\"cdn.popt.in/pixel.js\";i:106;s:9:\"m2d.m2.ai\";i:107;s:11:\"pubguru.net\";i:108;s:13:\"trustindex.io\";i:109;s:37:\"cdnjs.cloudflare.com/ajax/libs/prism/\";i:110;s:25:\"podigee-podcast-player.js\";i:111;s:24:\"tarteaucitron.io/load.js\";i:112;s:29:\"osm.klarnaservices.com/lib.js\";i:113;s:25:\"mein.clickskeks.at/app.js\";i:114;s:21:\"barra.r7.com/barra.js\";i:115;s:16:\"widget.refari.co\";i:116;s:20:\"widget.reviews.co.uk\";i:117;s:20:\"player.vdocipher.com\";i:118;s:26:\"www.instagram.com/embed.js\";i:119;s:13:\"smartframe.io\";i:120;s:36:\"challenges.cloudflare.com/turnstile/\";i:121;s:20:\"script.roboassist.ai\";i:122;s:16:\"cdn.hu-manity.co\";i:123;s:56:\"daumcdn.net/mapjsapi/bundle/postcode/prod/postcode.v2.js\";i:124;s:27:\"consent.cookiebot.com/uc.js\";i:125;s:23:\"umstats.tools.coolw.xyz\";}s:21:\"js_move_after_combine\";a:106:{i:0;s:15:\"map_fusion_map_\";i:1;s:13:\"ec:addProduct\";i:2;s:16:\"ec:addImpression\";i:3;s:30:\"clear_better_facebook_comments\";i:4;s:29:\"vc-row-destroy-equal-heights-\";i:5;s:14:\"dfd-icon-list-\";i:6;s:12:\"SFM_template\";i:7;s:14:\"WLTChangeState\";i:8;s:9:\"wlt_star_\";i:9;s:17:\"wlt_pop_distance_\";i:10;s:14:\"smart_list_tip\";i:11;s:12:\"gd-wgt-pagi-\";i:12;s:11:\"data-rf-id=\";i:13;s:7:\"tvc_po=\";i:14;s:10:\"scrapeazon\";i:15;s:10:\"startclock\";i:16;s:22:\"it_logo_field_owl-box_\";i:17;s:15:\"td_live_css_uid\";i:18;s:17:\"wpvl_paramReplace\";i:19;s:11:\"tdAjaxCount\";i:20;s:9:\"mec_skin_\";i:21;s:4:\"_wca\";i:22;s:8:\"_taboola\";i:23;s:17:\"fbq(\'trackCustom\'\";i:24;s:11:\"fbq(\'track\'\";i:25;s:10:\"data.token\";i:26;s:7:\"sharrre\";i:27;s:19:\"dfads_ajax_load_ads\";i:28;s:13:\"tie_postviews\";i:29;s:10:\"wmp_update\";i:30;s:18:\"h5ab-print-article\";i:31;s:17:\"gform_ajax_frame_\";i:32;s:17:\"gform_post_render\";i:33;s:14:\"mts_view_count\";i:34;s:15:\"act_css_tooltip\";i:35;s:10:\"window.SLB\";i:36;s:14:\"wpt_view_count\";i:37;s:11:\"var dateNow\";i:38;s:16:\"gallery_product_\";i:39;s:21:\".flo-block-slideshow-\";i:40;s:17:\"data=\'api-key=ct-\";i:41;s:20:\"ip_common_function()\";i:42;s:31:\"(\"style#gsf-custom-css\").append\";i:43;s:22:\"a3revWCDynamicGallery_\";i:44;s:24:\"#owl-carousel-instagram-\";i:45;s:19:\"window.FlowFlowOpts\";i:46;s:16:\"jQuery(\'.td_uid_\";i:47;s:16:\"jQuery(\".slider-\";i:48;s:18:\"#dfd-vcard-widget-\";i:49;s:21:\"#sf-instagram-widget-\";i:50;s:18:\".woocommerce-tabs-\";i:51;s:16:\"penci_megamenu__\";i:52;s:18:\"vc_prepareHoverBox\";i:53;s:16:\"wp-temp-form-div\";i:54;s:25:\"_wswebinarsystem_already_\";i:55;s:23:\"#views-extra-css\").text\";i:56;s:20:\"fusetag.setTargeting\";i:57;s:20:\"hit.uptrendsdata.com\";i:58;s:27:\"callback:window.renderBadge\";i:59;s:29:\"test_run_nf_conditional_logic\";i:60;s:9:\"cb_nombre\";i:61;s:12:\"$(\'.fl-node-\";i:62;s:24:\"function($){google_maps_\";i:63;s:14:\"$(\"#myCarousel\";i:64;s:18:\"et_animation_data=\";i:65;s:13:\"current_url=\"\";i:66;s:44:\"CustomEvent.prototype=window.Event.prototype\";i:67;s:26:\"electro-wc-product-gallery\";i:68;s:14:\"woof_is_mobile\";i:69;s:20:\"jQuery(\'.videonextup\";i:70;s:10:\"wpp_params\";i:71;s:24:\"us.templateDirectoryUri=\";i:72;s:17:\".fat-gallery-item\";i:73;s:10:\".ratingbox\";i:74;s:33:\"user_rating.prototype.eraseCookie\";i:75;s:23:\"test_run_nf_conditional\";i:76;s:26:\"dpsp-networks-btns-wrapper\";i:77;s:19:\"pa_woo_product_info\";i:78;s:35:\"sharing_enabled_on_post_via_metabox\";i:79;s:22:\"#product-search-field-\";i:80;s:19:\"GOTMLS_login_offset\";i:81;s:40:\"berocket_aapf_time_to_fix_products_style\";i:82;s:27:\"window.vc_googleMapsPointer\";i:83;s:8:\"sinceID_\";i:84;s:31:\"#ut-background-video-ut-section\";i:85;s:26:\"+window.comment_tab_width+\";i:86;s:19:\"dfd-button-hover-in\";i:87;s:21:\"wpseo-address-wrapper\";i:88;s:24:\"platform.stumbleupon.com\";i:89;s:27:\"#woo_pp_ec_button_mini_cart\";i:90;s:14:\"#supercarousel\";i:91;s:10:\"blockClass\";i:92;s:11:\"tdbMenuItem\";i:93;s:13:\"tdbSearchItem\";i:94;s:17:\"best_seller_badge\";i:95;s:24:\"jQuery(\'#product-top-bar\";i:96;s:8:\"fb_desc-\";i:97;s:21:\"FC_regenerate_captcha\";i:98;s:34:\"wp_post_blocks_vars.listed_posts=[\";i:99;s:12:\"captcha-hash\";i:100;s:9:\"mapdata={\";i:101;s:11:\".ywpc-char-\";i:102;s:17:\").countdowntimer(\";i:103;s:16:\"jQuery(\"#td_uid_\";i:104;s:14:\"find(\'#td_uid_\";i:105;s:22:\"variation_estimate_msg\";}s:18:\"js_excluded_inline\";a:315:{i:0;s:14:\"document.write\";i:1;s:9:\"google_ad\";i:2;s:9:\"edToolbar\";i:3;s:4:\"gtag\";i:4;s:9:\"_gaq.push\";i:5;s:5:\"_gaLt\";i:6;s:21:\"GoogleAnalyticsObject\";i:7;s:17:\"syntaxhighlighter\";i:8;s:11:\"adsbygoogle\";i:9;s:7:\"ci_cap_\";i:10;s:4:\"_stq\";i:11;s:5:\"nonce\";i:12;s:7:\"post_id\";i:13;s:8:\"LogHuman\";i:14;s:15:\"idcomments_acct\";i:15;s:9:\"ch_client\";i:16;s:11:\"sc_online_t\";i:17;s:4:\"_stq\";i:18;s:17:\"bannersnack_embed\";i:19;s:15:\"vtn_player_type\";i:20;s:13:\"ven_video_key\";i:21;s:15:\"ANS_customer_id\";i:22;s:7:\"tdBlock\";i:23;s:12:\"tdLocalCache\";i:24;s:11:\"wpRestNonce\";i:25;s:6:\"\"url\":\";i:26;s:15:\"lazyLoadOptions\";i:27;s:8:\"adthrive\";i:28;s:7:\"loadCSS\";i:29;s:17:\"google_tag_params\";i:30;s:13:\"clicky_custom\";i:31;s:15:\"clicky_site_ids\";i:32;s:14:\"NSLPopupCenter\";i:33;s:4:\"_paq\";i:34;s:3:\"gtm\";i:35;s:9:\"dataLayer\";i:36;s:13:\"RecaptchaLoad\";i:37;s:20:\"WPCOM_sharing_counts\";i:38;s:22:\"jetpack_remote_comment\";i:39;s:15:\"subscribe-field\";i:40;s:9:\"contextly\";i:41;s:7:\"_mmunch\";i:42;s:14:\"gt_request_uri\";i:43;s:12:\"doGTranslate\";i:44;s:8:\"docTitle\";i:45;s:17:\"bs_ajax_paginate_\";i:46;s:20:\"bs_deferred_loading_\";i:47;s:22:\"theChampRedirectionUrl\";i:48;s:20:\"theChampFBCommentUrl\";i:49;s:23:\"theChampTwitterRedirect\";i:50;s:25:\"theChampRegRedirectionUrl\";i:51;s:14:\"ESSB_CACHE_URL\";i:52;s:30:\"oneall_social_login_providers_\";i:53;s:22:\"betterads_screen_width\";i:54;s:40:\"woocommerce_wishlist_add_to_wishlist_url\";i:55;s:21:\"arf_conditional_logic\";i:56;s:27:\"heateorSsHorSharingShortUrl\";i:57;s:8:\"TL_Const\";i:58;s:23:\"bimber_front_microshare\";i:59;s:17:\"setAttribute(\"id\"\";i:60;s:18:\"setAttribute( \"id\"\";i:61;s:14:\"TribeEventsPro\";i:62;s:14:\"peepsotimedata\";i:63;s:9:\"wphc_data\";i:64;s:10:\"hc_rand_id\";i:65;s:7:\"RBL_ADD\";i:66;s:18:\"AfsAnalyticsObject\";i:67;s:18:\"_thriveCurrentPost\";i:68;s:13:\"esc_login_url\";i:69;s:18:\"fwduvpMainPlaylist\";i:70;s:26:\"Bibblio.initRelatedContent\";i:71;s:9:\"showUFC()\";i:72;s:8:\"#iphorm-\";i:73;s:7:\"#fancy-\";i:74;s:13:\"ult-carousel-\";i:75;s:17:\"theChampLJAuthUrl\";i:76;s:6:\"f._fbq\";i:77;s:10:\"Insticator\";i:78;s:15:\"w2dc_js_objects\";i:79;s:11:\"cherry_ajax\";i:80;s:9:\"ad_block_\";i:81;s:23:\"elementorFrontendConfig\";i:82;s:5:\"zeen_\";i:83;s:16:\"disqusIdentifier\";i:84;s:14:\"currentAjaxUrl\";i:85;s:27:\"geodir_event_call_calendar_\";i:86;s:8:\"atatags-\";i:87;s:18:\"hbspt.forms.create\";i:88;s:19:\"function(c,h,i,m,p)\";i:89;s:11:\"dataTable({\";i:90;s:12:\"rankMath = {\";i:91;s:10:\"_atrk_opts\";i:92;s:16:\"quicklinkOptions\";i:93;s:11:\"ct_checkjs_\";i:94;s:18:\"WP_Statistics_http\";i:95;s:12:\"penci_block_\";i:96;s:15:\"omapi_localized\";i:97;s:10:\"omapi_data\";i:98;s:15:\"OptinMonsterApp\";i:99;s:9:\"tminusnow\";i:100;s:7:\"nfForms\";i:101;s:18:\"galleries.gallery_\";i:102;s:14:\"wcj_evt.prodID\";i:103;s:19:\"advads_tracking_ads\";i:104;s:28:\"advadsGATracking.postContext\";i:105;s:14:\"woopack_config\";i:106;s:14:\"ulp_content_id\";i:107;s:26:\"wp-cumulus/tagcloud.swf?r=\";i:108;s:24:\"ctSetCookie(\'ct_checkjs\'\";i:109;s:20:\"woof_really_curr_tax\";i:110;s:17:\"uLogin.customInit\";i:111;s:32:\"i18n_no_matching_variations_text\";i:112;s:22:\"alsp_map_markers_attrs\";i:113;s:13:\"var inc_opt =\";i:114;s:13:\"iworks_upprev\";i:115;s:19:\"yith_wcevti_tickets\";i:116;s:27:\"window.metrilo.ensure_cbuid\";i:117;s:13:\"metrilo.event\";i:118;s:19:\"wordpress_page_root\";i:119;s:9:\"wcct_info\";i:120;s:20:\"Springbot.product_id\";i:121;s:17:\"pysWooProductData\";i:122;s:11:\"dfd-heading\";i:123;s:8:\"owl=$(\"#\";i:124;s:14:\"penci_megamenu\";i:125;s:12:\"fts_security\";i:126;s:19:\"algoliaAutocomplete\";i:127;s:22:\"avia_framework_globals\";i:128;s:23:\"tabs.easyResponsiveTabs\";i:129;s:20:\"searchlocationHeader\";i:130;s:16:\"yithautocomplete\";i:131;s:19:\"data-parallax-speed\";i:132;s:14:\"currency_data=\";i:133;s:11:\"cedexisData\";i:134;s:23:\"function reenableButton\";i:135;s:12:\"#wpnbio-show\";i:136;s:29:\"e.Newsletter2GoTrackingObject\";i:137;s:15:\"var categories_\";i:138;s:14:\"\"+nRemaining+\"\";i:139;s:20:\"cartsguru_cart_token\";i:140;s:21:\"after_share_easyoptin\";i:141;s:18:\"location_data.push\";i:142;s:30:\"thirstyFunctions.isThirstyLink\";i:143;s:23:\"styles: \' #custom-menu-\";i:144;s:20:\"function svc_center_\";i:145;s:25:\"#svc_carousel2_container_\";i:146;s:11:\"advads.move\";i:147;s:9:\"elementid\";i:148;s:14:\"advads_has_ads\";i:149;s:14:\"wpseo_map_init\";i:150;s:20:\"mdf_current_page_url\";i:151;s:12:\"tptn_tracker\";i:152;s:20:\"dpsp_pin_button_data\";i:153;s:27:\"searchwp_live_search_params\";i:154;s:10:\"wpp_params\";i:155;s:21:\"top.location,thispage\";i:156;s:18:\"selection+pagelink\";i:157;s:20:\"ic_window_resolution\";i:158;s:11:\"PHP.wp_p_id\";i:159;s:29:\"ShopifyBuy.UI.onReady(client)\";i:160;s:16:\"orig_request_uri\";i:161;s:16:\"gie.widgets.load\";i:162;s:11:\"Adman.Flash\";i:163;s:11:\"PHP.wp_p_id\";i:164;s:26:\"window.broadstreetKeywords\";i:165;s:15:\"var productId =\";i:166;s:16:\"var flatsomeVars\";i:167;s:21:\"wc_product_block_data\";i:168;s:21:\"static.mailerlite.com\";i:169;s:10:\"amzn_assoc\";i:170;s:22:\"_bs_getParameterByName\";i:171;s:9:\"_stq.push\";i:172;s:9:\"h._remove\";i:173;s:16:\"var FlowFlowOpts\";i:174;s:14:\"var WCPFData =\";i:175;s:14:\"var _beeketing\";i:176;s:16:\"var _statcounter\";i:177;s:13:\"var actions =\";i:178;s:15:\"var current_url\";i:179;s:15:\"var object_name\";i:180;s:19:\"var the_ajax_script\";i:181;s:28:\"var wc_cart_fragments_params\";i:182;s:22:\"var woocommerce_params\";i:183;s:16:\"var wpml_cookies\";i:184;s:21:\"wc_add_to_cart_params\";i:185;s:26:\"window.broadstreetKeywords\";i:186;s:35:\"window.wc_ga_pro.available_gateways\";i:187;s:12:\"xa.prototype\";i:188;s:21:\"HOUZEZ_ajaxcalls_vars\";i:189;s:17:\"w2dc_maps_objects\";i:190;s:26:\"w2dc_controller_args_array\";i:191;s:22:\"w2dc_map_markers_attrs\";i:192;s:9:\"YT.Player\";i:193;s:9:\"WPFC.data\";i:194;s:23:\"function current_video_\";i:195;s:12:\"var videodiv\";i:196;s:22:\"var slider_wppasrotate\";i:197;s:8:\"wppas_ga\";i:198;s:14:\"var blockClass\";i:199;s:13:\"tarteaucitron\";i:200;s:21:\"pw_brand_product_list\";i:201;s:15:\"tminusCountDown\";i:202;s:23:\"pysWooSelectContentData\";i:203;s:13:\"wpvq_ans89733\";i:204;s:12:\"_isp_version\";i:205;s:16:\"price_range_data\";i:206;s:29:\"window.FeedbackCompanyWidgets\";i:207;s:22:\"woocs_current_currency\";i:208;s:30:\"woo_variation_swatches_options\";i:209;s:31:\"woocommerce_price_slider_params\";i:210;s:12:\"scriptParams\";i:211;s:19:\"form-adv-pagination\";i:212;s:23:\"borlabsCookiePrioritize\";i:213;s:21:\"urls_wpwidgetpolylang\";i:214;s:14:\"quickViewNonce\";i:215;s:22:\"frontendscripts_params\";i:216;s:21:\"nj-facebook-messenger\";i:217;s:20:\"var fb_mess_position\";i:218;s:36:\"init_particles_row_background_script\";i:219;s:15:\"setREVStartSize\";i:220;s:7:\"fl-node\";i:221;s:11:\"PPAccordion\";i:222;s:10:\"soliloquy_\";i:223;s:25:\"wprevpublicjs_script_vars\";i:224;s:19:\"DTGS_NONCE_FRONTEND\";i:225;s:17:\"et_animation_data\";i:226;s:17:\"archives-dropdown\";i:227;s:15:\"loftloaderCache\";i:228;s:17:\"SmartSliderSimple\";i:229;s:14:\"var nectarLove\";i:230;s:10:\"var incOpt\";i:231;s:33:\"RocketBrowserCompatibilityChecker\";i:232;s:24:\"RocketPreloadLinksConfig\";i:233;s:18:\"placementVersionId\";i:234;s:11:\"var useEdit\";i:235;s:23:\"var DTGS_NONCE_FRONTEND\";i:236;s:8:\"n2jQuery\";i:237;s:26:\"et_core_api_spam_recaptcha\";i:238;s:6:\"cnArgs\";i:239;s:14:\"__CF$cv$params\";i:240;s:17:\"trustbox_settings\";i:241;s:5:\"aepro\";i:242;s:10:\"cdn.jst.ai\";i:243;s:25:\"w2dc_fields_in_categories\";i:244;s:21:\"jetMenuPublicSettings\";i:245;s:17:\"JetTricksSettings\";i:246;s:10:\"aepc_pixel\";i:247;s:20:\"avadaWooCommerceVars\";i:248;s:7:\"var isb\";i:249;s:9:\"fcaPcPost\";i:250;s:10:\"csrf_token\";i:251;s:24:\"icwp_wpsf_vars_lpantibot\";i:252;s:11:\"wpvViewHead\";i:253;s:16:\"ed_school_plugin\";i:254;s:9:\"aps_comp_\";i:255;s:11:\"guaven_woos\";i:256;s:16:\"__lm_redirect_to\";i:257;s:17:\"__wpdm_view_count\";i:258;s:23:\"bookacti.booking_system\";i:259;s:10:\"nfFrontEnd\";i:260;s:20:\"view_quote_cart_link\";i:261;s:19:\"__eae_decode_emails\";i:262;s:20:\"divioverlays_ajaxurl\";i:263;s:10:\"var _EPYT_\";i:264;s:13:\"#ins-heading-\";i:265;s:12:\"#ins-button-\";i:266;s:20:\"tve_frontend_options\";i:267;s:8:\"lb24.src\";i:268;s:24:\"amazon_Login_accessToken\";i:269;s:21:\"porto_infinite_scroll\";i:270;s:14:\".adace-loader-\";i:271;s:11:\"adace_load_\";i:272;s:41:\"tagGroupsAccordiontaggroupscloudaccordion\";i:273;s:31:\"tagGroupsTabstaggroupscloudtabs\";i:274;s:16:\"jrRelatedWidgets\";i:275;s:14:\"UNCODE.initRow\";i:276;s:28:\"amp_mobile_redirect_disabled\";i:277;s:11:\"wpgdprcData\";i:278;s:28:\"wpml_browser_redirect_params\";i:279;s:13:\"swPreRegister\";i:280;s:15:\"kboard_settings\";i:281;s:23:\"ct_ultimate_gdpr_cookie\";i:282;s:23:\"wcpv_registration_local\";i:283;s:15:\"www.idxhome.com\";i:284;s:24:\"arf_footer_cl_logic_call\";i:285;s:23:\"reload_attached_coupons\";i:286;s:8:\"var ftpp\";i:287;s:15:\"forminatorFront\";i:288;s:6:\"_EPYT_\";i:289;s:23:\"edd_free_downloads_vars\";i:290;s:15:\"edd_stripe_vars\";i:291;s:7:\"var ASP\";i:292;s:18:\"ecwidOriginalTitle\";i:293;s:17:\"defaultCategoryId\";i:294;s:25:\"translation-revision-date\";i:295;s:20:\"google_conversion_id\";i:296;s:5:\"hbspt\";i:297;s:21:\"var marker_locations_\";i:298;s:13:\"var AdmMyAjax\";i:299;s:13:\"ifso_page_url\";i:300;s:21:\"referrer_for_pageload\";i:301;s:38:\"WoocommerceWidget/woocommerceWidget.js\";i:302;s:19:\"var ht_ctc_chat_var\";i:303;s:6:\"spuvar\";i:304;s:16:\"var wpilFrontend\";i:305;s:24:\"urls_polylangREPLACETOID\";i:306;s:34:\"e.setAttribute(\'unselectable\',on);\";i:307;s:16:\"try{Typekit.load\";i:308;s:9:\"iMapsData\";i:309;s:24:\"var wpforms_user_journey\";i:310;s:24:\"rocket_lazyload_css_data\";i:311;s:24:\"wcStoreApiNonceTimestamp\";i:312;s:21:\"createNonceMiddleware\";i:313;s:8:\"pbidHash\";i:314;s:24:\"wcBlocksMiddlewareConfig\";}s:24:\"cache_ignored_parameters\";a:71:{i:0;s:10:\"utm_source\";i:1;s:10:\"utm_medium\";i:2;s:12:\"utm_campaign\";i:3;s:9:\"utm_expid\";i:4;s:8:\"utm_term\";i:5;s:11:\"utm_content\";i:6;s:6:\"utm_id\";i:7;s:19:\"utm_source_platform\";i:8;s:19:\"utm_creative_format\";i:9;s:20:\"utm_marketing_tactic\";i:10;s:10:\"mtm_source\";i:11;s:10:\"mtm_medium\";i:12;s:12:\"mtm_campaign\";i:13;s:11:\"mtm_keyword\";i:14;s:7:\"mtm_cid\";i:15;s:11:\"mtm_content\";i:16;s:9:\"pk_source\";i:17;s:9:\"pk_medium\";i:18;s:11:\"pk_campaign\";i:19;s:10:\"pk_keyword\";i:20;s:6:\"pk_cid\";i:21;s:10:\"pk_content\";i:22;s:13:\"fb_action_ids\";i:23;s:15:\"fb_action_types\";i:24;s:9:\"fb_source\";i:25;s:6:\"fbclid\";i:26;s:10:\"campaignid\";i:27;s:9:\"adgroupid\";i:28;s:4:\"adid\";i:29;s:5:\"gclid\";i:30;s:12:\"age-verified\";i:31;s:12:\"ao_noptimize\";i:32;s:4:\"usqp\";i:33;s:11:\"cn-reloaded\";i:34;s:3:\"_ga\";i:35;s:5:\"sscid\";i:36;s:6:\"gclsrc\";i:37;s:3:\"_gl\";i:38;s:6:\"mc_cid\";i:39;s:6:\"mc_eid\";i:40;s:8:\"_bta_tid\";i:41;s:6:\"_bta_c\";i:42;s:11:\"trk_contact\";i:43;s:7:\"trk_msg\";i:44;s:10:\"trk_module\";i:45;s:7:\"trk_sid\";i:46;s:5:\"gdfms\";i:47;s:6:\"gdftrk\";i:48;s:5:\"gdffi\";i:49;s:3:\"_ke\";i:50;s:3:\"_kx\";i:51;s:21:\"redirect_log_mongo_id\";i:52;s:17:\"redirect_mongo_id\";i:53;s:15:\"sb_referer_host\";i:54;s:5:\"mkwid\";i:55;s:5:\"pcrid\";i:56;s:5:\"ef_id\";i:57;s:7:\"s_kwcid\";i:58;s:7:\"msclkid\";i:59;s:4:\"dm_i\";i:60;s:4:\"epik\";i:61;s:2:\"pp\";i:62;s:6:\"gbraid\";i:63;s:6:\"wbraid\";i:64;s:8:\"ssp_iabi\";i:65;s:8:\"ssp_iaba\";i:66;s:3:\"gad\";i:67;s:6:\"vgo_ee\";i:68;s:10:\"gad_source\";i:69;s:12:\"onlywprocket\";i:70;s:7:\"srsltid\";}s:18:\"preload_exclusions\";a:4:{i:0;s:9:\"void\\(.*;\";i:1;s:17:\"(.*)__trashed(.*)\";i:2;s:14:\"/jet-menu/(.*)\";i:3;s:15:\"/jet-popup/(.*)\";}s:16:\"exclude_js_files\";a:13:{i:0;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:1;s:76:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/html2canvas.min.js\";i:2;s:68:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/pdf.min.js\";i:3;s:70:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/three.min.js\";i:4;s:77:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/3d-flip-book.min.js\";i:5;s:39:\"/google-site-kit/dist/assets/js/(.*).js\";i:6;s:45:\"/wp-live-chat-support/public/js/callus(.*).js\";i:7;s:41:\"/borlabs-cookie/assets/javascript/(.*).js\";i:8;s:60:\"/wp-content/plugins/wp-rocket/assets/js/lcp-beacon(.min)?.js\";i:9;s:38:\"/woocommerce-bookings/dist/frontend.js\";i:10;s:44:\"/plugins/mapify(.*)/assets/js/dist/bundle.js\";i:11;s:60:\"/wp-content/plugins/wp-rocket/assets/js/wpr-beacon(.min)?.js\";i:12;s:47:\"/wp-recipe-maker-premium/dist/public-premium.js\";}s:15:\"staging_domains\";a:32:{i:0;s:13:\".wpengine.com\";i:1;s:20:\".wpenginepowered.com\";i:2;s:16:\".pantheonsite.io\";i:3;s:18:\".flywheelsites.com\";i:4;s:20:\".flywheelstaging.com\";i:5;s:11:\".kinsta.com\";i:6;s:13:\".kinsta.cloud\";i:7;s:18:\".cloudwaysapps.com\";i:8;s:18:\".azurewebsites.net\";i:9;s:14:\".wpserveur.net\";i:10;s:19:\"-liquidwebsites.com\";i:11;s:16:\".myftpupload.com\";i:12;s:12:\".dream.press\";i:13;s:12:\".sg-host.com\";i:14;s:16:\".platformsh.site\";i:15;s:12:\".wpstage.net\";i:16;s:22:\".bigscoots-staging.com\";i:17;s:10:\".wpsc.site\";i:18;s:14:\".runcloud.link\";i:19;s:14:\".onrocket.site\";i:20;s:18:\".singlestaging.com\";i:21;s:13:\".myraidbox.de\";i:22;s:12:\".instawp.xyz\";i:23;s:11:\".instawp.co\";i:24;s:13:\".instawp.link\";i:25;s:12:\".instawp.app\";i:26;s:12:\".hstgr.cloud\";i:27;s:15:\".myhostpoint.ch\";i:28;s:17:\".wpcomstaging.com\";i:29;s:9:\".nxcli.io\";i:30;s:19:\".lyricalstaging.com\";i:31;s:10:\".myrdbx.io\";}s:19:\"exclude_js_template\";a:3:{i:0;s:13:\"type=\"module\"\";i:1;s:12:\"data-minify=\";i:2;s:15:\"data-no-minify=\";}s:25:\"lazy_rendering_exclusions\";a:26:{i:0;s:16:\"class=\"parallex\"\";i:1;s:28:\"class=\"avada-footer-scripts\"\";i:2;s:18:\"id=\"rhslidingMenu\"\";i:3;s:19:\"class=\"logobsmallt\"\";i:4;s:29:\"id=\"ast-mobile-popup-wrapper\"\";i:5;s:33:\"id=\"cmplz-cookiebanner-container\"\";i:6;s:27:\"class=\"wf-container-footer\"\";i:7;s:30:\"class=\"de-mega-menu-container\"\";i:8;s:14:\"data-nosnippet\";i:9;s:32:\"class=\"floating-menu float-menu-\";i:10;s:19:\"id=\"jeg_off_canvas\"\";i:11;s:31:\"id=\"dipi-popup-maker-container\"\";i:12;s:37:\"class=\"static-position vendor_hidden\"\";i:13;s:29:\"class=\"jws-mini-cart-wrapper\"\";i:14;s:28:\"class=\"home-widgets-section\"\";i:15;s:35:\"elementor-location-floating_buttons\";i:16;s:43:\"class=\"xoo-el-container xoo-el-style-popup\"\";i:17;s:26:\"class=\"off-canvas-wrapper\"\";i:18;s:30:\"id=\"ast-hb-account-login-wrap\"\";i:19;s:21:\"id=\"ak_drawer_holder\"\";i:20;s:15:\"id=\"brx-footer\"\";i:21;s:25:\"elementor-location-footer\";i:22;s:27:\"class=\"ts-floating-sidebar\"\";i:23;s:20:\"id=\"yith-wacp-popup\"\";i:24;s:83:\"class=\"fl-builder-content fl-builder-content-30 fl-builder-global-templates-locked\"\";i:25;s:34:\"class=\"mfn-footer-tmpl mfn-footer\"\";}}','no'),(393388,'_site_transient_timeout_php_check_b177535be5f1790a48742622cfd50ecb','1728841757','no'),(393389,'_site_transient_php_check_b177535be5f1790a48742622cfd50ecb','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(400966,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1728657218','no'),(400967,'_transient_wpseo_total_unindexed_post_type_archives','0','no'),(401512,'_transient_timeout_wpseo_total_unindexed_posts','1728680937','no'),(401513,'_transient_wpseo_total_unindexed_posts','0','no'),(401514,'_transient_timeout_wpseo_total_unindexed_terms','1728680937','no'),(401515,'_transient_wpseo_total_unindexed_terms','0','no'),(401516,'_transient_timeout_wpseo_unindexed_term_link_count','1728680937','no'),(401517,'_transient_wpseo_unindexed_term_link_count','0','no'),(401518,'_transient_timeout_quotaData','1728598139','no'),(401519,'_transient_quotaData','a:13:{s:11:\"APIKeyValid\";b:1;s:12:\"APICallsMade\";s:11:\"951 credits\";s:13:\"APICallsQuota\";s:14:\"15,000 credits\";s:19:\"APICallsMadeOneTime\";s:14:\"87,298 credits\";s:20:\"APICallsQuotaOneTime\";s:15:\"125,000 credits\";s:19:\"APICallsMadeNumeric\";i:951;s:20:\"APICallsQuotaNumeric\";i:15000;s:26:\"APICallsMadeOneTimeNumeric\";i:87298;s:27:\"APICallsQuotaOneTimeNumeric\";i:125000;s:9:\"Unlimited\";b:0;s:18:\"APILastRenewalDate\";s:19:\"2024-09-11 00:01:15\";s:11:\"DomainCheck\";s:10:\"Accessible\";s:17:\"APICallsRemaining\";i:51751;}','no'),(401520,'_site_transient_timeout_browser_09993ab868f470cf24e26fa4f9439d9e','1729199339','no'),(401521,'_site_transient_browser_09993ab868f470cf24e26fa4f9439d9e','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"129.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(401522,'_transient_timeout_shortpixel_remote_notice','1728680940','no'),(401523,'_transient_shortpixel_remote_notice','a:0:{}','no'),(401524,'wp-short-pixel-current-total-files','a:5:{s:5:\"media\";a:6:{s:5:\"items\";i:-1;s:6:\"images\";i:-1;s:6:\"thumbs\";i:-1;s:10:\"itemsTotal\";i:-1;s:11:\"thumbsTotal\";i:-1;s:9:\"isLimited\";b:0;}s:6:\"custom\";a:3:{s:5:\"items\";i:-1;s:6:\"images\";i:-1;s:10:\"itemsTotal\";i:-1;}s:6:\"period\";a:1:{s:6:\"months\";a:4:{i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;}}s:5:\"total\";a:5:{s:5:\"items\";i:-1;s:6:\"images\";i:-1;s:6:\"thumbs\";i:-1;s:10:\"itemsTotal\";i:-1;s:11:\"thumbsTotal\";i:-1;}s:4:\"time\";i:1728594540;}','yes'),(401525,'_transient_timeout_kadence_blocks_pro_license_status_check','1729199340','no'),(401526,'_transient_kadence_blocks_pro_license_status_check','ktm_wc_order_QntgzZthxGmwU_am_KNCvYgXgYw3Y_valid','no'),(401527,'_transient_timeout_kadence_pro_license_status_check','1729199340','no'),(401528,'_transient_kadence_pro_license_status_check','ktm_wc_order_QntgzZthxGmwU_am_KNCvYgXgYw3Y_valid','no'),(401529,'_transient_timeout_wpr_dynamic_lists_incompatible_plugins','1729199340','no'),(401530,'_transient_wpr_dynamic_lists_incompatible_plugins','O:8:\"stdClass\":6:{s:0:\"\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"wp-super-cache\";s:4:\"file\";s:27:\"wp-super-cache/wp-cache.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:23:\"enable-gzip-compression\";s:4:\"file\";s:51:\"enable-gzip-compression/enable-gzip-compression.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"quick-cache\";s:4:\"file\";s:27:\"quick-cache/quick-cache.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:31:\"leverage-browser-caching-ninjas\";s:4:\"file\";s:66:\"leverage-browser-caching-ninjas/leverage-browser-caching-ninja.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:28:\"wp-performance-score-booster\";s:4:\"file\";s:61:\"wp-performance-score-booster/wp-performance-score-booster.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:15:\"litespeed-cache\";s:4:\"file\";s:35:\"litespeed-cache/litespeed-cache.php\";}i:6;O:8:\"stdClass\":2:{s:4:\"slug\";s:42:\"remove-query-strings-from-static-resources\";s:4:\"file\";s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";}i:7;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"wp-http-compression\";s:4:\"file\";s:43:\"wp-http-compression/wp-http-compression.php\";}i:8;O:8:\"stdClass\":2:{s:4:\"slug\";s:21:\"query-strings-remover\";s:4:\"file\";s:47:\"query-strings-remover/query-strings-remover.php\";}i:9;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"page-optimize\";s:4:\"file\";s:31:\"page-optimize/page-optimize.php\";}i:10;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"speed-booster-pack\";s:4:\"file\";s:41:\"speed-booster-pack/speed-booster-pack.php\";}i:11;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"swift-performance\";s:4:\"file\";s:33:\"swift-performance/performance.php\";}i:12;O:8:\"stdClass\":2:{s:4:\"slug\";s:28:\"gzip-ninja-speed-compression\";s:4:\"file\";s:49:\"gzip-ninja-speed-compression/gzip-ninja-speed.php\";}i:13;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"super-static-cache\";s:4:\"file\";s:41:\"super-static-cache/super-static-cache.php\";}i:14;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"lite-cache\";s:4:\"file\";s:21:\"lite-cache/plugin.php\";}i:15;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"hyper-cache\";s:4:\"file\";s:22:\"hyper-cache/plugin.php\";}i:16;O:8:\"stdClass\":2:{s:4:\"slug\";s:7:\"wp-ffpc\";s:4:\"file\";s:19:\"wp-ffpc/wp-ffpc.php\";}i:17;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"wp-fast-cache\";s:4:\"file\";s:31:\"wp-fast-cache/wp-fast-cache.php\";}i:18;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"psn-pagespeed-ninja\";s:4:\"file\";s:38:\"psn-pagespeed-ninja/pagespeedninja.php\";}i:19;O:8:\"stdClass\":2:{s:4:\"slug\";s:22:\"swift-performance-lite\";s:4:\"file\";s:38:\"swift-performance-lite/performance.php\";}i:20;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"force-gzip\";s:4:\"file\";s:25:\"force-gzip/force-gzip.php\";}i:21;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"add-expires-headers\";s:4:\"file\";s:43:\"add-expires-headers/add-expires-headers.php\";}i:22;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"hyper-cache-extended\";s:4:\"file\";s:31:\"hyper-cache-extended/plugin.php\";}i:23;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"gator-cache\";s:4:\"file\";s:27:\"gator-cache/gator-cache.php\";}i:24;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"flexicache\";s:4:\"file\";s:24:\"flexicache/wp-plugin.php\";}i:25;O:8:\"stdClass\":2:{s:4:\"slug\";s:16:\"wp-fastest-cache\";s:4:\"file\";s:35:\"wp-fastest-cache/wpFastestCache.php\";}i:26;O:8:\"stdClass\":2:{s:4:\"slug\";s:26:\"wordpress-gzip-compression\";s:4:\"file\";s:35:\"wordpress-gzip-compression/ezgz.php\";}i:27;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"wp-optimize\";s:4:\"file\";s:27:\"wp-optimize/wp-optimize.php\";}i:28;O:8:\"stdClass\":2:{s:4:\"slug\";s:33:\"check-and-enable-gzip-compression\";s:4:\"file\";s:54:\"check-and-enable-gzip-compression/richards-toolbox.php\";}i:29;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"far-future-expiry-header\";s:4:\"file\";s:50:\"far-future-expiry-header/far-future-expiration.php\";}i:30;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"leverage-browser-caching\";s:4:\"file\";s:53:\"leverage-browser-caching/leverage-browser-caching.php\";}i:31;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"wpcompressor\";s:4:\"file\";s:29:\"wpcompressor/wpcompressor.php\";}i:32;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"combine-css\";s:4:\"file\";s:27:\"combine-css/combine-css.php\";}i:33;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"w3-total-cache\";s:4:\"file\";s:33:\"w3-total-cache/w3-total-cache.php\";}i:34;O:8:\"stdClass\":2:{s:4:\"slug\";s:7:\"airlift\";s:4:\"file\";s:19:\"airlift/airlift.php\";}i:35;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"cache-enabler\";s:4:\"file\";s:31:\"cache-enabler/cache-enabler.php\";}}s:21:\"minify_css||minify_js\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"merge-minify-refresh\";s:4:\"file\";s:45:\"merge-minify-refresh/merge-minify-refresh.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:16:\"async-js-and-css\";s:4:\"file\";s:34:\"async-js-and-css/asyncJSandCSS.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:15:\"wp-super-minify\";s:4:\"file\";s:35:\"wp-super-minify/wp-super-minify.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"fast-velocity-minify\";s:4:\"file\";s:28:\"fast-velocity-minify/fvm.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:23:\"dependency-minification\";s:4:\"file\";s:51:\"dependency-minification/dependency-minification.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"bwp-minify\";s:4:\"file\";s:25:\"bwp-minify/bwp-minify.php\";}i:6;O:8:\"stdClass\":2:{s:4:\"slug\";s:8:\"minqueue\";s:4:\"file\";s:19:\"minqueue/plugin.php\";}i:7;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"scripts-gzip\";s:4:\"file\";s:29:\"scripts-gzip/scripts_gzip.php\";}i:8;O:8:\"stdClass\":2:{s:4:\"slug\";s:9:\"wp-minify\";s:4:\"file\";s:23:\"wp-minify/wp-minify.php\";}}s:8:\"lazyload\";a:6:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:9:\"lazy-load\";s:4:\"file\";s:23:\"lazy-load/lazy-load.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"bj-lazy-load\";s:4:\"file\";s:29:\"bj-lazy-load/bj-lazy-load.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:25:\"jquery-image-lazy-loading\";s:4:\"file\";s:46:\"jquery-image-lazy-loading/jq_img_lazy_load.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"crazy-lazy\";s:4:\"file\";s:25:\"crazy-lazy/crazy-lazy.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"specify-image-dimensions\";s:4:\"file\";s:53:\"specify-image-dimensions/specify-image-dimensions.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"advanced-lazy-load\";s:4:\"file\";s:40:\"advanced-lazy-load/advanced_lazyload.php\";}}s:9:\"minify_js\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:5:\"wp-js\";s:4:\"file\";s:15:\"wp-js/wp-js.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"scripts-to-footerphp\";s:4:\"file\";s:42:\"scripts-to-footerphp/scripts-to-footer.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"combine-js\";s:4:\"file\";s:25:\"combine-js/combine-js.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"footer-javascript\";s:4:\"file\";s:39:\"footer-javascript/footer-javascript.php\";}}s:17:\"control_heartbeat\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"heartbeat-control\";s:4:\"file\";s:39:\"heartbeat-control/heartbeat-control.php\";}}s:16:\"lazyload_iframes\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"lazy-load-for-videos\";s:4:\"file\";s:37:\"lazy-load-for-videos/codeispoetry.php\";}}}','no'),(401533,'_site_transient_timeout_community-events-caa96436fd26104c55ec9b8459c02a75','1728637742','no'),(401534,'_site_transient_community-events-caa96436fd26104c55ec9b8459c02a75','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:20:\"2603:7000:2702:470::\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:51:\"Helpdesk: Bring Your Laptop and WordPress Questions\";s:3:\"url\";s:70:\"https://www.meetup.com/bergen-county-wordpress-meetup/events/303384579\";s:6:\"meetup\";s:30:\"Bergen County WordPress Meetup\";s:10:\"meetup_url\";s:54:\"https://www.meetup.com/bergen-county-wordpress-meetup/\";s:4:\"date\";s:19:\"2024-10-16 19:00:00\";s:8:\"end_date\";s:19:\"2024-10-16 21:00:00\";s:20:\"start_unix_timestamp\";i:1729119600;s:18:\"end_unix_timestamp\";i:1729126800;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Paramus, NJ, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.972126;s:9:\"longitude\";d:-74.07985;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:68:\"Help Desk - Bring Your Laptop, Yourself, and Your WordPress Problems\";s:3:\"url\";s:66:\"https://www.meetup.com/wordpress-montclair-meetup/events/302864755\";s:6:\"meetup\";s:26:\"WordPress Montclair Meetup\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/wordpress-montclair-meetup/\";s:4:\"date\";s:19:\"2024-10-22 18:00:00\";s:8:\"end_date\";s:19:\"2024-10-22 20:00:00\";s:20:\"start_unix_timestamp\";i:1729634400;s:18:\"end_unix_timestamp\";i:1729641600;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Montclair, NJ, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.811573;s:9:\"longitude\";d:-74.218636;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:30:\"WordPress Hangout & Networking\";s:3:\"url\";s:66:\"https://www.meetup.com/wordpress-montclair-meetup/events/302864774\";s:6:\"meetup\";s:26:\"WordPress Montclair Meetup\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/wordpress-montclair-meetup/\";s:4:\"date\";s:19:\"2024-11-06 18:30:00\";s:8:\"end_date\";s:19:\"2024-11-06 21:30:00\";s:20:\"start_unix_timestamp\";i:1730935800;s:18:\"end_unix_timestamp\";i:1730946600;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Clifton, NJ, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.868435;s:9:\"longitude\";d:-74.19071;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:14:\"Happiness Bar!\";s:3:\"url\";s:52:\"https://www.meetup.com/wordpressnyc/events/303831725\";s:6:\"meetup\";s:26:\"WordPress NYC Meetup Group\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/WordPressNYC/\";s:4:\"date\";s:19:\"2024-11-09 12:00:00\";s:8:\"end_date\";s:19:\"2024-11-09 15:00:00\";s:20:\"start_unix_timestamp\";i:1731171600;s:18:\"end_unix_timestamp\";i:1731182400;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Manhattan, NE, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.725903;s:9:\"longitude\";d:-73.995255;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:29:\"An Evening of Lightning Talks\";s:3:\"url\";s:66:\"https://www.meetup.com/wordpress-montclair-meetup/events/302864783\";s:6:\"meetup\";s:26:\"WordPress Montclair Meetup\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/wordpress-montclair-meetup/\";s:4:\"date\";s:19:\"2024-11-19 18:00:00\";s:8:\"end_date\";s:19:\"2024-11-19 20:00:00\";s:20:\"start_unix_timestamp\";i:1732057200;s:18:\"end_unix_timestamp\";i:1732064400;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Montclair, NJ, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.811573;s:9:\"longitude\";d:-74.218636;}}}}','no'),(401535,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1728637742','no'),(401536,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2024 01:20:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.7-beta2-59208\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Please Welcome Mary Hubbard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/news/2024/10/proud-mary/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 19:26:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17900\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"We&#8217;re proud to announce that Mary Hubbard (@4thhubbard) has resigned as the Head of TikTok Americas, Governance and Experience, and will be starting as the next Executive Director of WordPress.org on October 21st! Mary previously worked at Automattic from 2020 to 2023, and was the Chief Product Officer for WordPress.com, so she has deep knowledge [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1533:\"\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image alignfull size-full wp-duotone-unset-1\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1626\" height=\"1002\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=1626%2C1002&#038;ssl=1\" alt=\"\" class=\"wp-image-17920\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?w=1626&amp;ssl=1 1626w, https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=1024%2C631&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=768%2C473&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=1536%2C947&amp;ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>We&#8217;re proud to announce that <a href=\"https://maryhubbard.blog/\">Mary Hubbard</a> (<a href=\"https://profiles.wordpress.org/4thhubbard/\">@4thhubbard</a>) has resigned as the Head of TikTok Americas, Governance and Experience, and will be starting as the next Executive Director of WordPress.org on October 21<sup>st</sup>!</p>\n\n\n\n<p>Mary previously worked at Automattic from 2020 to 2023, and was the Chief Product Officer for WordPress.com, so she has deep knowledge of WordPress and expertise across business, product, marketplaces, program management, and governance.</p>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 00:44:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17887\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"WordPress 6.7 Beta 2 is now ready for testing! This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 2 on a test server and site. You can test WordPress 6.7 Beta [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8279:\"\n<p id=\"block-3cf2f536-f167-464f-a4ba-07f45105e476\">WordPress 6.7 Beta 2 is now ready for testing!</p>\n\n\n\n<p id=\"block-b65e3bf0-0494-4039-a701-f21e505600ad\"><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p id=\"block-e904322b-c488-4166-8312-0b769067b943\">You can test WordPress 6.7 Beta 2 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-beta2.zip\">Beta 2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-beta</code>2</td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=a49bf5596f7258375345826dc136bfc589372e37%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 Beta 2 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup. </td></tr></tbody></table></figure>\n\n\n\n<p id=\"block-93b754f0-e211-47b7-ac89-349d85c2f02f\">The current target date for the final release of WordPress 6.7 is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p id=\"block-7b5d791d-225a-4623-83ee-19a586c7094b\"><strong>Catch up on what&#8217;s new in WordPress 6.7</strong>: <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Read the Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-f1abd396-a019-4c9a-bcb8-9ac381a61ca1\">How to test this release</h2>\n\n\n\n<p id=\"block-92dfcab6-d2a8-4753-84ce-8ef7b6dd1e90\">Your help testing the WordPress 6.7 Beta 2 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7.</p>\n\n\n\n<p id=\"block-6519fad7-59ea-45f1-9b8f-ca14c09c865d\">If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p id=\"block-4bd66b13-6784-4a4f-bb7a-b4dab8e5fc12\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-67b6a6c7-a95e-4b27-8946-a66d15105cb7\">Vulnerability bounty doubles during Beta/RC</h2>\n\n\n\n<p id=\"block-16175da3-84c9-45d0-b735-08a9d4453a14\">Between Beta 1, released on October 1, 2024, and the final Release Candidate (RC) scheduled for November 5, 2024, the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-14306771-b240-4e15-948f-7504757bbb61\">Beta 2 updates and highlights</h2>\n\n\n\n<p id=\"block-93917d31-4478-45b5-b71c-1c8a1f49cc65\">WordPress 6.7 Beta 2 contains more than 18 Editor updates and fixes since the Beta 1 release, including <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=02%2F14%2F2024..02%2F19%2F2024&amp;milestone=6.5&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">28 tickets for WordPress core</a>.</p>\n\n\n\n<p id=\"block-ffdc1220-c2f5-4c23-982b-60c366c629d1\">Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:</p>\n\n\n\n<ul id=\"block-3fcf78c7-bebc-42e1-96f6-8b605ea23aae\" class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-02&amp;until=2024-10-07\">GitHub commits for 6.7</a> since October 2, 2024</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F02%2F2024..10%2F07%2F2024&amp;milestone=6.7&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 2, 2024</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-c414b25e-802f-4f29-a31c-9e13394a4947\">A Beta 2 haiku</h2>\n\n\n\n<p id=\"block-a0f155a2-19b3-4645-a516-c7ae56541e5f\">Beta 2 arrives,<br>October’s code settles in,<br>Change rustles like leaves.</p>\n\n\n\n<p id=\"block-014ab749-322b-44bd-bf4f-bf5817d90bfd\"><em>Props to <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a></em> for proofreading and review.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17887\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WPGraphQL is Canonical\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2024/10/wpgraphql/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Oct 2024 18:44:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17891\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Happy to announce that WP GraphQL is becoming canonical on WordPress.org. I could say more, but I&#8217;ll let Jason tell his story.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"\n<p>Happy to announce that WP GraphQL is becoming canonical on WordPress.org. I could say more, <a href=\"https://www.wpgraphql.com/2024/10/07/wpgraphql-becomes-a-canonical-plugin-my-move-to-automattic\">but I&#8217;ll let Jason tell his story</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17891\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.7 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Oct 2024 04:41:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17857\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:301:\"WordPress 6.7 Beta 1 is now ready for download and testing!\n\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 1 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13719:\"\n<p id=\"block-0eaa018b-f0fe-49ae-a80b-762dd1f69d27\">WordPress 6.7 Beta 1 is ready for download and testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is under development.</strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.  Instead, set up a test environment or a local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 6.7 Beta 1</h2>\n\n\n\n<p>You can test Beta 1 in any of the following ways:&nbsp;</p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong>                                  </td><td>Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> WordPress Beta Tester</a> plugin on a WordPress install.&nbsp;Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the<a href=\"https://wordpress.org/wordpress-6.7-beta1.zip\"> Beta 1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong>                      </td><td>Use this<a href=\"https://make.wordpress.org/cli/\"> WP-CLI</a> command: <code>wp core update --version=6.7-beta1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a<a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20[%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20]%20%7D\"> 6.7 Beta 1 WordPress Playground instance</a> to test the software directly in your browser. No setup required–-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.7 is <strong>November 12, 2024</strong>. Your help testing Beta and RC versions over the next six weeks is vital to ensuring the final release is everything it should be: stable, powerful, and intuitive.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether or not you have experience.</p>\n\n\n\n<p>If you encounter an issue, please share it in the<a href=\"https://wordpress.org/support/forum/alphabeta/\"> Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so<a href=\"https://core.trac.wordpress.org/newticket\"> via WordPress Trac</a>. You can also check your issue against a list of<a href=\"https://core.trac.wordpress.org/tickets/major\"> known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the<a href=\"https://wordpress.slack.com/messages/core-test/\"> #core-test channel</a> on<a href=\"https://wordpress.slack.com/\"> Making WordPress Slack</a>.</p>\n\n\n\n<p>WordPress 6.7 will include many new features that were previously only available in the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 6.7 in the<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\"> What’s New in Gutenberg</a> posts for versions <a href=\"https://make.wordpress.org/core/2024/06/09/what-is-new-in-gutenberg-18-5-05-jun/\">18.5</a>, <a href=\"https://make.wordpress.org/core/2024/06/20/whats-new-in-gutenberg-18-6/\">18.6</a>, <a href=\"https://make.wordpress.org/core/2024/07/04/whats-new-in-gutenberg-18-7-03-july/\">18.7</a>, <a href=\"https://make.wordpress.org/core/2024/07/17/whats-new-in-gutenberg-18-8-17-july/\">18.8</a>, <a href=\"https://make.wordpress.org/core/2024/07/31/whats-new-in-gutenberg-18-9-31-july/\">18.9</a>, <a href=\"https://make.wordpress.org/core/2024/08/14/whats-new-in-gutenberg-19-0-14-august/\">19.0</a>, <a href=\"https://make.wordpress.org/core/2024/08/28/whats-new-in-gutenberg-19-1-28-august/\">19.1</a>, <a href=\"https://make.wordpress.org/core/2024/09/12/what-is-new-in-gutenberg-19-2-11-september/\">19.2</a>, and <a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/\">19.3</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s New in WordPress 6.7 Beta 1</h2>\n\n\n\n<p>WordPress 6.7 Beta 1 contains over 500 enhancements and over 500 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.7&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">200 tickets for WordPress 6.7 Core</a>. Here’s a glimpse of what’s coming:</p>\n\n\n\n<h3 class=\"wp-block-heading\">Meet the Twenty Twenty-Five theme</h3>\n\n\n\n<p>Launching with WordPress 6.7, the new default theme, <a href=\"https://make.wordpress.org/core/2024/08/15/introducing-twenty-twenty-five/\">Twenty Twenty-Five</a>, embodies ultimate flexibility and adaptability, showcasing how WordPress empowers you to tell your story with a rich selection of patterns and styles. Inspired by glimpses of natural beauty and ancestry heritage, it evokes ideas of impermanence, the passage of time, and continuous evolution–mirroring life’s journey. Experience effortless site creation with Twenty Twenty-Five and follow its progress or report issues on <a href=\"https://github.com/wordpress/twentytwentyfive\">this GitHub repo</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Zoom Out to Compose with Patterns</h3>\n\n\n\n<p>The Zoom Out view simplifies your editing experience by allowing you to create and edit at the pattern level rather than focusing on individual blocks. Easily toggle this view from the toolbar to streamline your site-building process, making it faster and more intuitive to design pages using patterns.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Media improvements&nbsp;</h3>\n\n\n\n<p>Now supporting HEIC image uploads–automatically converted to JPEG for maximum compatibility–you can add high-quality images without worrying about browser support. Plus, enjoy auto-sizing for lazy-loaded images and expanded background image options at both individual and global levels, giving you greater control over your site&#8217;s visuals and performance.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Expanding Block Supports</h3>\n\n\n\n<p>Several blocks now come with expanded support options, enabling even more design possibilities. Notably, the long-requested shadow support for Group blocks has been added, a big win for designers and theme developers!</p>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Options API&nbsp;</h3>\n\n\n\n<p>The latest WordPress release enhances the Preview Options in the block editor, empowering developers to customize content previews. A new API allows plugins and themes to add custom items to the preview dropdown menu, enabling users to see content in different formats or environments. This flexibility enriches the editing experience while maintaining the existing familiar Preview dropdown structure.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Refined Data Views</h3>\n\n\n\n<p>The Data Views introduced in 6.5 continue to be improved. This release is focused on refining the experience with a few new features aimed at making these views more flexible for customization and more functional to use.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Manage Block Bindings Directly</h3>\n\n\n\n<p>Updates to this API in 6.7 polish and open most of the underlying APIs, improving the overall user experience, and add a user interface (UI) that allows you to connect attributes with custom fields to their binding sources. This new UI makes it possible to create bindings directly in a block instead of needing to use the Code Editor. By default admin and editor users can create and modify bindings, but this can be overridden with `block_editor_settings_all or map_meta_cap` filters.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Simplified and Smarter Query Loop Block</h3>\n\n\n\n<p>The Query Loop block is improved, as it now automatically inherits the query from the template by default, eliminating the need for manual configuration. This means your posts display immediately in both the editor and on the front end, streamlining the process so users can focus on content without extra configuration needed.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Edit and Control Font Size Presets</h3>\n\n\n\n<p>An enhanced Styles interface allows for greater flexibility when creating, editing, removing, and applying font size presets. You can now easily modify the presets provided by a theme or create your own custom options. A key feature is the ability to toggle fluid typography, which enables responsive font scaling with additional options for finer control over responsiveness.</p>\n\n\n\n<h3 class=\"wp-block-heading\">View Meta Boxes in the iframed Post Editor</h3>\n\n\n\n<p>A new split view option has been introduced that allows you to access both the editor canvas and metaboxes while editing. This change will provide a consistent WYSIWYG experience between the editor and front end views.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Template Registration API</h3>\n\n\n\n<p>With this release, developers can now more easily register custom block templates without complex filters. Streamline your development process and create custom templates with ease.&nbsp;</p>\n\n\n\n<p><strong><strong>The features included in this first beta may change before the final release of WordPress 6.7, based on what testers like you find.</strong></strong></p>\n\n\n\n<p>Get an overview of the<a href=\"https://make.wordpress.org/core/6-7/\"> 6.7 release cycle</a> and check the<a href=\"https://make.wordpress.org/core/\"> Make WordPress Core blog</a> for<a href=\"https://make.wordpress.org/core/tag/6-7/\"> 6.7-related posts</a> in the next few weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during Beta &amp; Release Candidate</h2>\n\n\n\n<p>The WordPress community sponsors a<a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\"> monetary reward for reporting new, unreleased security vulnerabilities</a>. This reward doubles during the period between Beta 1 on October 1, 2024 and the final Release Candidate (RC) scheduled for November 5, 2024. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the<a href=\"https://hackerone.com/wordpress\"> HackerOne page</a> and in the<a href=\"https://wordpress.org/about/security/\"> security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Just for you: a Beta 1 haiku</h3>\n\n\n\n<p>Lines of code arise,&nbsp;<br>Testing shapes the future path,&nbsp;&nbsp;<br>WordPress grows once more.</p>\n\n\n\n<p class=\"has-text-align-left is-style-default\"><em>Props to <em><a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, </em><a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/colorful-tones/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>colorful-tones</a>,</em> <em><em><a href=\'https://profiles.wordpress.org/courane01/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courane01</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, and <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a></em> or reviewing and collaborating on this post!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17857\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Engine Reprieve\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2024/09/wp-engine-reprieve/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Sep 2024 21:03:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17850\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:422:\"I&#8217;ve heard from WP Engine customers that they are frustrated that WP Engine hasn&#8217;t been able to make updates, plugin directory, theme directory, and Openverse work on their sites. It saddens me that they&#8217;ve been negatively impacted by Silver Lake&#8216;s commercial decisions. On WP Engine&#8217;s homepage, they promise &#8220;Unmatched performance, automated updates, and bulletproof security [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1508:\"\n<p>I&#8217;ve heard from <a href=\"https://wpengine.com/\">WP Engine</a> customers that they are frustrated that WP Engine hasn&#8217;t been able to make updates, plugin directory, theme directory, and Openverse work on their sites. It saddens me that they&#8217;ve been negatively impacted by <a href=\"https://www.silverlake.com/\">Silver Lake</a>&#8216;s commercial decisions.</p>\n\n\n\n<p><a href=\"https://wpengine.com/\">On WP Engine&#8217;s homepage</a>, they promise &#8220;Unmatched performance, automated updates, and bulletproof security ensure your sites thrive.&#8221;</p>\n\n\n\n<p>WP Engine was well aware that we could remove access when they chose to ignore our efforts to resolve our differences and enter into a commercial licensing agreement. <a href=\"https://usaawards.ceotodaymagazine.com/previous-winner/heather-brunner/\">Heather Brunner</a>, <a href=\"https://www.silverlake.com/people/lee-wittlinger/\">Lee Wittlinger</a>, and their Board chose to take this risk. WPE was also aware that they were placing this risk directly on WPE customers. You could assume that WPE has a workaround ready, or they were simply reckless in supporting their customers. Silver Lake and WP Engine put their customers at risk, not me.</p>\n\n\n\n<p>We have lifted the blocks of their servers from accessing ours, until October 1, UTC 00:00. Hopefully this helps them spin up their mirrors of all of WordPress.org&#8217;s resources that they were using for free while not paying, and making legal threats against us.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17850\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WP Engine is banned from WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/2024/09/wp-engine-banned/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Sep 2024 22:50:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17834\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"Pending their legal claims and litigation against WordPress.org, WP Engine no longer has free access to WordPress.org\'s resources.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1924:\"\n<p>Any WP Engine customers having trouble with their sites should <a href=\"https://wpengine.com/contact/\">contact WP Engine support and ask them to fix it</a>.</p>\n\n\n\n<p>WP Engine needs a trademark license, they don&#8217;t have one. I won&#8217;t bore you with the story of how WP Engine <a href=\"https://x.com/photomatt/status/1838502185879167069\">broke thousands of customer sites yesterday in their haphazard attempt to block our attempts to inform the wider WordPress community</a> regarding their disabling and locking down a WordPress core feature in order to extract profit.</p>\n\n\n\n<p><strong>What I will tell you is that, pending their legal claims and litigation against WordPress.org, WP Engine no longer has free access to WordPress.org&#8217;s resources.</strong></p>\n\n\n\n<p>WP Engine wants to control your WordPress experience, they need to run their own user login system, update servers, plugin directory, theme directory, pattern directory, block directory, translations, photo directory, job board, meetups, conferences, bug tracker, forums, Slack, Ping-o-matic, and showcase. Their servers can no longer access our servers for free.</p>\n\n\n\n<p>The reason WordPress sites don&#8217;t get hacked as much anymore is we work with hosts to block vulnerabilities at the network layer, WP Engine will need to replicate that security research on their own.</p>\n\n\n\n<p>Why should WordPress.org provide these services to WP Engine for free, given their attacks on us?</p>\n\n\n\n<p>WP Engine is free to offer their hacked up, bastardized simulacra of WordPress&#8217;s GPL code to their customers, and they can experience WordPress as WP Engine envisions it, with them getting all of the profits and providing all of the services.</p>\n\n\n\n<p>If you want to experience WordPress, use any other host in the world besides WP Engine. <a href=\"https://wordpress.org/news/2024/09/wp-engine/\">WP Engine is not WordPress</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17834\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WP Engine is not WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2024/09/wp-engine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Sep 2024 23:57:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17786\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"It has to be said and repeated: WP Engine is not WordPress. My own mother was confused and thought WP Engine was an official thing. Their branding, marketing, advertising, and entire promise to customers is that they&#8217;re giving you WordPress, but they&#8217;re not. And they&#8217;re profiting off of the confusion. WP Engine needs a trademark [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5054:\"\n<p>It has to be said and repeated: <em>WP Engine is not WordPress</em>. My own mother was confused and thought <a href=\"https://wpengine.com/\">WP Engine</a> was an official thing. Their branding, marketing, advertising, and entire promise to customers is that they&#8217;re giving you WordPress, but they&#8217;re not. And they&#8217;re profiting off of the confusion. WP Engine needs a trademark license to continue their business.</p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=fnI-QcVSwMU\">I spoke yesterday at WordCamp</a> about how <a href=\"https://www.silverlake.com/people/lee-wittlinger/\">Lee Wittlinger</a> at <a href=\"https://www.silverlake.com/\">Silver Lake</a>, a private equity firm with $102B assets under management, can hollow out an open source community. (To summarize, they do about half a billion in revenue on top of WordPress and <a href=\"https://wordpress.org/five-for-the-future/pledge/wp-engine/\">contribute back 40 hours a week</a>, Automattic is a similar size and <a href=\"https://wordpress.org/five-for-the-future/pledge/automattic/\">contributes back 3,915 hours a week</a>.) Today, I would like to offer a specific, technical example of how they break the trust and sanctity of our software&#8217;s promise to users to save themselves money so they can extract more profits from you.</p>\n\n\n\n<p>WordPress is a content management system, and the content is <em>sacred</em>. Every change you make to every page, every post, is tracked in a revision system, just like the Wikipedia. This means if you make a mistake, you can <em>always</em> undo it. It also means if you&#8217;re trying to figure out why something is on a page, you can see precisely the history and edits that led to it. These revisions are stored in our database.</p>\n\n\n\n<p>This is very important, it&#8217;s at the core of the user promise of protecting your data, and it&#8217;s why WordPress is architected and designed to never lose anything.</p>\n\n\n\n<p><strong>WP Engine turns this off.</strong> They disable revisions because it costs them more money to store the history of the changes in the database, and they don&#8217;t want to spend that to protect your content. It strikes to the very heart of what WordPress does, and they shatter it, the integrity of your content. If you make a mistake, you have no way to get your content back, breaking the core promise of what WordPress does, which is manage and protect your content.</p>\n\n\n\n<p>Here is a screenshot of <a href=\"https://wpengine.com/support/platform-settings/#Post_Revisions\">their support page</a> saying they disable this across their 1.5 million WordPress installs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"864\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/Screenshot-2024-09-21-at-4.05.03 PM.png?resize=1024%2C864&#038;ssl=1\" alt=\"\" class=\"wp-image-17787\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/Screenshot-2024-09-21-at-4.05.03 PM.png?resize=1024%2C864&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/Screenshot-2024-09-21-at-4.05.03 PM.png?resize=300%2C253&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/Screenshot-2024-09-21-at-4.05.03 PM.png?resize=768%2C648&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/Screenshot-2024-09-21-at-4.05.03 PM.png?w=1472&amp;ssl=1 1472w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>They say it&#8217;s slowing down your site, but what they mean is they want to avoid paying to store that data. We tested revisions on <em>all</em> of the recommended hosts on WordPress.org, and <em>none</em> disabled revisions by default. <strong>Why is WP Engine the only one that does?</strong> They are strip-mining the WordPress ecosystem, giving our users a crappier experience so they can make more money.</p>\n\n\n\n<p><strong>What WP Engine gives you is not WordPress</strong>, it&#8217;s something that they&#8217;ve chopped up, hacked, butchered to look like WordPress, but actually they&#8217;re giving you a cheap knock-off and charging you more for it.</p>\n\n\n\n<p>This is one of the many reasons they are a cancer to WordPress, and it’s important to remember that unchecked, cancer will spread. WP Engine is setting a poor standard that others may look at and think is ok to replicate. We must set a higher standard to ensure WordPress is here for the next 100 years.</p>\n\n\n\n<p>If you are a customer of &#8220;WordPress Engine,&#8221; you should <a href=\"https://wpengine.com/contact/\">contact their support</a> immediately to at least get the 3 revisions they allow turned on so you don&#8217;t accidentally lose something important. Ideally, they should go to unlimited. <strong>Remember that you, the customer, hold the power; they are nothing without the money you give them.</strong> And as you vote with your dollars, consider literally any other WordPress host as WP Engine is the only one we&#8217;ve found that completely disables revisions by default.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17786\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"PDX + WCUS 2024: A Recap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2024/09/pdx-wcus-2024-a-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Sep 2024 07:10:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"WCUS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17750\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:180:\"WordCamp US (WCUS), North America\'s largest WordPress event, hosted over 1,500 attendees from around the world at the Oregon Convention Center in Portland, from September 17 to 20.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:18428:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"627\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7364-scaled-e1726885354749-1024x627.jpg?resize=1024%2C627&#038;ssl=1\" alt=\"I love Oregon sculpture at The Oregon Convention Center in Portland, Oregon USA\" class=\"wp-image-17751\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7364-scaled-e1726885354749.jpg?resize=1024%2C627&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7364-scaled-e1726885354749.jpg?resize=300%2C184&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7364-scaled-e1726885354749.jpg?resize=768%2C470&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7364-scaled-e1726885354749.jpg?resize=1536%2C940&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7364-scaled-e1726885354749.jpg?resize=2048%2C1253&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2024/\">WordCamp US</a> (WCUS), North America&#8217;s largest WordPress event, hosted over 1,500 attendees from around the world at the <a href=\"https://us.wordcamp.org/2024/location/\">Oregon Convention Center</a> in Portland, from September 17 to 20.</p>\n\n\n\n<p>Over four days, WordPress professionals and enthusiasts came together to explore the latest advancements and use cases, collaborate on open source projects, and strengthen community connections.</p>\n\n\n\n<p>A dedicated team of more than 40 volunteers, led by <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/juliarosia/\">Julia Golomb</a>, <a href=\"https://profiles.wordpress.org/katiejrichards/\">Katie Richards</a>, and <a href=\"https://profiles.wordpress.org/sunsand187/\">Sandy Edwards</a>, made the event possible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Building WordPress</h2>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2024/contributor-day/\">Contributor Day</a> brought together over 400 contributors across 25 teams to support the WordPress project. As with any Contributor Day, participants learned and collaborated while tackling key projects, including triaging issues, exploring performance improvements, advancing the Twenty Twenty-Five theme, and preparing for the upcoming WordPress 6.7 release.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7353.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Contributor Day 2024 at WordCamp US\" class=\"wp-image-17760\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7353-scaled.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7353-scaled.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7353-scaled.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7353-scaled.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_7353-scaled.jpg?resize=2048%2C1536&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">WordPress contributors discussing all things design at WCUS 2024&#8217;s Contributor Day.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Celebrating WordPress</h2>\n\n\n\n<p>At WCUS 2024, the inaugural Showcase Day highlighted how enterprises like <a href=\"https://us.wordcamp.org/2024/session/showcase-keynote-reach-for-the-sky-disney-experiences-magical-transformation-with-gutenberg/\">Disney Experiences</a>, <a href=\"https://us.wordcamp.org/2024/session/the-news-never-sleeps-how-wordpress-powers-the-new-york-post/\">The New York Post</a>, <a href=\"https://us.wordcamp.org/2024/session/breaking-news-cnns-rise-to-industry-leaders-in-brazil/\">CNN</a>, <a href=\"https://us.wordcamp.org/2024/session/reinventing-vox-medias-cms-a-wordpress-migration-technical-deep-dive/\">Vox Media</a>, and <a href=\"https://us.wordcamp.org/2024/session/how-to-use-humanity-the-open-source-theme-from-amnesty/\">Amnesty International</a> are leveraging WordPress across a variety of industries. With 19 sessions, attendees gained diverse insights into WordPress’s wide-ranging capabilities and features.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2239.jpeg?resize=1024%2C768&#038;ssl=1\" alt=\"Disney at WCUS 2024\" class=\"wp-image-17757\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2239-scaled.jpeg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2239-scaled.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2239-scaled.jpeg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2239-scaled.jpeg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2239-scaled.jpeg?resize=2048%2C1536&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">Showcase day presentation by Alexandra Guffey and Katrina Yates of Disney on Gutenberg&#8217;s use in a complex ecosystem of sites.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Sustaining WordPress</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2288.jpeg?resize=1024%2C768&#038;ssl=1\" alt=\"Joseph Jacks at WCUS 2024\" class=\"wp-image-17759\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2288-scaled.jpeg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2288-scaled.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2288-scaled.jpeg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2288-scaled.jpeg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/09/IMG_2288-scaled.jpeg?resize=2048%2C1536&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">Keynote presenter Joseph Jacks shares thoughts on the future of OSS.</figcaption></figure>\n\n\n\n<p>Joseph “JJ” Jacks, founder of OSS Capital, kicked off the first day of programming with a keynote about how open source will dominate the next wave of software. In looking at emerging trends in tech, he expressed how closed core, or closed source, software is hitting a plateau. Commercial open source companies are able to disrupt and forge the path for a shift in the space.&nbsp;</p>\n\n\n\n<p>Sharing his optimism for the future, JJ highlighted emerging projects OSS Capital is excited about and emphasized that the most successful open source companies thrive by generating more value than they capture.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Learn WordPress</h2>\n\n\n\n<p>The second half of the conference featured more than 20 sessions and workshops across <a href=\"https://us.wordcamp.org/2024/schedule/\">three tracks</a>. Topics ranged from leveraging AI in WordPress to getting the most out of wp-admin.</p>\n\n\n\n<p>Thursday&#8217;s dedicated networking session brought attendees to the sponsor hall to explore and connect with the vast ecosystem of hosts, plugins, agencies, and service providers. The WordCamp US Lounge, located within the exhibit hall, held focused discussions on hosting, neurodiversity, inclusivity, and content marketing.</p>\n\n\n\n<p>Friday began with a <a href=\"https://us.wordcamp.org/2024/session/how-time-uses-patterns-to-drive-recirculation-and-engagement/\">fireside chat between TIME’s CTO Burhan Hamid and WordPress VIP’s CMO Tim Hossain</a>. The duo discussed how TIME&#8217;s implementation of reusable components allowed them to scale and support major traffic-generating topics such as Taylor Swift’s Person of the Year, House of the Dragon, and political events.</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/DSC01144.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Troubador Typewriter at the Code is Poetry Lounge, WCUS 2024\" class=\"wp-image-17756\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/DSC01144-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC01144-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC01144-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC01144-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC01144-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">WordCamp attendees stopped by the Code is Poetry lounge to try their hands at the vintage Smith Corona and have a poem written by the Typewriter Troubadour.</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_6862.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Campfire Lounge at WCUS 2024\" class=\"wp-image-17754\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_6862-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_6862-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_6862-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_6862-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_6862-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">Attendees take a break in the center of the exhibit hall at the “campfire&#8221; where various discussions were held throughout the event.</figcaption></figure>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Q&amp;A with Cofounder Mullenweg</h2>\n\n\n\n<p>In a dynamic keynote, WordPress Cofounder Matt Mullenweg delivered <a href=\"https://www.youtube.com/watch?v=fnI-QcVSwMU\">one of his &#8220;spiciest&#8221; WordCamp presentations</a>, combining insights on WordPress’s open source future with a creative twist. He opened by reading his recent <a href=\"https://ma.tt/2024/09/ecosystem-thinking/\">post</a> that explores open source philosophy, touching on themes of freedom, collaboration, and the ongoing influence of open source projects like WordPress. Mullenweg also critiqued companies for misleadingly labeling proprietary models as open source, stressing the importance of true open source licenses for the future of software freedom.</p>\n\n\n\n<p>Matt further emphasized WordPress’s ecosystem-driven development and highlighted the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> initiative, an effort to avoid the <a href=\"https://en.wikipedia.org/wiki/Tragedy_of_the_commons\">tragedy of the commons</a> and ensure that WordPress thrives for everyone. His speech addressed community concerns about companies profiting off WordPress without giving back and urged attendees to support companies that contribute to the platform’s growth.</p>\n\n\n\n<p>Before diving into the Q&amp;A segment of the presentation, Matt expressed the importance of recognizing:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>“What we create together is bigger than any one person.”</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_7217-2.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Matt Mullenweg speaking at WCUS 2024 in Portland, Oregon USA\" class=\"wp-image-17755\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_7217-2-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_7217-2-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_7217-2-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_7217-2-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/09/DSC_7217-2-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">WordPress Cofounder Matt Mullenweg on the main stage at WCUS 2024.</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"684\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/ZSP_0761.jpg?resize=1024%2C684&#038;ssl=1\" alt=\"Matt Mullengweg and Brian Richards taking the stage at WCUS 2024.\" class=\"wp-image-17761\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/ZSP_0761-scaled.jpg?resize=1024%2C684&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/09/ZSP_0761-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/09/ZSP_0761-scaled.jpg?resize=768%2C513&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/ZSP_0761-scaled.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/09/ZSP_0761-scaled.jpg?resize=2048%2C1367&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">Matt Mullenweg and Brian Richards on stage at WCUS 2024.</figcaption></figure>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Save the Dates</h2>\n\n\n\n<p>In his closing remarks, emcee <a href=\"https://profiles.wordpress.org/rzen/\">Brian Richards</a> expressed gratitude for the fantastic work the event organizers and volunteers contributed to produce WCUS 2024.</p>\n\n\n\n<p>Brian reminded attendees to save the date for <a href=\"https://us.wordcamp.org/2025\">WordCamp US 2025</a>, which will once again take place in Portland, Oregon, from August 26 to 29, 2025.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"792\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/09/1000013801.jpg?resize=792%2C1024&#038;ssl=1\" alt=\"WCUS 2024 Attendees gather for a group photo.\" class=\"wp-image-17753\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/09/1000013801-scaled.jpg?resize=792%2C1024&amp;ssl=1 792w, https://i0.wp.com/wordpress.org/news/files/2024/09/1000013801-scaled.jpg?resize=232%2C300&amp;ssl=1 232w, https://i0.wp.com/wordpress.org/news/files/2024/09/1000013801-scaled.jpg?resize=768%2C993&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/09/1000013801-scaled.jpg?resize=1188%2C1536&amp;ssl=1 1188w, https://i0.wp.com/wordpress.org/news/files/2024/09/1000013801-scaled.jpg?resize=1584%2C2048&amp;ssl=1 1584w, https://i0.wp.com/wordpress.org/news/files/2024/09/1000013801-scaled.jpg?w=1980&amp;ssl=1 1980w\" sizes=\"auto, (max-width: 792px) 100vw, 792px\" /><figcaption class=\"wp-element-caption\">Attendees gather at WCUS in Portland, Oregon.</figcaption></figure>\n\n\n\n<p>No WordCamp is complete without an after-party, with this year’s taking place at the <a href=\"https://us.wordcamp.org/2024/lets-get-social-at-the-wcus-social/\">Oregon Museum of Science and Industry</a> (OMSI). Attendees concluded a week of WordPress with refreshments while visiting the exhibits—including a submarine and planetarium—and posing in the photo booth.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Stay connected</h2>\n\n\n\n<p><a href=\"https://events.wordpress.org/\">WordPress events</a> enable technologists, open source enthusiasts, and community members around the globe to meet, share ideas, and collaborate to drive WordPress and the open web forward.</p>\n\n\n\n<p>Mark your calendars for <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> (Tokyo) on December 16, 2024, 2025’s <a href=\"https://asia.wordcamp.org/2025/\">WordCamp Asia</a> in Manila, <a href=\"https://europe.wordcamp.org/2025/\">WordCamp Europe</a> in Basel, Switzerland, and <a href=\"http://us.wordcamp.org/2025\">WordCamp US</a> in Portland, Oregon!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>This post is a collaboration between the contributors who produce content for <a href=\"https://wordpress.org/news\">wordpress.org/news</a> and the WordCamp US Communications Team.</p>\n\n\n\n<p>Props to the following contributors for the work reviewing/contributing to this post: <a href=\"https://profiles.wordpress.org/rmartinezduque/\">@rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/juliarosia/\">@juliarosia</a>, <a href=\"https://profiles.wordpress.org/brettface/\">@brettface</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">@eidolonnight</a>, and <a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>. Thank you to the Photos Team for supplying images for this post and the official WordPress social media accounts throughout the event: <a href=\"https://profiles.wordpress.org/gwallace87/\">@gwallace87</a>, <a href=\"https://profiles.wordpress.org/m_butcher/\">@m_butcher</a>, <a href=\"https://profiles.wordpress.org/correliebre/\">@correliebre</a>, and <a href=\"https://profiles.wordpress.org/zstepek/\">@zstepek</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17750\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 86: My First WordPress Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2024/09/episode-86-my-first-wordpress-experience/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Sep 2024 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=17684\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:469:\"Join us this week as Josepha takes a personal journey down memory lane to her first encounters with WordPress. In this episode, she shares the story of her very first WordPress website, the excitement of getting involved with WordCamps, and how those early discoveries shaped her rewarding path in the WordPress community. Whether you\'re a seasoned user or new to the platform, Josepha’s reflections will inspire you with insights from her earliest days in WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2024/09/WPB086.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12850:\"\n<p>Join us this week as Josepha takes a personal journey down memory lane to her first encounters with WordPress. In this episode, she shares the story of her very first WordPress website, the excitement of getting involved with WordCamps, and how those early discoveries shaped her rewarding path in the WordPress community. Whether you&#8217;re a seasoned user or new to the platform, Josepha’s reflections will inspire you with insights from her earliest days in WordPress.<br></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://josepha.blog/\">Josepha&#8217;s Blog</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/playground/\">WordPress Playground</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul class=\"wp-block-list\">\n<li><a href=\"https://us.wordcamp.org/2024/schedule/\">WordCamp US arrives this week (September 17-20)</a>\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/news/2024/06/episode-81-its-your-first-wordcamp-welcome/\">WP Briefing: It’s your first WordCamp? Welcome!</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meetings/\">Upcoming WordPress Meetings</a>\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/data-liberation/\">Data Liberation Project</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://events.wordpress.org/\">WordPress Events</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/\">Make WordPress</a></li>\n</ul>\n</li>\n\n\n\n<li>Have a question you’d like answered? Submit them to&nbsp;<a href=\"mailto:wpbriefing@WordPress.org\">WPBriefing@WordPress.org</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-17684\"></span>\n\n\n\n<p>[00:00:00]&nbsp;<strong>Josepha:</strong>&nbsp;Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Music intro)</p>\n\n\n\n<p>[00:00:39]&nbsp;<strong>Josepha:</strong>&nbsp;Folks, this week is WordCamp US, and over the past week or so, I spent a fair amount of time talking to people about that first-time experience. And as with any person who&#8217;s talking about their version of a shared experience, I started thinking back to mine.</p>\n\n\n\n<p>I think my first experience of WordPress was not typical, though. I had never even heard of WordPress when I first went to a WordCamp. I think, I think most of the time people have heard of it before, but I was just there for the plot. So, like many people in my generation, all of us old people of the internet, I was first online with things like Angelfire and GeoCities.</p>\n\n\n\n<p>[00:01:16] <strong>Josepha:</strong> When I went to college, I was keeping friends and family up to date on what I was up to with a little, like, newsletter? And then Xanga made it to our college campus, and eventually, so did Facebook. And I was one of those kids kind of like half-breaking sites with HTML and CSS I found online. I was changing layouts like every week to suit my mood.</p>\n\n\n\n<p>Then, when I graduated and found myself in a city with more talent and more competition than I&#8217;d actually accounted for, and started to realize that this online stuff I&#8217;d been doing for fun might actually be something that I needed to use as a tool professionally. So, I first went out and reserved my screen name everywhere I could think of.</p>\n\n\n\n<p>[00:02:01] <strong>Josepha:</strong> And we&#8217;re talking, like, LiveJournal, WordPress.com, Blogger, all the things, and eventually wound up building my first site on Weebly. And it was super ugly. I&#8217;m not able to design things. I have an okay sense for a design that is good, but like, left to my own devices, it&#8217;s gonna be what that was, which is like a tie dye background for some reason, and had everything organized into little, like, blocks, I guess? You know, like, old magazine layouts? And it technically had everything that I wanted, but it wasn&#8217;t necessarily the best version of any of those things either. I could write a little bit about myself and my services, I could add a few photos, there was a way to contact me, and I could do it all by myself.</p>\n\n\n\n<p>And so it was a good place to start. Not long after that, though, I graduated into the need for a more professional-looking website, and it was beautiful. I received a website; someone built it for me. It was beautiful; it had this elegant design. Had a lot of custom functionality, but it was built using ColdFusion. I couldn&#8217;t do anything to it. I couldn&#8217;t change anything. All minor changes just had to kind of wait until there was enough to make sense to use that maintenance time, that maintenance retainer that I had. It really was just kind of formal. It was an isolated snapshot of all of the sorts of information that was required to be on the web at that time.</p>\n\n\n\n<p>[00:03:28] <strong>Josepha:</strong> And then, later that year, I went to my first WordCamp, and I moved my site over to WordPress. And for the first time, I had that kind of mixture of professional expression that was on top of something that enabled my own expression. And honestly, I didn&#8217;t learn much more about the software for a few years. It was doing what I needed it to do, how I needed it to be done, and that&#8217;s really what mattered to me. </p>\n\n\n\n<p>And when I skip a few years ahead after that, a few years later, when I was learning by organizing Meetups and WordCamps that had speakers that I wanted to hear from, that had topics that I felt like I needed to learn more about, what I remember most about that learning period for me is that I knew that I wasn&#8217;t the first person to run into any of my problems, which meant that a solution was probably already out there, and I could find someone to come and teach us about their solution.</p>\n\n\n\n<p>[00:04:23] <strong>Josepha:</strong> And also, I knew that if we were running into a new problem and started breaking things left and right, there was always a way back. I was never really too far away from success. Like I felt like I might be lost, but I still was pretty much findable. And I guess I always want that for new users of the open web now, like new members of our WordPress community.</p>\n\n\n\n<p>I want them to feel like the breaking of things is fine and safe and that no mistake is irretrievable. I want us to have some place where perfection isn&#8217;t the point. Now listen, I know the software is complex right now. The admin is a little mismatched, your first choices are huge choices, and there are a million places to start.</p>\n\n\n\n<p>[00:05:03] <strong>Josepha:</strong> So, all I can say is, start with what you need, and once you&#8217;ve got that, like the back of your hand, move on to what you need next. And keep doing that, bravely and messily, until what you&#8217;ve got is all you ever wanted. I&#8217;m gonna leave for you, in the show notes, a link to something called WordPress Playground.</p>\n\n\n\n<p>It&#8217;s gonna launch a little WordPress site in your browser. There will be no host. It&#8217;s just all in the browser itself. And it will have the latest bundled theme on it, Twenty Twenty-Four, and the latest version of WordPress. And that&#8217;s it. Go in there and click around on the left-hand menu. Start a post, change a page, modify the theme.</p>\n\n\n\n<p>Just play around a while. See if it&#8217;s something that seems fun to you or valuable, or if it&#8217;s something that you can use as a time capsule for your kid because that sounds like a nice little mix of fun and work. And remember, sometimes perfection&#8217;s not the point.&nbsp;</p>\n\n\n\n<p>[00:05:57] (Music interlude)</p>\n\n\n\n<p>[00:06:04] <strong>Josepha:</strong> That brings us now to our small list of big things.</p>\n\n\n\n<p>Folks, as I mentioned at the top, WordCamp US is happening this week. It is September 17th through 20th this year, quite a few more days. But that also means that we&#8217;ll have quite a bit more stuff to do. If you have your tickets and haven&#8217;t looked at all of the presentations occurring over the four-day event, remember to take a look at the schedule and pick out topics that are interesting. And remember, just because you picked it out before you went doesn&#8217;t mean that if you get in there and it doesn&#8217;t work for you. You can&#8217;t choose a different topic while you&#8217;re there. And as a bonus, if this is your first WordCamp that you&#8217;ve ever attended, I have you covered. You can check out my previous episode on all the things to remember for your first time attending a WordCamp. And we have a pretty active community as well. If you just have questions or want to get in there and say, &#8216;Hey, I&#8217;m going to a vegan restaurant for lunch; who wants to join me?&#8217; You can do that, and you can definitely find somebody. </p>\n\n\n\n<p>Also, there are some upcoming WordPress meetings. So, if you&#8217;re not attending WordCamp US but still want to connect with the community, there are a ton of team meetings that are happening. You can find those on make.WordPress.org/meetings, I think. So really, really easy URL to remember. You can join your fellow community members and contribute to the WordPress project there. </p>\n\n\n\n<p>[00:07:18] <strong>Josepha:</strong> And I also wanted to just call your attention to a few really big projects that still need a little bit of help around the project. So, on the one hand, we have Data Liberation. That is still a really big project, but specifically, we are nearly ready to start working on some user-facing elements of that. It is being powered by Playground, and because the data liberation, the migration of one site to another, is so complex, once we get those elements built into Playground, I think it also stands to fix a bunch of the problems that we have across our user flow, our user experience for the project. Things like having better theme previews and being able to get a sense for what a plugin functionally will do for you versus what it says it&#8217;s going to do for you. And getting a sense for what the admin looks like, all of those things. And so, anyone who wants to learn more about contributing to Playground or to Data Liberation, I absolutely encourage you to go check out those meetings, see what&#8217;s happening, and get your hands a bit dirty with that.</p>\n\n\n\n<p>[00:08:26] <strong>Josepha:</strong> We also have a bunch of stuff happening in our community space. If you had received this podcast from somebody because they were like, hey, I know someone who might like WordPress or who has just learned WordPress and has never been to an event or any other reason that you are listening to this but don&#8217;t yet know the community, there is an easier option than just jumping straight into a WordCamp like I did. You can go to a meetup. You can see there&#8217;s a widget in your dashboard that&#8217;ll tell you what your nearest event is, but if you put your location into that widget, and nothing comes up. Technically, that means that you have an opportunity to bring a bunch of people together to teach you stuff you wish you knew about your site right now. So you can wander over into your dashboard and see those, or you can also head over to the community area on make.WordPress.org and anybody over there is happy to help you get started. And let me tell you, it is a very low-effort sort of thing to do. Here again, perfection&#8217;s not the point. And so that, my friends, is your small list of big things.</p>\n\n\n\n<p>[00:09:28] <strong>Josepha:</strong> Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there is a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at WPBriefing@WordPress.org. I am your host, Josepha Haden Chomphosy. Thank you for tuning in today for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks. Or tomorrow if we&#8217;re all going to WordCamp US.&nbsp;</p>\n\n\n\n<p>[00:09:58] (Music outro)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17684\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Tour the New Learn WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2024/09/tour-the-new-learn-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Sep 2024 19:26:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17687\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:348:\"The reimagined Learn WordPress experience launched just over a month ago. It introduces Learning Pathways, a new approach to educational content from the Training team. In case you haven’t explored the updated Learn WordPress site yet, take a peek at what you’ve been missing in this short and sweet virtual tour: The reception of the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Lauren Stein\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5990:\"\n<p>The <a href=\"https://wordpress.org/news/2024/08/a-brand-new-way-to-learn-wordpress/\">reimagined Learn WordPress experience</a> launched just over a month ago. It introduces Learning Pathways, a new approach to educational content from the Training team.</p>\n\n\n\n<p>In case you haven’t explored the updated <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> site yet, take a peek at what you’ve been missing in this short and sweet virtual tour:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"Tour the New Learn WordPress Experience\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/Auo6xQpG-rU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>The reception of the new experience and Learning Pathways courses has been positive, with the average learner rating at 4.5/5 since the site’s relaunch. Here’s what learners have been saying:</p>\n\n\n\n<div class=\"wp-block-group is-content-justification-center is-layout-constrained wp-container-core-group-is-layout-6 wp-block-group-is-layout-constrained\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-container-core-column-is-layout-5 wp-block-column-is-layout-flow\" style=\"padding-right:0px;padding-left:0px\">\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-2 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--40)\">\n<p class=\"has-eb-garamond-font-family\" style=\"font-size:19px\">&#8220;The beginner course did a fantastic job of introducing all the key terms I needed to know. It really set me up with a strong foundation to build on in the future&#8230;&#8221;</p>\n\n\n\n<p class=\"has-text-align-left has-eb-garamond-font-family has-normal-font-size\"><em>Carlos S. </em></p>\n\n\n\n<p class=\"has-text-align-left has-eb-garamond-font-family has-normal-font-size\"><em>about the <a href=\"https://learn.wordpress.org/course/beginner-wordpress-user/\">Beginner WordPress User course</a></em></p>\n</div>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-3 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--40)\">\n<p class=\"has-eb-garamond-font-family\" style=\"font-size:19px\">“This series of lessons is exactly what I am looking for: it improves my knowledge at an intermediate level, especially for the newer features in the Site Editor.”</p>\n\n\n\n<p class=\"has-eb-garamond-font-family has-normal-font-size\"><em>jpgoem </em></p>\n\n\n\n<p class=\"has-text-align-left has-eb-garamond-font-family has-normal-font-size\"><em>about the <a href=\"https://learn.wordpress.org/course/intermediate-theme-developer/\" data-type=\"link\" data-id=\"https://learn.wordpress.org/course/intermediate-theme-developer/\">Intermediate Theme Developer course</a></em></p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-container-core-column-is-layout-6 wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-4 wp-block-group-is-layout-constrained\" style=\"border-radius:0px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--40)\">\n<p class=\"has-eb-garamond-font-family\" style=\"font-size:19px\">“The Beginner WordPress Developer course provided exactly what I needed to return to web design and WordPress after years of web application development.”</p>\n\n\n\n<p class=\"has-eb-garamond-font-family has-normal-font-size\"><em>Hugo V. </em></p>\n\n\n\n<p class=\"has-text-align-left has-eb-garamond-font-family has-normal-font-size\"><em>about the <a href=\"https://learn.wordpress.org/course/beginner-wordpress-developer/\">Beginner WordPress Developer course</a></em></p>\n</div>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-5 wp-block-group-is-layout-constrained\" style=\"border-radius:0px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--40)\">\n<p class=\"has-eb-garamond-font-family\" style=\"font-size:19px\">“This course was a great overview that also gave links for more reading. It&#8217;s making learning much more fun, thorough, and structured…”</p>\n\n\n\n<p class=\"has-eb-garamond-font-family has-normal-font-size\"><em>Heather A. </em></p>\n\n\n\n<p class=\"has-text-align-left has-eb-garamond-font-family has-normal-font-size\" style=\"padding-top:0px;padding-bottom:0rem;padding-left:0\"><em>about the <a href=\"https://learn.wordpress.org/course/intermediate-wordpress-user/\">Intermediate WordPress User course</a></em></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<p>The Training team is working hard to add more Learning Pathways to the existing roster, with the Designer and Intermediate Plugin Developer Learning Pathways already in progress. In the meantime, explore the <a href=\"https://learn.wordpress.org/learning-pathways/\">four Learning Pathways</a> at Learn WordPress.</p>\n\n\n\n<p>There’s always more to learn.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17687\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 10 Oct 2024 21:09:02 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 09 Oct 2024 01:20:25 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20240127174858\";}','no'),(401537,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1728637742','no'),(401538,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1728594542','no'),(401539,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1728637742','no'),(401540,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: WordPress.org Login Gets Mandatory Affiliation Checkbox Following WP Engine Dispute\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=174814\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/wordpress-org-login-gets-mandatory-affiliation-checkbox-following-wp-engine-dispute\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9191:\"<p>The ongoing WP Engine-Automattic issue shows no signs of being resolved and has, in fact, increased in intensity. The conflict started last month with Matt Mullenweg’s <a href=\"https://wptavern.com/highlights-from-matt-mullenwegs-spiciest-word-camp-presentation-at-wordcamp-us-2024\">spiciest Word Camp presentation</a> at WordCamp US 2024 where he accused WP Engine of being a “cancer to WordPress”.</p>\n\n\n\n<p>Yesterday, users who logged onto the WordPress.org home page were surprised to see two new additions. First, there was a new “<a href=\"https://x.com/wpengine/status/1841633469685723292\">WP Engine has filed a massive lawsuit</a>” session under the password field linking to WP Engine’s X post.</p>\n\n\n\n<a href=\"https://twitter.com/wpengine/status/1841633469685723292\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfbe72RsbBR6GxSxt6OW0R_0VZ8deFzTzjOuu3D2iZzC3SZgGJW18jtaNPeEtjgAeYplIJSlt2yuMqvojIleLWo6J7Sh2PiGFAsQRKKGcZAf-Ia9Px6tcazAbrWO1bCJe0sq3LSvsbFzDVK-gC1OK_up9lp?key=g1WBxcIO135GVx_YbxJdhw\" alt=\"\" /></a>\n\n\n\n<p>Second, a new mandatory check box. You could access the account only if you confirmed “I am not affiliated with WP Engine in any way, financially or otherwise.” </p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdgKsQJWVfjcx3Eh3gQIa0nQxc_8_LpDXqEjMO8y_OKSlZnIOyh4GcZoCoM4rgLibiqC2Au_ClMzVfxhlOnEsL61MThuD3h7koKnfmTfpq38bGy4qW-IWdtO4ZNW_RDJcI-rQqL656mX8_2pvrvu6XP-rd9?key=g1WBxcIO135GVx_YbxJdhw\" alt=\"\" />\n\n\n\n<p>While the lawsuit mention was soon removed from the homepage, the checkbox remains.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfBqNeDr5XeF4yzp_vHJbemfoqYMN4SoSdOtFd3yLlm-vF3k1ohDgVCLciEbnRez8iJlW4332mG9eR_W2rGJ79wjkwXWP-miTHvCAkm3ZbcefXXPPuqlg4HFfGZmKO2HSLvJJ_bXiPXIJFebYEbDehW-wHb?key=g1WBxcIO135GVx_YbxJdhw\" alt=\"\" />\n\n\n\n<p>WordPress.org later <a href=\"https://x.com/WordPress/status/1843957482231849174\">tweeted</a>: “If you have questions on whether you are affiliated with @wpengine or not, please get in touch with them.”</p>\n\n\n\n<p>Matt shared in Slack that “There have been a ton of sign-ins since the checkbox went live” He also posted this question in <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1728463022015469\">Slack</a>: “What actions should WP Engine do for WordPress.org to remove the new login checkbox.”</p>\n\n\n\n<p>Core-committer <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> asked Matt for <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1728463928352389\">more clarification</a> regarding the new checkbox. Matt shared that the checkbox is part of WP Engine’s ban, and the values from it are not stored. Also, WP Engine&#8217;s lawsuit has put everyone who participates in .org in the position of possibly needing legal representation.&nbsp;</p>\n\n\n\n<p>Several community members have reported being blocked from WordPress Slack including <a href=\"https://x.com/JavierCasares/status/1843963052183433331\">Javier Casares</a> (Hosting Team Rep and also Lead for the WordPress Advanced Administration Handbook), <a href=\"https://x.com/rmccue/status/1843967630585311595\">Ryan McCue</a> (WordPress committer, and co-lead on the WordPress REST API), <a href=\"https://x.com/jonoalderson/status/1843985559745921046\">Jono Alderson</a> (technical SEO consultant), <a href=\"https://x.com/alexsirota/status/1843970587107991872\">Alex Sirota</a> (founder of NewPath Consulting) and <a href=\"https://x.com/LinuxJedi/status/1843966957495939093\">Andrew Hutchings</a> (Chief Contributions Officer at MariaDB Foundation).</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Response</h3>\n\n\n\n<p>Many are just eager for the escalating drama to end. Community members also took to X to share their opinions.</p>\n\n\n\n<p><strong>Rajendra Zore</strong>, CMO of RunCloud <a href=\"https://x.com/rajendrazore/status/1843897786632212909\">summed it up</a> best: “Every day, I hope today will be the day this WP vs WPE drama ends. The Community—who built this OSS and has been completely ignored—finally deserves the attention it’s been missing. The most dysfunctional leadership I’ve ever seen is shamelessly on display, leaving the community feeling like a child caught between fighting parents. So toxic! <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f623.png\" alt=\"😣\" class=\"wp-smiley\" />” </p>\n\n\n\n<p><strong>Bozz Media</strong> <a href=\"https://x.com/bozzmedia/status/1843869886403256330\">asked</a>: “Financially, or otherwise&#8221; what does this even mean? Is this meant to cover customers of WPE? Either way;  Yikes… Beyond the check mark how is an unrelated “news” link about WPE part of the login form in any way a rational or acceptable UI update to .org ??” </p>\n\n\n\n<p>Plugin developer <strong>Daan van den Bergh</strong> <a href=\"https://x.com/Dan0sz/status/1843891750596948394\">tweeted</a>: “I&#8217;m starting to dislike WordPress because of this. I don&#8217;t care about WP Engine: I don&#8217;t use their services/plugins, yet I get slapped in the face with this drama every day. Now a F-in login page? WTF!” </p>\n\n\n\n<p><strong>James Giroux</strong> (Technical Account Manager at WordPress VIP) published <a href=\"https://jamesgiroux.ca/why-is-matt-turning-up-the-volume/\">Why Is Matt Turning Up The Volume?</a> He notes “This conflict reveals the true cost of maintaining WordPress infrastructure, and it’s a fight for the survival of WordPress’s values and community integrity.” He continued “Matt is well within his rights as the principal financier of the infrastructure around WordPress to decide who can and cannot access it. He’s usually quite permissive of many things and extends a lot of grace. In this fight for the heart and soul of WordPress, though, he is not holding his punches.”</p>\n\n\n\n<p><strong>David Heinemeier Hansson</strong>, the creator of Ruby on Rails shared <a href=\"https://world.hey.com/dhh/automattic-is-doing-open-source-dirty-b95cf128\">Automattic is doing open source dirty</a>. He says “Between creating one of the most widely used open-source programs and powering half the internet, there&#8217;s every tribal reason to side with Automattic over WP Engine&#8217;s private-equity owners at Silver Lake….But I suspect Automattic wants to have their cake and eat it too. They want to retain WordPress&#8217; shine of open source, but also be able to extract their pound of flesh from any competitor that might appear, whenever they see fit. Screw that.” </p>\n\n\n\n<p>He also had this to say: “That&#8217;s the deal. That&#8217;s open source. I give you a gift of code, you accept the terms of the license. There cannot be a second set of shadow obligations that might suddenly apply, if you strike it rich using the software. Then the license is meaningless, the clarity all muddled, and certainty lost.” </p>\n\n\n\n<a href=\"https://twitter.com/photomatt/status/1843803465719620012\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf4uq8SvgT5t4q8yIKUoisr_bmXnlwX9ggl5MW1A_FwjFcCJfXgL-jkuWECh62-_falB7uVXAF4bie6fWXU4dMLq_BY2keajzdSvyurN7HPk_R03BL9dqjoYaPmrgR3seFiLtlPUqVXeVJ5c965EiBDWRE?key=g1WBxcIO135GVx_YbxJdhw\" alt=\"\" /></a>\n\n\n\n<p><strong>Guillermo Rauch</strong>, CEO of Vercel, has <a href=\"https://x.com/rauchg/status/1844167329913110667\">shared</a> a Twitter thread analysing the WP login checkbox. </p>\n\n\n\n<p><a href=\"https://x.com/photomatt/status/1843803465719620012\"></a>Some took it as a chance to let their imagination run wild. </p>\n\n\n\n<a href=\"https://x.com/xaver_/status/1843926554042306951\"><img width=\"976\" height=\"1682\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-12.png\" alt=\"\" class=\"wp-image-174818\" /></a>\n\n\n\n<a href=\"https://x.com/MetaPrinxss/status/1843919050478621156\"><img width=\"500\" height=\"425\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-14-500x425.png\" alt=\"\" class=\"wp-image-174821\" /></a>\n\n\n\n<p>TheWPGirls have a new song <a href=\"https://www.youtube.com/watch?v=Duz9crandDE\">WP Engine Affiliate Blues (Can&#8217;t Prove I&#8217;m Innocent)</a>. </p>\n\n\n\n<h3 class=\"wp-block-heading\">WP Engine Responds</h3>\n\n\n\n<p>WP Engine has responded in a tweet: “Like the rest of the community, we have seen a new checkbox for logins at WordPress.org that has created confusion amongst the community as to whether or how they are obliged to answer the question posed next to the checkbox. We value our customers, agencies, users and the community as a whole, none of whom are affiliates of WP Engine.”</p>\n\n\n\n<a href=\"https://x.com/wpengine/status/1844078545603092691\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXc_7InS3cMSyWqsPT23hxh7XC7ow8IPWdyInox0rUVK82yXldSb7E_pOvcnW0_WG-LYbwMBOxe_d2bMWeh6JgjExlM_MVXXquSrKQui0GRYQyd6H1-WLhJmHqeTwqffvJBbxE4xd-SIws6bund4x_A_yHsF?key=g1WBxcIO135GVx_YbxJdhw\" alt=\"\" /></a>\n\n\n\n<p>This is affecting the morale of the thousands of people who voluntarily contribute to their beloved CMS. But then you know what happens when elephants fight.&nbsp;</p>\n\n\n\n<p>(For those who might have missed parts of the dispute, I’ll share a quick summary soon.)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Oct 2024 04:26:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"HeroPress: Ten Years Of HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=7473\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://heropress.com/ten-years-of-heropress/#utm_source=rss&utm_medium=rss&utm_campaign=ten-years-of-heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:81164:\"<img width=\"1024\" height=\"235\" src=\"https://heropress.com/wp-content/uploads/2024/10/heropress_everyone-1024x235.webp\" class=\"attachment-large size-large wp-post-image\" alt=\"\" /><p><a href=\"https://heropress.com/feed/#future\">Be sure to read the announcement at the bottom!</a></p>\n\n\n\n<p>In late November of 2014 I woke to an email that would change my life.  It said</p>\n\n\n\n<blockquote><p>I want you do do something great for WordPress.</p></blockquote>\n\n\n\n<p>I wrote back and asked &#8220;What is it?&#8221; and he wrote back</p>\n\n\n\n<blockquote><p>That&#8217;s your journey to discover.</p></blockquote>\n\n\n\n<p>What a thing! I won&#8217;t tell the whole story here, I&#8217;ve told it many times, but this was the spark that started HeroPress.</p>\n\n\n\n<p>For those that don&#8217;t remember, <a href=\"https://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline\">HeroPress Version 1 ended in failure</a>. Everyone walked away and it was done. But people kept emailing me and telling me not to let it go.  So we pivoted from a video format to text, and away we went.</p>\n\n\n\n<p>In the years that followed we&#8217;ve published <strong>278 essays</strong> in <strong>29 languages</strong> from <strong>66 countries</strong>. There were 136 women, 134 men, and 3 non-binary folk. The longest anyone ever took to get me an essay was 9 years.  The shortest was 2 hours.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\">\n<p>Here we all are:</p>\n\n\n<ul id=\"contrib-grid\"><li><a href=\"https://heropress.com/contributors/lana-miro/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/09/Lana_Kravchenko-1-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Lana Miro\" title=\"Lana Miro\" /></a></li><li><a href=\"https://heropress.com/contributors/mumtahina-faguni/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/08/mumta-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Mumtahina Faguni\" title=\"Mumtahina Faguni\" /></a></li><li><a href=\"https://heropress.com/contributors/rae-morey/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/08/rae-morey-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rae Morey\" title=\"Rae Morey\" /></a></li><li><a href=\"https://heropress.com/contributors/ben-evans/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/06/ben-2023-square-extra-small-1-scaled-1.avif\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ben Evans\" title=\"Ben Evans\" /></a></li><li><a href=\"https://heropress.com/contributors/elena-brescacin/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/06/foto-Elena-Brescacin-ottobre-2023-scaled_600.avif\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Elena Brescacin\" title=\"Elena Brescacin\" /></a></li><li><a href=\"https://heropress.com/contributors/tor-bjorn-fjellner/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/06/tobi-selfie20210519-sq-600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tor-Björn Fjellner\" title=\"Tor-Björn Fjellner\" /></a></li><li><a href=\"https://heropress.com/contributors/nada-elsharkawy/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/04/Nada_ElSharkawy2.avif\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nada Elsharkawy\" title=\"Nada Elsharkawy\" /></a></li><li><a href=\"https://heropress.com/contributors/dr-rhiannon-little-surowski/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/04/rhiannon-little-surowski-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Dr. Rhiannon Little-Surowski\" title=\"Dr. Rhiannon Little-Surowski\" /></a></li><li><a href=\"https://heropress.com/contributors/matteo-enna/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/03/matteo-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Matteo Enna\" title=\"Matteo Enna\" /></a></li><li><a href=\"https://heropress.com/contributors/syed-laden/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/03/1052441B-31C7-4153-94F9-227FF564B1E1-Photoroom.png-Photoroom-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Syed Laden\" title=\"Syed Laden\" /></a></li><li><a href=\"https://heropress.com/contributors/juan-chen/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/03/Juan-Chen-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Juan Chen\" title=\"Juan Chen\" /></a></li><li><a href=\"https://heropress.com/contributors/adrita-chakraborty/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/02/Adrita-WordCamp-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Adrita Chakraborty\" title=\"Adrita Chakraborty\" /></a></li><li><a href=\"https://heropress.com/contributors/aki-hamano/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/01/aki_hamano-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Aki Hamano\" title=\"Aki Hamano\" /></a></li><li><a href=\"https://heropress.com/contributors/nahuai-badiola/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/01/Nahuai-Badiola-cuad-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nahuai Badiola\" title=\"Nahuai Badiola\" /></a></li><li><a href=\"https://heropress.com/contributors/quentin-le-duff/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/12/quentin-leduff-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Quentin Le Duff\" title=\"Quentin Le Duff\" /></a></li><li><a href=\"https://heropress.com/contributors/ganga-kafle/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/12/ganga_kafle-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ganga Kafle\" title=\"Ganga Kafle\" /></a></li><li><a href=\"https://heropress.com/contributors/tremi-dkhar/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/10/JN_09968-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tremi Dkhar\" title=\"Tremi Dkhar\" /></a></li><li><a href=\"https://heropress.com/contributors/adelina-tuca/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/10/adelina-heropress-photo-150x150.webp\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Adelina Tuca\" title=\"Adelina Tuca\" /></a></li><li><a href=\"https://heropress.com/contributors/krupa-nanda/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/09/krupa_nanda-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Krupa Nanda\" title=\"Krupa Nanda\" /></a></li><li><a href=\"https://heropress.com/contributors/sadie-michaela-harris/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/09/Sadie-profile-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sadie-Michaela Harris\" title=\"Sadie-Michaela Harris\" /></a></li><li><a href=\"https://heropress.com/contributors/justin-kopepasah/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/09/suit-up-with-lincoln-600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Justin Kopepasah\" title=\"Justin Kopepasah\" /></a></li><li><a href=\"https://heropress.com/contributors/emma-young/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/08/emma_young-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Emma Young\" title=\"Emma Young\" /></a></li><li><a href=\"https://heropress.com/contributors/jennifer-farhat/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/08/jennifer_farhat-150x150.jpeg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jennifer Farhat\" title=\"Jennifer Farhat\" /></a></li><li><a href=\"https://heropress.com/contributors/igor-ligay/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/06/igor_ligay-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Igor Ligay\" title=\"Igor Ligay\" /></a></li><li><a href=\"https://heropress.com/contributors/amy-kamala/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2024/06/amy_kamala_2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Amy Kamala\" title=\"Amy Kamala\" /></a></li><li><a href=\"https://heropress.com/contributors/rita-robles-loaiza/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/05/robles-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rita Robles Loaiza\" title=\"Rita Robles Loaiza\" /></a></li><li><a href=\"https://heropress.com/contributors/ericka-barboza/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/05/Ericka-Barboza-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ericka Barboza\" title=\"Ericka Barboza\" /></a></li><li><a href=\"https://heropress.com/contributors/rachel-winchester/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/03/rachel_winchester-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rachel Winchester\" title=\"Rachel Winchester\" /></a></li><li><a href=\"https://heropress.com/contributors/ajay-dsouza/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/02/ajay-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ajay D&#8217;Souza\" title=\"Ajay D&#8217;Souza\" /></a></li><li><a href=\"https://heropress.com/contributors/mark-andrew-nordstrom/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/02/mark-andrew-nordstrom-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Mark-Andrew Nordstrom\" title=\"Mark-Andrew Nordstrom\" /></a></li><li><a href=\"https://heropress.com/contributors/samantha-mueller/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/02/samantha_meuller-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Samantha Mueller\" title=\"Samantha Mueller\" /></a></li><li><a href=\"https://heropress.com/contributors/james-koussertari/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/01/james-koussertari-2023-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"James Koussertari\" title=\"James Koussertari\" /></a></li><li><a href=\"https://heropress.com/contributors/a-h-m-nazmul-hasan-monshi/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/01/robin-heropress-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"A H M Nazmul Hasan Monshi\" title=\"A H M Nazmul Hasan Monshi\" /></a></li><li><a href=\"https://heropress.com/contributors/destiny-kanno/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/01/Destiny-Fox-Kanno-scaled-1-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Destiny Kanno\" title=\"Destiny Kanno\" /></a></li><li><a href=\"https://heropress.com/contributors/ellen-bauer/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2023/01/ellen-bauer-600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ellen Bauer\" title=\"Ellen Bauer\" /></a></li><li><a href=\"https://heropress.com/contributors/isotta-peira/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/12/isotta-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Isotta Peira\" title=\"Isotta Peira\" /></a></li><li><a href=\"https://heropress.com/contributors/anders-noren/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/12/anders-padjelanta-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Anders Norén\" title=\"Anders Norén\" /></a></li><li><a href=\"https://heropress.com/contributors/alfredo-navas/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/10/alfredo_navas-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Alfredo Navas\" title=\"Alfredo Navas\" /></a></li><li><a href=\"https://heropress.com/contributors/lesley-sim/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/10/lesley_sim-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Lesley Sim\" title=\"Lesley Sim\" /></a></li><li><a href=\"https://heropress.com/contributors/akshat-choudhary/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/07/akshat_choudhary-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Akshat Choudhary\" title=\"Akshat Choudhary\" /></a></li><li><a href=\"https://heropress.com/contributors/timi-wahalahti/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/07/timi_wahalahti-2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Timi Wahalahti\" title=\"Timi Wahalahti\" /></a></li><li><a href=\"https://heropress.com/contributors/donna-cavalier/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/07/donna-600x600-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Donna Cavalier\" title=\"Donna Cavalier\" /></a></li><li><a href=\"https://heropress.com/contributors/hari-shanker/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/07/hari-shanker-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Hari Shanker\" title=\"Hari Shanker\" /></a></li><li><a href=\"https://heropress.com/contributors/artemy-kaydash/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/04/artemy_kaydash-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Artemy Kaydash\" title=\"Artemy Kaydash\" /></a></li><li><a href=\"https://heropress.com/contributors/menaka-sankaralingam/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/04/MenakaSankaralingam-min-150x150.jpeg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Menaka Sankaralingam\" title=\"Menaka Sankaralingam\" /></a></li><li><a href=\"https://heropress.com/contributors/laurence-bahiirwa/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/04/laurence-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Laurence Bahiirwa\" title=\"Laurence Bahiirwa\" /></a></li><li><a href=\"https://heropress.com/contributors/huanyi-eric-chuang/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/03/7C66B336-E5AF-4914-8B15-62FB92597D57-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Huanyi (Eric) Chuang\" title=\"Huanyi (Eric) Chuang\" /></a></li><li><a href=\"https://heropress.com/contributors/paulo-aquino/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/02/paulo_aquino-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Paulo Aquino\" title=\"Paulo Aquino\" /></a></li><li><a href=\"https://heropress.com/contributors/monika-rao/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2022/01/monika_rao-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Monika Rao\" title=\"Monika Rao\" /></a></li><li><a href=\"https://heropress.com/contributors/kim-coleman/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/12/Kim_Coleman-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Kim Coleman\" title=\"Kim Coleman\" /></a></li><li><a href=\"https://heropress.com/contributors/dj-billings/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/11/dj-billings-600x600-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"DJ Billings\" title=\"DJ Billings\" /></a></li><li><a href=\"https://heropress.com/contributors/daniel-kossmann/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/11/daniel-kossmann-wordcamp-sao-paulo-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Daniel Kossmann\" title=\"Daniel Kossmann\" /></a></li><li><a href=\"https://heropress.com/contributors/hauwa-abashiya/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/11/haa-wordpress-600-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Hauwa Abashiya\" title=\"Hauwa Abashiya\" /></a></li><li><a href=\"https://heropress.com/contributors/stefano-cassone/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/11/stefano_cassone-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Stefano Cassone\" title=\"Stefano Cassone\" /></a></li><li><a href=\"https://heropress.com/contributors/nigel-rodgers/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/10/nigel_rogers-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nigel Rodgers\" title=\"Nigel Rodgers\" /></a></li><li><a href=\"https://heropress.com/contributors/estela-rueda/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/09/estela_with_bruno_600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Estela Rueda\" title=\"Estela Rueda\" /></a></li><li><a href=\"https://heropress.com/contributors/devin-maeztri/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/09/devin_maeztri-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Devin Maeztri\" title=\"Devin Maeztri\" /></a></li><li><a href=\"https://heropress.com/contributors/jos-velasco/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/08/Jos-Velasco-3-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jos Velasco\" title=\"Jos Velasco\" /></a></li><li><a href=\"https://heropress.com/contributors/pam-woest/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/08/pam_woest-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Pam Woest\" title=\"Pam Woest\" /></a></li><li><a href=\"https://heropress.com/contributors/ihtisham-zahoor/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/07/ihtishamzahoor-pp-600x600-min-150x150.jpeg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ihtisham Zahoor\" title=\"Ihtisham Zahoor\" /></a></li><li><a href=\"https://heropress.com/contributors/yusuf-omotoso/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/07/YusufP-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Yusuf Omotoso\" title=\"Yusuf Omotoso\" /></a></li><li><a href=\"https://heropress.com/contributors/marieke-van-de-rakt/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/07/marieke_van_de_rakt-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Marieke van de Rakt\" title=\"Marieke van de Rakt\" /></a></li><li><a href=\"https://heropress.com/contributors/gobinda-tarafdar/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/07/Gtarafdar_600_600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Gobinda Tarafdar\" title=\"Gobinda Tarafdar\" /></a></li><li><a href=\"https://heropress.com/contributors/anne-mccarthy/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/06/anne_mccarthy-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Anne McCarthy\" title=\"Anne McCarthy\" /></a></li><li><a href=\"https://heropress.com/contributors/carla-doria-medina/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/05/carla-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Carla Doria Medina\" title=\"Carla Doria Medina\" /></a></li><li><a href=\"https://heropress.com/contributors/dhara-shah/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/05/dhara_shah-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Dhara Shah\" title=\"Dhara Shah\" /></a></li><li><a href=\"https://heropress.com/contributors/ashley-gibson/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/04/ashley-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ashley Gibson\" title=\"Ashley Gibson\" /></a></li><li><a href=\"https://heropress.com/contributors/sunita-rai/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/04/sraiprofilephoto-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sunita Rai\" title=\"Sunita Rai\" /></a></li><li><a href=\"https://heropress.com/contributors/vito-peleg/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/03/vito_peleg-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Vito Peleg\" title=\"Vito Peleg\" /></a></li><li><a href=\"https://heropress.com/contributors/ronald-gijsel/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/03/ronald_gijsel-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ronald Gijsel\" title=\"Ronald Gijsel\" /></a></li><li><a href=\"https://heropress.com/contributors/jeff-matson/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/04/jeff_matson-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jeff Matson\" title=\"Jeff Matson\" /></a></li><li><a href=\"https://heropress.com/contributors/allison-dye/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/03/allison-dye-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Allison Dye\" title=\"Allison Dye\" /></a></li><li><a href=\"https://heropress.com/contributors/angela-jin/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/01/angela_jin-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Angela Jin\" title=\"Angela Jin\" /></a></li><li><a href=\"https://heropress.com/contributors/ryan-kienstra/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2021/01/600-600-author-ryan-kienstra_light-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ryan Kienstra\" title=\"Ryan Kienstra\" /></a></li><li><a href=\"https://heropress.com/contributors/sally-strebel/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/12/image1-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sally Strebel\" title=\"Sally Strebel\" /></a></li><li><a href=\"https://heropress.com/contributors/pooja-derashri/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/10/pooja-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Pooja Derashri\" title=\"Pooja Derashri\" /></a></li><li><a href=\"https://heropress.com/contributors/thelma-mutete/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/09/thelma-heropress-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Thelma Mutete\" title=\"Thelma Mutete\" /></a></li><li><a href=\"https://heropress.com/contributors/tijana-andrejic/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/09/image_from_ios-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tijana Andrejic\" title=\"Tijana Andrejic\" /></a></li><li><a href=\"https://heropress.com/contributors/imran-sayed/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/08/imran-600x600-1-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Imran Sayed\" title=\"Imran Sayed\" /></a></li><li><a href=\"https://heropress.com/contributors/tammie-lister/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/08/tammie_lister-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tammie Lister\" title=\"Tammie Lister\" /></a></li><li><a href=\"https://heropress.com/contributors/joe-simpson-jr/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/07/joe_simpson_jr-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Joe Simpson Jr.\" title=\"Joe Simpson Jr.\" /></a></li><li><a href=\"https://heropress.com/contributors/siobhan-cunningham/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/06/Avatar_Siobhan_500x500-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Siobhan Cunningham\" title=\"Siobhan Cunningham\" /></a></li><li><a href=\"https://heropress.com/contributors/yordan-soares/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/05/yordan-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Yordan Soares\" title=\"Yordan Soares\" /></a></li><li><a href=\"https://heropress.com/contributors/predrag-zdravkovic/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/05/screenshot_2020-05-14_at_15.33.33-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Predrag Zdravkovic\" title=\"Predrag Zdravkovic\" /></a></li><li><a href=\"https://heropress.com/contributors/noah-plumb/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/05/noah_plumb_avatar-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Noah Plumb\" title=\"Noah Plumb\" /></a></li><li><a href=\"https://heropress.com/contributors/maja-loncar/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/05/maja_loncar-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Maja Loncar\" title=\"Maja Loncar\" /></a></li><li><a href=\"https://heropress.com/contributors/elisabeth-klaar/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/04/ElisabethKlaar600x600-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Elisabeth Klaar\" title=\"Elisabeth Klaar\" /></a></li><li><a href=\"https://heropress.com/contributors/tyler-lau/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/04/Tyler-Lau-min-150x150.jpeg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tyler Lau\" title=\"Tyler Lau\" /></a></li><li><a href=\"https://heropress.com/contributors/bud-kraus/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/03/Bud-Kraus-Head-Shot-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Bud Kraus\" title=\"Bud Kraus\" /></a></li><li><a href=\"https://heropress.com/contributors/alexander-covtun/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/01/alexander_covtun-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Alexander Covtun\" title=\"Alexander Covtun\" /></a></li><li><a href=\"https://heropress.com/contributors/fike-kolama/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2020/01/fike_komala-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Fike Komala\" title=\"Fike Komala\" /></a></li><li><a href=\"https://heropress.com/contributors/morteza-geransayeh/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/11/208a1219-c698-41ca-96e7-51518232209c-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Morteza Geransayeh\" title=\"Morteza Geransayeh\" /></a></li><li><a href=\"https://heropress.com/contributors/olga-glekler/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/09/1dixRv2Q_600x600-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Olga Gleckler\" title=\"Olga Gleckler\" /></a></li><li><a href=\"https://heropress.com/contributors/nirav-mehta/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/09/nirav-in-storeapps-tee-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nirav Mehta\" title=\"Nirav Mehta\" /></a></li><li><a href=\"https://heropress.com/contributors/aniello-forlini/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/08/IMG_8485-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Aniello Forlini\" title=\"Aniello Forlini\" /></a></li><li><a href=\"https://heropress.com/contributors/pramod-jodhani/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/07/dp-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Pramod Jodhani\" title=\"Pramod Jodhani\" /></a></li><li><a href=\"https://heropress.com/contributors/sandy-edwards/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/07/sandy_edwards_min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sandy Edwards\" title=\"Sandy Edwards\" /></a></li><li><a href=\"https://heropress.com/contributors/allie-nimmons/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/07/Allie-Nimmons-HeroPress-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Allie Nimmons\" title=\"Allie Nimmons\" /></a></li><li><a href=\"https://heropress.com/contributors/yvette-sonneveld/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/06/yvette-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Yvette Sonneveld\" title=\"Yvette Sonneveld\" /></a></li><li><a href=\"https://heropress.com/contributors/afsana-multani/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/06/afsana_multani-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Afsana Multani\" title=\"Afsana Multani\" /></a></li><li><a href=\"https://heropress.com/contributors/tevya-washburn/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/06/tevya-profile-avatar-sq-600-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tevya Washburn\" title=\"Tevya Washburn\" /></a></li><li><a href=\"https://heropress.com/contributors/ugyen-dorji/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/06/Ugyen_600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ugyen Dorji\" title=\"Ugyen Dorji\" /></a></li><li><a href=\"https://heropress.com/contributors/taylor-rose/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/05/TaylorWheadshot600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Taylor Rose\" title=\"Taylor Rose\" /></a></li><li><a href=\"https://heropress.com/contributors/naoko-takano/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/05/naoko-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Naoko Takano\" title=\"Naoko Takano\" /></a></li><li><a href=\"https://heropress.com/contributors/michelle-ames/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/05/michelleames-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Michelle Frechette\" title=\"Michelle Frechette\" /></a></li><li><a href=\"https://heropress.com/contributors/eric-karkovack/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/05/eric-karkovack-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Eric Karkovack\" title=\"Eric Karkovack\" /></a></li><li><a href=\"https://heropress.com/contributors/abdullah-ramzan/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/04/abdullah-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Abdullah Ramzan\" title=\"Abdullah Ramzan\" /></a></li><li><a href=\"https://heropress.com/contributors/anyssa-ferreira/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/04/anyssa-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Anyssa Ferreira\" title=\"Anyssa Ferreira\" /></a></li><li><a href=\"https://heropress.com/contributors/tristup-ghosh/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/04/tristup-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tristup Ghosh\" title=\"Tristup Ghosh\" /></a></li><li><a href=\"https://heropress.com/contributors/sam-smith/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/04/sam_smith-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sam Smith\" title=\"Sam Smith\" /></a></li><li><a href=\"https://heropress.com/contributors/anh-tran/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/03/anh_tran-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Anh Tran\" title=\"Anh Tran\" /></a></li><li><a href=\"https://heropress.com/contributors/anita-carter/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/03/anita-carter-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Anita Carter\" title=\"Anita Carter\" /></a></li><li><a href=\"https://heropress.com/contributors/miriam-schwab/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/03/Miriam_Schwab600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Miriam Schwab\" title=\"Miriam Schwab\" /></a></li><li><a href=\"https://heropress.com/contributors/amena-mabrouk/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/03/amena-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Amena Mabrouk\" title=\"Amena Mabrouk\" /></a></li><li><a href=\"https://heropress.com/contributors/sarah-williams/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/02/20180530_083150-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sarah Williams\" title=\"Sarah Williams\" /></a></li><li><a href=\"https://heropress.com/contributors/collins-agbonghama/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/02/heroprofile-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Collins Agbonghama\" title=\"Collins Agbonghama\" /></a></li><li><a href=\"https://heropress.com/contributors/kimberly-lipari/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2019/01/48164587_10103754911439674_56047369002680320_n-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Kimberly Lipari\" title=\"Kimberly Lipari\" /></a></li><li><a href=\"https://heropress.com/contributors/marcel-bootsman/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/12/marcel_bootsman-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Marcel Bootsman\" title=\"Marcel Bootsman\" /></a></li><li><a href=\"https://heropress.com/contributors/jill-binder/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/11/jillbinderweb-black-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jill Binder\" title=\"Jill Binder\" /></a></li><li><a href=\"https://heropress.com/contributors/jc-palmes/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/09/jc-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"JC Palmes\" title=\"JC Palmes\" /></a></li><li><a href=\"https://heropress.com/contributors/ahmed-khalifa/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/09/ahmed-khalifa-heropress-headshot-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ahmed Khalifa\" title=\"Ahmed Khalifa\" /></a></li><li><a href=\"https://heropress.com/contributors/cami-kaos/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/08/cami_kaos-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Cami Kaos\" title=\"Cami Kaos\" /></a></li><li><a href=\"https://heropress.com/contributors/aaron-jorbin/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/07/aaron-jorbin-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Aaron Jorbin\" title=\"Aaron Jorbin\" /></a></li><li><a href=\"https://heropress.com/contributors/zipal-patel/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/06/zipal_patel-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Zipal Patel\" title=\"Zipal Patel\" /></a></li><li><a href=\"https://heropress.com/contributors/pravin-parmar/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/05/pravin_parmar-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Pravin Parmar\" title=\"Pravin Parmar\" /></a></li><li><a href=\"https://heropress.com/contributors/cathi-bosco/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/04/cathi_bosco-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Cathi Bosco\" title=\"Cathi Bosco\" /></a></li><li><a href=\"https://heropress.com/contributors/katie-keith/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/03/Katie-Keith-square-150x150.jpeg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Katie Keith\" title=\"Katie Keith\" /></a></li><li><a href=\"https://heropress.com/contributors/kori-ashton/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/02/kori_ashton_WordPress_Developer-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Kori Ashton\" title=\"Kori Ashton\" /></a></li><li><a href=\"https://heropress.com/contributors/francesca-marano/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/02/francesca_marano-__michele_famiglietti-600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Francesca Marano\" title=\"Francesca Marano\" /></a></li><li><a href=\"https://heropress.com/contributors/mel-choyce/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/02/melchoyce-cropped-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Mel Choyce\" title=\"Mel Choyce\" /></a></li><li><a href=\"https://heropress.com/contributors/renee-johnson/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/01/renee-johnson-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Renee Johnson\" title=\"Renee Johnson\" /></a></li><li><a href=\"https://heropress.com/contributors/ebonie-butler/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/01/ebonie_butler-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ebonie Butler\" title=\"Ebonie Butler\" /></a></li><li><a href=\"https://heropress.com/contributors/alexander-gounder/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/01/alexander_gounder-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Alexander Gounder\" title=\"Alexander Gounder\" /></a></li><li><a href=\"https://heropress.com/contributors/john-blackbourn/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/01/john_blackbourn-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"John Blackbourn\" title=\"John Blackbourn\" /></a></li><li><a href=\"https://heropress.com/contributors/meher-bala/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/12/heropress-picture-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Meher Bala\" title=\"Meher Bala\" /></a></li><li><a href=\"https://heropress.com/contributors/igor-benic/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/12/ibenic-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Igor Benić\" title=\"Igor Benić\" /></a></li><li><a href=\"https://heropress.com/contributors/gabor-javorszky/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/12/gj-600-600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Gabor Javorszky\" title=\"Gabor Javorszky\" /></a></li><li><a href=\"https://heropress.com/contributors/chetan-prajapati/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/12/chetan-prajapati-heropress-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Chetan Prajapati\" title=\"Chetan Prajapati\" /></a></li><li><a href=\"https://heropress.com/contributors/mary-job/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/11/mary_job-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Mary Job\" title=\"Mary Job\" /></a></li><li><a href=\"https://heropress.com/contributors/michael-nde-tabefor/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/11/michawl_nde-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Michaël Nde Tabefor\" title=\"Michaël Nde Tabefor\" /></a></li><li><a href=\"https://heropress.com/contributors/sheryle-gillihan/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/11/sheryle_gillihan2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sheryle Gillihan\" title=\"Sheryle Gillihan\" /></a></li><li><a href=\"https://heropress.com/contributors/bianca-welds/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/11/Bianca-Welds-1-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Bianca Welds\" title=\"Bianca Welds\" /></a></li><li><a href=\"https://heropress.com/contributors/kim-parsell/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/10/2014-wcdayton-kim-600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Kim Parsell\" title=\"Kim Parsell\" /></a></li><li><a href=\"https://heropress.com/contributors/tara-claeys/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/10/taraclaeys600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tara Claeys\" title=\"Tara Claeys\" /></a></li><li><a href=\"https://heropress.com/contributors/rodica-andronache/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/10/rodica-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rodica Andronache\" title=\"Rodica Andronache\" /></a></li><li><a href=\"https://heropress.com/contributors/tracy-apps/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/10/tapps-800x800-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tracy Apps\" title=\"Tracy Apps\" /></a></li><li><a href=\"https://heropress.com/contributors/catalina-alvarez/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-30-at-3.33.38-PM-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Catalina Alvarez\" title=\"Catalina Alvarez\" /></a></li><li><a href=\"https://heropress.com/contributors/carolina-nymark/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/09/carolina-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Carolina Nymark\" title=\"Carolina Nymark\" /></a></li><li><a href=\"https://heropress.com/contributors/christie-chirinos/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/09/slack-imgs-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Christie Chirinos\" title=\"Christie Chirinos\" /></a></li><li><a href=\"https://heropress.com/contributors/wendie-huis-t-veld/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/09/wendie_at_wceu-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Wendie Huis in ‘t Veld\" title=\"Wendie Huis in ‘t Veld\" /></a></li><li><a href=\"https://heropress.com/contributors/damian-samolej/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/09/damian-hp-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Damian Samolej\" title=\"Damian Samolej\" /></a></li><li><a href=\"https://heropress.com/contributors/m-asif-rahman/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2018/08/Super-Asif-R1-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"M Asif Rahman\" title=\"M Asif Rahman\" /></a></li><li><a href=\"https://heropress.com/contributors/juhi-patel/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/08/juhi-600X600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Juhi Patel\" title=\"Juhi Patel\" /></a></li><li><a href=\"https://heropress.com/contributors/milana-cap/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/08/milana-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Milana Cap\" title=\"Milana Cap\" /></a></li><li><a href=\"https://heropress.com/contributors/sallie-goetsch/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/08/sallie-goetsch-2016-min-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sallie Goetsch\" title=\"Sallie Goetsch\" /></a></li><li><a href=\"https://heropress.com/contributors/sonja-jaakkola/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/08/sonja_jaakkola-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sonja Jaakkola\" title=\"Sonja Jaakkola\" /></a></li><li><a href=\"https://heropress.com/contributors/sami-keijonen/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/07/sami-keijonen-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sami Keijonen\" title=\"Sami Keijonen\" /></a></li><li><a href=\"https://heropress.com/contributors/marius-jensen/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/07/marius-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Marius Jensen\" title=\"Marius Jensen\" /></a></li><li><a href=\"https://heropress.com/contributors/denis-yanchevskiy/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/07/photo-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Denis Yanchevskiy\" title=\"Denis Yanchevskiy\" /></a></li><li><a href=\"https://heropress.com/contributors/alice-orru/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/07/alice_square_wc-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Alice Orru\" title=\"Alice Orru\" /></a></li><li><a href=\"https://heropress.com/contributors/michele-butcher-jones/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/06/michele_butcher-jones-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Michele Butcher-Jones\" title=\"Michele Butcher-Jones\" /></a></li><li><a href=\"https://heropress.com/contributors/juan-hernando/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/06/profile_ciudadanob_600x600-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Juan Hernando\" title=\"Juan Hernando\" /></a></li><li><a href=\"https://heropress.com/contributors/birgit-olzem/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/06/birgit-olzem-heropress-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Birgit Olzem\" title=\"Birgit Olzem\" /></a></li><li><a href=\"https://heropress.com/contributors/nashwan-d/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/06/nashwan-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nashwan D\" title=\"Nashwan D\" /></a></li><li><a href=\"https://heropress.com/contributors/suyogya-shukla/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/05/suyogya_shukla-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Suyogya Shukla\" title=\"Suyogya Shukla\" /></a></li><li><a href=\"https://heropress.com/contributors/kumar-abhirup/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/05/Kumar_Abhirup-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Kumar Abhirup\" title=\"Kumar Abhirup\" /></a></li><li><a href=\"https://heropress.com/contributors/nidhi-jain/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/05/Nidhi-2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nidhi Jain\" title=\"Nidhi Jain\" /></a></li><li><a href=\"https://heropress.com/contributors/jonathan-bossenger/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/04/Headshot600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jonathan Bossenger\" title=\"Jonathan Bossenger\" /></a></li><li><a href=\"https://heropress.com/contributors/elizabeth-shilling/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/04/sdwc_end_ed-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Elizabeth Shilling\" title=\"Elizabeth Shilling\" /></a></li><li><a href=\"https://heropress.com/contributors/carole-olinger/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/04/carole-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Carole Olinger\" title=\"Carole Olinger\" /></a></li><li><a href=\"https://heropress.com/contributors/jamaal-jaamac/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/04/jamaal_jaamac_2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jamaal Jaamac\" title=\"Jamaal Jaamac\" /></a></li><li><a href=\"https://heropress.com/contributors/natalie-miller/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/04/natalie_miller-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Natalie Miller\" title=\"Natalie Miller\" /></a></li><li><a href=\"https://heropress.com/contributors/rebecca-haden/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/03/rebecca-face2-1-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rebecca Haden\" title=\"Rebecca Haden\" /></a></li><li><a href=\"https://heropress.com/contributors/varun-dubey/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/03/varun_dubey-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Varun Dubey\" title=\"Varun Dubey\" /></a></li><li><a href=\"https://heropress.com/contributors/heather-burns/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/03/heatherburns_hat-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Heather Burns\" title=\"Heather Burns\" /></a></li><li><a href=\"https://heropress.com/contributors/monique-dubbelman/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/03/monique-dubbelman-boemedia-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Monique Dubbelman\" title=\"Monique Dubbelman\" /></a></li><li><a href=\"https://heropress.com/contributors/thabo-tswana/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/02/thabo_tswana-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Thabo Tswana\" title=\"Thabo Tswana\" /></a></li><li><a href=\"https://heropress.com/contributors/kasia-swiderska/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/02/kasiaswiderska-600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Kasia Świderska\" title=\"Kasia Świderska\" /></a></li><li><a href=\"https://heropress.com/contributors/chris-ford/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/02/lorem-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Chris Ford\" title=\"Chris Ford\" /></a></li><li><a href=\"https://heropress.com/contributors/adam-soucie/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/02/adam-soucie-headshot-600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Adam Soucie\" title=\"Adam Soucie\" /></a></li><li><a href=\"https://heropress.com/contributors/shiva-poudel/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/01/ProfilePicturePhoto-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Shiva Poudel\" title=\"Shiva Poudel\" /></a></li><li><a href=\"https://heropress.com/contributors/heather-acton/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/01/heather-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Heather Acton\" title=\"Heather Acton\" /></a></li><li><a href=\"https://heropress.com/contributors/emilie-lebrun/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/01/emilie_lebrun-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Emilie Lebrun\" title=\"Emilie Lebrun\" /></a></li><li><a href=\"https://heropress.com/contributors/baris-unver/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/01/barisunver-pic-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Barış Ünver\" title=\"Barış Ünver\" /></a></li><li><a href=\"https://heropress.com/contributors/winstina-hughes/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2017/01/winstina_hughes-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Winstina Hughes\" title=\"Winstina Hughes\" /></a></li><li><a href=\"https://heropress.com/contributors/tom-nowell/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/12/tomjn-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tom Nowell\" title=\"Tom Nowell\" /></a></li><li><a href=\"https://heropress.com/contributors/andrei-lupu/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/12/andrei-lupu-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Andrei Lupu\" title=\"Andrei Lupu\" /></a></li><li><a href=\"https://heropress.com/contributors/sarah-wefald/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/12/sarah_wefald-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sarah Wefald\" title=\"Sarah Wefald\" /></a></li><li><a href=\"https://heropress.com/contributors/jackie-delia/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/12/jd-social-600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jackie D&#8217;Elia\" title=\"Jackie D&#8217;Elia\" /></a></li><li><a href=\"https://heropress.com/contributors/robert-cheleuka/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/11/robert_cheleuka-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Robert Cheleuka\" title=\"Robert Cheleuka\" /></a></li><li><a href=\"https://heropress.com/contributors/nisha-singh/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/10/nisha_singh-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nisha Singh\" title=\"Nisha Singh\" /></a></li><li><a href=\"https://heropress.com/contributors/dee-teal/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/11/dee-teal-0416-9240-600-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Dee Teal\" title=\"Dee Teal\" /></a></li><li><a href=\"https://heropress.com/contributors/marina-pape/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/11/marina-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Marina Pape\" title=\"Marina Pape\" /></a></li><li><a href=\"https://heropress.com/contributors/tine-haugen/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/11/tine_haugen-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tine Haugen\" title=\"Tine Haugen\" /></a></li><li><a href=\"https://heropress.com/contributors/eric-kuznacic/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/10/eric-kuznacic-headshot-2016-min-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Eric Kuznacic\" title=\"Eric Kuznacic\" /></a></li><li><a href=\"https://heropress.com/contributors/carl-alberto/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/10/CarlAlbertoWordPressDeveloperPhilippines-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Carl Alberto\" title=\"Carl Alberto\" /></a></li><li><a href=\"https://heropress.com/contributors/kayla-jenkins-medina/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/10/20161011_090853-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Kayla Jenkins-Medina\" title=\"Kayla Jenkins-Medina\" /></a></li><li><a href=\"https://heropress.com/contributors/tamsin-taylor/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/09/tamsin2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tamsin Taylor\" title=\"Tamsin Taylor\" /></a></li><li><a href=\"https://heropress.com/contributors/vladimir-petkov/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/09/kaladan-600-600-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Vladimir Petkov\" title=\"Vladimir Petkov\" /></a></li><li><a href=\"https://heropress.com/contributors/sophia-derosia/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/09/sophia_derosia-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sophia DeRosia\" title=\"Sophia DeRosia\" /></a></li><li><a href=\"https://heropress.com/contributors/abhishek-kumar/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/09/abhishek-heropress-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Abhishek Kumar\" title=\"Abhishek Kumar\" /></a></li><li><a href=\"https://heropress.com/contributors/david-wolfpaw/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/09/davidlaietta2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"David Wolfpaw\" title=\"David Wolfpaw\" /></a></li><li><a href=\"https://heropress.com/contributors/ed-kratz/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/08/edkratz-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ed Kratz\" title=\"Ed Kratz\" /></a></li><li><a href=\"https://heropress.com/contributors/uriahs-victor/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/08/uriahs_victor-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Uriahs Victor\" title=\"Uriahs Victor\" /></a></li><li><a href=\"https://heropress.com/contributors/nevena-tomovic/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/08/nevena_tomovic_heropress-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nevena Tomovic\" title=\"Nevena Tomovic\" /></a></li><li><a href=\"https://heropress.com/contributors/stacey-barton/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/08/staceybartron-600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Stacey Bartron\" title=\"Stacey Bartron\" /></a></li><li><a href=\"https://heropress.com/contributors/juhi-saxena/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/07/juhi-14-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Juhi Saxena\" title=\"Juhi Saxena\" /></a></li><li><a href=\"https://heropress.com/contributors/marc-benzakein/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/07/marc_benzakein-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Marc Benzakein\" title=\"Marc Benzakein\" /></a></li><li><a href=\"https://heropress.com/contributors/amy-lane/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/07/amylane-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Amy Lane\" title=\"Amy Lane\" /></a></li><li><a href=\"https://heropress.com/contributors/madalin-milea/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/07/madalin-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Madalin Milea\" title=\"Madalin Milea\" /></a></li><li><a href=\"https://heropress.com/contributors/topher-derosia/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/07/topher_wordcamp_headshot-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Topher DeRosia\" title=\"Topher DeRosia\" /></a></li><li><a href=\"https://heropress.com/contributors/erica-franz/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/06/erica-franz-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Erica Franz\" title=\"Erica Franz\" /></a></li><li><a href=\"https://heropress.com/contributors/ana-segota/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/06/ana_segota-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ana Segota\" title=\"Ana Segota\" /></a></li><li><a href=\"https://heropress.com/contributors/maedah-batool/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/06/maedah_photo-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Maedah Batool\" title=\"Maedah Batool\" /></a></li><li><a href=\"https://heropress.com/contributors/vlad-olaru/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/06/vlad_olaru_pixelgrade-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Vlad Olaru\" title=\"Vlad Olaru\" /></a></li><li><a href=\"https://heropress.com/contributors/ed-finkler/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/05/ed_finkler-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ed Finkler\" title=\"Ed Finkler\" /></a></li><li><a href=\"https://heropress.com/contributors/sam-najian/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/05/sam_najian-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sam Najian\" title=\"Sam Najian\" /></a></li><li><a href=\"https://heropress.com/contributors/nicole-osburn/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/05/nicole_osburn-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nicole Osburn\" title=\"Nicole Osburn\" /></a></li><li><a href=\"https://heropress.com/contributors/puneet-sahalot/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/05/puneet-heropress-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Puneet Sahalot\" title=\"Puneet Sahalot\" /></a></li><li><a href=\"https://heropress.com/contributors/karin-taliga/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/05/karin_taliga_portrait_-600x600_72dpi-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Karin Taliga\" title=\"Karin Taliga\" /></a></li><li><a href=\"https://heropress.com/contributors/andrea-zoellner/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/04/andrea_z-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Andrea Zoellner\" title=\"Andrea Zoellner\" /></a></li><li><a href=\"https://heropress.com/contributors/tonya-mork/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/04/hellofromtonya-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tonya Mork\" title=\"Tonya Mork\" /></a></li><li><a href=\"https://heropress.com/contributors/nicole-kohler/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/03/nicole-600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nicole Kohler\" title=\"Nicole Kohler\" /></a></li><li><a href=\"https://heropress.com/contributors/jitendra-harpalani/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/03/jitendra-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jitendra Harpalani\" title=\"Jitendra Harpalani\" /></a></li><li><a href=\"https://heropress.com/contributors/hardeep-asrani/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/03/hardeep_asrani-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Hardeep Asrani\" title=\"Hardeep Asrani\" /></a></li><li><a href=\"https://heropress.com/contributors/raghavendra-satish-peri/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/03/raghava_with_child-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Raghavendra Satish Peri\" title=\"Raghavendra Satish Peri\" /></a></li><li><a href=\"https://heropress.com/contributors/mahangu-weerasinghe/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/03/mahangu_weerasingh-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Mahangu Weerasinghe\" title=\"Mahangu Weerasinghe\" /></a></li><li><a href=\"https://heropress.com/contributors/ahmad-awais/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/03/ahmad_awais-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ahmad Awais\" title=\"Ahmad Awais\" /></a></li><li><a href=\"https://heropress.com/contributors/jesse-petersen/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/02/2015-WCORL-professional-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jesse Petersen\" title=\"Jesse Petersen\" /></a></li><li><a href=\"https://heropress.com/contributors/ayla-view/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/02/aylaview-heropress-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ayla View\" title=\"Ayla View\" /></a></li><li><a href=\"https://heropress.com/contributors/matt-geri/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/02/matt-square-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Matt Geri\" title=\"Matt Geri\" /></a></li><li><a href=\"https://heropress.com/contributors/rebecca-gill/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/01/Headshot2014-124sq-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rebecca Gill\" title=\"Rebecca Gill\" /></a></li><li><a href=\"https://heropress.com/contributors/shayda-torabi/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/01/headshot-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Shayda Torabi\" title=\"Shayda Torabi\" /></a></li><li><a href=\"https://heropress.com/contributors/dustin-filippini/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/01/dustin-filippini-icy-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Dustin Filippini\" title=\"Dustin Filippini\" /></a></li><li><a href=\"https://heropress.com/contributors/muhammad-adnan/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/01/adnan-profile-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Muhammad Adnan\" title=\"Muhammad Adnan\" /></a></li><li><a href=\"https://heropress.com/contributors/lisa-gibson/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2016/01/heropress-lisa-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Lisa Gibson\" title=\"Lisa Gibson\" /></a></li><li><a href=\"https://heropress.com/contributors/ben-meredith/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/12/ben_meredith-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ben Meredith\" title=\"Ben Meredith\" /></a></li><li><a href=\"https://heropress.com/contributors/tunbosun-ayinla/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/12/tunbosun-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Tunbosun Ayinla\" title=\"Tunbosun Ayinla\" /></a></li><li><a href=\"https://heropress.com/contributors/mayank-gupta/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/12/hiral-me-600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Mayank Gupta\" title=\"Mayank Gupta\" /></a></li><li><a href=\"https://heropress.com/contributors/carrie-dils/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/12/carrie_dils-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Carrie Dils\" title=\"Carrie Dils\" /></a></li><li><a href=\"https://heropress.com/contributors/sofia-woods/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/11/sofia-woods-600x600px-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sofia Woods\" title=\"Sofia Woods\" /></a></li><li><a href=\"https://heropress.com/contributors/sakin-shrestha/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/11/sakin-shrestha-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sakin Shrestha\" title=\"Sakin Shrestha\" /></a></li><li><a href=\"https://heropress.com/contributors/ines-van-dijk/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/11/inesvanessen-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ines van Dijk\" title=\"Ines van Dijk\" /></a></li><li><a href=\"https://heropress.com/contributors/michael-beil/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/11/michael-raised-eyebrows-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Michael Beil\" title=\"Michael Beil\" /></a></li><li><a href=\"https://heropress.com/contributors/basilis-kanonidis/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/10/1466041_10202658144436484_624003027_n-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Basilis Kanonidis\" title=\"Basilis Kanonidis\" /></a></li><li><a href=\"https://heropress.com/contributors/chandra-maharzan/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/10/cm-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Chandra Maharzan\" title=\"Chandra Maharzan\" /></a></li><li><a href=\"https://heropress.com/contributors/rahul-bansal/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/10/Rahul-Bansal-600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rahul Bansal\" title=\"Rahul Bansal\" /></a></li><li><a href=\"https://heropress.com/contributors/kyle-maurer/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/10/kyle-maurer-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Kyle Maurer\" title=\"Kyle Maurer\" /></a></li><li><a href=\"https://heropress.com/contributors/rian-rietveld/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/09/rian-rietveld-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rian Rietveld\" title=\"Rian Rietveld\" /></a></li><li><a href=\"https://heropress.com/contributors/shady-sharaf/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/09/shady-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Shady Sharaf\" title=\"Shady Sharaf\" /></a></li><li><a href=\"https://heropress.com/contributors/bob-dunn/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/09/bobwp-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Bob Dunn\" title=\"Bob Dunn\" /></a></li><li><a href=\"https://heropress.com/contributors/sheeba-abraham/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/08/sheeba-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sheeba Abraham\" title=\"Sheeba Abraham\" /></a></li><li><a href=\"https://heropress.com/contributors/michelle-schulp/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/08/michelle-600x600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Michelle Schulp\" title=\"Michelle Schulp\" /></a></li><li><a href=\"https://heropress.com/contributors/becky-davis/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/08/BD2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Becky Davis\" title=\"Becky Davis\" /></a></li><li><a href=\"https://heropress.com/contributors/samer-bechara/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/08/sam.resized-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Samer Bechara\" title=\"Samer Bechara\" /></a></li><li><a href=\"https://heropress.com/contributors/amanda-rush/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/07/amanda-rush-2014-10-25-1549-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Amanda Rush\" title=\"Amanda Rush\" /></a></li><li><a href=\"https://heropress.com/contributors/mario-peshev/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/07/mario_peshev-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Mario Peshev\" title=\"Mario Peshev\" /></a></li><li><a href=\"https://heropress.com/contributors/sunny-ratilal/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/07/sunny-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sunny Ratilal\" title=\"Sunny Ratilal\" /></a></li><li><a href=\"https://heropress.com/contributors/caleb-burks/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/07/caleb_burks-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Caleb Burks\" title=\"Caleb Burks\" /></a></li><li><a href=\"https://heropress.com/contributors/ema-derosia/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/06/ema_claire-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ema DeRosia\" title=\"Ema DeRosia\" /></a></li><li><a href=\"https://heropress.com/contributors/nikhil-vimal/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/06/rsz_-rpbnkvk-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Nikhil Vimal\" title=\"Nikhil Vimal\" /></a></li><li><a href=\"https://heropress.com/contributors/juanfra-aldasoro/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/06/juanfra-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Juanfra Aldasoro\" title=\"Juanfra Aldasoro\" /></a></li><li><a href=\"https://heropress.com/contributors/leo-gopal/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/06/DSC05695-x-scaled-e1655124360632-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Leo Gopal\" title=\"Leo Gopal\" /></a></li><li><a href=\"https://heropress.com/contributors/jordan-quintal/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/06/jordanq-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Jordan Quintal\" title=\"Jordan Quintal\" /></a></li><li><a href=\"https://heropress.com/?post_type=hp-contributors&p=321\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/05/dsc08733-square-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Private: Lara Littlefield\" title=\"Private: Lara Littlefield\" /></a></li><li><a href=\"https://heropress.com/contributors/rafael-ehlers/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/05/rafael-ehlers-2023-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Rafael Ehlers\" title=\"Rafael Ehlers\" /></a></li><li><a href=\"https://heropress.com/contributors/julie-kuehl/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/05/kuehl-headshot-150x150.jpeg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Julie Kuehl\" title=\"Julie Kuehl\" /></a></li><li><a href=\"https://heropress.com/contributors/dan-griffiths/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/05/dan_griffiths-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Dan Griffiths\" title=\"Dan Griffiths\" /></a></li><li><a href=\"https://heropress.com/contributors/mika-epstein/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/04/mika_600-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Mika Epstein\" title=\"Mika Epstein\" /></a></li><li><a href=\"https://heropress.com/contributors/ramya-pandyan/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/04/ramya_600_2-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Ramya Pandyan\" title=\"Ramya Pandyan\" /></a></li><li><a href=\"https://heropress.com/contributors/aditya-kane/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/04/aditya-kane-150x150.png\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Aditya Kane\" title=\"Aditya Kane\" /></a></li><li><a href=\"https://heropress.com/contributors/sean-davis/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/04/seandavis-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Sean Davis\" title=\"Sean Davis\" /></a></li><li><a href=\"https://heropress.com/contributors/saurabh-shukla/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/03/saurabh_shukla-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Saurabh Shukla\" title=\"Saurabh Shukla\" /></a></li><li><a href=\"https://heropress.com/contributors/andrey-rarst-savchenko/\"><img width=\"50\" height=\"50\" src=\"https://heropress.com/wp-content/uploads/2015/03/rarst-150x150.jpg\" class=\"attachment-50x50 size-50x50 wp-post-image\" alt=\"Andrey &#8220;Rarst&#8221; Savchenko\" title=\"Andrey &#8220;Rarst&#8221; Savchenko\" /></a></li></ul>\n\n\n\n<div class=\"wp-block-kadence-image kb-image7473_89b59f-1f\"><a href=\"https://heropress.com/wp-content/uploads/2023/03/CleanShot-2023-03-03-at-13.57.23@2x.png\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"124\" src=\"https://heropress.com/wp-content/uploads/2023/03/CleanShot-2023-03-03-at-13.57.23@2x-1024x124.png\" alt=\"horizontal rule\" class=\"kb-img wp-image-5357\" /></a></div>\n</div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\"></div>\n\n\n<p>HeroPress has allowed me to attend dozens of WordCamps around the world, including Pune, WC Europe, WC Asia, WC US, WC Italy, and many many more. At every WordCamp someone comes up to me and says &#8220;Hi, we met at such and such a WordCamp! Thanks so much for what you do.&#8221;</p>\n\n\n\n<h2 class=\"kt-adv-heading7473_9cde24-b5 wp-block-kadence-advancedheading\">The Stories</h2>\n\n\n\n<p>Oh the stories!  Every single one is a delight. People ask me what my favorite one is, and I can never tell.  They&#8217;re all great. Some make me laugh, some make me cry.  All of them make me glad I&#8217;m in WordPress and that I&#8217;m involved in this wonderful thing called HeroPress.</p>\n\n\n\n<h2 id=\"future\" class=\"kt-adv-heading7473_cf8c91-97 wp-block-kadence-advancedheading\">The Future</h2>\n\n\n\n<p>HeroPress is committed to sharing inspiring stories from around the world, showing how WordPress has helped individuals overcome challenges and create new opportunities. Maintaining the site and producing the content takes time, effort, and resources. To ensure that HeroPress continues on into the future, we need your financial support.</p>\n\n\n\n<p>As costs rise and obligations shift, our ability to highlight these important voices can become more difficult. </p>\n\n\n\n<p>HeroPress isn’t just a website — it’s a platform that brings hope and connection to the global WordPress community. Your financial support ensures that we can keep sharing these stories, helping to inspire more people through the power of WordPress.</p>\n\n\n\n<p>Like all websites, HeroPress needs </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>maintenance</li>\n\n\n\n<li>content creation</li>\n\n\n\n<li>tools</li>\n\n\n\n<li>opportunities to reach out to people</li>\n</ul>\n\n\n\n<p>Please consider donating $5, $10, or whatever you can afford today. Your support keeps HeroPress alive and helps us continue sharing the powerful stories that uplift the WordPress community. Every contribution counts!</p>\n\n\n\n<p>Thank you for 10 years together. Here’s to the next 10!</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns7473_290f7e-d4\"><a class=\"kb-button kt-button button kb-btn7473_38296f-a6 kt-btn-size-xlarge kt-btn-width-type-auto kb-btn-global-fill kt-btn-has-text-true kt-btn-has-svg-false wp-block-kadence-singlebtn\" href=\"https://heropress.com/donate\"><span class=\"kt-btn-inner-text\">Donate To HeroPress</span></a></div>\n</div>\n\n<p>The post <a href=\"https://heropress.com/ten-years-of-heropress/\">Ten Years Of HeroPress</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2024 20:09:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Mary Hubbard to be the New Executive Director of WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=174434\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/mary-hubbard-to-be-the-new-executive-director-of-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3329:\"<p>Matt Mullenweg has <a href=\"https://wordpress.org/news/2024/10/proud-mary/\">announced</a> that Mary Hubbard will take over as the new Executive Director of WordPress.org on 21st October, 2024, following the resignation of <a href=\"https://wptavern.com/thank-you-josepha-wordpress-executive-director-resigns\">Josepha Haden Chomphosy</a>. </p>\n\n\n\n<p>Mary is taking on this new role after stepping down as the Head of TikTok Americas, Governance and Experience. <strong>She is not a stranger to the WordPress arena, having worked at Automattic from 2020 to 2023 as GM Marketplace and Chief Experience/Product Officer for WordPress.com. </strong>Her diverse experience also includes roles at TruRating, Assurant, Walmart, and eBay. </p>\n\n\n\n<p>Matt expressed his enthusiasm, stating, “I’m very excited to have Mary on board. :)”. He also said that &#8220;she has deep knowledge of WordPress and expertise across business, product, marketplaces, program management, and governance.&#8221;</p>\n\n\n\n<p>When asked if Mary’s appointment is a “1:1 backfill for Josepha&#8217;s role or if her scope will be different?” <a href=\"https://news.ycombinator.com/item?id=41781008\">Matt said</a>, “<strong>The scope will be significantly broader as Mary brings many talents to the ecosystem.”</strong></p>\n\n\n\n<p>Mary will be an Automattic employee and she will work for the WordPress project. She steps into the position during a challenging time, as <a href=\"https://wptavern.com/159-employees-leave-automattic-after-accepting-the-alignment-offer\">159 employees</a>, including the former executive director, Josepha, left Automattic after accepting the Alignment Offer. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Response&nbsp;</h3>\n\n\n\n<p>The community is cautiously optimistic in the light of the recent events.&nbsp;</p>\n\n\n\n<a href=\"https://x.com/marybaum/status/1843817143223366100\"><img width=\"500\" height=\"124\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-3-500x124.png\" alt=\"\" class=\"wp-image-174475\" /></a>\n\n\n\n<a href=\"https://x.com/jamesgiroux/status/1843741806162522192\"><img width=\"500\" height=\"414\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-9-500x414.png\" alt=\"\" class=\"wp-image-174483\" /></a>\n\n\n\n<a href=\"https://x.com/mattbeck/status/1843757060976193979\"><img width=\"500\" height=\"226\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-5-500x226.png\" alt=\"\" class=\"wp-image-174477\" /></a>\n\n\n\n<a href=\"https://x.com/arniepalmer/status/1843754329900998753\"><img width=\"500\" height=\"356\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-6-500x356.png\" alt=\"\" class=\"wp-image-174478\" /></a>\n\n\n\n<a href=\"https://x.com/kellie/status/1843748495653822651\"><img width=\"500\" height=\"182\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-7-500x182.png\" alt=\"\" class=\"wp-image-174479\" /></a>\n\n\n\n<a href=\"https://x.com/ellenbauer/status/1843744793538781229\"><img width=\"500\" height=\"275\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-8-500x275.png\" alt=\"\" class=\"wp-image-174480\" /></a>\n\n\n\n<p>Automattic&#8217;s last big hire was <a href=\"https://wptavern.com/pedraum-pardehpoosh-joins-automattic-as-vp-of-product\">Pedraum Pardehpoosh</a> , who joined as VP of Product.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2024 14:45:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: #140 – Donata Stroink-Skillrud on Privacy Policies and Legal Obligations for Businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=173874\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/podcast/140-donata-stroink-skillrud-on-privacy-policies-and-legal-obligations-for-businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45977:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, privacy policies and legal obligations for businesses.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast. And you can copy that URL in to most podcast players. If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Donata Stroink-Skillrud. Donata is an attorney licensed in Illinois and a certified information privacy professional. She&#8217;s the president and legal engineer of Termageddon, a SaaS that generates website policies and helps keep them up to date with changing legislation. Donata is also a fellow of the American Bar Foundation, Chair of the American Bar Associations e-Privacy Committee and Program Committee, member of the American Bar Association Cyber Legal Task Force, and the American Bar Association&#8217;s representative to the United Nations.</p>\n\n\n\n<p>Donata will take us through the ever-changing topic of privacy laws, highlighting the challenges posed to businesses to comply with a myriad of regulations. She talks about the global trend of updating privacy laws to keep up with rapid technological advancements, and new capabilities.</p>\n\n\n\n<p>We touch upon the significant moral and legal responsibilities tied to use a data management. Donata stresses the importance of privacy by design, which integrates privacy measures from the starts to the end of a project life cycle.</p>\n\n\n\n<p>She shares real life examples of common pitfalls, such as misleading cookie banners, and offers best practices for embedding privacy in web development.</p>\n\n\n\n<p>Donata explains the importance of including disclaimers in contracts to mitigate legal liabilities, and provides actionable resources, including her own website policies waiver, which helps website builders navigate the complexities of legal compliance.</p>\n\n\n\n<p>We also discuss the landscape of international laws applicability, the high cost of specialized legal compliance, and how you need to be mindful of what&#8217;s coming in the next few years.</p>\n\n\n\n<p>If you&#8217;re keen to find out more about the current legal landscape, or just want some more knowledge to ensure your projects are legally sound and ethically responsible, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Donata Stroink-Skillrud.</p>\n\n\n\n<p>I am joined on the podcast by Donata Stroink-Skillrud. How are you doing Donata?</p>\n\n\n\n<p>[00:03:38] <strong>Donata Stroink-Skillrud:</strong> Doing great. Thank you so much for having me.</p>\n\n\n\n<p>[00:03:39] <strong>Nathan Wrigley:</strong> You&#8217;re very welcome. Donata is joining me in Oregon, we&#8217;re at WordCamp US. And, Donata, I&#8217;m guessing you haven&#8217;t done your presentation yet, because nobody&#8217;s done a presentation yet. Are you feeling confident? Is this something you do regularly?</p>\n\n\n\n<p>[00:03:51] <strong>Donata Stroink-Skillrud:</strong> It is something that I do on a regular basis. I am a textbook over preparer so I have 80 slides, and only 45 minutes to go through all of them. So I&#8217;m a little nervous about that. But I had my slides ready like two months ago, I&#8217;ve just been reviewing them over and over again, so hopefully I&#8217;ll do okay.</p>\n\n\n\n<p>[00:04:09] <strong>Nathan Wrigley:</strong> Better to be prepared than not prepared.</p>\n\n\n\n<p>[00:04:11] <strong>Donata Stroink-Skillrud:</strong> I&#8217;m always over prepared, and then it just ends up, I don&#8217;t go through like half the things that I need to talk about, so we&#8217;ll see.</p>\n\n\n\n<p>[00:04:17] <strong>Nathan Wrigley:</strong> Well, you&#8217;re a lawyer, over-prepared, I guess, in that profession is good. So, okay, that introduces us to the bio. So you&#8217;re on the podcast today, and we&#8217;re going to be talking about the legal side of WordPress, and the web industry, and what have you.</p>\n\n\n\n<p>Do you want to just give us your little potted bio? I know that you sent one to me, I don&#8217;t know how much of that you want to use. But tell us just a little bit about your background, especially on the law side of things, because I feel that&#8217;s where we need to know that you&#8217;ve got the chops to talk about what we&#8217;re talking about.</p>\n\n\n\n<p>[00:04:43] <strong>Donata Stroink-Skillrud:</strong> Yeah, absolutely. So to start on the law side, I&#8217;m not providing legal advice on this podcast. So if you are looking for that, I would recommend talking to a lawyer in your area. But I am an attorney licensed in Illinois, and a certified information privacy professional. I&#8217;m also the president and legal engineer behind Termageddon, which has generated tens of thousands of privacy policies, and kept them up to date with changing laws.</p>\n\n\n\n<p>Outside of that job, I&#8217;m a fellow at the American Bar Foundation. At the American Bar Association, I&#8217;m the chair of the e-Privacy Committee, member of the Cybersecurity Legal Task Force, and also member of the Science and Technology Council, and I&#8217;m actually the new ABA representative to the United Nations.</p>\n\n\n\n<p>[00:05:23] <strong>Nathan Wrigley:</strong> Okay, so you are the real deal basically. You&#8217;ve got all of the chops, so that&#8217;s really nice to hear.</p>\n\n\n\n<p>So your presentation, when it&#8217;s finally done, is called Building WordPress Websites with Privacy by Data in Mind, and Privacy by Data is encapsulated in quotes. This feels like it was a really big trend a few years ago. Everybody seemed to be concerned about privacy, and then it kind of seems like it went off the boil a little bit. And I&#8217;m presuming that you are saying, no, no, no, this is still something that&#8217;s very important.</p>\n\n\n\n<p>Where are we at with privacy? What&#8217;s the state of play? I don&#8217;t know if you can encapsulate that in just a few short sentences.</p>\n\n\n\n<p>[00:05:58] <strong>Donata Stroink-Skillrud:</strong> So I think when it comes to privacy, we&#8217;re kind of the frogs that are boiling in the water now. So, you know, you had GDPR that came out, and everybody was really excited about that, and that was huge. And that&#8217;s continuing, in the sense that there are dozens and dozens of fines issued every month, for privacy violations under GDPR. So if you want to check that out, that&#8217;s under enforcementtracker.com. And it&#8217;s anywhere from Facebook to a person who doesn&#8217;t even have a business that&#8217;s been fined.</p>\n\n\n\n<p>In the US it&#8217;s a little bit different, in the sense that we have this kind of hodgepodge of laws. So each state is proposing and passing its own law, because we do have federal laws for healthcare data, or children&#8217;s data, but not for things that are usually collected by websites, like names, and emails and stuff.</p>\n\n\n\n<p>But what&#8217;s really interesting, the newest trend in the United States that we&#8217;ve seen in the last few months is adapting really old privacy laws. So for example, the California Invasion of Privacy Act, 30-year-old privacy law, was meant to protect Californians from eavesdropping on landline phone calls, but it&#8217;s adapted to websites. So every day there&#8217;s over a dozen lawsuits filed in California for websites that use tools like IP intelligence tools, Facebook pixel, things like that, without consent from a California user.</p>\n\n\n\n<p>Very similar, under the Video Privacy Protection Act, which is a federal law, it was meant to protect people&#8217;s video rental histories. So from places like Blockbuster, you couldn&#8217;t share what videos you rented from Blockbuster with a third party. Well, that&#8217;s been adapted to websites as well. So if you have a website that has a YouTube video, for example, and Meta pixel is tracking who watched that video, and you&#8217;re showing them ads, and you didn&#8217;t get consent for that pixel, you could actually get sued for that.</p>\n\n\n\n<p>So we&#8217;re seeing so many lawsuits in the United States right now. It&#8217;s really, really crazy. And we&#8217;re also seeing a lot of states taking enforcement more seriously. Texas Privacy Law just went into effect. They formed an entire team within the Attorney General&#8217;s office, to enforce that law. And they&#8217;re actually going after companies, and sending letters for non-compliance. So I think in the United States, privacy&#8217;s really, really hitting up right now.</p>\n\n\n\n<p>[00:08:08] <strong>Nathan Wrigley:</strong> Is this generally kind of ambulance chasing litigation? Is it people going out and finding problems in order to sue, or is it more that people have been harmed, and so they&#8217;ve progressed some kind of legal case because, I don&#8217;t know, some of their data has escaped and they&#8217;ve been harmed by it? Maybe there&#8217;s not a perfect answer to that, but it always feels like the ambulance chasing component is part of it.</p>\n\n\n\n<p>[00:08:29] <strong>Donata Stroink-Skillrud:</strong> So it really depends on the country. So for example, like in the European Union, we see these privacy fines being issued when there&#8217;s actual harm. So great example is a company got sued because they were calling somebody that were on a do not call list. The person said, I don&#8217;t want this, they got 30 more phone calls over the span of a week. And they kept on saying, I don&#8217;t want this, I don&#8217;t want this, please take me off your list, and they continued calling them. So they complained to data protection authority. You know, that seems a lot more like a harm.</p>\n\n\n\n<p>In the United States, especially with the California Invasion of Privacy Act, it started off with healthcare websites. So if I go on a healthcare website, and I input my data, and that data is shared with Facebook, lawsuits started off that way, which is much more of a harm approach.</p>\n\n\n\n<p>But now they&#8217;re suing anyone. So they have some type of list where, here&#8217;s businesses that have the Meta pixel, for example, and they just go down that list. And they have a California individual who clicks on that website, they get tracked, boom, here&#8217;s a lawsuit.</p>\n\n\n\n<p>So we&#8217;re seeing a lot of really small businesses getting caught up with this, you know, people selling coaching services. I know of somebody who was selling patches for people who are veterans, and they got sued. They&#8217;re like, we&#8217;re a tiny business, how are we getting sued $60,000 for having a Meta pixel on our site? So here in the US it seems a lot more like ambulance chasing for sure.</p>\n\n\n\n<p>[00:09:51] <strong>Nathan Wrigley:</strong> I guess at the bottom of it all though is a moral position. If you&#8217;re surrendering, data and you haven&#8217;t authorised somebody to, I don&#8217;t know, use that data, sell that data, move that data on, there is a moral obligation for the person who&#8217;s running this website to do the right thing by that person&#8217;s data.</p>\n\n\n\n<p>And it&#8217;s often framed as ambulance chasing, but I guess unless there&#8217;s a bit of a carrot and stick approach where, you know, for a period of time there&#8217;s ambulance chasers, nothing would change. People would abuse the sharing of data. So maybe that&#8217;s the period that we&#8217;re in. I can&#8217;t remember how you described it at the beginning. You used the phrase which kind of.</p>\n\n\n\n<p>[00:10:25] <strong>Donata Stroink-Skillrud:</strong> Frogs boiling in water.</p>\n\n\n\n<p>[00:10:26] <strong>Nathan Wrigley:</strong> Right, okay. So it&#8217;s that moment in time, but that&#8217;s just the lay of the land now. And it does feel like, across the pond, where I live in Europe, things are sort of skewed slightly differently. Maybe there&#8217;s less of the ambulance chasing. But as I say, right at the bottom of it all is, well, some sort of moral compulsion to do the right thing by your data. And if the law is how that needs to be enforced, then that&#8217;s how it needs to be enforced.</p>\n\n\n\n<p>It does feel though, like you said, that it&#8217;s kind of gone off the, well, boil, for want of a better word, with the frog analogy. But maybe you are here to tell us that that&#8217;s a little bit different.</p>\n\n\n\n<p>Firstly, there is no one size fits all. If we&#8217;re in Europe, it would be on a country by country basis. If you&#8217;re in the US, it would be on a state by state basis. From the WordPress perspective, let&#8217;s take the example of somebody that&#8217;s just got a vanilla version of WordPress. So they&#8217;ve got no forms on there, it&#8217;s just downloaded directly from the internet, they&#8217;ve got a five page brochure website. Does anything inside a vanilla version of WordPress raise any kind of privacy flags?</p>\n\n\n\n<p>[00:11:25] <strong>Donata Stroink-Skillrud:</strong> I really think it depends, right? Because some people do just have a pure brochure website, there&#8217;s no forms, there&#8217;s nothing else, and privacy really starts becoming an issue when you&#8217;re collecting personal data. So names, emails, phone numbers, IP addresses, device identifiers, things like that. But I think for anybody that&#8217;s running a business, right? Like if I create a personal recipe website that I just use with my husband, which we do have, you know, it&#8217;s not a big deal because it&#8217;s just a personal use type of situation.</p>\n\n\n\n<p>But if you&#8217;re running a business, you&#8217;re almost always installing other tools. You&#8217;re installing Google Analytics, you&#8217;re installing Google Fonts, you&#8217;re installing Recaptcha, you know, you&#8217;re having these forms, you&#8217;re linking to other websites. That&#8217;s when privacy can really become an issue. So it does depend individually on your setup, but as long as your site is collecting data, either on the front end or the back end, that&#8217;s when you need to be aware of these things.</p>\n\n\n\n<p>[00:12:21] <strong>Nathan Wrigley:</strong> And when you say collecting data, it&#8217;s not just that there are form fields to be filled out on the front, the mere presence of, like you said, a Google Font, that was a sort of famous thing in the European Union, where the font I think was stored in the US, the file that that was taken from was in the US, and I think it was in Germany, the website, and somebody got prosecuted for that. But there&#8217;s nothing to fill in. It&#8217;s just, there&#8217;s something on the backend, Google Analytics, whatever it may be. So you do need to be mindful of this. You do need to think about it.</p>\n\n\n\n<p>[00:12:48] <strong>Donata Stroink-Skillrud:</strong> Absolutely. And I think the one thing that we&#8217;re seeing as a trend right now is, especially with web designers, is starting to become more aware of these things, looking at alternatives, right? So for Google Fonts, it&#8217;s non-compliant with GDPR, because of that court decision, we can just host it locally. So you don&#8217;t have to get consent because it doesn&#8217;t track people, it doesn&#8217;t collect data, it doesn&#8217;t place cookies, right? So that&#8217;s a great alternative.</p>\n\n\n\n<p>But for other things like a contact form, there&#8217;s not really an alternative. You&#8217;re going to have to collect data as a business owner, and there&#8217;s nothing wrong with that inherently, you just have to follow certain rules.</p>\n\n\n\n<p>[00:13:21] <strong>Nathan Wrigley:</strong> Let&#8217;s say with the contact form example, is it that you are collecting that data, and it&#8217;s being stored in a database? Is that where the problem arises, or is it the fact that that data at some point touched your infrastructure? So, as an example, let&#8217;s say I set up a contact form, and all it&#8217;s getting is, I don&#8217;t know, name, email, and message fields. But I have a plugin, and I&#8217;ve utilised the feature in that plugin to immediately expunge the database once the form&#8217;s been sent. So I receive the form, the form is processed on the backend, but immediately deleted, but I&#8217;ve got an email with that data in it. Is my website compliant because of that, or the fact that it&#8217;s sending data, does that make me non-compliant?</p>\n\n\n\n<p>[00:13:57] <strong>Donata Stroink-Skillrud:</strong> So it&#8217;s both. It&#8217;s the fact that that data&#8217;s been collected, even if it&#8217;s deleted immediately, as well as it&#8217;s been shared with your email service provider, and you&#8217;re storing it in your email as well. And that doesn&#8217;t necessarily mean that you&#8217;re non-compliant, it just means that you have to get compliant. You know what I mean? So you do have to do certain things, like obtain consent for the collection of that data, use it responsibly, provide a privacy policy, all of those types of things.</p>\n\n\n\n<p>[00:14:22] <strong>Nathan Wrigley:</strong> If I was going through anything in life that required legal thought processes, I wouldn&#8217;t assume that I could do it myself. I&#8217;d work on the basis that I need to hire a professional. I don&#8217;t know, I&#8217;m moving house and I need, we call them conveyancers, which is a particular kind of lawyer that deals with moving of property, and all of the titles and deeds that go with that. I wouldn&#8217;t think I can do that myself.</p>\n\n\n\n<p>And yet we&#8217;re in an industry where I&#8217;m assuming most people who build websites, probably a lot of the listeners to this, won&#8217;t be making those judgements. They might not be contacting lawyers. Is that potentially a move which you shouldn&#8217;t be making? Should you be consulting lawyers on this for each and every website? Because it kind of feels that that in itself might put you out of business because of the cost of hiring lawyers. So I don&#8217;t know what your thoughts are on that.</p>\n\n\n\n<p>[00:15:05] <strong>Donata Stroink-Skillrud:</strong> Yeah, so I think it is a dangerous idea, right? It&#8217;s one of those things where, you know, I own a house, and I know that there&#8217;s certain things I can do in that house, like I can rewire my thermostat. But I know I can&#8217;t rewire the entire electricity, because my house is going to burn down, because I have no idea what I&#8217;m doing, right? I think when it comes to web designers, there are a couple things that you should be aware of.</p>\n\n\n\n<p>So first of all, if you&#8217;re the one that&#8217;s providing the policy to the client, so let&#8217;s say your client&#8217;s like, hey, I need a privacy policy, and you&#8217;re like, oh no problem, I&#8217;ll give you a template, or I&#8217;m going to write it for you. You&#8217;re assuming that liability now.</p>\n\n\n\n<p>[00:15:39] <strong>Nathan Wrigley:</strong> Oh, the mere suggestion of, I&#8217;ll pass on a template for you, I as a web developer, as a web designer, that&#8217;s now on me.</p>\n\n\n\n<p>[00:15:47] <strong>Donata Stroink-Skillrud:</strong> Yeah exactly, because you&#8217;re the one that provided this template to them. And the issue there is that you&#8217;re probably not going to get paid enough for that website to cover the cost of non-compliance. So with privacy, you know, there&#8217;s lawsuits starting at $30,000, there&#8217;s fines starting at $2,500 per violation. So per violation means per website visitor. So let&#8217;s say I have 100 website visitors from California, and I don&#8217;t have a compliant privacy policy, that&#8217;s 2,500 times 100, that&#8217;s how my fine would be calculated. You&#8217;re not getting paid enough for that website to justify that kind of cost in taking on this type of liability.</p>\n\n\n\n<p>So I think as web designers, we do have to tell people, hey, I built this website for you, it&#8217;s collecting data, I&#8217;m not a lawyer, but I do know that there are some legal things that could come up with this. There are some issues that could happen with this. You should talk to a lawyer, or you should use another tool to get compliant.</p>\n\n\n\n<p>You give them that recommendation because a lot of clients just may not know that, right? They&#8217;re not tech savvy, or they don&#8217;t know any of this because they&#8217;re not in this industry. And you tell them that, and then it&#8217;s the client&#8217;s responsibility.</p>\n\n\n\n<p>Same thing with your contracts. Make sure your contracts don&#8217;t say, agency will be responsible for making sure that the website is compliant with all applicable laws, rules, and regulations. And if that sounds like a quote, it is, because there are a lot of templates out there that say that. Make sure your contract doesn&#8217;t say that, and make sure your client understands that&#8217;s not your responsibility, that&#8217;s their responsibility.</p>\n\n\n\n<p>[00:17:16] <strong>Nathan Wrigley:</strong> So if I have a contract with a client, they&#8217;ve come to me, I&#8217;ve built their website, I&#8217;ve handed it over, does ignorance count in any way, or do I need to explicitly put in writing, I have said to you, you need legal advice, now go and find it? Are there templates for that, dare I ask? Or is the mere templating of that sentence itself going to put me in hot water? In other words, is there a way that I can offhand this sensibly, in a repeatable fashion, where I can, I don&#8217;t know, just copy a document over to the client? Can that be done? Can I expunge the responsibility from myself fairly easily?</p>\n\n\n\n<p>[00:17:50] <strong>Donata Stroink-Skillrud:</strong> Yeah, you can. So the first step would be to have that in your contract so, you know, if a lawyer wrote your contract, talk to them about it, have them add that in. I would also recommend adding, we&#8217;re not responsible for accessibility, or any other compliance issues, which would be helpful. And at Termageddon we have something called the Website Policies Waiver, and you don&#8217;t actually have to use our service to use it, but it&#8217;s basically a two pager that explains what this is, why it&#8217;s important.</p>\n\n\n\n<p>It has the clients sign off on the fact that you&#8217;re not the one that&#8217;s responsible. And it gives them a couple of options, like you&#8217;ll provide your own policies, you&#8217;ll use Termageddon, or you won&#8217;t do anything. But the client signs off on it, so it&#8217;s all documented.</p>\n\n\n\n<p>I think we&#8217;re kind of at this point right now where there&#8217;s so many lawsuits that I would not, I mean, personally, if I was a web designer, I wouldn&#8217;t just say that and then move on, I would have that in writing somewhere.</p>\n\n\n\n<p>[00:18:39] <strong>Nathan Wrigley:</strong> Is it possible to have a catch all document like that? You just made a point that, you know, if you&#8217;ve got a hundred visitors from California, then that&#8217;s going to be impacting. And obviously, as a website developer, unless I&#8217;m geofencing the IP addresses and saying, no, Californians, you may not even look at my website. And honestly, who&#8217;s doing that? Nobody. It would be nice to have visitors from California. That&#8217;s almost the point of having a web presence.</p>\n\n\n\n<p>Do I need to worry about that? Do I need to worry about every single jurisdiction on earth, or can my British, in my case, based lawyer take that on for me?</p>\n\n\n\n<p>[00:19:11] <strong>Donata Stroink-Skillrud:</strong> Sometimes they can, sometimes they can&#8217;t. So if you are working with a lawyer, I would ask them, what privacy laws do you intend to cover here? And they should be asking you questions to figure out what laws apply to you, because all of this depends on what laws apply to you. So each law has different compliance requirements. So that&#8217;s the number one thing that must be done.</p>\n\n\n\n<p>So if you are working with a lawyer, I would ask them, hey, help me figure out what laws apply to me. What laws are you comfortable covering? What laws are you not comfortable covering? How do you write this policy? How do you intend to update this policy for me? Are there extra charges for updating, and things like that?</p>\n\n\n\n<p>I think it&#8217;s important to note that, just because your website could randomly be accessible anywhere in the world, that doesn&#8217;t necessarily mean that all the laws apply to you. So for example, like some laws, like Nevada, you have to do business in the state. So you have to have customers there, or ship there, or things like that. Some laws have business size restrictions, so you have to make a certain amount of revenue, like $25 million, or you have to collect the data of a certain number of people. So there are a lot of factors that go into figuring out what laws actually apply.</p>\n\n\n\n<p>[00:20:15] <strong>Nathan Wrigley:</strong> I&#8217;m obviously not a lawyer, but I know that if I want to move house, I&#8217;m going to contact conveyancer. I have a friend who is a maritime lawyer, and I know that he deals exclusively with freight, boats out on the ocean. In other words, there&#8217;s a specific kind of lawyer for a specific kind of law. Is that the case here? Is there a growing industry of web-based, online lawyers, and are they preferred, or could I walk down my high street and use any old lawyer?</p>\n\n\n\n<p>[00:20:41] <strong>Donata Stroink-Skillrud:</strong> So there are a lot of privacy lawyers out there. So the International Association of Privacy Professionals, iapp.org, which I&#8217;m a part of, certifies lawyers and privacy, and also has a directory of lawyers you can find there as well. It&#8217;s difficult because you may go to a business lawyer and they may say, oh yeah, no problem, I&#8217;ll write you a privacy policy, and then get some template online, or something like that. So definitely make sure to ask them, are you experienced in this area of law? Because it is very, very specific, and it&#8217;s very intricate. You know, I used to be a business lawyer back in the day, and I didn&#8217;t know anything about privacy. So you do have to be careful with that.</p>\n\n\n\n<p>[00:21:16] <strong>Nathan Wrigley:</strong> It sounded like the search that you might perform on Google there would be privacy lawyer.</p>\n\n\n\n<p>[00:21:20] <strong>Donata Stroink-Skillrud:</strong> Yep, privacy lawyer. And then you would put in like your city.</p>\n\n\n\n<p>[00:21:23] <strong>Nathan Wrigley:</strong> Okay, perfect. So your presentation at WordCamp was called, Building WordPress Websites with ‘Privacy by Design’ in Mind. And it sounds like you&#8217;ve got some tips there, some short circuit things that you might want to be thinking about. Let&#8217;s go through a few of those. What is in your presentation? What things can we have at the front of our mind if we&#8217;re building websites, which clearly people listening to this is doing are doing?</p>\n\n\n\n<p>[00:21:46] <strong>Donata Stroink-Skillrud:</strong> So, I&#8217;m going to start off first by just talking about what privacy by design is, and why it&#8217;s important. So kind of going over some of the legal requirements, like the laws that specifically talk about privacy by design, and what they say, and what&#8217;s happening with them. And then also talking about what privacy by design is, which is basically the integration of privacy throughout the entire life cycle of the project, from the beginning to the very end.</p>\n\n\n\n<p>So it starts off with the wire frame designs, and ends with a destruction of data. So privacy is embedded into all of those processes. So a great example would be, if you have a website that has a login form. When somebody puts in their email to reset their password, and they put in the wrong email, you don&#8217;t display, hey, you actually registered with this email instead, right? You know, a well known company got into trouble with this, when you&#8217;re setting up two factor authentication, don&#8217;t add the 2FA information to a marketing list. It was Meta that did that, which was just great.</p>\n\n\n\n<p>Things like that, so making sure it&#8217;s, privacy&#8217;s taking into account. And I&#8217;ll also be sharing some examples of bad practices, and examples of good practices. Some examples of the bad practices are cookie consent banners that just have an accept button and no decline. Or the decline is hidden, and tiny font underneath, and doesn&#8217;t even look like a button. Or email unsubscribes that are very confusing, where you can&#8217;t understand, you know, if I check the box, am I opting in or opting out?</p>\n\n\n\n<p>The way people display their policies. I have a screenshot of policy that says, analytics, and then it&#8217;s a whole bunch of blank space, and then, how we share your data, and it says, we don&#8217;t share your data with anyone. Things like that, that I think for a lot of people, once you talk about it, it seems really obvious, but if you&#8217;re not a part of that area of expertise, it might not be super obvious at first glance.</p>\n\n\n\n<p>And then I&#8217;ll also share some best design practices. So there&#8217;s some really good website design that I&#8217;ve seen, that provides good privacy choices and good design.</p>\n\n\n\n<p>And then I&#8217;ll also be giving some tips and cheat sheets. So for example, like when you build a website, tell your client all the third party tools that are on the website. We get on a lot of calls with a lot of people to generate their policies, and they&#8217;re like, I have no idea if I have Google Analytics, right? Well, they should know that because that could be a very privacy invasive tool. And that really affects their compliance requirements. It can even subject them to other privacy laws. But if they don&#8217;t know that, then they don&#8217;t know. So some tips for designers about how to communicate this all to their clients, what they should be talking about, what they should be thinking about.</p>\n\n\n\n<p>[00:24:17] <strong>Nathan Wrigley:</strong> Whenever I think of lawyers, forgive me, I always think that there&#8217;s an element, it&#8217;s a fairly well paid profession, let&#8217;s put it that way. And I would imagine that if I went to my brochure website client and said, okay, I&#8217;m not responsible for this, but here&#8217;s some information, you need to get a lawyer. I&#8217;m imagining that, typically, they might be thinking the same thought. Gosh, that&#8217;s going to end up costing me an absolute arm and a leg.</p>\n\n\n\n<p>Is that the case? Can you achieve compliance in a, well, air quotes, affordable way? Or does it end up suddenly adding thousands of dollars of legal fees? Which may actually be the difference with launch, go, no go, you know. Build a website, don&#8217;t build a website. Does it always have to be expensive? And I&#8217;m guessing services like your own, Termageddon is trying to reduce the cost because you can kind of automate a lot of this.</p>\n\n\n\n<p>[00:25:04] <strong>Donata Stroink-Skillrud:</strong> Yeah. Yeah, absolutely. So I think the cost for a lawyer, it can be expensive depending on where you&#8217;re located. So, you know, if you&#8217;re in downtown Chicago, you&#8217;re going to be paying a lot. If you&#8217;re in southern Illinois, in a smaller town, you may be paying less. But there might not even be a privacy lawyer in your town. You know what I mean?</p>\n\n\n\n<p>So I think for a lot of businesses that can become unaffordable. And that&#8217;s why we create a Termageddon, which is kind of a good mesh of these types of things that is affordable for small business. And that was our whole goal, is to make privacy accessible for small businesses. Because I think small businesses do care. They care about their clients. They care about their email list. They care about what they do with the data. It&#8217;s just that they don&#8217;t want to spend $30,000 on this. But you can automate some aspects of it for a much cheaper price.</p>\n\n\n\n<p>What some people do is they&#8217;ll generate their policies with a generator, and then give them to a lawyer to review, which is way cheaper than writing a new one. We provide updates as well, which is great.</p>\n\n\n\n<p>For people who can afford it, lawyer&#8217;s great. If you can&#8217;t afford it, which I totally understand, you know, we&#8217;re a small business as well, using third party tools like Termageddon is very helpful because it can help you get there without that huge price tag.</p>\n\n\n\n<p>[00:26:14] <strong>Nathan Wrigley:</strong> Yeah, I guess you&#8217;ve got to figure out what your exposure is. You know, if you&#8217;re doing something really bespoke, and you genuinely are taking people&#8217;s medical data. There&#8217;s no question, you need a bunch of lawyers, specifically to cast their eye over your webite. But if you&#8217;ve just got a personal blog, it&#8217;s probably much more straightforward. Inspect what you&#8217;re doing, and then go and get the legal advice.</p>\n\n\n\n<p>But I do like the idea of getting some documentation, maybe from some service like you mentioned, and then getting a lawyer in your local area to sort of look over it.</p>\n\n\n\n<p>But it also feels like a movable feast. It feels like, what was yesterday true, may not be true a year, two years, from now. And, is that the case? Is this the kind of set it and forget it in 2024, and then revisit it a decade from now, or is it more a month, a year, two years? Is there an iteration? Is there a sort of cadence that you need to be thinking about?</p>\n\n\n\n<p>[00:27:00] <strong>Donata Stroink-Skillrud:</strong> I wish it was something where like you created it once, and then look at it again in 10 years. Take like a 10 year vacation, it&#8217;d be awesome. Unfortunately, no. There are so many new privacy laws. So in 2025 we have 8 laws going into effect. So these policies are constantly updating all the time. And if you are working with a lawyer, I would recommend asking them what their price is for the updates, so that you&#8217;re not getting a bill every other month for a couple thousand dollars to make those updates. You know what I mean?</p>\n\n\n\n<p>But there are a lot of updates that need to be made very, very frequently. From the new laws perspective, there&#8217;s new rules, there&#8217;s new regulations. And here in the US we have these 20, 30-year-old privacy laws being reinterpreted as applying to websites now. So those need updates too, as well as whenever you change your privacy practices, you need to change it too.</p>\n\n\n\n<p>So that can get very costly, and it could get complicated, especially if you&#8217;re trying to do this yourself, because tracking this is like a full-time job. I mean, trust me, it is my job to track all of this, and it&#8217;s very, very time consuming. It&#8217;s not one of those things, if you don&#8217;t have anybody helping you with it, it&#8217;s definitely not a set it and forget it solution.</p>\n\n\n\n<p>[00:28:09] <strong>Nathan Wrigley:</strong> And so is that what you, Donata, spend your day doing? Literally consuming, I don&#8217;t know what it is, information from different jurisdictions, and collating that to try and make it work within your own business. Is that what you spend your time doing?</p>\n\n\n\n<p>[00:28:22] <strong>Donata Stroink-Skillrud:</strong> Yeah, pretty much. So I&#8217;m the legal engineer behind all the policies, so I wrote all the policy questions that help figure out what laws apply to you. All the remaining questions that you need to answer. All the answers, all the text variations, which we have hundreds of thousands of tax variations now. And then I&#8217;m also responsible for the updates.</p>\n\n\n\n<p>So whenever a new law is passed, you know, I have to track the bills first of all, which so many bills don&#8217;t pass, it&#8217;s like such a waste of time sometimes. You know, I do have to track all of that, and then once something becomes law, before the effective date, I have to put it in the generator and help people update their policies, and everything like that.</p>\n\n\n\n<p>[00:28:59] <strong>Nathan Wrigley:</strong> So if you use a service like yours, do you then provide something, and then you&#8217;ll, I don&#8217;t know, email an update out, or is it more, I don&#8217;t know, you put something on the website which is automatically updated as you make the adjustments on the Termageddon end, my website is automatically updated, or do I have to copy paste new privacy policies every so often?</p>\n\n\n\n<p>[00:29:20] <strong>Donata Stroink-Skillrud:</strong> No, so when you generate your policies with Termageddon, you get an embed code. The embed code goes onto your website, and that&#8217;s where updates are pushed through. How updates are made kind of depend on the law. So it depends on what new disclosures are required. So if it&#8217;s information that we already know, we push the update automatically for you. If it&#8217;s information that we don&#8217;t already know, we might ask you a question or two, you respond, and then the text update is made automatically to your privacy policy text.</p>\n\n\n\n<p>[00:29:47] <strong>Nathan Wrigley:</strong> And do you take the responsibility? We talked earlier about who&#8217;s responsible, and at what point can you divest yourself of that responsibility. If I use a service like yours, or a rival, does that mean that I am absolved a responsibility and you have taken it on, or is it more nuanced than that?</p>\n\n\n\n<p>[00:30:02] <strong>Donata Stroink-Skillrud:</strong> So when people register with us, they have to accept our privacy policy, and our terms of service, which means that they&#8217;re forming a relationship with us about their policies. So for example, as an agency, you can send clients to us through the affiliate program, you get a promo code or link. They register with us, and we&#8217;re the ones responsible for their policies. When you&#8217;re reselling Termageddon, we recommend sharing the license with a client, so the client has to create an account, and register with us, and acknowledge that we&#8217;re responsible for their policies as well.</p>\n\n\n\n<p>[00:30:31] <strong>Nathan Wrigley:</strong> Okay. So we&#8217;re in the year 2024, and I honestly don&#8217;t know what the landscape looks like. I&#8217;m presuming that you do a little bit more. Does it feel like more privacy in the future, less privacy in the future, or the same? In other words, if I&#8217;m a jobbing website designer, builder, web developer, whatever it may be, is there more coming down the pike than there is now, or is it the sort of thing that I can worry about the same amount this year as next year?</p>\n\n\n\n<p>[00:30:55] <strong>Donata Stroink-Skillrud:</strong> There&#8217;s a lot more, yeah.</p>\n\n\n\n<p>[00:30:56] <strong>Nathan Wrigley:</strong> There&#8217;s always more.</p>\n\n\n\n<p>[00:30:57] <strong>Donata Stroink-Skillrud:</strong> Yeah, I have a whole spreadsheet of upcoming privacy laws, and it just keeps getting longer, and longer, and longer. And the problem is, in the US there&#8217;s no comprehensive, overarching federal privacy law. So you&#8217;re seeing all of these states propose and pass their own laws. And that&#8217;s a really big issue because it creates this hodgepodge. Because if I&#8217;m a business located in Illinois, I have to comply with laws all over, because I do business there, I collect their personal information. So I don&#8217;t have to be located in a state or country for their laws to apply to me.</p>\n\n\n\n<p>So it creates this huge, what we call the privacy law patchwork, which is like the bane of every privacy lawyers existence right now. Because there&#8217;s more and more of these laws, and more and more of these requirements. They don&#8217;t exactly match up across the states. There are some states that have a lot of similarities, there are states that are completely different. You know, some exempt nonprofits, others don&#8217;t. It&#8217;s kind of a mess.</p>\n\n\n\n<p>[00:31:52] <strong>Nathan Wrigley:</strong> Yeah, wow. And that&#8217;s just the US. Map that across the whole world all the 192 odd, whatever it is, countries out there.</p>\n\n\n\n<p>[00:31:59] <strong>Donata Stroink-Skillrud:</strong> Yeah. And you know, countries that have had privacy laws for a long time, like Australia with their privacy act from 1988. It&#8217;s been amended a couple times, but due to the changes in technology, and the privacy invasive technology that we&#8217;ve seen, they&#8217;re working on a complete overhaul of their privacy law. So these laws that have been established for a long time, that we&#8217;re very familiar with, are going to completely change as well.</p>\n\n\n\n<p>[00:32:21] <strong>Nathan Wrigley:</strong> So, Australians, watch this space.</p>\n\n\n\n<p>[00:32:24] <strong>Donata Stroink-Skillrud:</strong> Yeah.</p>\n\n\n\n<p>[00:32:24] <strong>Nathan Wrigley:</strong> Where could people contact you if they&#8217;re kind of concerned, or interested, or just want to find out a bit more about Termageddon? Where would they get you?</p>\n\n\n\n<p>[00:32:31] <strong>Donata Stroink-Skillrud:</strong> So you can find our website at termageddon.com. Email me at donata at termmageddon.com, or you can follow us on social media. We&#8217;re just @termageddon everywhere. Definitely feel free to reach out.</p>\n\n\n\n<p>[00:32:41] <strong>Nathan Wrigley:</strong> Head to wptavern.com, search for Donata&#8217;s episode, and I&#8217;ll have put all of the links there in the show notes, if you didn&#8217;t manage to capture any of those. Everything should be there. So, Donata, thank you so much for chatting to me today. I appreciate it.</p>\n\n\n\n<p>[00:32:54] <strong>Donata Stroink-Skillrud:</strong> Thank you for having me.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://x.com/termageddon\">Donata Stroink-Skillrud</a>.</p>\n\n\n\n<p>Donata is an attorney licensed in Illinois and a Certified Information Privacy Professional. She is the President and Legal Engineer of <a href=\"https://termageddon.com/\">Termageddon</a>, a SaaS that generates website policies and helps keep them up to date with changing legislation. Donata is also a Fellow of the American Bar Foundation, Chair of the American Bar Association&#8217;s ePrivacy Committee and Program Committee, member of the ABA&#8217;s Cybersecurity Legal Task Force and the American Bar Association&#8217;s Representative to the United Nations.</p>\n\n\n\n<p>Donata will take us through the ever changing topic of privacy laws, highlighting the challenges posed to businesses to comply with a myriad of regulations. She talks about the global trend of updating privacy laws to keep up with rapid technological advancements and new capabilities.</p>\n\n\n\n<p>We touch upon the significant moral and legal responsibilities tied to user data management. Donata stresses the importance of &#8216;Privacy by Design,&#8217; which integrates privacy measures from the start to the end of a project lifecycle. She shares real-life examples of common pitfalls, such as misleading cookie banners, and offers best practices for embedding privacy in web development.</p>\n\n\n\n<p>Donata explains the importance of including disclaimers in contracts to mitigate legal liabilities and provides actionable resources, including her own &#8220;Website Policies Waiver,&#8221; which helps website builders navigate the complexities of legal compliance.</p>\n\n\n\n<p>We also discuss the landscape of international law applicability, the high costs of specialised legal compliance, and how you need to be mindful of what’s coming in the next few years.</p>\n\n\n\n<p>If you’re keen to find out more about the current legal landscape, or just want some more knowledge to ensure your projects are legally sound and ethically responsible, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://termageddon.com/\">Termageddon website</a></p>\n\n\n\n<p><a href=\"https://www.americanbarfoundation.org/\">American Bar Foundation</a></p>\n\n\n\n<p><a href=\"https://www.americanbar.org/\">American Bar Association</a></p>\n\n\n\n<p><a href=\"https://www.americanbar.org/groups/cybersecurity/\">Cybersecurity Legal Task Force</a></p>\n\n\n\n<p>Donata&#8217;s presentation at WordCamp US &#8211; <a href=\"https://us.wordcamp.org/2024/session/building-wordpress-websites-with-privacy-by-design-in-mind/\">Building WordPress Websites with Privacy by Data in Mind</a></p>\n\n\n\n<p><a href=\"https://enforcementtracker.com/\">GDPR Enforcement Tracker website</a></p>\n\n\n\n<p><a href=\"https://www.americanbar.org/groups/business_law/resources/business-law-today/2024-august/californias-invasion-privacy-act/\">California Invasion of Privacy Act</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Video_Privacy_Protection_Act\">Video Privacy Protection Act</a></p>\n\n\n\n<p><a href=\"https://www.texasattorneygeneral.gov/consumer-protection/file-consumer-complaint/consumer-privacy-rights/texas-data-privacy-and-security-act\">Texas Privacy Law</a></p>\n\n\n\n<p><a href=\"https://termageddon.com/policies/disclaimer-generator/\">Termageddon&#8217;s Disclaimer Generator</a></p>\n\n\n\n<p><a href=\"https://iapp.org/\">International Association of Privacy Professionals</a></p>\n\n\n\n<p><a href=\"https://x.com/termageddon\">Termageddon&#8217;s X / Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Akismet: How to Prevent Contact Form Spam without CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=284201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://akismet.com/blog/prevent-form-spam-without-captcha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19898:\"<p>Contact forms are an essential part of your website, but the unfortunate reality is that they attract spam like a magnet. So, if your inbox is overrun with spam form submissions, the genuine inquiries will be overshadowed. And that stands to make your life a lot more&nbsp;difficult.</p>\n\n<p>CAPTCHA is a familiar option to stop spam, but it can drive potential customers away due to inconvenience. You know you’re not a robot, but sometimes CAPTCHA&nbsp;disagrees.</p>\n\n<p>Fortunately, there are other ways to stop spam without making your site visitors jump through&nbsp;hoops.</p>\n\n<p>Modern anti&#8209;spam solutions are much more accessible and user&#8209;friendly than CAPTCHA. So let’s explore some of these and get the clutter out of your&nbsp;inbox.</p>\n\n\n<span id=\"more-284201\"></span>\n\n\n<h2 id=\"why-captcha-is-to-be-avoided-in 2024\" class=\"wp-block-heading\">Why CAPTCHA is to be avoided in&nbsp;2024</h2>\n\n\n<p><a href=\"https://akismet.com/blog/what-is-captcha/\">CAPTCHA</a> has been around for years now. Anyone who’s been online is familiar with deciphering distorted letters or selecting all the squares that contain a certain object — the typical CAPTCHA fare.&nbsp;</p>\n\n\n<p>So what’s the problem? CAPTCHA is far from ideal, especially if you want to maximize user engagement, lead generation, or sales on your site. Some of the downsides to CAPTCHA&nbsp;include:</p>\n\n\n<ul class=\"wp-block-list\"><li><strong>User experience issues</strong>: CAPTCHA is perceived as a nuisance. When people click a button to do something, they don’t want to be forced to do picture puzzles or math problems. It’s frustrating to be interrupted by a CAPTCHA when you just want to fill out a&nbsp;form.</li>\n\n<li><strong>Accessibility concerns</strong>: It also poses significant accessibility challenges, particularly for those with visual impairments. For some people, it’s impossible to interact with them. While audio CAPTCHAs exist, these cause problems, too. Relying on CAPTCHA means you risk alienating a portion of your&nbsp;audience.</li>\n\n<li><strong>Decreased conversion rates</strong>: Ultimately, anything that disrupts the user journey will damage conversion rates. If what’s beyond the CAPTCHA isn’t valuable enough, people will simply abandon the form, and you just lost a conversion. If you want visitors to do something, you should minimize the number of barriers in the&nbsp;way.</li></ul>\n\n\n<p>At one time, CAPTCHA was the most effective way to stop spam. But with new advances in online technology, things have&nbsp;changed.</p>\n\n<h2 id=\"how-to-stop-form-spam-without captcha\" class=\"wp-block-heading\">How to stop form spam without&nbsp;CAPTCHA</h2>\n\n<p>You no longer need to rely on CAPTCHA to protect your forms from spam. There are several effective, <a href=\"https://akismet.com/blog/captcha-alternatives/\">more user&#8209;friendly methods</a> worth exploring. Let’s take a look at some of the potential strategies to block form spam without sacrificing conversions or&nbsp;accessibility.</p>\n\n<h3 class=\"wp-block-heading\">1. Akismet: The AI&#8209;powered solution that blocks 99.99% of&nbsp;spam</h3>\n\n<p>What if there was something that could stop contact form spam without your visitors even knowing it’s there? Something that requires minimal configuration, has no confusing setup, and just&nbsp;works?</p>\n\n<p>That describes Akismet perfectly. Powered by advanced AI and machine learning, Akismet excels at identifying and blocking spam submissions with an impressive accuracy of 99.99%. And it works entirely behind the&nbsp;scenes.</p>\n\n<p>How does it work? Just as you know the email offering an inheritance from a foreign prince in exchange for your banking details is fake, Akismet can sniff out spam at a&nbsp;glance.</p>\n\n<p>Akismet uses a massive database of known spam and a machine learning algorithm that becomes more intelligent the more spam it blocks. As spammers change their methods, Akismet evolves with&nbsp;them.</p>\n\n<p>Each time a form is submitted, Akismet compares the data against its database, flagging any submissions that match common spam patterns. That way, only legitimate messages make it to your inbox. It’s the most reliable way to keep your contact forms&nbsp;spam&#8209;free.</p>\n\n<h3 id=\"2-honeypot-a-decent-yet-limited solution\" class=\"wp-block-heading\">2. Honeypot: A decent yet limited&nbsp;solution</h3>\n\n<p>The <a href=\"https://akismet.com/blog/what-is-a-honeypot/\">honeypot technique</a> is another popular method for dealing with form spam, and while it has its merits, it comes with many&nbsp;limitations.</p>\n\n<p>The idea behind it is simple: you add an extra, hidden field to your form that human users can’t see. Spambots can see it and usually fill out every field they detect in a form. When a form is submitted with this trap field filled out, the submission is flagged and&nbsp;discarded.</p>\n\n<p>While a honeypot is effective against basic spambots, they often fall short. Advanced bots detect these hidden fields and bypass them, or intentionally avoid unusual fields. Some bots even use machine learning to detect honeypots and only fill out necessary&nbsp;fields.</p>\n\n<p>That means, over time, your spam protection becomes less and less effective — unlike AI&#8209;based solutions like Akismet which adapts in real&#8209;time to new threats. Honeypots are static and leave your forms vulnerable to new types of&nbsp;spam.</p>\n\n<h3 id=\"3-session-cookies-unreliable-and complex\" class=\"wp-block-heading\">3. Session cookies: Unreliable and&nbsp;complex</h3>\n\n<p>Session cookies are another method used to block spam. This involves setting a cookie when someone visits your site, which keeps track of their session and behavior. This is checked when they submit a form. If spammy behavior is detected, the submission is&nbsp;flagged.</p>\n\n<p>While this approach is also effective against simple bots, it’s far from foolproof. Advanced bots readily spoof legitimate behavior, so this method is unreliable. Also, relying on session cookies causes problems for legitimate users who browse with strong privacy settings or disabled&nbsp;cookies.</p>\n\n<p>Another drawback is the complexity involved in setting up session cookies to block spam. This requires a lot of technical knowledge, and it doesn’t even work as well as other&nbsp;solutions.</p>\n\n<h3 class=\"wp-block-heading\">4. Email filtering: Weak and&nbsp;time&#8209;consuming</h3>\n\n<p>Email filtering is another method for managing contact form spam. This approach involves setting up filters in your email client that automatically hide messages that appear to be spam. It identifies these based on blocklisted email addresses or suspicious&nbsp;keywords.</p>\n\n<p>The primary issue here is that they’re often ineffective. There’s a good chance that something will slip through the cracks and clutter up your inbox. Email filters are also <em>too</em> aggressive sometimes, filtering out legitimate messages. That means you’ll probably end up having to sift through all that spam&nbsp;anyway.</p>\n\n<p>Setting up your own email filters is also time&#8209;consuming. And you’ll likely end up constantly adjusting them and still having spam slip&nbsp;through.</p>\n\n<h3 id=\"5-rate-limiting-only-works-for-repeat offenders\" class=\"wp-block-heading\">5. Rate limiting: Only works for repeat&nbsp;offenders</h3>\n\n<p>Rate limiting is used to control the number of form submissions from a single IP address within a specified timeframe. This means that a single bot can’t be used to spam your&nbsp;form.</p>\n\n<p>This is useful for curbing form abuse, but the limitations are clear. It primarily targets spambots that attack your site from the same IP multiple times. But many spammers distribute their attacks across a network of bots or rotate their IP addresses frequently. Rate limiting is ineffective against spam attacks like&nbsp;this.</p>\n\n<h3 class=\"wp-block-heading\">6. Time&#8209;based form submissions: For very basic&nbsp;bots</h3>\n\n<p>Time&#8209;based form submission checks target bots that fill out and submit forms too quickly. Unlike normal users who need to spend at least a minute filling out a form, bots do it almost instantly. Just set a minimum time limit, and if a form is completed too quickly, mark it as&nbsp;spam.</p>\n\n<p>Most spammers have long wised up to this method, however. Advanced bots mimic human behavior. So, this ends up being a basic way of blocking spam that allows a lot of bots to slip through&nbsp;anyway.</p>\n\n<h2 id=\"why-akismet-is-the-perfect-alternative-to captcha\" class=\"wp-block-heading\">Why Akismet is the perfect alternative to&nbsp;CAPTCHA</h2>\n\n<p>As you can see, other ways to stop spam are often lacking. They either damage the user experience, filter out mail too aggressively, or leave several vulnerabilities open for spam to slip&nbsp;through.</p>\n\n\n<p>But Akismet is different. It’s a seamless, intelligent solution that works quietly in the background. As it’s always learning and growing, false positives are rare while most spam is successfully filtered out. As if you need more convincing, here’s why Akismet is the perfect choice to replace CAPTCHA in 2024:&nbsp;</p>\n\n\n<h3 id=\"smart-and-adaptive-spam protection\" class=\"wp-block-heading\">Smart and adaptive spam&nbsp;protection</h3>\n\n<p>As you’ve likely noticed, machine learning and AI have recently become much more powerful. Akismet has long used machine learning to power its anti&#8209;spam functionality, and these systems are now powerful enough to boast a 99.99% accuracy with over <a href=\"https://akismet.com/blog/akismet-five-hundred-billion-with-a-b-spam/\">500 billion pieces of spam&nbsp;blocked</a>.</p>\n\n<p>Spammers are always evolving, and stagnant methods of stopping them like rate limiting and honeypots will only work for so long. Akismet is different because it’s also adapting in real&#8209;time with every piece of spam successfully blocked. As new spam tactics emerge, Akismet will learn and grow with&nbsp;them.</p>\n\n<p>Akismet’s usage of AI also means that it doesn’t just recognize known spam patterns — it also identifies subtle signs of spam in real&#8209;time. It blocks new spam tactics before they even get out of the&nbsp;gate.</p>\n\n<h3 id=\"seamless-user experience\" class=\"wp-block-heading\">Seamless user&nbsp;experience</h3>\n\n<p>One of Akismet’s standout features is its ability to provide a seamless user experience, something that CAPTCHA fails to deliver. There are no tedious puzzles to solve with Akismet — your visitors won’t even know it’s&nbsp;installed!</p>\n\n<p>Akismet operates entirely behind the scenes and requires no extra work from users. This makes it more accessible than CAPTCHA as well as simply less&nbsp;intrusive.</p>\n\n<p>People are more likely to complete your forms since they don’t have to deal with unnecessary hurdles. And that means higher conversion rates&nbsp;overall.</p>\n\n<h3 id=\"easy-integration-with-any website\" class=\"wp-block-heading\">Easy integration with any&nbsp;website</h3>\n\n<p>Another reason Akismet is the perfect alternative to CAPTCHA is how easily it integrates with virtually any website. Akismet may be famous as a <a href=\"https://akismet.com/wordpress/\">WordPress plugin</a>, but it can be used anywhere. Just connect your site to the API and you have spam&nbsp;protection.</p>\n\n<p>For WordPress users, Akismet integration is particularly simple, as the plugin comes pre&#8209;installed and is free for personal, non&#8209;commercial&nbsp;blogs.</p>\n\n<p>Otherwise, there are plenty of <a href=\"https://akismet.com/developers/plugins-and-libraries/\">Akismet plugins</a> so you can just as easily get it running on platforms like Drupal or use Ruby, Python, JavaScript, or another framework to install it. You can also build your own&nbsp;application.</p>\n\n\n<h3 id=\"set-it-and-forget-it-technology\" class=\"wp-block-heading\">Set-it-and-forget-it technology</h3>\n\n\n<p>What makes Akismet really stand out is its hands&#8209;off nature. Once Akismet is integrated into your website, there’s no need to constantly monitor and tweak your spam settings. The machine learning technology behind it does all that for&nbsp;you.</p>\n\n<p>Everything is taken care of automatically and behind the scenes. Spam gets filtered and blocked with no manual intervention necessary. Thanks to the 99.99% accuracy rate, you don’t need to constantly monitor your spam&nbsp;folder.</p>\n\n<p>As Akismet’s AI&#8209;powered engine continues to learn and adapt, every spam submission that gets blocked only makes it more&nbsp;effective.</p>\n\n<h3 id=\"accessibility-and inclusivity\" class=\"wp-block-heading\">Accessibility and&nbsp;inclusivity</h3>\n\n<p>CAPTCHA causes difficulties for people with disabilities, who make up a significant portion of online users. Being excluded is frustrating and alienating, and they’ll likely never come back to your&nbsp;site.</p>\n\n<p>When you eliminate the need for CAPTCHA by using Akismet, you make your website much more welcoming and accessible. Since it works invisibly in the background, no one needs to worry about being locked out of parts of your&nbsp;site.</p>\n\n\n<p>Still on the fence? Learn <a href=\"https://akismet.com/blog/convertkit-customerstory/\">how ConvertKit leverages Akismet</a> to protect their users from spam while maximizing conversions.&nbsp;</p>\n\n\n<h2 id=\"how-to-integrate-akismet-on-your website\" class=\"wp-block-heading\">How to integrate Akismet on your&nbsp;website</h2>\n\n<p>Getting Akismet on your website is a straightforward process, especially if you use WordPress. Even if not, there are still plenty of libraries and third&#8209;party plugins you can use depending on your framework and&nbsp;platform.</p>\n\n<p>The best part of Akismet is that it’s free for personal, non&#8209;commercial sites. For commercial sites, plans are straightforward and&nbsp;affordable.</p>\n\n<p>A few steps is all it takes to protect your site from spam forever. Let’s go over the WordPress&#8209;specific steps&nbsp;first.</p>\n\n<h3 id=\"step-1-install-and-activate akismet\" class=\"wp-block-heading\">Step 1: Install and activate&nbsp;Akismet</h3>\n\n<p>If your website is built on WordPress, installing Akismet just takes a few steps. In fact, it may already be there, since most WordPress sites come with Akismet pre&#8209;installed. You just need to activate&nbsp;it.</p>\n\n<p>To check if Akismet is installed, log in to your WordPress dashboard and check the <strong>Plugins → Installed Plugins</strong> page from the menu on the left. If Akismet is there, just click&nbsp;<strong>Activate</strong>.</p>\n\n\n<img width=\"1223\" height=\"534\" src=\"https://akismet.com/wp-content/uploads/2024/10/image.png\" alt=\"WordPress Installed Plugins page, showing Akismet at the top\" class=\"wp-image-284202\" />\n\n\n<p>If Akismet isn’t installed yet, you can get it through <strong>Plugins → Add New Plugin</strong>. Search for Akismet and click <strong>Install</strong>, then&nbsp;<strong>Activate</strong>.</p>\n\n\n<img width=\"1207\" height=\"525\" src=\"https://akismet.com/wp-content/uploads/2024/10/image-1.png\" alt=\"Akismet plugin listing in the WordPress.org directory\" class=\"wp-image-284204\" />\n\n\n<h3 id=\"step-2-obtain-an-api key\" class=\"wp-block-heading\">Step 2: Obtain an API&nbsp;key</h3>\n\n<p>To use Akismet, even the free version, you’ll need to obtain an API key. You can get one from the <a href=\"https://akismet.com/pricing/\">pricing page</a>, where you’ll select the appropriate plan. Just sign up for an account, and you’ll receive an API&nbsp;key.</p>\n\n\n<img width=\"1205\" height=\"654\" src=\"https://akismet.com/wp-content/uploads/2024/10/image-2.png\" alt=\"three Akismet pricing plans: personal, pro, and business, with features included in each one\" class=\"wp-image-284205\" />\n\n\n<p>Back at the WordPress dashboard, head over to <strong>Settings → Akismet Anti&#8209;spam</strong> and click <strong>Manually enter an API key</strong>. Paste it in and you’re good to&nbsp;go.</p>\n\n\n<img width=\"1220\" height=\"620\" src=\"https://akismet.com/wp-content/uploads/2024/10/image-3.png\" alt=\"API key field on Akismet dashboard\" class=\"wp-image-284206\" />\n\n\n<p>Once Akismet is installed, you’ll find the <strong>Settings</strong> screen on the same page. Here, you can configure how the plugin will handle spam. That’s it. It will start working right&nbsp;away.</p>\n\n<h3 class=\"wp-block-heading\">How to integrate Akismet on non&#8209;WordPress&nbsp;sites</h3>\n\n<p>For non&#8209;WordPress sites, the process may be a little trickier. Check our <a href=\"https://akismet.com/developers/getting-started/\">Getting Started guide</a> for the full&nbsp;details.</p>\n\n<p>Depending on the platform you use and the framework your website is built on, there may be a plugin or library available that you can install. For example, there are a bunch of Akismet libraries for PHP, Python, .NET, and&nbsp;more.</p>\n\n<p>If that doesn’t work, Akismet provides full documentation on how to <a href=\"https://akismet.com/developers/detailed-docs/building-your-application/\">connect to the API</a>&nbsp;yourself.</p>\n\n\n<p>Whatever you use, Akismet aims to make the process as easy as possible. <a href=\"https://akismet.com/pricing/\">Get an API key today</a> and see for yourself what a difference it makes.&nbsp;</p>\n\n\n<h2 id=\"frequently-asked questions\" class=\"wp-block-heading\">Frequently asked&nbsp;questions</h2>\n\n\n<p>Now that we’ve covered the different ways to prevent contact form spam without relying on CAPTCHA, you might still have some unanswered questions. Let’s explore a few common questions people have on the subject.&nbsp;</p>\n\n\n<h3 id=\"what-is captcha\" class=\"wp-block-heading\">What is&nbsp;CAPTCHA?</h3>\n\n<p>CAPTCHA is a security tool used to identify humans from automated bots. Usually, CAPTCHA requires you to complete tasks like identifying distorted text, selecting what parts of an image contain a certain object, or even more complicated puzzles. While this is usually effective, CAPTCHA often frustrates users and drives them&nbsp;away.</p>\n\n<h3 id=\"is-it-possible-to-prevent-spam-without captcha\" class=\"wp-block-heading\">Is it possible to prevent spam without&nbsp;CAPTCHA?</h3>\n\n<p>It’s entirely possible to prevent spam without CAPTCHA. While methods like honeypots, email filtering, and rate limiting may not be as reliable, advances in machine learning have changed everything. AI&#8209;powered anti&#8209;spam is now almost 100% effective, and tools like Akismet prove themselves as superior CAPTCHA&nbsp;alternatives.</p>\n\n<h3 id=\"what-is akismet\" class=\"wp-block-heading\">What is&nbsp;Akismet?</h3>\n\n\n<p>Akismet is a powerful anti-spam service that uses advanced AI and machine learning to detect and filter out spam. Your contact forms, comments, and other submissions are fully protected. It uses machine learning to analyze vast sets of data — currently over 500 billion pieces of spam — and effectively stop 99.99% of spam from reaching your inbox.&nbsp;</p>\n\n\n<h3 id=\"why-is-akismet-the-best-alternative-to captcha\" class=\"wp-block-heading\">Why is Akismet the best alternative to&nbsp;CAPTCHA?</h3>\n\n<p>Akismet is the best alternative to CAPTCHA because it offers strong spam protection without compromising user experience or accessibility. Unlike CAPTCHA, which is slow and frustrating, Akismet works entirely behind the scenes. Its AI&#8209;backed, adaptive technology ensures that your site is protected against evolving spam tactics,&nbsp;too.</p>\n\n<h3 id=\"where-can-i-learn-more-about akismet\" class=\"wp-block-heading\">Where can I learn more about&nbsp;Akismet?</h3>\n\n<p>To learn more about Akismet, visit the <a href=\"https://akismet.com/\">official Akismet website</a>. There, you can explore its features, sign up for an API key, and access detailed documentation on how to integrate Akismet into your&nbsp;website.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2024 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Do The Woo Community: Woo Innovations in Order and Payment Processing with James, Beka and Patrick\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=85992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://dothewoo.io/woo-innovations-in-order-and-payment-processing-with-james-beka-and-patrick/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52771:\"Episode Transcript\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><strong>James:</strong><br />Hello, I&#8217;m James Kemp. I&#8217;m from WooCommerce, and we&#8217;re going to use this time to talk a bit about what we&#8217;re working on at WooCommerce behind the scenes that maybe you, the community, don&#8217;t generally get to hear about. So I am joined today by Beka from KestrelWP and Patrick from Mindsize. We&#8217;re all collectively working on a project together centered around order management, and we&#8217;ll dive into that shortly. But first of all, I think it would be useful to introduce yourselves. Beka, if you want to go first.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, sure thing. It&#8217;s great to see both of you again, James and Patrick. For those of you maybe new to the Woo space, I&#8217;m Beka Rice. I work at Kestrel, formerly one of the partners at SkyVerge. I&#8217;ve worked with WooCommerce since version 1.5 or 1.6, I think. So it&#8217;s been about a decade, actually a little over a decade of time with WooCommerce. I&#8217;ve built over 60 different plugins for WooCommerce as well as cross-platform apps for Woo and Shopify. So I&#8217;m very excited now to be working on a project to improve and revamp order management with James and Patrick. Patrick, I&#8217;ll turn it over to you.</p>\n\n\n\n<p><strong>Patrick:</strong><br />I&#8217;m Patrick Garman. I own and run Mindsize. I&#8217;ve been working with Mindsize since 2017, but I&#8217;ve been working with Woo since probably the same era as Beka, maybe slightly earlier. I feel like it was around version 1.2 or 1.4, right after the fork that we don&#8217;t talk about. We work on high-performance, high-scale applications, and a lot of WooCommerce is the tool we use when we need to really customize an e-commerce store to fit our needs.</p>\n\n\n\n<p><strong>James:</strong><br />What&#8217;s the first version of WooCommerce? WooCommerce 1.0?</p>\n\n\n\n<p><strong>Patrick:</strong><br />That&#8217;s a gray area.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, I think they did call it 1.0 right after the fork, and there were quickly a lot of patch releases. I remember the first couple of minor releases were within months of the WooCommerce launch, so it moved pretty quickly. Version 1.4 would&#8217;ve probably been, I don&#8217;t know, maybe six months in at most. It was pretty quick in the beginning, and then we got to skip around a bit. Sometimes it jumped from 1.6 to 2.0 right away. Those were painful times, but yeah, pretty early on.</p>\n\n\n\n<p><strong>James:</strong><br />Yeah, I think I joined or started using WooCommerce after originally using the previous software in…</p>\n\n\n\n<p><strong>Beka:</strong><br />2000? I don&#8217;t think it&#8217;s a bad word to say Jigoshop.</p>\n\n\n\n<p><strong>James:</strong><br />I don&#8217;t know if we’re allowed to say it. What happens if we say it three times?</p>\n\n\n\n<p><strong>Beka:</strong><br />Let’s not test that, James.</p>\n\n\n\n<p><strong>James:</strong><br />It was 2011 when I started using it. I didn&#8217;t take note of what the version number was back then.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, that would’ve been pretty early. It was like fall 2011, or early 2012, I want to say.</p>\n\n\n\n<p><strong>James:</strong><br />My first plugin was in 2011, and it went on to CodeCanyon, so I must’ve been right on it somehow.</p>\n\n\n\n<p><strong>Beka:</strong><br />I&#8217;m going to look it up right now. You’ve got me curious. Yeah, September 2011. So Woo is almost 13 years old. There we go. Okay, so we&#8217;ve all been doing this even longer than we thought—this is what age does to you.</p>\n\n\n\n<p><strong>James:</strong><br />Yeah, definitely a lot of expertise in the room around WooCommerce. I imagine WooCommerce wasn’t your first entry point into the web either. We’ve all got a lot of medals in the industry, which is awesome. That’s why it’s such a great group of people to work on the project we’re working on. For clarity for any listeners, Beka and Patrick are working in a consultation capacity at the moment. We&#8217;re in the very early stages of the project, doing a lot of work around deciding what it’s going to look like, how the data is structured, and a lot of work on design and how it’s going to be implemented into WooCommerce. That’s the context. I think we should start discussing what we’re actually working on.</p>\n\n\n\n<p><strong>Beka:</strong><br />So maybe what if we outline the problem? I think over time, Patrick and I have seen a lot of different Woo store owners doing a lot of off-the-wall but cool things. And I think one of the things that we’ve seen over time—and obviously, Patrick, feel free to jump in, especially from a high-volume perspective—has been that fulfilling orders, and that timeline between the customer placing the order and the customer receiving their order, is the hardest thing for any e-commerce merchant to manage, right? There are hard things…</p>\n\n\n\n<p><strong>James:</strong><br />Probably one of the most common things that they&#8217;re going to be in there doing as well.</p>\n\n\n\n<p><strong>Beka:</strong><br />Exactly right. That’s what you do all the time. You’re not always uploading product images or changing product listings, but the one thing you’re doing consistently is fulfilling orders. And it’s the hardest thing in e-commerce, even though inventory management is hard, there are a lot of hard things. Order fulfillment is definitely the most challenging thing for merchants to do. And I think historically in WooCommerce, that&#8217;s always been a bit challenging. When you look at the orders list, it’s not always clear if something’s paid for or not, if the charge has been authorized or captured, if the products have been packed, if they&#8217;ve been shipped, if they&#8217;re in transit but not yet delivered, or when the item is delivered. We only have this concept of order on hold, processing, or completed. So merchants have not had a granular view of that fulfillment process, and as Patrick can attest to this, the more your store scales up, the more important that granular view becomes. How many packages do I have yet to ship? How many labels am I going to need? What’s the throughput in my warehouse or shipping operation? So that was kind of what inspired the three of us working together on this—how do we solve that problem in WooCommerce, and what other related problems can we address at the same time for merchants who are fulfilling orders and struggling to understand the status of orders and how to fulfill them, and what steps are needed? Patrick, I don’t know if you have anything to add to that, but that was kind of the problem that inspired this project, and I think we can also talk about what we want to do about it.</p>\n\n\n\n<p><strong>Patrick:</strong><br />Yeah, definitely. It has been a challenge. I know Beka and I have experienced a lot, like she said, and I think this project is most exciting because a lot of the community may think that we just build in a silo, like we’re going to build what we want and you guys will live with it. But in this case, with one of the hardest problems in Woo, we have the product side represented—building extensions, building products within Woo—the scalability side, the data architecture. We’re looking at every aspect of this to build a highly customizable, highly performant flow that can support all stores.</p>\n\n\n\n<p><strong>James:</strong><br />Yeah, and I think that’s probably the biggest challenge. One of the biggest challenges of WooCommerce in general is how customizable it is, and when you’re building something like we’re working on, you have to think about all the ways that this is also going to be extended in some way. But yeah, like you say, Beka, one of the issues with how orders are presented in WooCommerce at the moment is the merchant can land on that orders page and they don’t know what to do next. There’s no clear indication from that list of orders what the next action is for each one of those orders. It’s quite a complicated thing to tackle. Obviously, the order status comes into play, and we have tons of extensions that modify the order status and add all of these interim statuses that could apply to an order. So you might see currently orders that are marked with a custom status of &#8220;shipped,&#8221; for example, but that’s not indicative of the actual status of the order. Like you said, you don’t know if it’s been fully paid for, you don’t know what&#8217;s being shipped, you don’t know when it’s delivered. There are so many aspects that aren’t covered by just having one singular order status. So one of the first points that we discussed is breaking that order status out into essentially three statuses: where you’ve got the overall order status, a payment status, and a fulfillment status. But the challenge we faced is because of how extensible WooCommerce is, and how many plugins and implementations there are that modify or use the order status in some way, we don’t want to just rush in and change how that all works in one fell swoop. So the approach we’ve taken is actually to leave the order status as it is and focus primarily on the fulfillment status. With the goal of tackling that without impacting how people use the order status—other than maybe transitioning to our new fulfillment status if they’re using a custom fulfillment status within the order status system—see how that goes, then focus on the payment status side of things, and then we’re kind of in a better position to migrate people to start using those. We’ll roll it out in a way that they’re kind of independent of each other, but can potentially impact one another. So it’s quite a challenging task, and that’s just the status aspect of it. There’s more to it than that. I don’t know if you had anything to</p>\n\n\n\n<p>add to that.</p>\n\n\n\n<p><strong>Beka:</strong><br />No, I think it’s a great start. So definitely the fulfillment side of it. There’s obviously the payment side, as you mentioned, the payment statuses, but the fulfillment side is definitely the place where we can make the biggest impact for the largest number of merchants. Even though every merchant is going to take a payment, and not every merchant is going to have to ship something, the shipping side is definitely more painful right now. Being able to add a fulfillment status is going to make it much clearer where things are. And as you had mentioned, James, the clarity in terms of the data structure around that and also being backwards compatible is a big consideration. Right now, Woo has the concept of shipping line items, but that shipping line item doesn’t really represent a package or a shipment. It’s just a single line with an ID and a name, which can sometimes be very difficult to tie back to which rate created that line, for example. What it represents is more of a payment for a shipment and less so an actual package. So having a proper API to retrieve shipments, to add new shipments, is going to make courier integrations much better. The ability to have a standardized way of tracking information will be much better and will give developers a framework to be able to add all kinds of different shipments. While Core can handle, &#8220;I took the order and I shipped it to the customer,&#8221; in mind, we also have things like how would we handle RMAs or how would we handle sample packages or ways that this feature can be extended by plugin developers to add new functionality to the shipment concept. So I think it’s a pretty exciting thing for us to do: to have a better data standard around what represents a shipment, how that&#8217;s going to be tied to an order, and to the line item that represents how much that shipment costs, and how developers can take that and make some really, really wonderful things on top of it for all sorts of advanced or niche use cases.</p>\n\n\n\n<p><strong>Patrick:</strong><br />You mean I won’t have 15 processes because I use three different carriers that all did things completely differently?</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, I think that’s the challenge right now. A lot of folks might be doing things directly in WooCommerce, or they might be using an ERP system. They might be going directly to their account with a specific shipment carrier, and there’s a lot of difficulty in doing that. A good example would be, I know a lot of merchants use both FedEx and USPS for different types of packages, and some of them might be using an ERP or a system that’s helping them in one place, but some of them are logging into both of those and copying and pasting tracking numbers from FedEx over to WooCommerce order notes or something. And that’s the broken process in my mind, and something that you’re going to do hopefully every day as a merchant, we should just be able to make a lot easier—and you should be able to do that right within WooCommerce as you’re looking at the order: &#8220;Hey, I’ve packed it, I’m ready to fulfill it.&#8221; I should be able to do that whole flow inside of my WooCommerce admin.</p>\n\n\n\n<p><strong>James:</strong><br />For sure. So I think for a bird’s eye view of what we’re working on, which ultimately stems down to a fulfillment status, we’ve got the fulfillment status of an order, which we are looking at as either fulfilled, partially fulfilled, or unfulfilled. Those are the three core statuses that you could assign to an order. So in order to fulfill an order, you would need to create a shipment or a fulfillment, as Beka was describing. And on top of that, you might not want just one fulfillment for a single order; you might want to have multiple fulfillments shipped via different couriers, for example.</p>\n\n\n\n<p><strong>Beka:</strong><br />And I think that piece there, James, is really key. I think a lot of folks who have used Woo have been frustrated with the fact that, &#8220;Well, I’m going to ship this order in multiple pieces, and I only have &#8216;processing&#8217; and &#8216;completed,&#8217; and my customer doesn’t get notifications for every shipment.&#8221; So that partial fulfillment concept is going to be a huge win for merchants who want to just ship things as fast as possible, even if that means multiple shipments, right? There are definitely bigger sellers who want to send more than one package, and this opens that capability up in WooCommerce in a very sane way, which I think is going to be very exciting. And to Patrick’s point about scalability and showing WooCommerce doing these really amazing things, it’s going to be a big win for those kinds of merchants.</p>\n\n\n\n<p><strong>James:</strong><br />I was speaking to a merchant that has to do that quite often. They sell, I think they’re like a bedding store, but they also sell beds. So they have to ship massive items alongside a pillow. What they tended to do if someone ordered a bed, a mattress, and a pillow, they had to manually create another order with just the pillow, remove the pillow from the previous order, and all this kind of manual work they had to do behind the scenes just to be able to send two separate shipments and log it appropriately in whatever system they were using. So ultimately, what we need—and this is what we’re working on—is a data structure for shipments or fulfillments behind the scenes so that the data that belongs to a shipment is always the same, regardless of what kind of shipment it is, and it’s consistent. So third-party tools can integrate into it, and they can receive that data and integrate out of it as well.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, I think let’s take that to a very practical example. So not only as a seller—let&#8217;s stick with this retailer that you were talking about—this is an excellent use case. So not only can this person now just fulfill each of those line items independently, with as many shipments as they need, all of that data is stored against the WooCommerce order, easily referenced, and in a structured way. Now we can expose that with a semantic API. Let’s say I build an email marketing app. Now I can get a webhook for a fulfillment being added to an order. First of all, that tells me maybe I should be sending an item-shipped email to users. Now I will know which items have been shipped and which things are in that package, as well as which line items, and by proxy, which products were in that order. So I can be sending these beautiful item-shipped emails as a good example. If there are other actions that need to happen as each item is fulfilled, now any external system that you&#8217;re using can tap into that information easily, because it’s not just going to be some random plugin that your app might not have integration with right now. It’s a core feature with part of the core API supporting it. And I think while it’s a really big deal to just support that workflow, I think we all know that the extensibility of Woo and the ability to use it with so many different tools and apps and services—that&#8217;s really the killer feature. Having that as part of core, I think, will be a big win for every app in the ecosystem, not just that fulfillment flow specifically on the site.</p>\n\n\n\n<p><strong>James:</strong><br />For sure. And I think as a merchant, just being able to see—and this is kind of where we are at in the design explorations—as a merchant, being able to see the list of orders and then being able to see which orders have been fulfilled and which haven’t, but also which orders have been partially fulfilled but still need some sort of action. I think that&#8217;s a really important thing, and it makes that orders list much more useful than it is currently.</p>\n\n\n\n<p><strong>Patrick:</strong><br />We’re filling a giant gap in a number of areas. WooCommerce is often seen as this customizable, flexible e-commerce platform until you want to do backorders or B2B and other complex scenarios that core doesn’t enable well, but now it’ll just work out of the box. If you’re doing a wholesale order to your distributor of 100 mattresses, surely that doesn’t fit in a single tracking number. Maybe you only have 50, but they ordered 100. Now you ship 50, and you still have 50 to go. All these scenarios will just work out of the box.</p>\n\n\n\n<p><strong>Beka:</strong><br />And to be fair, you could always build all your own custom code to do that in the past, which was the cool part about Woo, but now we’re giving people a framework that these customizations or more advanced pieces of functionality can fit into. That gives us a translation layer between Woo and apps and other plugins. Everyone having that common data store, to your point, Patrick, you can enable these really complex scenarios, but now ERP integrations, inventory integrations, or anything else that you have will have a standard way to interact with those workflows. I think that’s really going to be the exciting part of this. Even though these things may have been possible through custom code in the past, that little bit of standardization is going to go a long way towards facilitating other integrations, plugins, apps, and all kinds of features that can be built on top of this, no matter the use case, right?</p>\n\n\n\n<p><strong>Patrick:</strong><br />Yeah, it&#8217;ll be less work for me to build something that doesn’t feel like a bolt-on.</p>\n\n\n\n<p><strong>Beka:</strong><br />Exactly right! It will feel way more native, and other plugins will have the ability to understand where that data is going to be stored.</p>\n\n\n\n<p><strong>James:</strong><br />It makes a ton of sense. Additionally to that, Patrick touched on it just then—we’ll be looking at integrating some form of shipment tracking into this, which is a feature that many have complained about missing from WooCommerce.</p>\n\n\n\n<p><strong>Beka:</strong><br />I’m so excited about that change. I think it’s been such a gap. I</p>\n\n\n\n<p>know it’s hard because WooCommerce is free, right? Let’s not forget that. And you can’t have a sustainable ecosystem if everything is just free in the core platform. But I think we’ve maybe felt for a while that shipment tracking was probably a bit of a miss or something that is going to cover 80-90% at least of people using the core platform. So I’m super excited to see Woo make that decision to start to put a core shipment tracking feature available in WooCommerce as a result of this. I think it’s going to be a huge value add. And to our previous point, it gives you a standardized way for other apps to understand how to access tracking numbers as part of a fulfillment.</p>\n\n\n\n<p><strong>James:</strong><br />Yeah, I’m hoping we can implement it in a way that means there can be versions of shipment tracking that expand upon the feature of whatever’s in core.</p>\n\n\n\n<p><strong>Patrick:</strong><br />Well, there’s attaching a shipping number, and then there’s having real-time updates you send to the customer. There’s value that could be added. When’s the last time you heard someone say that the WooCommerce order thank-you page is good?</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, I think there are opportunities for carrier-specific integrations to have shipment statuses. A good example: if I’m integrated with FedEx, the basic level of that is just getting the FedEx tracking number and URL and showing it in the orders page or emails. But what if I want to have live updates because FedEx has more granular statuses for a shipment? There’s “awaiting package,” “received,” “in transit,” “out for delivery.” I think pro versions or more advanced integrations could be polling FedEx or getting webhooks from FedEx for those delivery alerts, for example, to send even more emails to your customers. I think there are some really cool opportunities that can be built on this with more advanced functionality, but at least from a core sense, you can be supporting that basic concept of: “Hey, a fulfillment is sometimes going to need a tracking number associated with it.”</p>\n\n\n\n<p><strong>James:</strong><br />Yeah. It’s very exciting stuff. I think the other important thing to touch on is that not every order is going to need shipping, and that’s something we’re discussing quite a lot. How do we frame this functionality in a way that covers digital orders and virtual orders? I think &#8220;fulfillment&#8221; makes sense as a term for covering all of those different use cases. We’ve discussed the opportunity of also fulfilling downloadable orders and virtual orders, but also having it possible to dictate—probably through code—when an order is fulfilled. So if you’re selling a membership (and Beka, I think you touched on this before), you might not want to fulfill that order, or a course, for example, you might not want to fulfill it until they finish the course. So there would be a way to fulfill orders outside of just shipping an item or shipping all of the line items.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, I think one of the things that’s exciting about Woo in general is that you have this long tail of use cases that can come out of every feature in these surprising and unexpected but very cool ways. That’s the beauty, I think, of open source—people will use things in ways you’ve never imagined. We tried to take that concept with fulfillment. Okay, the core reason to have a fulfillment is probably a shipment, but let’s dream a little bigger. What else could people do with this feature? I think as we all discussed this and talked to a lot of merchants, virtual goods like downloads, services, etc. may have the concept of fulfillment. You might want to skip that and not use fulfillments as a merchant, but you might want to—let’s say I sell content writing services and that’s a virtual item. I’m not going to ship anything to someone for content writing, but what I might do is say, &#8220;Hey, when I&#8217;m done, the first draft is up. Here’s my fulfillment—it’s my Google Doc,&#8221; and I send you the Google Doc link. Well, what are the parallels? What if we extract the idea and look for what&#8217;s core between a package and a Google Doc? They’ll have a name, they’ll have a URL, and they’ll have a status. So as a service provider, I could add a fulfillment with the Google Doc name and the Google Doc URL, and that’s my fulfillment to you. While I might not use that use case, I might use it differently. What we tried to do is think: what are other ways this feature can apply to different types of fulfilling a good or service, even if it&#8217;s not a package, if it&#8217;s a digital fulfillment or a service fulfillment, and how can we support that? Which things could be core for virtual sellers? If they&#8217;re not core, how do we facilitate extensibility and extensions of that? Core may not, let&#8217;s say, have a delivery date attached to fulfillment, but we need to make sure it&#8217;s possible to do such a thing, whether that&#8217;s enabling a semantic structured form of metadata. There are ways that we can do that and be mindful of that extensibility, which I think is an exciting part of this.</p>\n\n\n\n<p><strong>James:</strong><br />Even touching on what you said before about the fulfillment statuses—not the overall fulfillment status of an order, but the status of a shipment or a shipment status—just having a status per shipment is something we could do via metadata in some way, or maybe it’s a permanent field that belongs to a shipment. But yeah, I think having this structured data of shipments is going to be massively useful in any number of use cases.</p>\n\n\n\n<p><strong>Beka:</strong><br />I mean, especially with the number of digital goods sellers that WooCommerce has. I think that’s always been one of the strengths of Woo—it’s always been fantastic for virtual goods, whether downloadable, services, courses, memberships, all kinds of different things that I think will be very exciting to see how people use this feature. We’ve definitely tried to design it in mind that while it will primarily be used for shipments and packages, we have a ton of other exciting use cases that it could be brought to bear for.</p>\n\n\n\n<p><strong>James:</strong><br />And I think speaking of design, the key area that we’ve been focused on at the moment is how the merchant can come into the orders list and create a fulfillment from that page so they don’t have to click through to the single order page. They can create fulfillments from the orders list and complete that process a lot more quickly than they could right now, which is actually quite a challenge we’ve found in terms of designing this in its most simple form without adding too many buttons or things calling for your attention. So yeah, I think the design aspect of this is very challenging. We’ve got that screen to focus on. We’ve got, once they create a shipment or a fulfillment, how does that look? What does that screen look like? And then also we’ve got the edit order screen—what does it look like when you create a fulfillment from that screen? So we’re definitely in the very early stages in terms of design for this, and we’re focusing on how to make that experience as simple as possible, while also covering all of these different bases that we’ve talked about and all these different use cases.</p>\n\n\n\n<p><strong>Patrick:</strong><br />Not to mention as fast as possible.</p>\n\n\n\n<p><strong>James:</strong><br />Yes.</p>\n\n\n\n<p><strong>Patrick:</strong><br />We spent a fair amount of time in that one design call just talking about, &#8220;This page needs to be fast. You should not sit here and wait five seconds for this order to load after waiting 10 seconds for the orders list to load. We&#8217;re going to make it fast.&#8221;</p>\n\n\n\n<p><strong>James:</strong><br />Yeah, exactly. That’s one of the key things. We want the merchant to be able to create and fulfill orders as quickly as possible because their time is important, and that is more than likely one of the most time-consuming things they have to do. And Patrick, I don’t know whether, but I imagine a lot of merchants are currently fulfilling orders via some other means.</p>\n\n\n\n<p><strong>Patrick:</strong><br />Especially as stores grow, they&#8217;ll often have warehouses. Warehouses aren&#8217;t going to open up WooCommerce admin to fulfill an order, at least in a lot of cases they aren’t. So integrating these fulfillments into other platforms and having that ability will definitely be a thing. But customer service may need to look up the fulfillment that was fulfilled from the warehouse, and being able to integrate all these things or make it possible for the warehouse that fulfilled the order in some other platform to sync back to WooCommerce, which is integrated into your customer service tooling. In the little sidebar of your HelpScout or Zendesk, wherever you&#8217;ve got your order and your fulfillments, everything will be right there, all powered by one consistent data model.</p>\n\n\n\n<p><strong>James:</strong><br />And that’s the goal. So yeah, in terms of a timeline for this, we’re very much in the design phase. We’ve scoped out how we ideally want this to look and work. There’s definitely still more discussion around specifics, particularly around what the data structure is going to look like and how we actually embed that into WooCommerce itself. I would hope next year is when we could be rolling this out in some form, but I definitely want to get feedback early and often on what we’re working on. Right now, it’s hard to find somewhere where you can do that. I think as a company, we use GitHub discussions quite a lot for more officially collecting feedback from the developer community. I use Twitter a lot, but that’s a very unofficial way of doing it—or X, as they call it now. So I don’t know if you guys have thoughts on how we can get more community involvement in this. And also, I&#8217;m conscious that we don’t want to have the classic saying of too many cooks. I imagine there’s a lot of design-based input that we could get on this in terms of visual design or even database</p>\n\n\n\n<p>design, and there are probably a lot of differing opinions on how best to approach it. But I do feel like GitHub discussions has a technical barrier. I think the people who comment there are more than likely developers or part of some sort of agency, and less likely merchants.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, I would say I don’t feel like that’s a terrible thing, though, because if you’re an agency or a builder, you are oftentimes supporting the merchant and understanding their needs and use cases. Sometimes it’s helpful to have that sense of technical creativity to understand what are the possible ways we could solve this, or what is possible now and what are the gaps. I definitely welcome that side of the input. I do think it’s important, though, to hear the pain in the merchant’s own words and also to get very close to what expectations they have of the experience. Ultimately, you need each of those personas or types of people to make a really wonderful product because they’re all going to be users of the product. Even if the agency, developer, or plugin developer isn’t the person who&#8217;s in there using the UX every day—let’s say from my perspective as a plugin developer—I’m the one trying to build something on top of it. If I hate it, I’m just not going to use it. So we need all of those people to be excited to adopt what we’re doing. It’s got to be a carrot; it’s got to be a no-brainer. It’s got to be: why would I do this my own way? Why would I build my own data structure for a fulfillment when what&#8217;s in core works really wonderfully for me? I’ve had a lot of success in the past using customer councils. I think Woo has experimented with such a thing. I think it would be great to do a rotation of agencies in the space, of merchants who are actively using it, who want to see improvements in the software. I think Patrick and I are definitely in some ways fitting that persona in different ways—Patrick being on the agency side, working with high-volume sites, and myself being in the plugin developer space, trying to build things on top of WooCommerce and supporting the merchant store using these customizations and plugins. I would love to see a variety of voices involved in contributing to that. I agree with you, James—you can get inundated with feedback that’s not super valuable. So I think it’s having a small group of folks, and it’s also great if it’s not always the same people. If it rotates maybe every six months, I find that works best.</p>\n\n\n\n<p><strong>Patrick:</strong><br />There are so many bike sheds for us to debate what color to paint.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah.</p>\n\n\n\n<p><strong>Patrick:</strong><br />Woo’s had a hard time getting store feedback. Think of a big business—they go out, they’re like, &#8220;Hey, web developer, I need you to build my store. I don’t care what platform it’s on.&#8221; Some of them… So how do you get their feedback from the agency side? What I’ve tried to do, and I recommend many people do, is there are people like James, Ken, and others in the Woo space who want to talk to stores. I can certainly take the store’s feedback and go bring it to James and be like, &#8220;Hey, here’s what the store said.&#8221; But I just outright introduce the store owner to James, to Ken, to these other people within Woo who can have their own calls and ask their own questions. How you word a question and which way you ask will impact the answer. I’ve got multiple projects right now where we ask the client a question in a way that makes sense to us. They give us an answer that makes sense for the question that made sense to them, but the answer was wrong. So getting these different perspectives from different people is the best way to build a good product—lots of opinions from different perspectives, from different use cases. Spam James with all your store owner introductions.</p>\n\n\n\n<p><strong>James:</strong><br />Just send it all to me. Actually, Patrick, I think it was you that introduced me to the bedding store that I spoke to previously.</p>\n\n\n\n<p><strong>Patrick:</strong><br />That was one of them.</p>\n\n\n\n<p><strong>James:</strong><br />Yeah. I think that’s quite valuable—to have that kind of interaction, that direct interaction with the merchant and really dig into how they use the system.</p>\n\n\n\n<p><strong>Patrick:</strong><br />I mean, it makes you look good as the agency: &#8220;Hey, I’m going to introduce you to the head of product at Woo who’s going to listen to your feedback,&#8221; which isn’t me. Some people might think introducing your store owner to someone else is going to take away from what you’re doing. It’s the opposite.</p>\n\n\n\n<p><strong>James:</strong><br />Yeah, it’s definitely a useful thing to do. I think even the setup we’ve got here of WooCommerce working directly with you guys from different backgrounds and different perspectives is massively valuable. I think it takes away the too-many-cooks scenario where we’re aligned on what the goal is. Myself, coming from a plugin developer background, I’m kind of consciously aware of how would I want to extend this if I was building a product on top of this. So I think that’s really useful. Beka, you were going to say something. I don’t know if you remember what it was.</p>\n\n\n\n<p><strong>Beka:</strong><br />I do. One thing I did want to call out: we talked a lot about fulfillments in this conversation. I think it’s the first step and most exciting. The plan is to continue building in this line. The other thing we should spend a little bit of time on is talking about payments. One of my complaints about Woo for a long time has been the way payments are represented. I’ve built around two dozen payment integrations with WooCommerce as part of SkyVerge. We have a couple at Kestrel as well that are payment integrations. One of the really challenging things has been that a payment is just a metadata blob attached to an order right now, and that’s not always very semantic or easy to work with. If an email wants to show the card type and last four digits that were used on the order, how does it do that? Well, it has to know which meta keys to look for from all these various payment gateways. That’s not great. So the other part would be what we can do on the fulfillment side, we can kind of do a parallel on the payment side, which is attaching transaction objects to an order. Each transaction would represent a payment. So number one, that’s cool for data standardization—a payment can be represented with the type, the payment name, the payment method that was used, some basic information about that payment method—and that’s exciting for all the integrations that Patrick’s pointed out on the order thank-you page, like, &#8220;Hey, we could just display this information; it’s now going to be available in the API,&#8221; and that’s pretty cool. But that also opens up the possibility for a couple of pain points for big merchants, which would be partial payments, deposits, multiple payments, multiple captures per order against different line items. There are a lot of more advanced workflows around payment processing that are difficult in WooCommerce, or you&#8217;ve got to go bespoke and build everything yourself with all your own custom code. There’s no standardization to allow for translation between apps and plugins. While fulfillments are one area, I just want to make sure people understand payments is another area where we see this need, and we can take the lessons learned from shipments and fulfillments and translate those lessons over to transactions as well, which I think will be a very exciting thing. I know Patrick, you&#8217;ve seen a lot of really weird use cases around payments. If there&#8217;s anything you want to add there that we can facilitate, just to call out that there&#8217;s some cool stuff coming there too next year once the fulfillment project can be kicked out the door.</p>\n\n\n\n<p><strong>Patrick:</strong><br />I’ve been screaming from the rooftops for years about let’s separate the order, payments, and shipments/fulfillments. There are so many scenarios. As businesses get bigger, they add more process. Enterprise isn&#8217;t millions more orders; it&#8217;s a lot more red tape and process around everything they do. So having the ability to separate these things out, having bespoke objects for a payment, for a fulfillment, and you could have an entire workflow in your store. I&#8217;m selling a website. The first fulfillment could be sending off a contract through DocuSign that includes a payment afterwards of a deposit. Then the second fulfillment is a logo, and then a third fulfillment is the pages, the content. All of these things could just fit in a native data structure. You wouldn’t think, &#8220;I’m going to sell a website out of WooCommerce,&#8221; but you could! Multiple payments, multiple fulfillments of digital and physical things—that’s all possible.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, I&#8217;ll give you an example that wasn&#8217;t even enterprise-level but was similar. I bought some swag from a Woo store. They&#8217;re called Scout Books—they do notebooks with custom printing, and they use their Woo orders as invoices and to pay a deposit. They can either use two separate orders, or you have to do a fee line item and then discount the main line item. But again, you have to have two separate payments, and that&#8217;s a customization. So there&#8217;s a lot of weirdness to that in Woo, and while it&#8217;s supposed to be the most flexible e-commerce system on the planet, let&#8217;s make it easier for developers to enable such a thing. Even if we don&#8217;t have to facilitate that in the core plugin, we should at least have the on-ramps for plugins to be able to do this in a sane and semantic way. So I&#8217;m very excited for that potential because I think multiple payments against a single order will open up a ton of really cool use cases around upsells and cross-sells, post-purchase additions, like a thank-you page order bump. These are all</p>\n\n\n\n<p>things that we could make so much easier for plugin developers with that as well. Fulfillment is one piece of it, but then actually accepting the payments against the same order object is the other piece.</p>\n\n\n\n<p><strong>Patrick:</strong><br />That&#8217;s like I said earlier: we go from &#8220;we can do it&#8221;—all of that you described is possible…</p>\n\n\n\n<p><strong>Beka:</strong><br />But it&#8217;s ugly.</p>\n\n\n\n<p><strong>Patrick:</strong><br />We can do it well.</p>\n\n\n\n<p><strong>Beka:</strong><br />Yes, it&#8217;s ugly now, and that&#8217;s the thing that I will be so excited to fix.</p>\n\n\n\n<p><strong>Patrick:</strong><br />It’ll be sustainable, scalable, and performant—just all of that.</p>\n\n\n\n<p><strong>James:</strong><br />And I think on top of the transactions entity being just payments, it can also be refunds, fees, disputes—all of that stuff can be within the same database, and that alone will make reporting easier as well. I think that&#8217;s the more challenging side of the two entities that we&#8217;ve discussed because once you get into those grounds, you&#8217;re then affecting how the overall order status works and the need for using it at all. Whereas I think with shipments, it&#8217;s kind of an optional thing. You could either utilize that, but your overall experience, unless you&#8217;re using it, would remain much the same. But with payments, every order has a payment—there’s no way to not use that. So it&#8217;s definitely a challenging thing.</p>\n\n\n\n<p><strong>Patrick:</strong><br />There’s a way to do it though—to not scare everyone into thinking there’s going to be this huge breaking change in WooCommerce coming. You could have a payment gateway that just marks the order as paid, like it does today, and it just marks the order paid without the data. So there’s going to be a path.</p>\n\n\n\n<p><strong>Beka:</strong><br />And I think, to tie onto that, Patrick, I think as someone who has built both plugins and apps consuming the Woo API, I do want to call that out—that’s definitely part of the path that we&#8217;ve talked about: making sure that if you&#8217;re an API consumer right now and let&#8217;s say you might even be inferring financial and fulfillment statuses depending on whether the order is on hold, processing, or completed, or has a &#8220;date paid&#8221; property or not, you might have some work in your app right now that&#8217;s even circumventing these problems. One of the things we&#8217;ve discussed is not making specific breaking changes to the existing version of the API, but allowing you to upgrade to a new version of the API. Now you&#8217;ll have discrete properties and data objects for each of these things. The backwards compatibility aspect has been a big part of the discussion. It’s certainly a big project, and that&#8217;s why transactions would come after fulfillments, but there is a path to adding these things in a way that is not going to create breaking changes for stores, API consumers, or plugin developers. It would just behoove you as an app or plugin developer to adopt them because it’ll let you do much better things, and it will let you remove probably some of your internal logic that you&#8217;ve had to maintain. I think it’ll just be the smart decision to make the updates to adopt this once it’s out there, but definitely not something that would pull the rug out from underneath you.</p>\n\n\n\n<p><strong>James:</strong><br />Yeah, I mean, that’s definitely the approach we’re going for. I think that’s why we’ve separated it out into these phases of work. We don’t want to just one day release a completely different way to manage orders all in one go. So yeah, I think that’s a great point to raise. That is the phase two, I guess, of what I would call the order status project. Ultimately, it’s all boiling down to having these separated order statuses for orders, even though there’s a whole iceberg of a mechanism that goes on behind the scenes for both scenarios.</p>\n\n\n\n<p><strong>Beka:</strong><br />But to tie it back to our point at the beginning, the goal is just so much more clarity around order management. So I think both of these things can add wonderful clarity for even more complex use cases than just: I have a single item in an order, a single payment, and a single shipment. Woo is totally fine for that today, but as we&#8217;ve seen, the beauty is that it can be used for way more complex things too. We can have a cleaner way to support those complex things while still having a really beautiful, snappy, fast, and easy interface for people in the orders list.</p>\n\n\n\n<p><strong>James:</strong><br />Agreed. Cool. I think we&#8217;ve had a pretty good discussion about what we’re working on, unless anyone’s got any additional points to raise about the project.</p>\n\n\n\n<p><strong>Patrick:</strong><br />I heard from James we&#8217;re going to be live in a year!</p>\n\n\n\n<p><strong>Beka:</strong><br />He’s going to hold you to that.</p>\n\n\n\n<p><strong>James:</strong><br />For fulfillment! To be honest, I&#8217;m hoping less than a year. I would hope…</p>\n\n\n\n<p><strong>Beka:</strong><br />I think Patrick and I are just excited to see the project happening. We&#8217;ve talked about this for a long time in Woo—how it would be a great improvement. I would just say thanks, James, for giving us the opportunity to collaborate and contribute to it. It’s nice to have more of a work-in-public mindset and to have more visibility, I think, as developers. Hopefully other folks too, because Woo is definitely more powerful when we understand even the extensibility use cases, not just core use cases. Not everything will be a core use case, but the extensibility is definitely something that is very powerful to facilitate and make possible.</p>\n\n\n\n<p><strong>James:</strong><br />On which note, I think it would be useful to say how people can contact me or you. I’m on Twitter/X as @jamesckemp, which is probably the best place to reach me, to be honest. Beka?</p>\n\n\n\n<p><strong>Beka:</strong><br />Yeah, also on Twitter—I refuse to call it X.</p>\n\n\n\n<p><strong>James:</strong><br />I feel like I have to…</p>\n\n\n\n<p><strong>Beka:</strong><br />On the bird app—@beka_rice. As James mentioned earlier, our website is kestrelwp.com, contact form. There’s only a few of us, so the contact form will hit me too.</p>\n\n\n\n<p><strong>Patrick:</strong><br />Patrick, and I’m also on Twitter—@pmgarman, G-A-R-M-A-N. You can find us at mindsize.com. Definitely reach out.</p>\n\n\n\n<p><strong>James:</strong><br />Awesome. Well, I hope we can do this again, potentially next month, and we’ll keep people updated on where we’re at on the project as a whole, any kind of roadblocks we’re up against, or any new decisions we need to make. I think it&#8217;ll be quite a fun project to keep an eye on. But yeah, thanks for joining me and thanks for being willing to contribute to this project.</p>\n\n\n\n<p><strong>Beka:</strong><br />Thanks, James.</p>\n\n\n\n<p><strong>Patrick:</strong><br />Thank you.</p>\n</div>\n\n\n\n\n<p>In this episode of <strong><em>Woo ProductChat</em></strong>, host <strong>James Kemp</strong> makes his debut alongside <strong>Beka Rice from Kestrel and Patrick Garman from Mindsize</strong>. James describes this monthly episode as what they&#8217;re working on at WooCommerce behind the scenes that maybe you, the community, don&#8217;t generally get to hear about.</p>\n\n\n\n<p>They jump into the ongoing development projects at WooCommerce, particularly focusing on improving order management. </p>\n\n\n\n<p>Beka and Patrick,  join James to explore solutions for streamlining the order fulfillment process, addressing the complexities of partial shipping and shipment tracking within WooCommerce. They discuss the importance of creating a structured shipment data model and the impact that could have on merchants, as well as envision future developments in payment transaction handling to enhance usability and customization. </p>\n\n\n\n<p>The conversation further highlights the effort to involve the community for feedback and discuss potential enhancements, balancing the technical and experiential aspects of development. </p>\n\n\n\n<p><strong>Takeaways</strong></p>\n\n\n\n<p><strong>Revamping Order Fulfillment</strong>: WooCommerce is addressing long-standing challenges in order fulfillment by introducing a more granular fulfillment status system. The new system will include three states: <strong>fulfilled, partially fulfilled, and unfulfilled</strong>, making it easier for merchants to manage orders and shipments more effectively.</p>\n\n\n\n<p><strong>Splitting Order Statuses</strong>: The project will introduce a more refined order status system, splitting it into three categories: <strong>order status</strong>, <strong>payment status</strong>, and <strong>fulfillment status</strong>. This separation will provide clearer insights into each phase of the order process, while minimizing disruption to existing workflows.</p>\n\n\n\n<p><strong>Focus on Extensibility</strong>: The new fulfillment and order management features will be highly <strong>customizable</strong> and <strong>extensible</strong>, allowing third-party developers to build on the new data structures and support varied use cases like multiple shipments or integration with different shipping carriers.</p>\n\n\n\n<p><strong>Payment Handling Overhaul</strong>: WooCommerce’s payment system is being revamped with the introduction of <strong>transaction objects</strong> to handle payments, refunds, fees, and disputes. This structured approach will simplify managing <strong>partial payments</strong>, <strong>deposits</strong>, and <strong>multi-payment captures</strong>, making it easier to work with complex payment scenarios.</p>\n\n\n\n<p><strong>Better Workflow for Merchants: </strong>The project aims to enhance merchants&#8217; efficiency by enabling them to create and manage shipments <strong>directly from the orders list</strong>. This will streamline the fulfillment process, especially for merchants handling large volumes of orders, without requiring them to click into individual orders.</p>\n\n\n\n<p><strong>Shipment Tracking Integration</strong>: A <strong>core shipment tracking feature</strong> will be introduced, which has been a frequently requested addition. This will standardize how tracking numbers are handled and displayed, improving transparency and customer communication.</p>\n\n\n\n<p><strong>Collaborative Approach:</strong> WooCommerce is working closely with developers and merchants in the community to ensure the new order management features meet real-world needs. By seeking feedback throughout the development process, the team aims to make these changes both useful and adaptable to a wide range of use cases.</p>\n\n\n\n<p><strong>Connect</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https://twitter.com/jamesckemp\">James on X</a></strong></li>\n\n\n\n<li><strong><a href=\"https://twitter.com/beka_rice\">Beka on X</a></strong></li>\n\n\n\n<li><strong><a href=\"https://kestrelwp.com\">KestrelWP</a></strong></li>\n\n\n\n<li><strong><a href=\"https://twitter.com/pmgarman\">Patrick on X</a></strong></li>\n\n\n\n<li><strong><a href=\"https://mindsize.com/\">Mindsize</a></strong></li>\n</ul>\n\n\n\n<p><strong>Chapter Titles with Timestamps</strong></p>\n\n\n\n<p>00:00 Welcome to Woo Product Chat <br />00:55 Meet James, Beka, and Patrick <br />01:16 Diving into WooCommerce Order Management <br />05:14 Challenges in Order Fulfillment <br />09:27 Introducing New Fulfillment Statuses <br />19:55 Enhancing Shipment Tracking <br />24:17 Exploring Virtual Fulfillment <br />26:36 Designing a Seamless Fulfillment Process <br />28:21 Integrating Fulfillment with Other Platforms <br />30:09 Community Involvement and Feedback <br />35:35 Enhancing Payment Systems <br />42:50 Future Plans and Collaboration <br />44:59 Contact Information and Closing Remarks</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2024 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress.org blog: Please Welcome Mary Hubbard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/news/2024/10/proud-mary/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:843:\"<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<img width=\"1626\" height=\"1002\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=1626%2C1002&ssl=1\" alt=\"\" class=\"wp-image-17920\" />\n\n\n\n<p>We&#8217;re proud to announce that <a href=\"https://maryhubbard.blog/\">Mary Hubbard</a> (<a href=\"https://profiles.wordpress.org/4thhubbard/\">@4thhubbard</a>) has resigned as the Head of TikTok Americas, Governance and Experience, and will be starting as the next Executive Director of WordPress.org on October 21<sup>st</sup>!</p>\n\n\n\n<p>Mary previously worked at Automattic from 2020 to 2023, and was the Chief Product Officer for WordPress.com, so she has deep knowledge of WordPress and expertise across business, product, marketplaces, program management, and governance.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 19:26:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: WPGraphQL to Become a Canonical Plugin as its Creator Joins Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=174387\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wpgraphql-to-become-a-canonical-plugin-as-its-creator-joins-automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6400:\"<p>WPGraphQL, a popular plugin that provides an extendable GraphQL schema and API for WordPress sites,  is set to become a canonical plugin on WordPress.org. Its creator and maintainer, Jason Bahl, has <a href=\"https://www.wpgraphql.com/2024/10/07/wpgraphql-becomes-a-canonical-plugin-my-move-to-automattic\">joined Automattic</a> after spending 3.5 years at WP Engine, allowing him to continue his work on WPGraphQL.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/wp-graphql/\">WPGraphQL</a> adds a flexible and powerful GraphQL API to WordPress, enabling efficient querying and interaction with your site’s data. It allows developers to interact with WordPress data using GraphQL queries instead of the traditional REST API, making it ideal for building modern, headless WordPress applications.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Canonical Plugins</h3>\n\n\n\n<p>Canonical plugins were <a href=\"https://wordpress.org/news/2009/12/canonical-plugins/\">first introduced</a> to the WordPress community in 2009 to provide users with optional features that offer higher reliability than regular plugins.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Canonical plugins would be plugins that are community developed (multiple developers, not just one person) and address the most popular functionality requests with superlative execution. These plugins would be GPL and live in the WordPress.org repo, and would be developed in close connection with WordPress core. There would be a very strong relationship between core and these plugins that ensured that a) the plugin code would be secure and the best possible example of coding standards, and b) that new versions of WordPress would be tested against these plugins prior to release to ensure compatibility. There would be a screen within the Plugins section of the WordPress admin to feature these canonical plugins as a kind of Editor’s Choice or Verified guarantee. These plugins would be a true extension of core WordPress in terms of compatibility, security and support.</p>\n</blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">WPGraphQL &amp; Jason Bahl’s Journey</h3>\n\n\n\n<p>Jason Bahl launched the WPGraphQL plugin in 2016. In 2019, he <a href=\"https://wptavern.com/jason-bahl-joins-the-gatsby-team-to-work-on-wpgraphql-full-time\">joined the Gatsby Team</a> to work on WPGraphQL full-time and continued there till joining WP Engine 2021 as a Principal Software Engineer maintaining WPGraphQL.&nbsp;</p>\n\n\n\n<p>About <a href=\"https://www.wpgraphql.com/2021/02/07/whats-next-for-wpgraphql\">leaving Gatsby</a>, he said, “The team I was part of was asking me to start transitioning to work more on other Gatsby integrations, such as Contentful and Shopify, and work less on WordPress and WPGraphQL. This doesn’t mean Gatsby was abandoning WordPress or WPGraphQL, just that I would need to spend less time on it and prioritize other things… WP Engine is investing in the future of headless WordPress, and they see WPGraphQL as an important part of that future.”&nbsp;</p>\n\n\n\n<p>Working at WP Engine, he published over 100 releases of WPGraphQL, re-architected WPGraphQL for ACF, introduced WPGraphQL Smart Cache, and helped countless users successfully deploy decoupled sites powered by WPGraphQL.&nbsp;</p>\n\n\n\n<p>He shared this about WP Engine: “While WP Engine has treated me well personally, <strong>the focus on open-source contributions from the organization has declined during my time there. </strong>My time was also reallocated away from WPGraphQL and community projects as internal initiatives took priority. Any company needs to focus on internal growth. Still, I believe there’s a conversation to be had about how that fits into the broader open-source community and whether it supports long-term success. Several other former colleagues and I tried to talk about how WP Engine could better participate in Open Source, but those conversations didn’t always gain traction. Hopefully, those conversations can begin again. I don’t have the answers, but I do know there is a problem.”</p>\n\n\n\n<h3 class=\"wp-block-heading\">Jason’s Opinion About Matt and Automattic</h3>\n\n\n\n<p>Jason has made it clear that he does not agree with everything Matt has done. “<strong>I’ve told Matt directly that I don’t agree with everything he’s done — and he has welcomed the disagreement. </strong>For example, I don’t think WordCamp US was the right time or place for his speech. I also do not agree with blocking WP Engine customers from WordPress.org without more notice. Should WordPress.org be required to remain a free service forever? Not necessarily. But should long-time users receive advance notice when significant changes are made? I think so.”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Leadership often involves making uncomfortable choices that others might not fully understand or agree with. His historical actions have led WordPress to its current success, and I believe that bold moves—though uncomfortable—are sometimes necessary to ensure the long-term future of WordPress. As a maintainer of open-source software, my livelihood depends on people like Matt, who are willing to keep WordPress relevant in the years to come.</p>\n</blockquote>\n\n\n\n<p>He also pointed out Automattic’s long history of nurturing open-source projects. He believes that joining Automattic will benefit WPGraphQL users and developers building decoupled WordPress experiences.</p>\n\n\n\n<p>&#8220;Automattic’s track record as a fantastic steward of open-source projects is well known, and I believe it’s the <strong>perfect home for WPGraphQL</strong>. This move will continue to keep WPGraphQL free and open source while bringing more visibility and contributions from the community.&#8221;, he said</p>\n\n\n\n<h3 class=\"wp-block-heading\">Response From the Community&nbsp;</h3>\n\n\n\n<p>The community was excited about Jason’s move to join Automattic.&nbsp;</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfRkng2Oq1dNyhh4Yj2HrWK9lZUnwXOj9Ht-YyfPoeXM_WM8ZjDy2odQvxn2gszIIzMCN8_y5jeV64xRE5YAPBcCfKgBXBX5dgS84rXK5JPe6M_2O8VBef_2hLsgsjCCwevs10naU6zDfNu4qCCObH8tS9R?key=TInnMVVnqSVBTlHQ6XzXXQ\" alt=\"\" />\n\n\n\n<p>“WPGraphQL has always been and will continue to be free open-source software.”, Jason reassured the community.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 18:15:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Gravatar: Personalized SaaS Onboarding: A Checklist for the Perfect User Journey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2186\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://blog.gravatar.com/2024/10/08/saas-onboarding-checklist/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23546:\"<p>SaaS onboarding involves guiding new users through their first steps with your product, helping them understand your software&#8217;s value, and setting them up for long-term success.&nbsp;</p>\n\n\n\n<p>It’s something we recommend every business take seriously because effective onboarding is the key to unlocking user retention and reducing churn rates. <strong>When users quickly grasp how your product can solve their problems, they&#8217;re more likely to stick around. </strong>This translates to increased customer lifetime value, higher revenue, and more engaged users who actually enjoy using your software.</p>\n\n\n\n<p>If you’re not sure where to start, this in-depth checklist is for you! From personalization strategies to interactive product tours, we&#8217;ll cover everything you need to craft an onboarding experience that will have your users saying &#8220;Aha!&#8221; instead of &#8220;Huh?&#8221;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Key components and elements of SaaS onboarding</strong></h2>\n\n\n\n<p>Creating a stellar SaaS onboarding experience isn&#8217;t about throwing a bunch of fancy features at your users and hoping something sticks. Instead, you need to carefully craft each element to guide them toward success.&nbsp;</p>\n\n\n\n<p>Let&#8217;s break down the essential components that will make your onboarding process shine.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Clear goals and success metrics</strong></h3>\n\n\n\n<p>First things first: you need to know where you&#8217;re going. <strong>Setting clear goals for your onboarding process is like having a GPS for your product&#8217;s success.&nbsp;</strong></p>\n\n\n\n<p>Here&#8217;s how to nail it:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Define specific objectives:</strong> Don&#8217;t just aim to &#8220;improve onboarding.&#8221; Get specific. Want to increase user activation by 20%? Reduce abandonment by 15%? Or maybe drive secondary feature adoption up by 30%? Whatever your goals, make them measurable and time-bound. Consider using the OKR (Objectives and Key Results) framework to keep your team aligned and focused.</li>\n\n\n\n<li><strong>Actionable metrics:</strong> Numbers are your friends here. Key Performance Indicators (KPIs) like activation rate, feature adoption, conversion rate, monthly active users, churn rate, and time-to-value are your north stars. These metrics will tell you if you&#8217;re on the right track or if you need to make a U-turn.</li>\n\n\n\n<li><strong>Align with business goals: </strong>Your onboarding goals shouldn&#8217;t exist in a vacuum. Make sure they&#8217;re in sync with your broader business objectives. If your company is aiming for rapid growth, your onboarding might focus on quick activation and viral sharing. If you&#8217;re after increased revenue per user, you might spotlight premium features during onboarding.</li>\n</ul>\n\n\n\n<p>Remember, these goals aren&#8217;t set in stone. As you gather data and learn more about your users, don&#8217;t be afraid to adjust your targets and be flexible.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Excellent user experience</strong></h3>\n\n\n\n<p>Now that you&#8217;ve got your goals sorted, it&#8217;s time to focus on the star of the show: <strong>your users</strong>. Creating an excellent user experience during onboarding can mean the difference between a user who sticks around and one who bounces right off.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Personalize the onboarding flows:</strong> You can use the data you collect during sign-up to <a href=\"https://blog.gravatar.com/2024/09/06/onboarding-user-experience/\">tailor the onboarding experience to each user</a>. Are they a small business owner or an enterprise manager? A tech whiz or a newbie? Adjust your onboarding flow accordingly. Here is an example from <a href=\"https://www.videoask.com/\" rel=\"nofollow\">Videoask</a> that starts their onboarding by asking how big the user’s business is.&nbsp;</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"2322\" height=\"1250\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/videoask-company-size.png\" alt=\"Selecting the business size during onboarding in Videoask\" class=\"wp-image-2188\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Add interactive product tours:</strong> Don&#8217;t just tell users about your awesome features – show them! Create engaging, interactive walkthroughs that guide users through your product&#8217;s key functionalities. And here&#8217;s a pro tip: <strong>gamify these tours</strong>. Add progress bars, achievement badges, or even small rewards. It&#8217;ll make the learning process feel less like a chore and more like an adventure.</li>\n\n\n\n<li><strong>Include in-app guidance: </strong>Your users shouldn&#8217;t feel like they&#8217;re navigating a maze. Provide contextual help right where they need it. Tooltips like the one from <a href=\"https://asana.com/\" rel=\"nofollow\">Asana</a> below, pop-ups, and hotspots can offer just-in-time assistance without overwhelming users. And remember, less is often more. Don&#8217;t bombard users with information – give them what they need when they need it.&nbsp;</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"686\" height=\"400\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/asana-tooltips-1.png\" alt=\"Tooltips in Asana\" class=\"wp-image-2189\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Train a responsive support team:</strong> Even with the best in-app guidance, some users will still have questions. Make sure there is an easily-accessible help center and your support team is ready to assist whenever. Quick response times and knowledgeable assistance can turn a potentially frustrating experience into a positive one.</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"1838\" height=\"1272\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/videoask-help-center.png\" alt=\"Videoask help center tab\" class=\"wp-image-2190\" />\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Reliable analytics</strong></h3>\n\n\n\n<p>You&#8217;ve set your goals and crafted a killer user experience. But how do you know if it&#8217;s actually working? Here’s what you need to do:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Track key metrics:</strong> Use analytics tools to monitor activation rates, feature adoption, conversion rates, monthly active users, and other KPIs (more on that in a little bit). These numbers will tell the story of your onboarding success (or areas for improvement).</li>\n\n\n\n<li><strong>Data-driven decisions: </strong>Analytics aren&#8217;t just for show – they should drive your decision-making process. Is your activation rate lower than expected? Maybe it&#8217;s time to simplify your sign-up process. Are users dropping off at a specific point in your product tour? That could be a sign that you need to revamp that section.</li>\n\n\n\n<li><strong>User feedback collection:</strong> Numbers are great, but don&#8217;t forget the qualitative data. Implement ways to gather user feedback during the onboarding process. This could be through quick in-app surveys, email follow-ups, or even user interviews. Sometimes, the most valuable insights come straight from the horse&#8217;s mouth.</li>\n</ul>\n\n\n\n<p><strong>And don&#8217;t just collect this data – use it</strong>. Regularly review your analytics and user feedback to identify areas for improvement. Your onboarding process should be a living, breathing thing that evolves with your users&#8217; needs.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>SaaS onboarding best practices and strategies</strong></h2>\n\n\n\n<p>Now that we&#8217;ve covered the key components, we can dive into some advanced techniques and strategies to take your onboarding from good to great.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Personalize the onboarding experience</strong></h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Gather user data:</strong> Start collecting valuable information right from the get-go. Use smart sign-up forms and welcome surveys to understand your users&#8217; goals, pain points, and experience levels. But remember, don&#8217;t ask for their life story – keep it brief and relevant.</li>\n\n\n\n<li><strong>User segmentation:</strong> Once you&#8217;ve got that juicy data, put it to work. Segment your users based on characteristics like role, industry, or experience level. A startup founder and an enterprise manager have different needs – your onboarding should reflect that.</li>\n\n\n\n<li><strong>Dynamic content:</strong> Here&#8217;s where the magic happens. Use the data you&#8217;ve collected to dynamically adapt your onboarding content. Show different features or use cases based on the user&#8217;s profile. A marketing pro might be interested in your analytics features, while a project manager might care more about task management tools.</li>\n\n\n\n<li><strong>Gravatar integration:</strong> Here&#8217;s a pro tip – integrate Gravatar into your onboarding flow. With its API, you can <a href=\"https://docs.gravatar.com/api/avatars/images/\">automatically pull in user avatars</a> and basic info, adding a personal touch without any extra effort from the user.&nbsp;</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Implement interactive product tours</strong></h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Action-focused tours: </strong>Don&#8217;t just show users your features &#8211; guide them through actually using them. Have you got a note-taking app within your product? Have users create their first note during the tour. It&#8217;s all about learning by doing.</li>\n\n\n\n<li><strong>Gamification techniques:</strong> Who says learning can&#8217;t be fun? Add progress bars, achievement badges, or even small rewards for completing onboarding steps. It taps into our natural love for progression and achievement, making the whole process more engaging.</li>\n\n\n\n<li><strong>Step-by-step guidance:</strong> Break your tour into bite-sized chunks. Guide users through one action at a time, building up to more complex features. It&#8217;s like teaching someone to swim – you start in the shallow end before diving into the deep stuff.</li>\n\n\n\n<li><strong>User feedback:</strong> Remember to ask users how they&#8217;re finding the tour. A simple &#8220;Was this helpful?&#8221; at the end of each step can provide valuable insights. And if they say no, that&#8217;s your cue to improve that part of the tour.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Utilize in-app messaging and contextual guidance</strong></h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Timely support:</strong> Use in-app messages to provide support based on user actions. If a user has been staring at a blank project page for a while, why not pop up a message offering some starter templates?</li>\n\n\n\n<li><strong>Contextual tooltips:</strong> Implement tooltips that offer quick explanations when users hover over different features. It&#8217;s like having a knowledgeable friend whispering helpful tips in your ear.</li>\n\n\n\n<li><strong>AI chatbots:</strong> Consider integrating an AI chatbot for real-time, personalized assistance. It can answer common questions, suggest relevant features, and even guide users through complex processes. Just make sure it&#8217;s actually helpful and not a source of frustration.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Showcase social proof</strong></h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Customer testimonials:</strong> Sprinkle in some glowing words from happy customers. It reassures new users that they&#8217;ve made the right choice.</li>\n\n\n\n<li><strong>Case studies: </strong>Share success stories that demonstrate how other users have benefited from your product. Bonus points if you can match these to the user&#8217;s industry or use case.</li>\n\n\n\n<li><strong>User reviews:</strong> If you&#8217;ve got great ratings on review sites, don&#8217;t be shy about showing them off. It&#8217;s like a seal of approval from the wider user community.</li>\n\n\n\n<li><strong>Gravatar integration:</strong> Here&#8217;s another place where Gravatar shines. Use it to display user avatars alongside testimonials and reviews. It adds a human touch and makes the social proof feel more authentic and relatable.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Continuously iterate and optimize</strong></h3>\n\n\n\n<p>The work doesn&#8217;t stop once you&#8217;ve launched your onboarding process. The key to long-term success is continuous improvement.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Monitor key metrics:</strong> Are activation rates improving? Is time-to-value decreasing? Let the data guide your optimization efforts.</li>\n\n\n\n<li><strong>Collect user feedback: </strong>Regularly ask users for their thoughts on the onboarding process. You might be surprised by what you learn. Maybe that feature you thought was intuitive is actually confusing users.</li>\n\n\n\n<li><strong>A/B testing: </strong>Don&#8217;t be afraid to experiment. Try different versions of your onboarding flow and see what performs best. Maybe a video tutorial works better than a step-by-step guide for some features.</li>\n</ul>\n\n\n\n<p>Use all this information to make informed decisions about changes to your onboarding process. It&#8217;s not about following hunches – it&#8217;s about listening to what your users and your data are telling you.</p>\n\n\n\n<p>Remember, creating a great SaaS onboarding experience is more art than science. It requires creativity, empathy, and a willingness to continually learn and adapt. But with these strategies in your toolkit, you&#8217;re well on your way to creating an onboarding experience that users will love.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Metrics and KPIs for SaaS onboarding</strong></h2>\n\n\n\n<p>You can&#8217;t improve what you don&#8217;t measure. That&#8217;s why tracking the right metrics is crucial for optimizing your SaaS onboarding process. Let&#8217;s dive into the key performance indicators that will help you gauge the effectiveness of your onboarding and drive continuous improvement.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Time to Value (TTV)</strong></h3>\n\n\n\n<p>TTV is the time it takes for a new user to realize the value of your SaaS product. A shorter TTV indicates a more effective onboarding process – the quicker users see the value, the more likely they are to stick around.</p>\n\n\n\n<p>Track the time from user sign-up to the completion of key actions that demonstrate value. This could be creating their first project, sending their first message, or generating their first report – whatever represents the core value of your product.</p>\n\n\n\n<p><strong>Tips:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Streamline your onboarding process by cutting out any unnecessary steps.</li>\n\n\n\n<li>Use in-app messaging to guide users quickly to key features.</li>\n\n\n\n<li>Leverage Gravatar to auto-populate user profiles, reducing friction and speeding up the initial setup.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Trial to paid conversion rate</strong></h3>\n\n\n\n<p>This metric represents the percentage of users who upgrade from a free trial to a paid subscription. A high conversion rate suggests that users are finding enough value during the trial to justify paying for your product.&nbsp;</p>\n\n\n\n<p>To track this, keep an eye on the number of trial users who upgrade to a paid plan within a specific timeframe, usually within the trial period or shortly after. Divide this by the total number of users that were on the free trial at the start of the period and multiply by 100 to get a percentage.</p>\n\n\n\n<table class=\"has-contrast-background-color has-background has-fixed-layout\"><tbody><tr><td><strong>Trial to paid conversion rate = (Users that upgraded from the free trial / Total number of users that got a free trial) x 100</strong></td></tr></tbody></table>\n\n\n\n<p><strong>Tips:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Clearly communicate the benefits of upgrading throughout the trial period.</li>\n\n\n\n<li>Use targeted, personalized messages to encourage conversion as the trial end date approaches.</li>\n\n\n\n<li>Integrate Gravatar to create a more personalized experience, which can boost user engagement and, in turn, conversion rates.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Customer onboarding completion rate</strong></h3>\n\n\n\n<p>Think of this as your onboarding graduation rate. It&#8217;s the percentage of users who complete your entire onboarding process. A high completion rate indicates that your onboarding process is engaging and easy to follow. It&#8217;s a good sign that users are setting themselves up for success with your product. To calculate this, divide the number of users who complete all onboarding steps by the total number of new users.</p>\n\n\n\n<p><strong>Tips:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Break your onboarding into manageable chunks. Don&#8217;t overwhelm users with too much at once.</li>\n\n\n\n<li>Use progress indicators to show users how far they&#8217;ve come and what&#8217;s left.</li>\n\n\n\n<li>Utilize Gravatar to auto-fill user information where possible, reducing the effort required from users.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Customer engagement score</strong></h3>\n\n\n\n<p>This composite metric measures how actively users are interacting with your product. It&#8217;s your product stickiness gauge. High engagement scores typically correlate with higher retention rates and customer satisfaction.&nbsp;</p>\n\n\n\n<p>To measure this, calculate the sum of various weighted engagement metrics such as login frequency, feature usage, and session duration.</p>\n\n\n\n<p><strong>Tips:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use in-app prompts to encourage users to explore different features.</li>\n\n\n\n<li>Segment users based on engagement levels and tailor your communication accordingly.</li>\n\n\n\n<li>Leverage Gravatar to personalize user interactions, making engagement feel more meaningful and relevant.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Customer Satisfaction Score (CSAT)</strong></h3>\n\n\n\n<p>CSAT is your &#8220;How did we do?&#8221; metric. It measures how satisfied users are with your onboarding process. High CSAT scores indicate a positive onboarding experience, which can lead to higher retention rates and positive word-of-mouth.&nbsp;</p>\n\n\n\n<p>To gather this data, use surveys with simple questions like &#8220;How would you rate your onboarding experience?&#8221; with a 1-5 scale.</p>\n\n\n\n<p><strong>Tips:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Regularly collect and analyze user feedback to identify areas for improvement.</li>\n\n\n\n<li>Act on the feedback you receive. Users appreciate when their input leads to visible changes.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Feature adoption rate</strong></h3>\n\n\n\n<p>This is your &#8220;Are they actually using it?&#8221; metric. It represents the percentage of users who start using key features of your product. High feature adoption rates indicate that users are discovering and utilizing your product&#8217;s core functionalities, which often correlates with higher retention.&nbsp;</p>\n\n\n\n<p>To measure this, track the usage of specific features by new users over a defined period. Divide this figure by the total number of new users during the period and multiply by 100 to get a percentage.</p>\n\n\n\n<p><strong>Tips:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Highlight key features during the onboarding process through tutorials and in-app messages.</li>\n\n\n\n<li>Provide contextual help and resources to assist users in understanding and using features.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Product adoption rate</strong></h3>\n\n\n\n<p>This is your big-picture adoption metric, representing the overall percentage of users who adopt and regularly use your product. High adoption rates are crucial for your SaaS product&#8217;s long-term success and growth.&nbsp;</p>\n\n\n\n<p>To measure this, track the number of active users over a specific time period, often measured monthly (Monthly Active Users or MAU). Use the same formula as the feature adoption rate to calculate a percentage.</p>\n\n\n\n<p><strong>Tips:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure your onboarding process clearly demonstrates your product&#8217;s value proposition.</li>\n\n\n\n<li>Provide ongoing support and resources to help users get the most out of your product.</li>\n\n\n\n<li>Use Gravatar to create a more personalized, engaging user experience from day one.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>User Retention Rate</strong></h3>\n\n\n\n<p>This is your &#8220;Are they sticking around?&#8221; metric. It represents the percentage of users who continue to use your product over time. High retention rates indicate that users find ongoing value in your product, which is crucial for sustainable growth and reducing churn.&nbsp;</p>\n\n\n\n<p>To measure this, start by tracking the number of users who remain active after a certain period, such as 30, 60, or 90 days. Subtract the number of new users from the number of users at the end of the period. Divide the resulting figure by the number of customers at the start of the period and multiply by 100 to get a percentage.</p>\n\n\n\n<p>Tips:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Provide continuous value through regular updates and new features.</li>\n\n\n\n<li>Engage users with personalized communication and support.</li>\n\n\n\n<li>Leverage Gravatar to maintain a personalized user experience throughout the customer lifecycle, making users feel valued and connected.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Gravatar: Your partner in SaaS onboarding</strong></h2>\n\n\n\n<img tabindex=\"0\" width=\"1473\" height=\"918\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/gravatar-profiles-as-a-service-2.png\" alt=\"Gravatar – Profiles as a Service\" class=\"wp-image-2192\" />\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a>, short for Globally Recognized Avatar, is a service by <a href=\"https://automattic.com/\">Automattic</a> that can significantly enhance your SaaS onboarding process. Its primary function is <a href=\"https://blog.gravatar.com/2024/06/03/profiles-as-a-service/\">managing and sharing user profile data</a>, including avatars, bios, and preferences, completely for free with the <a href=\"https://docs.gravatar.com/api/profiles/rest-api/\">Gravatar REST API</a>.&nbsp;</p>\n\n\n\n<p>By linking a user&#8217;s email to their profile information, Gravatar offers several key benefits:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Consistency across platforms, reducing friction in the signup process.</li>\n\n\n\n<li>Enhanced personalization from the moment a user registers.</li>\n\n\n\n<li>Streamlined onboarding by auto-populating user profiles.</li>\n</ol>\n\n\n\n<p><strong>Practical applications include:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Personalized welcome messages using the user&#8217;s name and industry.</li>\n\n\n\n<li>Customized product tours based on user roles or experience.</li>\n\n\n\n<li>Improved community building with familiar avatars in forums or user directories.</li>\n</ul>\n\n\n\n<p>Implementing Gravatar is straightforward, thanks to our API and extensive documentation, making it a low-effort, high-impact addition to your onboarding strategy.&nbsp;</p>\n\n\n\n<p>Ready to elevate your onboarding? Check out our <a href=\"https://docs.gravatar.com/\">developer documentation</a> to learn more about integrating Gravatar into your platform.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 17:50:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Do The Woo Community: Exploring Accessibility and Neurodiversity in WordPress with Anne Mieke Bovelett\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=85962\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://dothewoo.io/exploring-accessibility-and-neurodiversity-in-wordpress-with-anne-mieke-bovelett/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18600:\"<div class=\"wp-block-group has-border-color has-light-gray-background-color has-background has-small-font-size has-global-padding is-layout-constrained wp-container-core-group-is-layout-7 wp-block-group-is-layout-constrained\">\n<p class=\"has-secondary-color has-text-color has-link-color wp-elements-9acf640b7ba38a84a982fc35d618387f\">This show is sponsored by&#8230;</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-6 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-3 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group has-base-background-color has-background wp-container-content-1 has-global-padding is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-2 wp-block-group-is-layout-constrained\">\n<img width=\"750\" height=\"750\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/Kinsta-Hosting.jpg?resize=750%2C750&ssl=1\" alt=\"Kinsta Hosting\" class=\"wp-image-85514\" />\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-container-content-2\"><strong><a href=\"https://kinsta.com/?utm_source=dothewoo&utm_medium=Referral&utm_campaign=website\">Kinsta</a></strong>: Offering a high-performance hosting platform with managed WordPress hosting, powered by Google Cloud, ensuring fast load times and robust security. </p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-5 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group has-base-background-color has-background wp-container-content-3 has-global-padding is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-4 wp-block-group-is-layout-constrained\">\n<img width=\"1509\" height=\"1038\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/01/Woo-logo-color.png?resize=1509%2C1038&ssl=1\" alt=\"\" class=\"wp-image-77744\" />\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-container-content-4\"><strong><a href=\"https://woocommerce.com/products/\">Woo Marketplace</a></strong> &#8211; Grow your business with hundreds of solutions for your clients or your own store.</p>\n</div>\n</div>\n</div>\n</div>\n\n\n\nEpisode Transcript\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><strong>Birgit:</strong><br />Hi, I am your host Birgit, and we are here with another episode of <em>The WordPress Way</em>, where we dive deep into the heart and soul of WordPress, exploring the cutting edge and the current with incredible people shaping the future. I&#8217;m very pleased today to have our beloved friend, or my beloved friend, as a guest—Anne Mieke Bovelett. Anne is a passionate, multilingual specialist for both WordPress and accessibility in Germany. She is also an accessibility consultant, public speaker, and workforce trainer, especially for full-site editing. Please, dear Anne, would you like to tell our audience a bit more about yourself?</p>\n\n\n\n<p><strong>Anne:</strong><br />Well, you already gave me a very good introduction. Maybe it&#8217;s also good to know, given the topic of our show today, to tell people a bit about the other side of my background. I come from a bit of a crazy family. I like to joke about it in my bio, saying I come from a family of crazy artists, professors, and inventors, but it&#8217;s not really exaggerated. That&#8217;s what it is. All my life, I grew up with my mother and father not telling me, &#8220;Oh, be careful what you do, you might run into this kind of trouble.&#8221; Instead, they taught us, &#8220;If you want to reach something, go find out what you need to do to get there.&#8221; That in itself is very positive, but if you&#8217;re like me and you&#8217;ve got ADHD, you&#8217;re going to end up running around, jumping from topic to topic, thinking, &#8220;This is it, this is it!&#8221; and then changing your mind after a year or a year and a half. But a steady factor in my life has been everything involving web creation, web design, and content. Four years ago, I ran into that famous topic called accessibility, and I came home. Yeah, that’s basically it. If I keep talking, I’m probably going to ruin your questions.</p>\n\n\n\n<p><strong>Birgit:</strong><br />No worries. I love listening to you. I also really admire how vocal you are about accessibility, especially for someone with neurodivergent traits. Given our conversations, whether on web cams or at CloudFest, I’ve seen the strength you bring in raising awareness about accessibility, inclusive language, and how just a few small tweaks can create a better experience for everyone on a website. You mentioned recently that you come from a family of creative artists—crazy artists, as you called them. Would you mind sharing more about your personal journey that led you to become an advocate for accessibility, particularly focusing on ADHD and neurodiversity? You mentioned you were diagnosed with ADHD. How did you find your way into this direction, both personally and professionally?</p>\n\n\n\n<p><strong>Anne:</strong><br />Well, interestingly enough, I was already thinking about accessibility when I was very active on Twitter. I saw this tweet from a lady—I’ve written about it on my blog, and I can share the link with you later if you&#8217;d like. In the tweet, this lady said, &#8220;My father was crying on the phone. He needed help to do something on the web again because he&#8217;s blind. And if you’re now wondering if your website is accessible, then it certainly is not. Go learn.&#8221; I still get very emotional when I think back to that because I had heard more about accessibility and had worked with people who depend on it. In the team of CMS Made Simple, my previous CMS of choice along with WordPress, it never hit close to home until then.</p>\n\n\n\n<p>That tweet changed everything. I went into a frenzy, thinking, “Oh no! I’ve been creating experiences for people that made them feel unwelcome because they couldn’t use the sites I had built.&#8221; I’d been doing that since 1998, and that was a painful realization—22 years of doing something that could have been done better.</p>\n\n\n\n<p>That same year, I got diagnosed with ADHD. I was 49. I have worn many hats, have many specialties—which is common among people with ADHD, as we tend to chase this substance called dopamine. We’re often labeled as lazy or unfocused, and people tell us, “You need to learn to focus.” The thing is, I <em>can</em> focus. I can focus for 12 hours straight and forget to eat or drink. The problem is, I don’t always get to choose what I focus on, and I didn’t know that for most of my life.</p>\n\n\n\n<p>When I was employed—before I started my full-time business in 2009—I always struggled to fit in. It was nearly impossible. I admired all these super-organized people who would get their tasks done and tick off their to-do lists, while I would freeze up over things that they could do in a few minutes. But I was also the one who could manage very stressful situations or complex tasks that others found overwhelming.</p>\n\n\n\n<p>To be honest, the world has often felt like a hostile place to me because I couldn&#8217;t do things that &#8220;normal&#8221; people can do. It’s like being a goldfish that’s judged for not being able to climb a tree. When you grow up like that and don’t know you’re different because your brain chemistry is different, it’s easy to try to become what others want you to be—to wear that suit, to mask. Masking is a big thing. It turns out I’m not only ADHD; I’m also on the spectrum, which explains some other quirks I have. But I don’t let these things define me.</p>\n\n\n\n<p>Getting diagnosed with ADHD was a massive relief. It helped me realize that I had been trying to change things about myself that I couldn&#8217;t change. I will never be that goldfish that wins a contest in tree climbing, but I can do other things. One of my biggest passions has always been community. I could be successful as a solopreneur, but doing something that benefits a whole community is far more fulfilling.</p>\n\n\n\n<p>Another challenge with ADHD is that we tend to get bored quickly. When I started working with accessibility, I was worried. I know I can motivate a large crowd, but it’s difficult if I burn out afterward. So, I asked myself, &#8220;How can I make myself replaceable?&#8221; That led me to focus on something that has sustained my interest for four years—helping companies divide the responsibility for accessibility across teams. It’s joyful to see companies like Great Suite in Munich adopting accessibility, and the movement is growing. The Accessibility Checker by Equalize Digital, for example, automatically flags issues in WordPress that can be improved, catching 30-35% of problems. People often worry about the remaining 65%, but most issues are easy to fix by the right person.</p>\n\n\n\n<p><strong>Birgit:</strong><br />That’s amazing! When I listen to you, I get this image in my mind of someone with minority divergent traits, such as ADHD or being on the spectrum, having this broader perspective. Do you feel you have a bird’s eye view on some topics and can connect dots that others might miss?</p>\n\n\n\n<p><strong>Anne:</strong><br />Yes, that’s a great observation. Many neurodivergent people, like those with ADHD or autism, are super-fast thinkers. Our brains move at 500 miles an hour. As long as there’s context, we can connect the dots others might not see. The challenge is that because our brains move so fast, it’s difficult to translate these thoughts into a message others can easily understand. I often ramble on, seeing all the logic, while others say, &#8220;You lost me a while ago.&#8221;</p>\n\n\n\n<p>Websites and apps often lose us within seconds. For example, I struggle with sites that have sliders, animations, or parallax effects, where the background moves slower than the foreground. It’s distracting. I always ask designers, &#8220;Do you want color or conversion?&#8221; because over-designed websites can obstruct functionality and drive customers away.</p>\n\n\n\n<p>If companies want to improve their conversions, they should focus on creating functional, minimalistic designs. Look at some of the highest-converting websites in the world—they are simple, especially since most visitors use mobile devices. People complain that modern websites look the same, but that’s because they’re designed to be functional. Accessibility benefits everyone, not just people with disabilities.</p>\n\n\n\n<p><strong>Birgit:</strong><br />I completely agree! I know people who rely on smartphones or tablets for everything, organizing their lives, including shopping. Websites should definitely be accessible, especially on mobile devices.</p>\n\n\n\n<p><strong>Anne:</strong><br />Exactly. And it&#8217;s not just about making things accessible for people with disabilities. Even neurotypical people are getting overstimulated by all the noise online. Some young people are setting their phones to grayscale to reduce sensory overload. If designers can create websites that still work and convert well in black and white, they’re ahead of the game.</p>\n\n\n\n<p><strong>Birgit:</strong><br />That’s so insightful. As we wrap up, what advice would you give to our listeners? How can they contribute to a more accessible web, especially in the e-commerce space?</p>\n\n\n\n<p><strong>Anne:</strong><br />My top advice: Get your website user-tested, and not just by people with visual or auditory impairments. Include neurodivergent people too. They’ll tell you if your forms are unclear or if your design is confusing. Also, break down the responsibility for accessibility across teams.</p>\n\n\n\n<p>Content is key—make sure it&#8217;s perceivable and robust. Simple changes like avoiding &#8220;click here&#8221; as link text and improving your alt text can make a huge difference. Put yourself in someone else&#8217;s shoes and ask, “Can I navigate this website with a keyboard? Does the message come across clearly?” Think about how to make the web a more welcoming place for everyone.</p>\n\n\n\n<p><strong>Birgit:</strong><br />Wow, thank you so much, Anne! I&#8217;ve learned so much from you today, and I’m sure our audience has too.</p>\n\n\n\n<p><strong>Anne:</strong><br />Thank you for having me!</p>\n\n\n\n<p><strong>Birgit:</strong><br />You&#8217;re very welcome. And thanks to our audience for tuning into <em>The WordPress Way</em>. We hope today’s conversation has sparked new ideas and inspired you to engage more deeply with our vibrant WordPress community. Remember, DEIB stands for Diversity, Equity, Inclusion, and Belonging. It’s about making real changes that foster a sense of belonging and respect for everyone. Please share this episode and join us next month as we continue to explore these important topics. Don’t forget to subscribe to your favorite podcast platform so you never miss an episode. Until next time, keep pushing the envelope and doing WordPress the right way.</p>\n</div>\n\n\n\n\n<p>In this episode of <strong><em>the WordPress Way</em></strong>, host <strong>Birgit</strong> and chats with guest and host <strong>Anne Mieke Bovelett</strong>, a specialist in WordPress and accessibility, as they talk about the intersection of neurodiversity and digital accessibility. </p>\n\n\n\n<p>Anne shares her personal journey with ADHD and Autism Spectrum Disorder, discussing how these experiences drive her advocacy for inclusivity in web design and content creation. </p>\n\n\n\n<p>She also emphasizes the importance of minimalistic, functional design that caters to diverse audiences, including neurodivergent individuals. The conversation highlights the need for businesses to embrace accessibility testing to improve user experiences, especially within the context of the upcoming European Accessibility Act. </p>\n\n\n\n<p><strong>Takeaways</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>The Importance of Accessibility</strong>: Accessibility is about making digital experiences inclusive for everyone, not just people with visible disabilities. It&#8217;s important to consider all users, including those with cognitive or neurodivergent traits, such as ADHD or autism.</li>\n\n\n\n<li><strong>Web Design Should Be Functional, Not Overstimulating</strong>: Highly animated websites with sliders, parallax effects, and excessive design can be overwhelming, especially for neurodivergent users. A simple, functional design often leads to better user experiences and higher conversion rates.</li>\n\n\n\n<li><strong>Test with Real Users</strong>: To ensure your website is truly accessible, conduct user testing with diverse groups. Include people with various disabilities, neurodivergent traits, and even older users. This provides valuable insights into how accessible and user-friendly your site is.</li>\n\n\n\n<li><strong>Break Down Accessibility Responsibilities Across Teams</strong>: Accessibility should be a shared responsibility across all teams involved in creating a website—designers, developers, and content creators each have a role to play in ensuring the site is accessible.</li>\n\n\n\n<li><strong>Content Matters</strong>: Ensure content is perceivable and easy to understand. Use descriptive link text instead of generic &#8220;click here&#8221; and add meaningful alt text for images. Make content digestible for users with cognitive disabilities by breaking up large blocks of text and using visuals strategically.</li>\n\n\n\n<li><strong>Inclusive Design Benefits Everyone</strong>: Accessibility isn&#8217;t just for people with disabilities. Designing for accessibility can reduce sensory overload for all users, especially in an overstimulating digital world. It creates a calmer, more efficient online experience for everyone.</li>\n\n\n\n<li><strong>Neurodivergence and Focus</strong>: People with ADHD or similar traits often struggle with traditional methods of focus and productivity. They may hyper-focus on tasks they are interested in but may find it hard to control their focus otherwise. This impacts how they interact with websites and applications.</li>\n\n\n\n<li><strong>The Power of Minimalism</strong>: Websites that are simple, minimalistic, and functional often outperform over-designed sites. This simplicity benefits users who are easily overwhelmed by sensory input and also tends to improve usability for all users.</li>\n\n\n\n<li><strong>Community Focus</strong>: A strong theme in the episode is the importance of community. Anne emphasizes the fulfillment that comes from building accessible, inclusive websites that not only benefit the creator but the entire community of users.</li>\n\n\n\n<li><strong>Prepare for Legislation</strong>: With increasing regulations, such as the European Accessibility Act coming into effect, businesses should prioritize accessibility now, not just to comply with laws but to better serve their customers.</li>\n</ul>\n\n\n\n<p><strong>Links</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://dothewoo.io/host/anne-mieke-bovelett/\">Host Anne Mieke Bovelett </a></li>\n\n\n\n<li><a href=\"https://equalizedigital.com/accessibility-checker/\">Equalize Digital&#8217;s Accessibility Checker Plugin</a></li>\n\n\n\n<li><a href=\"https://ec.europa.eu/social/main.jsp?catId=1202\">European accessibility act</a></li>\n</ul>\n\n\n\n<p><strong>Chapter Titles with Timestamps</strong></p>\n\n\n\n<p>00:00 Introduction to The WordPress Way  <br />00:56 Meet Our Guest: Anne Mieke Bovelett <br />01:36 Anne&#8217;s Journey and Passion for Accessibility <br />02:23 The Impact of ADHD and Neurodiversity <br />04:30 Discovering Accessibility and Its Importance <br />06:02 Challenges and Triumphs in Accessibility <br />09:05 The Role of Community and Continuous Learning <br />12:07 Creating Accessible Digital Experiences <br />23:53 The Importance of Minimalistic and Functional Design <br />32:24 Tips for Online and In-Person Meetings <br />38:41 Final Thoughts and Takeaways</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 07:21:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WPTavern: Impact of WPEngine’s Ban on ACF Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=174249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com/impact-of-wpengines-ban-on-acf-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9859:\"<p>When WP Engine was blocked from accessing WordPress.org, users were left wondering what the future holds for ACF (Advanced Custom Fields) and how this ban will impact their sites moving forward.</p>\n\n\n\n<h3 class=\"wp-block-heading\">ACF Blocked from WordPress.org </h3>\n\n\n\n<p>On October 03, 2024, ACF (Advanced Custom Fields) <a href=\"https://x.com/wp_acf/status/1841843084700598355\">announced</a> via X that “The ACF team has been blocked from accessing WordPress dot org and are unable to release updates for the free version of ACF.”&nbsp;</p>\n\n\n\n<p>WP Engine, the owners of the ACF plugin, were earlier <a href=\"https://wptavern.com/wp-engine-banned-again-reports-deploying-a-solution\">banned from accessing WordPress.org</a> , which prevented the ACF team from deploying updates to the free version hosted on the platform. So the users were unable to automatically update ACF to newer versions. To help users, the ACF team&nbsp; shared a <a href=\"https://www.advancedcustomfields.com/blog/installing-and-upgrading-to-the-latest-version-of-acf/\">guide to manually update</a> to the latest version of the plugin.</p>\n\n\n\n<p>Customers of WP Engine or Flywheel, however, could still receive automatic updates for the free version. The ACF team assured users that “Recent events do not impact customers of ACF PRO. All updates of ACF PRO will continue to be served from advancedcustomfields.com and no action is required.”</p>\n\n\n\n<p>They also noted, “While there are no pending security updates for ACF, this alternative update mechanism ensures your sites are ready to receive new features, bug fixes, and security updates going forward.”</p>\n\n\n\n<h3 class=\"wp-block-heading\">Automattic’s Vulnerability Announcement</h3>\n\n\n\n<p>However, Automattic soon tweeted about a vulnerability in the plugin. The tweet was later deleted.&nbsp;</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfyXXq9B4xt-YDlCxDEYq8TZxXGjJdelIGNnH_OdD9I7AunXBGx5V7NOwvm9IlBO_UCh5g1GI5zctcUx52up0HZWU0uQDJg3_ztiSWymuTLzCyonop0NMFwSkezIujqNGhZW25Dzfbu1zFVY-WJyx5GA_m-?key=TInnMVVnqSVBTlHQ6XzXXQ\" alt=\"\" />\n\n\n\n<p>In response, John Blackbourn, WordPress Core Security Team Lead, <a href=\"https://x.com/johnbillion/status/1842627564453454049\">tweeted</a>, “Automattic has responsibly disclosed a vulnerability in ACF but breached the @Intigriti Code of Conduct by irresponsibly announcing it publicly. I am going to work my damned hardest to ensure that the fix gets shipped to dotorg if it affects the free version of ACF.”&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Automattic has responsibly disclosed a vulnerability in ACF but breached the <a href=\"https://twitter.com/intigriti?ref_src=twsrc%5Etfw\">@Intigriti</a> Code of Conduct by irresponsibly announcing it publicly. I am going to work my damned hardest to ensure that the fix gets shipped to dotorg if it affects the free version of ACF. <a href=\"https://t.co/LpMhvAIQou\">https://t.co/LpMhvAIQou</a></p>&mdash; John Blackbourn (@johnbillion) <a href=\"https://twitter.com/johnbillion/status/1842627564453454049?ref_src=twsrc%5Etfw\">October 5, 2024</a></blockquote>\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">Matt Mullenweg’s Comments on ACF</h3>\n\n\n\n<p>Previously, Matt Mullenweg had raised the idea of integrating ACF Pro into WordPress core in WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1727501240087269\">Slack</a> channel .&nbsp;</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXecMZAt0EUktcT_ypcJ-2Wz4ynJ6g0_urqDU82u1f5gpgwCMd03cpJAEdsq3r9du1EU4wPImuOwcCcxQctKsFgGqs-ctcSEA61pZI7wq5yD540D-6tZ3Ti7uiY0piKrObnXCYdUoWl-IwRAcXC8BY8GwK7Y?key=TInnMVVnqSVBTlHQ6XzXXQ\" alt=\"\" />\n\n\n\n<p>On October 05, Matt Mullenweg <a href=\"https://x.com/photomatt/status/1842500184825090060\">tweeted</a>: “What are the best alternatives to Advanced Custom Fields @wp_acf for people who want to switch away? Is there an easy way to migrate? I suspect there are going to be millions of sites moving away from it in the coming weeks.”</p>\n\n\n\n<p>However, most of the replies he received were favouring the plugin. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">ACF is literally the reason why so many people choose to build with WordPress.<br /><br />Does he really think people will want to switch away and spend tons of hours rebuilding everything?<br /><br />Doesn’t make sense, and that’s likely never going to happen.<br /><br />We use ACF on almost every website we… <a href=\"https://t.co/KNUlbUHAse\">https://t.co/KNUlbUHAse</a></p>&mdash; Corentin (@corxntyn) <a href=\"https://twitter.com/corxntyn/status/1842596017725673677?ref_src=twsrc%5Etfw\">October 5, 2024</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">ACF is what made WordPress actually useful as a CMS well over a decade ago, and it\'s block features are what continue to make it useful in a Block Editor world that is impractical to approach natively. There is nothing comparable. <a href=\"https://t.co/1rEHtEEOcn\">https://t.co/1rEHtEEOcn</a></p>&mdash; Galen Gidman (@galengidman) <a href=\"https://twitter.com/galengidman/status/1842580286200283418?ref_src=twsrc%5Etfw\">October 5, 2024</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Dear Matt,<br />I tell you in roman slang:<br />\"Non famo cazzate, su!\"<br /><br />There\'s NO ALTERNATIVE!<br /><br />Keep on fighting against WPEngine. Destroy it if you want/can.<br />Many don\'t give a fuck about it.<br /><br />But ACF is something any WP dev out there has been using for years. We love it. Wee need it. <a href=\"https://t.co/GlU5gcWUIV\">https://t.co/GlU5gcWUIV</a></p>&mdash; Mauro Bono (@UpTheIrons1978) <a href=\"https://twitter.com/UpTheIrons1978/status/1842907760431669666?ref_src=twsrc%5Etfw\">October 6, 2024</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Core ignores agency features for the last 5 years of block development. Asks for alternatives to ACF. Delusional.</p>&mdash; philhoyt (@philhoyt) <a href=\"https://twitter.com/philhoyt/status/1842729361079722076?ref_src=twsrc%5Etfw\">October 6, 2024</a></blockquote>\n</div>\n\n\n\n<p>Meanwhile, Ghost, another open-source CMS jumped into the fray <a href=\"https://x.com/Ghost/status/1843065099969536409\">asking</a> “so should we add custom fields?”&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">ACF 6.3.8 released</h3>\n\n\n\n<p>The ACF team <a href=\"https://x.com/wp_acf/status/1843329216009400818\">shared</a> that they have released <a href=\"https://www.advancedcustomfields.com/blog/acf-6-3-8-security-release/\">ACF 6.3.8</a>, a routine security release. &#8220;WP Engine remains blocked from accessing our plugins on the .org plugin repository and therefore this update has been shipped to WP Engine’s repository and to the ACF website.&#8221;, they said.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>This latest release contains a security fix for Post Type and Taxonomy metabox callbacks. The vulnerability addresses the unlikely scenario where one user with ACF admin permissions attacks a different admin user with permissions to create or modify posts, or in a Multisite configuration where a single site admin attempts to exploit a super admin to modify or add a new post.</p>\n\n\n\n<p>Iain Poulson, the Product Manager for Advanced Custom Fields</p>\n</blockquote>\n\n\n\n<p>They also shared that: &#8220;Once manually updated to 6.3.8, updates will appear in the admin dashboard as normal going forward. No more manual zip updates will be required.&#8221;</p>\n\n\n\n<img width=\"500\" height=\"356\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-1-500x356.png\" alt=\"\" class=\"wp-image-174280\" />\n\n\n\n<p>The team also shared that &#8220;We made a copy of the update available to the WordPress.org Security team, who have posted it to the plugin repository.&#8221;</p>\n\n\n\n<img width=\"500\" height=\"280\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-2-500x280.png\" alt=\"\" class=\"wp-image-174295\" />\n\n\n\n<h3 class=\"wp-block-heading\">Other Updates</h3>\n\n\n\n<p>In related news, WP Tavern’s ex-author Sarah Gooding published <a href=\"https://sarahgooding.dev/2024/10/06/21-years-of-wordpress/\">21 Years of WordPress</a>. “I don’t fully agree with how Matt has handled this matter, but I will not support any governance model that doesn’t have his leadership at the forefront. WordPress is his life’s work and his legacy. No design-by-committee model is going to give you the same consistent, decisive, nonstop forward momentum that we have experienced with WordPress thus far. After 21 years of delivering on this, I believe Matt is uniquely qualified to steer the project forward. His leadership has built something truly extraordinary.”</p>\n\n\n\n<p>Kaelon <a href=\"https://x.com/Kaelon/status/1843013559980003682\">tweeted</a> about how “WordPress is entering its &#8220;end-stage founder&#8221; period.” His advice for WP and Matt includes, &#8220;Do not turn on your people.&#8221;, &#8220;Step the Founder back.&#8221; and &#8220;Reinvent.&#8221;</p>\n\n\n\n<p>The WP Minute&#8217;s Eric Karkovack published <a href=\"https://thewpminute.com/private-equity-and-the-soul-of-wordpress/\">Private Equity and the Soul of WordPress</a>. He says &#8220;Perhaps having a few private equity-owned WordPress products isn’t a big deal&#8230;The real threat is an ecosystem controlled by a few big firms&#8230;That’s only half the potential catastrophe, though. Companies that are in it for the short-term may not be compelled to give back to WordPress core.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 02:33:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 6.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17887\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8175:\"<p id=\"block-3cf2f536-f167-464f-a4ba-07f45105e476\">WordPress 6.7 Beta 2 is now ready for testing!</p>\n\n\n\n<p id=\"block-b65e3bf0-0494-4039-a701-f21e505600ad\"><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p id=\"block-e904322b-c488-4166-8312-0b769067b943\">You can test WordPress 6.7 Beta 2 in four ways:</p>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-beta2.zip\">Beta 2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.7-beta</code>2</td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=a49bf5596f7258375345826dc136bfc589372e37%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 Beta 2 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup. </td></tr></tbody></table>\n\n\n\n<p id=\"block-93b754f0-e211-47b7-ac89-349d85c2f02f\">The current target date for the final release of WordPress 6.7 is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p id=\"block-7b5d791d-225a-4623-83ee-19a586c7094b\"><strong>Catch up on what&#8217;s new in WordPress 6.7</strong>: <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Read the Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-f1abd396-a019-4c9a-bcb8-9ac381a61ca1\">How to test this release</h2>\n\n\n\n<p id=\"block-92dfcab6-d2a8-4753-84ce-8ef7b6dd1e90\">Your help testing the WordPress 6.7 Beta 2 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7.</p>\n\n\n\n<p id=\"block-6519fad7-59ea-45f1-9b8f-ca14c09c865d\">If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p id=\"block-4bd66b13-6784-4a4f-bb7a-b4dab8e5fc12\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-67b6a6c7-a95e-4b27-8946-a66d15105cb7\">Vulnerability bounty doubles during Beta/RC</h2>\n\n\n\n<p id=\"block-16175da3-84c9-45d0-b735-08a9d4453a14\">Between Beta 1, released on October 1, 2024, and the final Release Candidate (RC) scheduled for November 5, 2024, the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-14306771-b240-4e15-948f-7504757bbb61\">Beta 2 updates and highlights</h2>\n\n\n\n<p id=\"block-93917d31-4478-45b5-b71c-1c8a1f49cc65\">WordPress 6.7 Beta 2 contains more than 18 Editor updates and fixes since the Beta 1 release, including <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F14%2F2024..02%2F19%2F2024&milestone=6.5&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">28 tickets for WordPress core</a>.</p>\n\n\n\n<p id=\"block-ffdc1220-c2f5-4c23-982b-60c366c629d1\">Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:</p>\n\n\n\n<ul id=\"block-3fcf78c7-bebc-42e1-96f6-8b605ea23aae\" class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-02&until=2024-10-07\">GitHub commits for 6.7</a> since October 2, 2024</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F02%2F2024..10%2F07%2F2024&milestone=6.7&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets</a> since October 2, 2024</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-c414b25e-802f-4f29-a31c-9e13394a4947\">A Beta 2 haiku</h2>\n\n\n\n<p id=\"block-a0f155a2-19b3-4645-a516-c7ae56541e5f\">Beta 2 arrives,<br />October’s code settles in,<br />Change rustles like leaves.</p>\n\n\n\n<p id=\"block-014ab749-322b-44bd-bf4f-bf5817d90bfd\"><em>Props to <a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a></em> for proofreading and review.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 00:44:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Rhino Dehorning\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=127802\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2024/10/rhino-dehorning/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3834:\"<p>Yesterday in the African bush <a href=\"https://www.threads.net/@photomatt/post/DA0WWnTsESD\">was great</a>, I saw giraffes, zebras, warthogs, leopard turtles, elephants. Today wasn&#8217;t great: I witnessed a rhino shot with a tranquilizer from a helicopter, then it was held down, had its horns cut off, and then shaved down. I have some photos and videos from the event but I&#8217;m not going to share them, because I think it&#8217;s really tragic. While this was happening I put my hand on the rhino&#8217;s belly to try to send it love, because I can&#8217;t imagine how confusing and terrifying the experience was.</p>\n\n\n\n<p>Let&#8217;s back up: Why does anyone care about rhino horns? First, you have to start with how dangerous false ideas and memes can be. Rhino horns are 92-95% keratin, just like your fingernails, the rest is basic stuff like melanin, calcium salts, magnesium, sulfur, nitrogen, amino acids, and phosphorus. There is nothing special or magic about a rhino horn that you couldn&#8217;t easily obtain many other ways.</p>\n\n\n\n<p>However there is a dangerous infovirus going back thousands of years that rhino horns can cure various ailments, from cancer to fevers, and have aphrodisiac properties. To quote <a href=\"https://www.scientificamerican.com/article/the-hard-truth-about-the-rhino-horn-aphrodisiac-market/\">Scientific American</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Some purchase horn chunks or powder for traditional medicinal purposes, to ingest or to give others as an impressive gift. Wealthy buyers bid for antique rhino horn carvings  such as cups or figurines to display or as investments. A modern market for rhino horn necklaces, bracelets and beads has also sprung up. [&#8230;]</p>\n\n\n\n<p>On the bright side, traditional Chinese medicine experts have increasingly joined the fight to reduce the demand for rhino horn. When China officially banned the international trade in 1993, it followed up by removing rhino horn as a medical ingredient in traditional Chinese medicine&#8217;s pharmacopeia  and curriculum. [&#8230;]</p>\n\n\n\n<p>“Traditional Chinese medicine has a history of 3,000 years and we have been educating the public for less than 30 years,” Huang notes. “Therefore this is an ongoing education.”</p>\n</blockquote>\n\n\n\n<p>Regardless of the reasons, there is a price for rhino horns. I was told the larger front horn would get about $300,000 on the black market, and rhinos have been poached to near-extinction. Combine that with <a href=\"https://tradingeconomics.com/south-africa/unemployment-rate\">South Africa&#8217;s 33% unemployment rate</a>, some people turn to crime or poaching to make money. It&#8217;s cheaper and faster to kill the rhino and take its horn than tranquilize it as the game reserve did.</p>\n\n\n\n<p>I don&#8217;t want to criticize the people at the game reserve. They clearly cared for the animal quite deeply, and while it was tranquilized, they provided other veterinary help for it, like removing ticks. They also put a tracker on its foot. They say they lock the horns in a vault&#8230; why? Burn it, toss it. <a href=\"https://www.savetherhino.org/thorny-issues/de-horning/\">The thinking is that reserves that are known for de-horning will attract fewer poachers</a>.</p>\n\n\n\n<p>This is obviously a middle solution, and I hope ten years from now we&#8217;ll look back at this as a point in time we learned from. On the demand side, it seems like aggressive education campaigns could help decrease demand for keratin from rhinos. On the anti-poacher side, I think drones will be able to secure perimeters far more securely than fences currently do. It would be fascinating for an economist like <a href=\"https://marginalrevolution.com/\">Tyler Cowen</a> to dive into these issues.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Oct 2024 20:36:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress.org blog: WPGraphQL is Canonical\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17891\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2024/10/wpgraphql/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"<p>Happy to announce that WP GraphQL is becoming canonical on WordPress.org. I could say more, <a href=\"https://www.wpgraphql.com/2024/10/07/wpgraphql-becomes-a-canonical-plugin-my-move-to-automattic\">but I&#8217;ll let Jason tell his story</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Oct 2024 18:44:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Do The Woo Community: Do the Woo at WordCampUS 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=85923\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://dothewoo.io/blog/do-the-woo-at-wordcampus-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5586:\"<p>Getting around to doing a recap of WordCampUS. Over on my personal site <a href=\"https://bobwp.com\">bobwp.com</a> I shared more about my own day to day stuff.</p>\n\n\n\n<p>And here on Do the Woo, I gave you a look at our <a href=\"https://dothewoo.io/blog/the-do-the-woo-lunch/\">official Do the Woo Lunch</a> during Showcase Day.</p>\n\n\n\n<p>But I thought I would do a recap from the perspective of Do the Woo and some of the things we did, or didn&#8217;t do. The fact is I always have written a recap of WordCamps I attend, and I just wanted to pull out so much of the positive I experienced on behalf of Do the Woo.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Conversations</h2>\n\n\n\n<p>In line with Do Woo, I had several conversations. In fact, a lot of short ones and long ones. But I did specifically schedule a couple of slots with an old and new friend via their calendars. My first one was with <a href=\"https://www.linkedin.com/in/jesserfriedman/\">Jesse Friedman</a> from <a href=\"https://jetpack.com/\">Jetpack</a> and <a href=\"https://wp.cloud/\">WP Cloud</a>. We took the time to catch up on projects we were both doing. In fact Jesse is shared about his new podcast <em><a href=\"https://impressive.host/\">Impressive Hosting</a></em>, which you should check out.</p>\n\n\n\n<p>The other conversation was with Aaron Edwards from <a href=\"https://docsbot.ai/\">DocBots AI</a>. It was not only great getting to know Aaron better, but I was really impressed with his product. He even had it hooked up via our site and showed me some it in action. Good stuff!</p>\n\n\n\n<p>In fact I got a bonus from him. <a href=\"https://bobwp.com/2024/10/04/the-many-faces-of-ai-bobwp/\">Some AI images that you can see over on my personal blog</a>.</p>\n\n\n\n<p>And as I said, so many, many other great conversations</p>\n\n\n\n<h2 class=\"wp-block-heading\">Podcasting at WCUS</h2>\n\n\n\n<p>This one was no different than others. Scheduled times often go awry. We were the victim of confusion around a time slot. The second one, with a couple of our hosts and a sponsor, was slotted in for the last day, early afternoon. Not a great time as all of our energies were low and we just didn&#8217;t have it in us.</p>\n\n\n\n<p>Now on the other hand, spontaneous recordings always work out much better. But, again, that just didn&#8217;t happen. </p>\n\n\n\n<p>There is one that I will be putting out in a bit. Since the slogan for Portland is <em>Keep Portland Weird</em> I decided to ask some attendees a weird WordCamp question. Nothing edgy or offensive. Just weird. That turned out to be a lot of fun and you can look forward to that.</p>\n\n\n\n<h2 class=\"wp-block-heading\">And now for something completely different</h2>\n\n\n\n<p>Okay, one more thing that will be coming to the blog, though it may take time</p>\n\n\n\n<p>At the Woo booth they were giving out disposable cameras. It was really fun to use one of them that I haven&#8217;t used in years and years. Advancing your film manually and moving backwards or forwards without a zoom. It was great!</p>\n\n\n\n<p>Now for those who attended, you will know that there was a whole area clustered with Automattic properties. Woo, WP VIP, Jetpack, WordPress.com, Gravatar, etc. Something I named Mattic Town.</p>\n\n\n\n<p>As a result I took several pictures of various people and things in the booths with my disposable camera. And from that I am going to use them in a post about my visit to Mattic Town. Slanted towards visiting a &#8220;real town&#8221;. </p>\n\n\n\n<p>Right now, having brought the camera back to Portugal, I am researching a local place that will developer the film. So this might be down the road.</p>\n\n\n\n<h2 class=\"wp-block-heading\">To sum it up</h2>\n\n\n\n<p>Well, those are some of the highlights specific to Do the Woo. Between my personal post and this post, it was a busy time.</p>\n\n\n\n<p>And if you are curious, here are all of our hosts that attended WordCampUS 2024.</p>\n\n\n\n<p><a href=\"https://dothewoo.io/host/adam-weeks/\">Adam Weeks<br /></a><a href=\"https://dothewoo.io/host/brad-williams/\">Brad Williams</a><br /><a href=\"https://dothewoo.io/host/carl-alexander/\">Carl Alexander<br /></a><a href=\"https://dothewoo.io/host/courtney-robertson/\">Courtney Robertson</a><br /><a href=\"https://dothewoo.io/host/emma-young/\">Emma Young</a><br /><a href=\"https://dothewoo.io/host/jonathan-wold/\">Jonathan Wold</a><br /><a href=\"https://dothewoo.io/host/katie-keith/\">Katie Keith</a><br /><a href=\"https://dothewoo.io/host/marcus-burnette/\">Marcus Burnette</a><br /><a href=\"https://dothewoo.io/host/robbie-adair/\">Robbie Adair</a><br /><a href=\"https://dothewoo.io/host/robert-jacobi/\">Robert Jacobi<br /></a><a href=\"https://dothewoo.io/host/tammie-lister/\">Tammie Lister</a><br /><a href=\"https://dothewoo.io/host/tom-willmot/\">Tom Willmot</a><br /><a href=\"https://dothewoo.io/host/zach-stepek/\">Zach Stepek</a></p>\n\n\n\n<p>And lastly, our sponsors who also sponsored WCUS.</p>\n\n\n\n<p><a href=\"https://www.avalara.com/us/en/index.html\">Avalara</a><br /><a href=\"https://www.godaddy.com/\">GoDaddy</a><br /><a href=\"https://www.hostinger.com/\">Hostinger</a><br /><a href=\"https://kinsta.com/?utm_source=dothewoo&utm_medium=Referral&utm_campaign=website\">Kinsta</a><br /><a href=\"https://www.omnisend.com/\">Omnisend<br /></a><a href=\"https://www.weglot.com/\">Weglot</a></p>\n\n\n\n<p>So what&#8217;s up next? <a href=\"https://asia.wordcamp.org/2025/\">WCAsia 2025</a> in Manila. We are really looking forward to this one as both a media sponsor and a sponsor. And as we did earlier this year, our booth will be a hub for community conversation and connections. Hope to see you there!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Oct 2024 13:19:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Thank You, Josepha: WordPress Executive Director Resigns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=163323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/thank-you-josepha-wordpress-executive-director-resigns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6654:\"<p>Josepha Haden Chomphosy has stepped down from Automattic, where she served as the Executive Director of the WordPress project. She was also leading Automattic&#8217;s open-source division, championing the efforts of developers, designers, community builders, and WordPress advocates. She has now updated her title in the WordPress Slack to &#8220;Community Steward.&#8221;</p>\n\n\n\n<p>Like Josepha, <a href=\"https://wptavern.com/159-employees-leave-automattic-after-accepting-the-alignment-offer\">159 employees left Automattic</a> after accepting the Alignment Offer.</p>\n\n\n\n<p>Rumors of her resignation first surfaced on X, to which she <a href=\"https://x.com/JosephaHaden/status/1841793834931397070\">responded</a>: &#8220;Ok, this is not how I expected that news to come to y’all. I apologize that this is the first many of you heard of it. Please don’t speculate about anything.&#8221;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">It\'s been a beautiful and transformative nine years, WordPress. I\'m never at a loss for words, but let the main thing you hear be \"Thank you\"! <a href=\"https://t.co/lHTPNqwvkS\">https://t.co/lHTPNqwvkS</a></p>&mdash; Josepha’s AFK Today (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1842321304583627218?ref_src=twsrc%5Etfw\">October 4, 2024</a></blockquote>\n</div>\n\n\n\n<p>In a farewell post titled <a href=\"https://josepha.blog/2024/10/04/thank-you-wordpress/\">Thank you, WordPress</a>, she expressed continued optimism for the future of the open-source project: “There’s still more to do in our shared quest to secure a self-sustaining future of the open source project that we all love, and my belief in our global community of contributors remains unchanged. I have spent nine years working shoulder to shoulder with you, and I didn’t want to leave without saying goodbye.”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I still believe that open source is an idea that can transform generations. I believe in the power of a good-hearted group of people. I believe in the importance of strong opinions, loosely held. And I believe the world will always need the more equitable opportunities that well-maintained open source can provide: access to knowledge and learning, easy-to-join peer and business networks, the amplification of unheard voices, and a chance to tap into economic opportunity for those who weren’t born into it.</p>\n</blockquote>\n\n\n\n<p>She continued:<strong> “While my next steps aren’t yet clear, I hope to never be too far from this community that taught me so much.”</strong></p>\n\n\n\n<p>Josepha has been uncharacteristically silent since the onset of the Automattic-WP Engine controversy aside from a brief comment on Slack. Since joining WordPress in 2019, she was always actively involved in community discussions or <a href=\"https://wp-content.co/bay-lights/\">controversies</a>.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXejnkbeXF_axw_ioYYMuyFvIVZvox8rUTa5P3BcJSeGx_n3ACeJ3kNIwzwZx5-SfXvZmgR2kOlarUKV5UzFe9m1mb8cL5GS676AoX2iMjJrGcUeaO4dEcTXQ3DrdepkjXvlN60gDS4TE3eNeCMOBiC7xj-1?key=-gzwbuSTOmslNC3WjniK0g\" alt=\"\" />\n\n\n\n<h3 class=\"wp-block-heading\">Community Response</h3>\n\n\n\n<p>Josepha always had a special place in the community’s heart and it was reflected in the messages that poured in following her announcement.&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Josepha, we met when you became the <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> Training Team Rep. Watching you find your footing to being our executive director for so many years has had a profound impact on me. It has been an honor to work alongside you. Thank you. <a href=\"https://t.co/Ko3aDxlhak\">https://t.co/Ko3aDxlhak</a></p>&mdash; @courtneyr_dev <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f33b.png\" alt=\"🌻\" class=\"wp-smiley\" /> (@courtneyr_dev) <a href=\"https://twitter.com/courtneyr_dev/status/1842327905193324851?ref_src=twsrc%5Etfw\">October 4, 2024</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Josepha\'s leadership is one of the reasons I am an active contributor to WordPress. I am exceptionally pleased to have had the opportunity to work with her over the years. Good luck with whatever comes next, Josepha. <a href=\"https://t.co/5AyqhRNMOo\">https://t.co/5AyqhRNMOo</a></p>&mdash; Peter Wilson <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f3f3-fe0f-200d-1f308.png\" alt=\"🏳️‍🌈\" class=\"wp-smiley\" /> (@pwcc) <a href=\"https://twitter.com/pwcc/status/1842328528735609120?ref_src=twsrc%5Etfw\">October 4, 2024</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Josepha you are a great leader. You have inspired so many of us. <br /><br />Thank you for everything you had done for the community. It was great interacting with you on multiple occasions.<br /><br />Hoping to cross paths with you again in the future. <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1faf6.png\" alt=\"🫶\" class=\"wp-smiley\" /></p>&mdash; Meher Bala | WP Mumbai &amp; WC Asia Organiser (@meherbala) <a href=\"https://twitter.com/meherbala/status/1842645793259602258?ref_src=twsrc%5Etfw\">October 5, 2024</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thank you, Josepha!<br /><br />It’s been an absolute pleasure interacting with you over the years and I do hope you stay close to the project. <br /><br />Either way, best of luck with whatever lies ahead.</p>&mdash; Remkus de Vries (@remkusdevries) <a href=\"https://twitter.com/remkusdevries/status/1842460273728225477?ref_src=twsrc%5Etfw\">October 5, 2024</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I appreciate your ability to bring people together, to create safe and welcoming spaces, and to thoughtfully listen to and hear a wide variety of voices. I knew from the first time I met you that you were special. Thank you for all you\'ve done for the community over the years…</p>&mdash; Brandon Dove (@brandondove) <a href=\"https://twitter.com/brandondove/status/1842342417191875005?ref_src=twsrc%5Etfw\">October 4, 2024</a></blockquote>\n</div>\n\n\n\n<p>Thank you, Josepha, for all you&#8217;ve done for WordPress. We wish you the best in your future endeavors!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 06 Oct 2024 16:41:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: New Social Web Foundation Launched with Automattic’s Support  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=166856\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/new-social-web-foundation-launched-with-automattics-support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4218:\"<p>The Social Web Foundation was officially <a href=\"https://socialwebfoundation.org/2024/09/24/launch/\">launched</a> on September 24, 2024, with a mission to foster a &#8220;growing, healthy, financially viable, and multi-polar Fediverse.&#8221; This non-profit organization is <a href=\"https://socialwebfoundation.org/team/\">spearheaded by</a> Evan Prodromou (Research Director), Mallory Knodel (Executive Director), and Tom Coates (Product Director) and is dedicated to uniting social networks through the open standard protocol, ActivityPub.</p>\n\n\n\n<p>The Fediverse is a collection of interconnected, decentralized social media platforms that communicate using open protocols, with <a href=\"https://www.w3.org/TR/activitypub/\">ActivityPub</a>—developed by the World Wide Web Consortium (W3C)—as the primary standard. “Until now, no major organization has taken on advocacy for ActivityPub as its central goal. Many people have ideas about what the Fediverse needs to be bigger, safer, and easier to use. But the solutions they propose fall between the cracks of anyone implementer or service. We want the SWF to be the entity that takes on those jobs.”, <a href=\"https://write.as/evanp/announcing-the-social-web-foundation\">said Evan Prodromou</a>, often referred to as “The Father of the Fediverse.”</p>\n\n\n\n<p><a href=\"http://plasticbag.org/archives/2024/09/on-the-social-web-foundation/\">Tom Coates</a> emphasized the foundation&#8217;s straightforward goal: “Fundamentally, its goal is pretty simple – it’s there to help the Fediverse grow in a sustainable and healthy way that benefits everyone.”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The Social Web Foundation is our best chance to establish the conditions in which the new social media operates with zero harm.</p>\n\n\n\n<p>&#8211; Mallory Knodel</p>\n</blockquote>\n\n\n\n<p>The foundation aims to address challenges within the ActivityPub ecosystem and support its growth, especially in the commercial sector. Key <a href=\"https://socialwebfoundation.org/projects/\">areas of focus</a> include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>People: Educating the public about the Fediverse and its benefits.</li>\n\n\n\n<li>Policy: Clarifying policy frameworks for international and federated networks.</li>\n\n\n\n<li>Protocol: Developing and maintaining open standards.</li>\n\n\n\n<li>Plumbing: Building the necessary infrastructure</li>\n</ul>\n\n\n\n<p>Thirteen prominent companies, including Automattic, Mastodon, Meta, Ghost, and Medium, are backing the foundation.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf8GjBqJZhiDMXBxukXJ9h34UKYKsVzt6UzrtrPPLBPFwPe1ziQzzIw2YJfOZo0-U5i4y0P69HA8wqca_WqmmKRFFvz9GoFh1IvAUXMmKgiq1P7sThjprXu3fcHGX8mgz93_L8CYqT2bjTLNiGzXlUOD0U4?key=Znh0DVRkNQsoeNp-57L7wg\" alt=\"\" />\n\n\n\n<h3 class=\"wp-block-heading\">Automattic &amp; Fediverse</h3>\n\n\n\n<p>Automattic&#8217;s involvement with the Social Web Foundation comes as no surprise, given its long-standing contributions to the Fediverse. Back in 2021, Automattic CEO Matt Mullenweg expressed interest in bringing <a href=\"https://techcrunch.com/2022/11/21/tumblr-to-add-support-for-activitypub-the-social-protocol-powering-mastodon-and-other-apps/\">ActivityPub support to Tumblr</a>. In 2023, Automattic acquired the <a href=\"https://wptavern.com/automattic-acquires-activitypub-plugin-for-wordpress\">ActivityPub plugin for WordPress</a> from German developer Matthias Pfefferle and made the ActivityPub feature <a href=\"https://wordpress.com/blog/2023/10/11/activitypub/\">available</a> across all WordPress.com plans.</p>\n\n\n\n<p>“Automattic is excited about the launch of the Social Web Foundation and its mission. We’re eager to collaborate with the Foundation to expand platform diversity and enhance the support for various content types—especially long-form content—within the Fediverse, fostering greater interoperability across the ecosystem.”, said Matthias Pfefferle, Open Web Lead at Automattic.</p>\n\n\n\n<p>To know more about Automattic and Fediverse, check the YouTube series, <a href=\"https://www.youtube.com/playlist?list=PL6nDc7ACvovJMt8MEiebpsXnlBuKp158j\">The Fediverse Files</a>.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Oct 2024 18:14:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: 159 Employees Leave Automattic After Accepting the Alignment Offer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=166873\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/159-employees-leave-automattic-after-accepting-the-alignment-offer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5535:\"<p>While the controversy between Automattic and WP Engine was unfolding, social media discussions surged about whether Automattic employees not agreeing with Matt were offered an ultimatum to quit and exit with a generous payout.&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/kellie/status/1841210258422972536\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/jeffr0/status/1841585100665872569\n</div>\n\n\n\n<p>&nbsp;In response, Matt Mullenweg addressed the situation in a blog post titled <a href=\"https://ma.tt/2024/10/alignment/\">Automattic Alignment</a>. He has clarified that: &#8220;It became clear a good chunk of my Automattic colleagues disagreed with me and our actions. So we decided to design the most generous buy-out package possible, we called it an Alignment Offer: <strong>if you resigned before 20:00 UTC on Thursday, October 3, 2024, you would receive $30,000 or six months of salary, whichever is higher. </strong>But you’d lose access to Automattic that evening, and you wouldn’t be eligible to boomerang (what we call re-hires). HR added some extra details to sweeten the deal; we wanted to make it as enticing as possible.&#8221;</p>\n\n\n\n<p>Matt revealed that 159 employees, representing 8.4% of the workforce, accepted the offer. Of these,<strong> 79.2% were part of Automattic’s Ecosystem businesses</strong>, while 18.2% came from Cosmos, working on apps like Pocket Casts, Day One, Tumblr, and Cloudup.</p>\n\n\n\n<p>“It was an emotional roller coaster of a week. The day you hire someone you aren’t expecting them to resign or be fired, you’re hoping for a long and mutually beneficial relationship. Every resignation stings a bit.”, Matt added.&nbsp;</p>\n\n\n\n<p><a href=\"https://automattic.com/2024/10/04/looking-ahead/\">Automattic</a> referred to this move as “<strong>a strategic realignment to better pursue our core values and operational goals.</strong>”&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>We remain deeply grateful to all our employees, past and present. For those who have chosen new paths, we sincerely wish them the best, and thank them for helping make Automattic what it is today. We emerge from this chapter with a renewed vigor and clarity in our mission.</p>\n\n\n\n<p>&#8211;  Automattic&nbsp;</p>\n</blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">159 People Accepted the Offer&nbsp;</h3>\n\n\n\n<p>In a surprising turn, the names of people leaving Automattic include Josepha Haden Chomphosy, the Executive Director of the WordPress project. “While my next steps aren’t yet clear, I hope to never be too far from this community that taught me so much.”, <a href=\"https://josepha.blog/2024/10/04/thank-you-wordpress/\">she said</a>.</p>\n\n\n\n<p>Other notable departures include <a href=\"https://naoko.blog/2024/10/04/leaving-automattic/\">Naoko Takano</a> (Open Source Project Manager), <a href=\"https://www.linkedin.com/in/danwalmsley/\">Daniel Walmsley</a> (AI Engineer and Architect), <a href=\"https://x.com/jeffikus/status/1842227784350859484\">Jeffrey Pearce</a> (Team Lead) and <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a> (Communications Wrangler &amp; <a href=\"https://make.wordpress.org/marketing/2024/03/20/making-a-wordpress-media-corps/\">WordPress Media Corps</a> lead). Daniel Bachhuber (head of WordPress.com) also left but posted this in <a href=\"https://www.linkedin.com/feed/update/urn:li:activity:7247936060008136704/\">LinkedIn</a>: “I believe in Matt. Leaving Automattic for other reasons. It&#8217;s a bummer, and I will miss everyone there.”</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/danwalmsley/status/1841882447073706317\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/jeffikus/status/1842227784350859484\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">91.6% of Automatticians are Staying</h3>\n\n\n\n<p>Meanwhile, 91.6% of Automattic employees chose to stay, with many expressing support for Matt’s decisions on X.&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/zeldman/status/1842201921433608640\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/NerdwithCoffee/status/1842351786134229318\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/pootlepress/status/1842051172183490811\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/justintadlock/status/1842197703272300968\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">Community Response</h3>\n\n\n\n<p>As usual, the community remains divided, with some praising the offer&#8217;s generosity while others are worried.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/awilkinson/status/1842227042256920691\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/FloWendelborn/status/1842072441280983440\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/foolstechdev/status/1842220667111932279\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/mnowak_eth/status/1842131124165775653\n</div>\n\n\n\n<p>As mentioned above, 79.2% of the people who left Automattic were working on Ecosystem projects. The Marketing Team again got the short end of the stick with <a href=\"https://make.wordpress.org/marketing/2024/03/20/making-a-wordpress-media-corps/\">WordPress Media Corps</a>’s future in doubt due to Reyes Martínez’s resignation. The coming days will provide more clarity on the effects this development has on WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Oct 2024 17:45:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: CNBC on WP Engine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=127659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2024/10/cnbc-on-wp-engine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"<p>Ari Levy at CNBC has a great article covering the battle between WordPress and Silver Lake / WP Engine: <a href=\"https://www.cnbc.com/2024/10/05/wordpress-ceo-matt-mullenweg-goes-nuclear-on-silver-lake-wp-engine-.html\">Why WordPress [co-]founder Matt Mullenweg has gone ‘nuclear’ against tech investing giant Silver Lake</a>.<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Oct 2024 13:03:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Automattic Alignment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=127517\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2024/10/alignment/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2301:\"<p>Winston Churchill said, &#8220;Never let a good crisis go to waste.&#8221; Since I last blogged here, <a href=\"https://automattic.com/2024/10/03/meritless/\">WP Engine filed a meritless lawsuit and Automattic responded</a>, and there&#8217;s been a hurricane of public activity and press. Inside of <a href=\"https://automattic.com/\">Automattic</a>, there&#8217;s been a parallel debate and process.</p>\n\n\n\n<p>Silver Lake and WP Engine&#8217;s attacks on me and Automattic, while spurious, have been effective. It became clear a good chunk of my Automattic colleagues disagreed with me and our actions.</p>\n\n\n\n<p>So we decided to design the most generous buy-out package possible, we called it an Alignment Offer: if you resigned before 20:00&nbsp;UTC&nbsp;on Thursday, October 3, 2024, you would receive <strong>$30,000 or six months of salary, whichever is higher</strong>. But you&#8217;d lose access to Automattic that evening, and you wouldn&#8217;t be eligible to boomerang (what we call re-hires). HR added some extra details to sweeten the deal; we wanted to make it as enticing as possible.</p>\n\n\n\n<p>I&#8217;ve been asking people to vote with their wallet a lot recently, and this is another example!</p>\n\n\n\n<p>159 people took the offer, 8.4% of the company, the other 91.6% gave up $126M of potential severance to stay! 63.5% were male. 53% were in the US. By division it impacted our Ecosystem / WordPress areas the most: 79.2% of the people who took it were in our Ecosystem businesses, compared to 18.2% from Cosmos (our apps like <a href=\"https://pocketcasts.com/\">Pocket Casts</a>, <a href=\"https://dayoneapp.com/\">Day One</a>, <a href=\"https://tumblr.com/\">Tumblr</a>, <a href=\"https://cloudup.com/\">Cloudup</a>). 18 people made over 200k/yr! 1 person started two days before the deadline. 4 people took it then changed their minds.</p>\n\n\n\n<p>It was an emotional roller coaster of a week. The day you hire someone you aren&#8217;t expecting them to resign or be fired, you&#8217;re hoping for a long and mutually beneficial relationship. Every resignation stings a bit. </p>\n\n\n\n<p>However now, I feel much lighter. I&#8217;m grateful and thankful for all the people who took the offer, and even more excited to work with those who turned down $126M to stay. As the kids say, LFG!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Oct 2024 03:28:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: WordPress Enforces Plugin Check and 2FA for New Plugin Submissions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=163317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/wordpress-enforces-plugin-check-and-2fa-for-new-plugin-submissions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3487:\"<p>Security Review Lead Chris Christoff has announced <a href=\"https://make.wordpress.org/plugins/2024/10/01/plugin-check-and-2fa-now-mandatory-for-new-plugin-submissions/\">two new changes</a> for the WordPress Plugin Directory, effective from October 1, 2024. These changes aim to enhance plugin directory security and promote best practices among plugin developers.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Mandatory Two-Factor Authentication</h3>\n\n\n\n<p>As of October 1, 2024, all plugin owners and committers must enable Two-Factor Authentication (2FA) to submit new plugins to the WordPress Plugin Directory. This change was <a href=\"https://wptavern.com/wordpress-org-introduces-new-security-measures-for-plugin-and-theme-authors\">announced</a> by Automattic-sponsored developer Dion Hulse last month.</p>\n\n\n\n<p>Plugin owners are encouraged to enable 2FA, review committers’ access levels, and use additional security features like the SVN password option and Release Confirmation. Detailed guides on <a href=\"https://make.wordpress.org/meta/handbook/tutorials-guides/configuring-two-factor-authentication/\">Configuring Two-Factor Authentication</a> and <a href=\"https://make.wordpress.org/plugins/2024/06/26/keeping-your-plugin-committer-accounts-secure/\">Keeping Your Plugin Committer Accounts Secure</a> are also available.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Plugin Check Tool</h3>\n\n\n\n<p>From now on, any new plugin submitted to the Plugin Directory will first go through a pre-submission check using the Plugin Check tool. If any errors are found, the submission will be blocked until they are fixed.</p>\n\n\n\n<p>This new step aims to reduce the review queue by enabling plugin authors to catch common issues before submitting their plugins for manual review. Plugin Check helps by identifying frequent issues, such as mismatched versions between the plugin header and the readme.txt file, incorrect text domains, and erroneous &#8220;Tested To&#8221; values in the readme. Although Plugin Check adds a layer of automation,<strong> it will not replace the manual review of plugins</strong>.</p>\n\n\n\n<p>David Perez from the Plugin Review Team <a href=\"https://make.wordpress.org/plugins/2024/09/17/introducing-plugin-check-pcp/\">recommended making Plugin Check</a> a part of the development workflow as “In addition to things relevant for the review process, the tool flags violations or concerns around plugin development best practices, from basic requirements like correct usage of internationalization functions to accessibility, performance, and security best practices. It does so using both static checks using PHP_CodeSniffer and dynamic checks, where it actually activates your plugin to test it “live”.”</p>\n\n\n\n<p>The Plugins Team is working to expand Plugin Check’s coverage to existing plugins. A roadmap detailing this broader application will be released in the coming months. Contributors can help improve the tool via its <a href=\"https://github.com/WordPress/plugin-check\">GitHub Repo</a>.</p>\n\n\n\n<p>The WordPress community has responded positively to these updates. Josepha Haden Chomphosy <a href=\"https://x.com/JosephaHaden/status/1841810132495143307\">tweeted</a> “This was years in the making and is a huge deal. Congratulations (and big thanks) to everyone who contributed!”</p>\n\n\n\n<p>These two measures are expected to help the WordPress Plugin Team improve the security of the platform while reducing the backlog of plugins awaiting approval.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Oct 2024 20:01:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Automattic Publishes WP Engine Term Sheet Amidst Controversy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=163230\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/automattic-publishes-wp-engine-term-sheet-amidst-controversy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5085:\"<p>As the Automattic-WP Engine <a href=\"https://wptavern.com/wp-engine-banned-from-using-wordpress-org-resources\">controversy</a> continues, Automattic published the term sheet delivered to WP Engine on September 20, 2024. “In the interest of transparency, we’ve published the term sheet we offered to @LeeEWittlinger and @heatherjbrunner, it’s a simple one-pager.”, <a href=\"https://x.com/photomatt/status/1841276456162279724\">tweeted</a> Matt Mullenweg.</p>\n\n\n\n<p>The <a href=\"https://automattic.com/2024/10/01/wpe-terms/\">announcement post</a> reveals that initial discussions between Automattic and WP Engine began in February 2023, led by Matt Mullenweg and continued by Toni Schneider during Mullenweg’s sabbatical.</p>\n\n\n\n<p>The <a href=\"https://automattic.com/wp-content/uploads/2024/09/term-sheet-wp-engine-inc.-automattic-trademark-license_09.19.2024-1.pdf\">term sheet</a> outlines five key points regarding a trademark license agreement. Under the terms, Automattic would grant WP Engine the rights to use WordPress and WooCommerce trademarks and branding, with WP Engine agreeing to follow all relevant guidelines. WP Engine was presented with three options for compensation:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Pay Automattic a royalty fee of 8% of its gross revenue on a monthly basis, along with a detailed report of its gross revenue, granting Automattic full audit rights.</li>\n\n\n\n<li>Allocate 8% of its revenue to employee salaries for work on core WordPress features under the direction of WordPress.org, with both WordPress.org and Automattic retaining audit rights.</li>\n\n\n\n<li>Combination of the above two options. </li>\n</ul>\n\n\n\n<p>The term sheet also prevents WP Engine from modifying or forking any software from Automattic, WooCommerce, or its affiliates. The agreement is for seven years with automatic one-year renewals.</p>\n\n\n\n<p>However, the announcement post has a critical update: “<strong>Given WP Engine’s behavior, deception, and incompetence since September 20th these terms are no longer sufficient.</strong>”</p>\n\n\n\n<p>Matt also told <a href=\"https://www.therepository.email/mullenweg-threatens-corporate-takeover-of-wp-engine\">The Repository</a>, “That deal’s not on the table anymore. We’re seeking more, not 8%. I don’t want to speculate on what the deal might be… In July it was less than 8%, it was smaller. In September it was 8%. The deal they have to do next could be taking over the company, they have no leverage.” </p>\n\n\n\n<p>Public reactions to Mullenweg’s tweet sharing the term sheet have been mixed, with most replies critical of him, though some view the terms as reasonable.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">You want to see their revenue as a report monthly broken down by product. You are a direct competitor! That can\'t be ok in terms of anti trust laws or something. The monetary amount also seems excessive on top of that.</p>&mdash; Steve Struemph (@SteveStruemph) <a href=\"https://twitter.com/SteveStruemph/status/1841294550221897738?ref_src=twsrc%5Etfw\">October 2, 2024</a></blockquote>\n</div>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeDe4ljBL0nRPgiWup0QhAA_bQO12n6NNjHnixoOIS9Xybum1-zJh-hggqf7xxdRtAkm3NMAJetbOmBKXxMZ8T5qVVAjUSZVLYcNAKIOPp8Ei7OsCEzuGFhYJd3g9R9oKJRulmiGHfsWyAmcPMuse1rLqV1?key=b9ha9SS9oPAGSdj_1r13xQ\" alt=\"\" />\n\n\n\n<p>The final results of a survey by Matt from The WP Minute:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Automattic v. WP Engine</p>&mdash; Matt (@mattmedeiros) <a href=\"https://twitter.com/mattmedeiros/status/1839660169241755740?ref_src=twsrc%5Etfw\">September 27, 2024</a></blockquote>\n</div>\n\n\n\n<p>During the ongoing discussions, co-founder &amp; CEO of Cloudflare Matthew Prince <a href=\"https://x.com/eastdakota/status/1841154152006627663\">offered to donate</a> the capacity to power WordPress.org for the community. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We’d be happy to donate the capacity to power <a href=\"https://t.co/NYrfF5j4KC\">https://t.co/NYrfF5j4KC</a> for the community.</p>&mdash; Matthew Prince <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f325.png\" alt=\"🌥\" class=\"wp-smiley\" /> (@eastdakota) <a href=\"https://twitter.com/eastdakota/status/1841154152006627663?ref_src=twsrc%5Etfw\">October 1, 2024</a></blockquote>\n</div>\n\n\n\n<p>Meanwhile, the controversy seems to be spilling into Automattic, too.&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I\'ve been told by a few sources that it\'s not a rumor. I don\'t understand. If you\'re not with Matt, you\'re against Matt and he\'ll pay you to leave? Seems like an odd way of going about things. <a href=\"https://t.co/Eh3NPrIAfm\">https://t.co/Eh3NPrIAfm</a></p>&mdash; Jeff (@jeffr0) <a href=\"https://twitter.com/jeffr0/status/1841252171012042794?ref_src=twsrc%5Etfw\">October 1, 2024</a></blockquote>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2024 19:32:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: WP Engine Banned Again, Reports Deploying a Solution\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=163178\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wp-engine-banned-again-reports-deploying-a-solution\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4296:\"<p>After a <a href=\"https://wptavern.com/matt-mullenweg-announces-temporary-lifting-of-wp-engine-ban\">brief reprieve</a>, WP Engine has been <a href=\"https://x.com/wpengine/status/1840905665440633087\">banned again</a> from WordPress.org and the company took to X to share: “Thousands of WordPress community members have once again been blocked from accessing WordPress.org. WP Engine has commenced deployment of its solution for accessing updates and installations for plugins and themes across our customers’ sites. We expect deployment of the solution to all customers to be completed within the hour.”</p>\n\n\n\n<p>The next <a href=\"https://x.com/wpengine/status/1840910240801316924\">tweet</a> read: “We are pleased to report that our solution has been fully deployed and regular workflow practices have been restored to our customers around the globe. We thank all our customers for their patience and support over the past week. Like so many of you, we love WordPress, and are committed to the stability and longevity of the community.”</p>\n\n\n\n<h3 class=\"wp-block-heading\">WP Engine Website Updates</h3>\n\n\n\n<p>WP Engine has made several changes to its website, including reducing the use of the word “WordPress” and adding a new footer clarifying its trademark usage.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXd9koeDMR5KyJiqM4cqeIumyvqNyx6agVBbHnFqCidKWr1WYFK9ZdouMR7cQMIITZ7Do1GLTKbOsdeyF8Xc_Q0QhRTbmemkZ0gpIPC6E3BJTdYvKiEjFR_p59yhXARlZT6s6KntjRVvlz98U6JddsRN4IpZ?key=ltzJcIAhElrogVEpgiRyHg\" alt=\"\" />New Footer in WP Engine Website\n\n\n\n<p>The names of its pricing plans have been updated, omitting “WordPress” from the titles.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdwSKLlAGwXjLwFHFKC2ZHedUhrAwr7PuAxB4ZjtMQ3YuZDZI1cShKiOlvbpFhjOWAWVWP0erZw75z_GVznKb5b5f85GFYZVC-Y6JxLR_9nYLTFlTIl4GicAG6MXRqTTbHl-5HNyj-6ivW7Gx2HZondn_ze?key=ltzJcIAhElrogVEpgiRyHg\" alt=\"\" />Current WP Engine Pricing Plans \n\n\n\n<p></p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXcJnOE9z6belsDyaZK_VYSoAHKInDUVwbLuFtnmLAt4gYvEXUmGlwDgaY18DyBeu5dz8NLzslEdhz7c9fwOUQkrph755ANh-EKckHpoNg3vlmNoyxESDTcjIi7AqsU2i2maHP4VPzMw7eOXxszH-h8dl8DR?key=ltzJcIAhElrogVEpgiRyHg\" alt=\"\" />Previous Pricing Plans of WP Engine\n\n\n\n<p><a href=\"https://wpandlegalstuff.com/wp-engine-changes-use-of-trademarks-on-its-website/\">WP And Legal Stuff</a> has covered more details on the website changes.&nbsp;</p>\n\n\n\n<p>WP Engine has not offered any explanation about the solution beyond what was shared on Twitter, though people have been asking for more details.&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">1. Are you mirroring the wordpress(dot)org repos?<br />2. Is this a permanent or temporary solution?<br />3. What are you doing to stop future interruptions?<br />More information would be appreciated, as communication and transparency from <a href=\"https://twitter.com/wpengine?ref_src=twsrc%5Etfw\">@wpengine</a> has been exceptionally poor.</p>&mdash; Charlie Moss (@charliemoss) <a href=\"https://twitter.com/charliemoss/status/1840912940372808077?ref_src=twsrc%5Etfw\">October 1, 2024</a></blockquote>\n</div>\n\n\n\n<p>WP Engine has been silent since the start of the incidents, while Matt has been going all-out speaking about the issues. Matt even issued an open invite to Lee Wittlinger, Managing Director of Silver Lake. “Lee, let’s debate this publicly. Propose a neutral venue and moderator,” he said in a post titled “<a href=\"https://ma.tt/2024/09/missing-spokespeople/\">Where is Lee Wittlinger?</a>” “Why is WP Engine scared of talking to journalists live?”, he had <a href=\"https://ma.tt/2024/09/on-theprimeagen/\">asked</a> earlier.</p>\n\n\n\n<p>He also published his <a href=\"https://ma.tt/2024/09/charitable-contributions/\">charitable contributions</a> from 2011 to 2023, shared how WP Engine is <a href=\"https://ma.tt/2024/09/wordpress-engine/\">violating WordPress’ trademarks</a>, and gave interviews to <a href=\"https://www.youtube.com/live/F6vXWQrQXgY\">Theo &#8211; t3․gg</a> and <a href=\"https://www.youtube.com/live/9sBuHwQpwAU\">WP Minute</a>.</p>\n\n\n\n<p>The community is deeply troubled by the proceedings but both sides do not show any signs of backing down. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2024 18:23:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: #139 – Andy Fragen on Automatic Update Rollbacks in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=163149\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/podcast/139-andy-fragen-on-automatic-update-rollbacks-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:46636:\"Transcription<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, automatic update rollbacks in WordPress, what they are, and why this was a difficult feature to build.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Andy Fragen.</p>\n\n\n\n<p>Andy is a dedicated member of the WordPress community, as well as a trauma surgeon. Somehow he manages to balance the demands of his profession with his passion for the community. And, as you will hear, to important work inside of WordPress Core. Even while in the operating room waiting for patients to be prepped, Andy has been known to find moments to answer forum questions and provide support to others. It&#8217;s truly remarkable.</p>\n\n\n\n<p>Andy talks about the important topic of automatic rollbacks in WordPress, a feature aimed at reverting to a previous version if an automatic plugin or theme update fails, ensuring the website remains functional for users. I&#8217;ve managed to encapsulate the idea into the previous sentence, but as you will hear, the execution of that idea was anything other than straightforward.</p>\n\n\n\n<p>Andy discusses the origins of the rollback feature. The team working on this problem identified complexities and potential fatal errors during plugin updates, and came up with a simple, yet effective solution, which worked. But as with so much in code, some edge cases meant that the road to a fully workable solution for all WordPress users was not quite in sight. Many times the drawing board had to be dusted off, and the problem looked at once again.</p>\n\n\n\n<p>While developing this feature, numerous challenges were encountered. From finding consistent test conditions to managing technical limitations. Andy shares insights into the critical role of testing and collaboration with hosting companies, meticulous attention to detail and problem solving skills, developed to combat issues like file write delays, and loop back test redirects.</p>\n\n\n\n<p>Andy explains how the team managed to avoid fatal errors in active plugins with extensive testing and incremental improvements. They introduce functionalities like WP error checks, simulation features for testing error handling, and a new move directory function to enhance reliability.</p>\n\n\n\n<p>Andy also discusses the broader impact of their rollback efforts. Many users might not notice this new feature, but in a sense that&#8217;s how it should be. The more unnoticeable to end-users update failures are, the better. It means that sites that would previously have been broken and are now working, and that&#8217;s a win for everyone.</p>\n\n\n\n<p>If you&#8217;re interested in the behind the scenes development of a WordPress feature, that quietly keeps your website running smoothly, and in hearing how a dedicated contributor balances his passion for WordPress with a demanding medical career, this episode is for you.</p>\n\n\n\n<p>If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Andy Fragen.</p>\n\n\n\n<p>I am joined on the podcast by Andy Fragen. Hello, Andy.</p>\n\n\n\n<p>[00:04:21] <strong>Andy Fragen:</strong> Hello Nathan. How are you?</p>\n\n\n\n<p>[00:04:22] <strong>Nathan Wrigley:</strong> Yeah, good. Nice to speak to you. We are in WordCamp US, we&#8217;re in Oregon. We&#8217;re in the convention center. I&#8217;ve actually no conception of what the convention center&#8217;s called.</p>\n\n\n\n<p>[00:04:30] <strong>Andy Fragen:</strong> I think that&#8217;s it. I think it&#8217;s called the Oregon Convention Center.</p>\n\n\n\n<p>[00:04:32] <strong>Nathan Wrigley:</strong> Normally when I come to these events, I&#8217;m talking to people who are doing a presentation of some kind, but we had a conversation, introduced, I think, via Courtney Robertson. She suggested that I might like to talk to you about this particular subject, and I bit her hand off frankly, because this is really interesting.</p>\n\n\n\n<p>We&#8217;re going to talk about automatic rollbacks in WordPress Core. And if that doesn&#8217;t mean anything to you, that&#8217;s fine, Andy will introduce the subject a bit later. First of all though, Andy, it&#8217;s a bit of a boring, dull question, but can you give us your little bio, and then I think, unusually, I&#8217;m going to dwell on your bio for quite a long time, if that&#8217;s all right? Tell us what you do in all of your life.</p>\n\n\n\n<p>[00:05:08] <strong>Andy Fragen:</strong> I am a full-time trauma acute care surgeon, and I work in Southern California. And I dabble in WordPress as a hobby.</p>\n\n\n\n<p>[00:05:18] <strong>Nathan Wrigley:</strong> You are also a Core committer.</p>\n\n\n\n<p>[00:05:19] <strong>Andy Fragen:</strong> Yes, sir. I got my first props for a Core commit about nine years ago.</p>\n\n\n\n<p>[00:05:23] <strong>Nathan Wrigley:</strong> Okay. So, to me, Core commit, if you have privileges to commit to Core.</p>\n\n\n\n<p>[00:05:29] <strong>Andy Fragen:</strong> Well, I&#8217;m not a committer, I&#8217;m a Core contributor.</p>\n\n\n\n<p>[00:05:31] <strong>Nathan Wrigley:</strong> A core contributor.</p>\n\n\n\n<p>[00:05:33] <strong>Andy Fragen:</strong> If they ever offered me commit access, I would decline.</p>\n\n\n\n<p>[00:05:36] <strong>Nathan Wrigley:</strong> Yes, okay. Nevertheless, you are working at a very high level within WordPress, and this is the kind of thing that I think, this is what people do as a career. You know, they become incredibly skilled at coding, and in this case with WordPress, and this is the level maybe that they reach.</p>\n\n\n\n<p>But let&#8217;s just rewind a little bit, because at the beginning of your bio you said you are also a trauma surgeon, which to me seems much more than a regular job. It seems like that would be an incredibly difficult thing to achieve in life, but also a thing which would consume many, many hours. And so I&#8217;m kind of wondering, how do you keep up in life with being a Core contributor as well as a trauma surgeon?</p>\n\n\n\n<p>[00:06:13] <strong>Andy Fragen:</strong> As I said previously, time is the only fungible commodity we have. You spend it how you want to spend it. Obviously, depending on how you work and what the structure is, you have certain time availability, and then certain time not availability.</p>\n\n\n\n<p>Some of what I have as a trauma surgeon is downtime. There are certain parts of my day that are busier than others, and there are certain parts of my day that aren&#8217;t as busy. I have been known to answer forum questions, and do support while in the operating room, waiting for a patient to be prepped.</p>\n\n\n\n<p>[00:06:46] <strong>Nathan Wrigley:</strong> So, let me just parse that a little bit. Whilst in the hospital, when there are not urgent things to be done, you are whipping out the laptop and contributing to WordPress.</p>\n\n\n\n<p>[00:06:56] <strong>Andy Fragen:</strong> No, I usually do that on the phone, believe it or not.</p>\n\n\n\n<p>[00:06:58] <strong>Nathan Wrigley:</strong> I think that&#8217;s remarkable. Honestly, I am really, really amazed that you can manage that. I think you must have an incredible grasp of your own time management.</p>\n\n\n\n<p>[00:07:07] <strong>Andy Fragen:</strong> Honestly, a lot of the support stuff is just having been in my own plugins that I&#8217;ve written for a long time. I have a better understanding of what the issue is almost without even getting too much you know, stack traces and things like that. Not that I don&#8217;t need them sometimes, but if you&#8217;ve ever done support and gotten issues from people, sometimes it takes a while to tease out the actual information you need to give a response.</p>\n\n\n\n<p>[00:07:31] <strong>Nathan Wrigley:</strong> Do you regard WordPress as a hobby then, or is it more like a second career almost?</p>\n\n\n\n<p>[00:07:36] <strong>Andy Fragen:</strong> Career would imply that you earn something from it. And, yes, I do sell a plugin, and part of the reason my wife allowed me to fly up to Portland for a WordCamp is I could say that the plugin sales paid for an airline ticket and a hotel. The usual deal I had with my wife living in Southern California was I could go to any WordCamp I could drive to. Since Covid they&#8217;ve really just stopped. Everybody&#8217;s sort of burned out, and that&#8217;s a whole other issue unfortunately.</p>\n\n\n\n<p>[00:08:01] <strong>Nathan Wrigley:</strong> Yeah. How much time do you think, let&#8217;s say a month, would you be putting into WordPress?</p>\n\n\n\n<p>[00:08:08] <strong>Andy Fragen:</strong> Some of that depends on where you consider your time. If I&#8217;m kind of paying attention to the Core dev Slack when they&#8217;re doing meetings, do you count that towards time? I mean, some people do, some people don&#8217;t. So I have said that I have usually put anywhere between 10 to 15 hours a week into it, depending on where it was. I mean, for a while I was running the Core upgrade install meeting. Sometimes we get, there&#8217;s not much for us to talk about, we&#8217;ve foregone the meeting at times.</p>\n\n\n\n<p>Yes, somehow I&#8217;ve found myself as a component maintainer for the upgrade install component, along with several other people.</p>\n\n\n\n<p>Over the years I&#8217;ve done, or found my way into, I should say, several different things. And one of the things I did when we met Courtney last WordCamp US in San Diego, she was having trouble getting set up in a dev environment on her computer. And I&#8217;d already sort of figured it out, and sat down and helped her with it and, yes, by the end of the time period, we had Courtney up and running in the docker dev environment for WordPress Core.</p>\n\n\n\n<p>[00:09:08] <strong>Nathan Wrigley:</strong> So 10 to 15 hours a week, 40 to 60 hours a month, that&#8217;s a lot.</p>\n\n\n\n<p>[00:09:14] <strong>Andy Fragen:</strong> Yes, and you have no idea what my normal schedule is like. Even if I didn&#8217;t do that, as a trauma acute care surgeon, we work shift work, and our shifts are 12 hours long. And an FTE, full-time equivalent, for being considered full-time is 16 shifts a month. Whether that&#8217;s two shifts in a row in 24 hours, or not, or individually, it just depends. I would&#8217;ve considered at some point in time, in the last several years, only doing 16 shifts quite nice. I&#8217;ve done as many as 30 in a month, and probably in the last several years, averaged somewhere around 20, give or take.</p>\n\n\n\n<p>[00:09:54] <strong>Nathan Wrigley:</strong> I think what I&#8217;m taking from this, Andy, is that you work quite hard in all things that you do.</p>\n\n\n\n<p>[00:09:59] <strong>Andy Fragen:</strong> I have two adult children, 29 and 23, and I did not encourage them in the least to go into medicine. I think they saw how hard I worked, or how much I worked, and I&#8217;m very pleased to say that neither one of them went into healthcare. I think it&#8217;s just a changing field.</p>\n\n\n\n<p>[00:10:16] <strong>Nathan Wrigley:</strong> Yeah. Where did your interest in WordPress, or coding come from? Is this something that you&#8217;ve had as a child, or did you pick this up later in life?</p>\n\n\n\n<p>[00:10:23] <strong>Andy Fragen:</strong> I took a coding class in college, not my major. But I graduated from college in 1985 as a senior, the first time they had an intro to microcomputers, and there was this new computer out called a Macintosh. And it looked fascinating. And the class had a lab, you could either choose to be in the Macintosh lab or the PC lab. And honestly it was a freshman level class, I took the class just so I could do the lab and learned how to use the computer. And on graduation I bought one, and I&#8217;ve been using Macintosh computers since 1985.</p>\n\n\n\n<p>[00:10:57] <strong>Nathan Wrigley:</strong> So it is not really from childhood this, I guess maybe, I don&#8217;t know exactly how old you are, but certainly at my age, computers were a brand new thing. You couldn&#8217;t really do a great deal with computers back in the day. But I picked up the interest when I was probably a similar age to you, and it just kind of blossomed in me, and I just got really into it. And although it&#8217;s become what I do for a living, I can well imagine that if I hadn&#8217;t have done it for a living, it would&#8217;ve been a big part of my life anyway, a little bit like you by the sounds of it.</p>\n\n\n\n<p>[00:11:23] <strong>Andy Fragen:</strong> I look at it as an interesting hobby. It&#8217;s a lot about problem solving, and it&#8217;s a lot about making a repetitive process simple, defined and consistent.</p>\n\n\n\n<p>[00:11:34] <strong>Nathan Wrigley:</strong> Yeah. We&#8217;re going to talk now about something which is new in WordPress, and it&#8217;s automatic rollbacks. I don&#8217;t know if there&#8217;s a more grandiose title than that.</p>\n\n\n\n<p>[00:11:44] <strong>Andy Fragen:</strong> We call it, I mean, internally we call it rollback auto updates, that&#8217;s just part of it though. Initially we just called it rollback.</p>\n\n\n\n<p>It&#8217;s taken several years, and many cycles to kind of get into Core. And part of the issue was, when we first had it, a lot of Core committers don&#8217;t want to touch something, or don&#8217;t want to commit something that touches such a large piece of WordPress, such as plugin updates, or theme updates. And as you can imagine, everybody had a lot of trepidation. And it was a big enough project that somebody who wasn&#8217;t directly involved in it, if they left and weren&#8217;t paying attention for several months, they&#8217;d come back and whole things were new again.</p>\n\n\n\n<p>[00:12:24] <strong>Nathan Wrigley:</strong> Right. Let&#8217;s describe what it is. So this is my understanding of it. A couple of years ago it feels like now, we got this option in the plugin screen to automatically update plugins. And it may be that almost everything in your WP admin, plugin wise, you can automatically update. So you don&#8217;t check a box, but in effect you check a box.</p>\n\n\n\n<p>And from that moment on, that plugin, or all the plugins, if you decide to go that route, will automatically update in the background, so you don&#8217;t have to think. I guess it&#8217;s a part of a broader initiative to make WordPress as automatic as possible, so that you don&#8217;t have to log in if you&#8217;re an inexperienced user, or you&#8217;re just not really bothered about WordPress, you just want a website. And it&#8217;ll just all tick over in the background and keep itself updated.</p>\n\n\n\n<p>Now that&#8217;s great, except when there&#8217;s a problem with the plugin update, and the updating automatically breaks something. You know, you come back and either you&#8217;ve got an email to say that things have gone wrong, or you just go to your website and discover, why does my website now not function anymore?</p>\n\n\n\n<p>The initiative here was to make it so that some automatic detection mechanism would update the plugin, throw an error, say, there&#8217;s a problem, wait, roll it back, so go back to the previous safe version, and go from there. And so everything in theory should be good. Now that all sounds so straightforward to say, but just before we hit record, you indicated to me, and let&#8217;s get into this really granularly, you indicate to me that it was anything other than straightforward. Now, why was that?</p>\n\n\n\n<p>[00:13:54] <strong>Andy Fragen:</strong> So Core has had the ability for a failed update to revert, try again, I&#8217;m not quite sure of the process, since about 3.5 or 3.7. And the ability to roll back a failed update for a plugin, or a theme really just wasn&#8217;t around. Colin Stewart and I, and Paul Baron had kind of gotten together on trac tickets about rolling back, and I think it was Paul&#8217;s initial trac ticket about it and, no, I don&#8217;t remember the number offhand, that really got us started. And it was intriguing to all of us on how to do it, and where to go.</p>\n\n\n\n<p>And so we get together in private DMs, and discuss it, and kind of try and figure it out. We would overcome problems and basically create the solution, and I&#8217;d put it in a plugin so that we could test. And what we found was, well, once we got to parts where we had the whole solution, and we had a whole solution for quite a while, including the auto updates before we even had any of it committed.</p>\n\n\n\n<p>But again, as I say, it was so complex and, you know, when you have millions of sites, and 45% of the web, and all of them are doing updates to plugins and themes at any given time, it&#8217;s like touching the third rail. I mean, sometimes you can kind of get away with it, but more often than not, you could potentially kill yourself.</p>\n\n\n\n<p>So we never had a Core committer deeply involved in it. We had some that came and would give us advice on how to do things, or not do things, and we would seek to solve those issues and those problems. But without having someone with commit access, it made it very difficult to actually get things in. Colin now has commit access, and he got it just before the rollback was complete. But again, he&#8217;s like, I don&#8217;t feel comfortable, as my very first commit, committing this big part of Core.</p>\n\n\n\n<p>After we&#8217;d had it done for a while, there was a discussion on the trac ticket about what it would take to test it. And one of the Core committers suggested that we test it on thousands of sites, of various different server setups, to ensure that it didn&#8217;t cause issues or problems.</p>\n\n\n\n<p>Now, conceptually I do understand that, because WordPress can run on a vast variety of installations, and hardware, and virtual environments, and all sorts of things. You don&#8217;t want to screw it up. You don&#8217;t want to brick somebody&#8217;s site consistently.</p>\n\n\n\n<p>The problem is, I don&#8217;t think anybody&#8217;s ever been asked to do something so extensive before. And so we basically found that it was almost impossible. I was at the first WordCamp in San Diego, the first one after Covid, and I literally went around to all the hosts and said, I need you to test this, I need you to test this, I need you to test this. And everyone was very agreeable, but they would test it on their environment, right? Make sure that it worked in their system, but probably only on one site that was a test site, and not in production on anywhere else. And I&#8217;m not quite sure that that&#8217;s what they were looking for.</p>\n\n\n\n<p>We only kind of overcame that process when we broke it down in smaller pieces. So rollback started out with getting, let me go back. Currently, the way Core works, Core updates work, and the way plugin and theme updates work is, Core would download the package, the update, it would store it on your system locally. It would run some checks, it would re-expand the zip into the upgrade folder, and then it would do a recursive file copy into the location of the plugin directory, or the theme directory. Although it would also delete the file first, before it that recursive copy.</p>\n\n\n\n<p>Consequently, if something failed, your plugin was gone. You had to go find it again and reinstall it, if somewhere along that process failed. The first thing we did is try and, well, one of the first things I did was made it a zip file. So I back up the plugin or theme is a zip file, store that, do the update. If it failed, I&#8217;d reinstall the zip file. But we heard from several hosting companies, that may be taxing on resources creating, and zipping, and unzipping files at that scale.</p>\n\n\n\n<p>And so I&#8217;m like, okay, let&#8217;s come up with something else. And what we ended up with is changing that recursive file copy to use PHPs rename function, with the recursive file copy as a backup, as a fallback for it. Now, you would think that, since this runs on PHP, and everybody has PHP installed, that it would work out just fine, except VirtualBox and VVV. And so these are custom local dev environments.</p>\n\n\n\n<p>We did put out a call to the hosting companies, does anyone offer a virtualised solution using VVV or VirtualBox? And the answer was, no. We kept getting failures using the PHP rename and VirtualBox. Partial file transfers, partial rights, and it took a lot of investigation to figure it out. Peter Wilson, one of the Core committers from Australia, uses VVV as his dev environment. And when you get a Core committer, and some basic part of this isn&#8217;t working, it&#8217;s not going in.</p>\n\n\n\n<p>So we got the fallback. We did a lot of research, and it appears, from some Composer bug reports, that VirtualBox has sort of a delayed file right. Go figure. And they found that by adding a 200 millisecond delay to things, it solved the problem. We added a 200 millisecond delay to things, it sort of solved the problem. We later had some help from, I want to say it was Andrew Ozz, who&#8217;s clearly been around WordPress for a long time. And he suggested we try flushing the memory for, after we did the rights and stuff.</p>\n\n\n\n<p>And we eventually got it so that it did work by doing that. We had a PR for essentially a new function, for a move directory, move dir, underscore dir, that replaced, copied, the recursive file copy, copy dir, in the update process. Copy dir&#8217;s still there as a fallback, but we now had the PHPs rename function working in every environment that we had, and consistently, even with VirtualBox and its limitations, or its peculiarities.</p>\n\n\n\n<p>And that was the first big step we had towards getting committed. And I want to say that was committed in 6.2. So if you think back, all the stuff we had, aside from that little piece with the VirtualBox, was all done before 6.2. And the final piece just got committed in 6.6. So when I say this was years in the making, it really was years in the making.</p>\n\n\n\n<p>The second part we did was just on manual updates. So we had, when you click a manual update, several things can happen during the course of the update process. Somewhere along the way the file copy, or the download can fail, the file copy can fail, certain pieces can be missing. So we created enough checks during that process and returned errors, such that, if any of those pieces failed, how we started with is storing the file to be updated in a temporary update folder.</p>\n\n\n\n<p>And so if any of those processes failed, we would go and restore that folder using our moving function. The process was actually very quick in testing, on the order of, you know, less than a second because PHP rename just sticks the whole chunk and moves it. So you have to remember the first part of the process on the update is, you delete the plugin in the folder that it&#8217;s in, and so as you&#8217;re downloading and installing the other one, you&#8217;ve got nothing left.</p>\n\n\n\n<p>The normal update process, you&#8217;ve deactivated the plugin, you reinstall it, and then it reactivates. That&#8217;s in a manual process. Remember when we get to the automatic updates how that&#8217;s different, and where it can be problematic. So we had restore functions, we had our delete functions, because after we had a couple of cron tasks that we created to clean up after ourselves on a weekly basis, so that those copies wouldn&#8217;t be around anymore. Even on a shutdown function, we would delete the folders, and then on a weekly basis we&#8217;d make sure they were all gone.</p>\n\n\n\n<p>So once we got that working and committed, we had basically a safe method for manual updates. So if someone would go to the dashboard, they&#8217;d click update, if somewhere along the way their connection lagged, or their connection to wordpress.org was delayed, and things took too long, and the server timed out, it would reinstall the previous version. And you would still show that the plugin or theme required an update, because you&#8217;ve now reinstalled the previous version that was installed.</p>\n\n\n\n<p>We didn&#8217;t have to go out to .org and re-download anything. Part of that is really what limited the resources that we were acquiring for servers. Because all we were requiring them to do was copy a directory back and forth to different locations.</p>\n\n\n\n<p>[00:22:59] <strong>Nathan Wrigley:</strong> What&#8217;s the flag for success or failure in this case? What&#8217;s the thing which determines that the update hasn&#8217;t succeeded?</p>\n\n\n\n<p>[00:23:06] <strong>Andy Fragen:</strong> It depends on different parts of the process. So if there&#8217;s a failure in the download package, and the downloading the package, there are several parts that we&#8217;re already checking, where it would succeed or fail. We either created new WP errors for those, and returned those values, and so when we looked for those returns, if they happened, we would send it to the functions we wrote to restore from the backup or not.</p>\n\n\n\n<p>So we&#8217;d start the process by creating the backup. And then if the process continued on without error, the backup just got deleted at the end. If there was an error in the process, the backup was restored. You&#8217;d basically be right back to the place you started from, requiring an update to either the plugin or a theme.</p>\n\n\n\n<p>[00:23:44] <strong>Nathan Wrigley:</strong> Yeah. Does the user in this scenario of the website, do they get some sort of notification that, actually, this didn&#8217;t work out? We&#8217;ve rolled back, your site is now working, but the thing that you intended to do didn&#8217;t happen. And if they do, does it list out what the problem was? Like it was, I don&#8217;t know, a download failure, or the plugin seems to be malfunctioning.</p>\n\n\n\n<p>[00:24:03] <strong>Andy Fragen:</strong> You would see an error message, either in, if you were using the shiny updates on the plugins page, or the themes page, you&#8217;d receive the error message, and kind of a brief description of where the error was. Either the directory wasn&#8217;t writeable, or there was a download problem, or whatever the error happened to be. And then you&#8217;d be back at the place, if you refreshed your screen, it would show that you still needed the update.</p>\n\n\n\n<p>If you did the update from the Core update page, you know how the update shows, here&#8217;s the zip I&#8217;m downloading, it&#8217;s doing this, you would see an update error there. And part of what we put in the test plugin, or the feature plugin, was a way to simulate an error. And so we simulated a download error. And so you&#8217;d see that, and it would say it&#8217;s simulated error.</p>\n\n\n\n<p>[00:24:47] <strong>Nathan Wrigley:</strong> If I was to receive this error, let&#8217;s say that I&#8217;d put a plugin onto automatic updates, and I had received a failure, does your setup then say, okay, permanently stop automatically updating this, or is it more a process of wait for a day, or is there a setting that I can engage to say, try again arbitrarily later, just keep trying the update, or is it a case of, okay, we&#8217;ve identified there&#8217;s a problem here, now it&#8217;s up to you to go and check and fix?</p>\n\n\n\n<p>[00:25:15] <strong>Andy Fragen:</strong> Well, at this point it&#8217;s just a manual update, right? So if the manual update fails, you refresh the page, it&#8217;ll say, update now again. And you just try again. Our assumption at that point is, if you continue to get an error because your upgrade path isn&#8217;t writeable, well, it&#8217;ll tell you that, and you probably have to check your permissions on the folder, and make sure that they are writeable. If there&#8217;s some other issue involved in downloading the file, the usual assumption is that will go away. And so you try updating again, and maybe the next time you update it works. You&#8217;re done.</p>\n\n\n\n<p>[00:25:47] <strong>Nathan Wrigley:</strong> I guess one of the goals of automatically updating plugins was that you could have a site that you essentially could have an autopilot. And it could be, let&#8217;s say a brochure site, where the intention really is just to have a site and never look at the backend ever again.</p>\n\n\n\n<p>[00:26:01] <strong>Andy Fragen:</strong> We haven&#8217;t gotten to that part. That was part one and two. The third part was the auto updates. Now, this does not apply to themes, and I say that doesn&#8217;t apply to themes because themes are kind of a different beast. And I guess we probably could figure that out, and maybe that&#8217;s the next, on the part four, which we haven&#8217;t really defined yet. But there&#8217;s certainly a lot more plugin updates than theme updates.</p>\n\n\n\n<p>The difference between an auto update and a manual update is the auto update runs in a cron task. The auto update does not deactivate the plugin, update the plugin, and then reactivate the plugin. The plugin is active the entire time, which means if the plugin has an error in it, and the update completes successfully, you&#8217;ll have a white screen. And this has happened.</p>\n\n\n\n<p>What we needed to do was figure out how to catch the error, essentially. And I want to say, the first iteration, there are basically three types of error handlers in PHP. I was checking every single one of them to make sure that we would catch the error. Now the problem with doing that is the shutdown error handler catches everything. So sometimes you catch the error twice, and that&#8217;s okay, but it was trying to figure out how to make sense out of some of those errors that was difficult.</p>\n\n\n\n<p>And so we had a list of certain types of errors sometimes, and we would cause a rollback if we spotted any of those things. And it worked. For all the errors that we figured out, it worked. That&#8217;s not what we went with though, because what they don&#8217;t tell you is, when you write these things and you have feature plugins, is that, the way they integrate into Core, when you&#8217;re trying to commit them, may be totally different. So integrating it into Core is like, okay, now I need to update this file in Core, and that file in Core. Some of those things we could not duplicate in a plugin.</p>\n\n\n\n<p>One of the things that we ended up with was a change to the load PHP file. There&#8217;s no way to mock it, there wasn&#8217;t. I couldn&#8217;t duplicate it, it loads too early, I couldn&#8217;t replace it. So we were just, okay, this could be the problem. So we tried to work around it a little bit, which is fine too. Colin did a little bit more digging and found out that, if you edit a plugin in the plugin editor on screen, it does a loop back check as it saves, to determine whether or not there&#8217;s a fatal in that plugin, and it won&#8217;t save it for you. And so we reutilise that loop back, as a test for whether the reactivation, or the installation of the plugin causes an issue or not.</p>\n\n\n\n<p>We found it worked well. It greatly simplified what we were doing. I don&#8217;t even want to get into the fact that I was using reflection, and reflected objects, and reflected methods, and all sorts of things to fix it in the plugin in the first place. It worked and, yes, there are places in Core that uses the reflection classes, and reflection objects, and things like that, but not many. At least we knew we weren&#8217;t breaking new ground with that. But in adding that to Core, it made it a lot easier to do the loop back request.</p>\n\n\n\n<p>Part of the issue in testing was we didn&#8217;t really have a file that would accurately fail every single time it was updated. I make an updater, it was easy to create a file that would fail on an update. So that&#8217;s all we had for a moment, until Aaron Jorbin piped up in one of the Slack meetings and said, here&#8217;s a plugin that&#8217;s been in the repo for a while, the title is, DO NOT USE THIS PLUGIN! And it is exactly for that. It&#8217;s set to fail on an update, it&#8217;s set to fatal on an update. And so now we had a plugin that other people could use more successfully, they didn&#8217;t have to go and install my updater or to find it.</p>\n\n\n\n<p>Having both of them installed though did help things out because there&#8217;s all the scenarios you have to test for. What happens when you have a plugin that runs, and then a fatal, and then another plugin update that needs to happen, and maybe another fatal after that, or maybe two fatals in a row? All these things you don&#8217;t really think about, but you should test for, or you have to test for.</p>\n\n\n\n<p>And it&#8217;s all manual testing. I had no idea how we could ever write, and then testing for it otherwise, without just doing it manually. I want to say, the first time we tested it for the update rollback, we picked 13 of the largest plugins. And when I say largest, some of the more complex plugins, as far as folders, and files, and size to run, and to see whether we get timeouts, whether they would complete successfully, and things like that.</p>\n\n\n\n<p>We found what worked well, and that&#8217;s one of the places we found that VirtualBox error, because it would just time out. It wouldn&#8217;t complete it. We were making it fall back to the file copy originally, and nobody is going to have this list of files to recursively update at any one time, except us and testing, but it just wouldn&#8217;t work consistently. And so that was before we got the move directory function in and working for it, and then it worked.</p>\n\n\n\n<p>[00:30:59] <strong>Nathan Wrigley:</strong> What I&#8217;m getting from this is you must have incredible patience. Years and years and years of trying different things, problems emerging that you couldn&#8217;t foresee, solutions that you tried to implement, and then discover, okay, that didn&#8217;t work, let&#8217;s try something new. I don&#8217;t know how good you are at not throwing things at the wall, but it feels like there was an opportunity here to throw things at the wall.</p>\n\n\n\n<p>[00:31:19] <strong>Andy Fragen:</strong> You&#8217;re making an assumption Nathan, who says I don&#8217;t throw things at the wall.</p>\n\n\n\n<p>[00:31:23] <strong>Nathan Wrigley:</strong> Was it a fairly, how to describe this? Did it surface things about the open source project, in terms of the way it&#8217;s done, that you wish were different?</p>\n\n\n\n<p>[00:31:33] <strong>Andy Fragen:</strong> Certainly. You know, one of the things that certainly helped move us along was having a lead developer, in this case Andrew Ozz, take an interest, and help answer questions and move along the way. He helped us tremendously with the plugin dependencies feature as well.</p>\n\n\n\n<p>Since none of us were committers, and it&#8217;s a big feature, it would be nice if the leadership assigned experienced Core committers to feature projects, assuming that most of the people involved in the development of those projects aren&#8217;t Core committers. Another reason I should never have commit privileges.</p>\n\n\n\n<p>[00:32:11] <strong>Nathan Wrigley:</strong> Yeah, it sounds like from everything that you&#8217;ve said, that the process could have been expedited in a variety of different ways.</p>\n\n\n\n<p>[00:32:17] <strong>Andy Fragen:</strong> It certainly could have. And some of that made for a lot of frustration because we would have experienced Core committers who would look at the project every couple of months maybe. It was a huge undertaking in total. And it was really only by splitting up into smaller pieces that we were able to accomplish it at all.</p>\n\n\n\n<p>[00:32:36] <strong>Nathan Wrigley:</strong> Yeah, and also the dramatically impactful nature of what you were doing. And I&#8217;m sure the irony&#8217;s not lost on anybody, that you could have achieved fatal errors in the attempt to remove fatal errors. Just the idea that such an important thing, from your perspective, maybe didn&#8217;t get the, how to describe it, didn&#8217;t get the.</p>\n\n\n\n<p>[00:32:55] <strong>Andy Fragen:</strong> Attention.</p>\n\n\n\n<p>[00:32:55] <strong>Nathan Wrigley:</strong> Yeah, the attention, the sort of level of importance that it might have done given the impactful nature of it.</p>\n\n\n\n<p>That now is in the past though, this is now a feature of WordPress. How much of a hand on heart moment, and I don&#8217;t know if that&#8217;s the right phrase, how difficult was it for you on the day that the version of WordPress that the shipped with came out? Were you fairly confident at that point that all the things were going to be fine?</p>\n\n\n\n<p>[00:33:18] <strong>Andy Fragen:</strong> I&#8217;ve been running the plugin, which has had a version of the rollback code in it on sites for years, with plugins that would fatal on update. Now, the auto update will only check for the fatal update if the plugin is active, right? Because if it&#8217;s not active and it updates, all you&#8217;ll happen is, is when you go to activate it, it won&#8217;t let you activate it because it&#8217;ll say it fataled. And so you&#8217;ll have to go and reinstall another version or something, but it won&#8217;t take your site down. We specifically don&#8217;t test for plugins that aren&#8217;t active. Honestly, we&#8217;ve been running the code for so long on our own stuff, I wasn&#8217;t worried. I mean, have you heard of anyone having a problem?</p>\n\n\n\n<p>[00:33:57] <strong>Nathan Wrigley:</strong> No, and that&#8217;s pretty remarkable. Have you?</p>\n\n\n\n<p>[00:34:01] <strong>Andy Fragen:</strong> No. Well, yes, yesterday.</p>\n\n\n\n<p>[00:34:04] <strong>Nathan Wrigley:</strong> Deliberately?</p>\n\n\n\n<p>[00:34:04] <strong>Andy Fragen:</strong> Well, it was something we found that we hadn&#8217;t honestly considered.</p>\n\n\n\n<p>[00:34:08] <strong>Nathan Wrigley:</strong> But just one individual, so far, that you know of.</p>\n\n\n\n<p>[00:34:10] <strong>Andy Fragen:</strong> So far. And I think I actually no way to mitigate it. Apparently, if you have a redirect to your homepage, the loopback doesn&#8217;t work. So what happens is you don&#8217;t see a failure, even if there is a failure. And so because you don&#8217;t see the failure, because you&#8217;re now no longer looking at your actual homepage, you&#8217;re looking at a redirect, it might work just fine. And so you don&#8217;t revert, and your site might, you know, when you go somewhere else in the site, it might fatal then.</p>\n\n\n\n<p>[00:34:40] <strong>Nathan Wrigley:</strong> Given that WordPress occupies 43% of the web, and that this endeavor of yours, and colleagues working on it, is probably now inside of millions of websites, the fact that you&#8217;ve found one character who has been able to show that it didn&#8217;t work in a, it sounds like you can mitigate more or less immediately. That&#8217;s pretty remarkable. And you&#8217;ve just, over the last 40 minutes or so, you&#8217;ve done this, it sounds like a detective story almost. Here&#8217;s a problem, we tried to fix it, this went wrong, we tried to fix that, this went wrong, we didn&#8217;t have the boots on the ground or whatever. You&#8217;ve managed to achieve it. And it also feels as if this is the kind of feature update that nobody will ever thank you for, because it&#8217;s in the background, if you know what I mean?</p>\n\n\n\n<p>[00:35:24] <strong>Andy Fragen:</strong> Oh, no.</p>\n\n\n\n<p>[00:35:25] <strong>Nathan Wrigley:</strong> Oh, good.</p>\n\n\n\n<p>[00:35:25] <strong>Andy Fragen:</strong> The people that are going to thank us for this are all hosting companies that aren&#8217;t going to see these issues anymore.</p>\n\n\n\n<p>[00:35:30] <strong>Nathan Wrigley:</strong> That&#8217;s what I meant. It&#8217;s more of an invisible.</p>\n\n\n\n<p>[00:35:33] <strong>Andy Fragen:</strong> It is exactly invisible. The user has nothing to do. All they have to do is have auto updates enabled, and their plugins will auto update. If there&#8217;s a problem or an issue, it&#8217;ll revert back, and all it&#8217;ll do is show another update again, in 12 hours it&#8217;ll try again.</p>\n\n\n\n<p>[00:35:50] <strong>Nathan Wrigley:</strong> As we said at the top of this interview, it sounds so simple, just roll back when there&#8217;s a problem, but now we know.</p>\n\n\n\n<p>[00:35:56] <strong>Andy Fragen:</strong> It&#8217;s not that the problem isn&#8217;t simple to define, it&#8217;s finding all the little pieces in creating the solution that isn&#8217;t always simple.</p>\n\n\n\n<p>[00:36:04] <strong>Nathan Wrigley:</strong> Yeah, I remember Kennedy saying, we choose to go to the moon.</p>\n\n\n\n<p>[00:36:07] <strong>Andy Fragen:</strong> Not because we have to, because we want to, or something like that.</p>\n\n\n\n<p>[00:36:09] <strong>Nathan Wrigley:</strong> Yeah, and the problem was hard, but they got over it. And we have echoes of that here. All I can say is thank you so much for making this an important thing. And hopefully, for me at least, and probably everybody else, the more invisible it is in the future of WordPress, in a sense, the better that is.</p>\n\n\n\n<p>The less time that I have to worry about plugins updating, the more time that I can concentrate on building the website, and not thinking about those things. And for the millions, millions of people who have no interest in WordPress, but just want a website, this stuff will be remarkable, but probably they&#8217;ll never know, which is nice.</p>\n\n\n\n<p>[00:36:48] <strong>Andy Fragen:</strong> You know, honestly our goal is if nobody ever knows about it, perfect. That means it works. No one sees a problem. It hopefully pushes people into clicking that little button link that says, enable auto updates, so that they keep their sites up to date. Because one of the biggest security issues in WordPress is out of date websites, or websites with out of date plugins.</p>\n\n\n\n<p>[00:37:14] <strong>Nathan Wrigley:</strong> Well, dear listener, if you are listening to this podcast, I think there&#8217;s a high chance that you obsess about WordPress. So hopefully what Andy has told us today gives you some understanding of the complexities of what&#8217;s been going on in the background, but also will make you aware that it happened. If you haven&#8217;t been reading the change log, and you&#8217;ve just updated to the latest version of WordPress, this fairly consequential, but fairly hidden feature is now available to you free of charge, on the back of Andy&#8217;s, and many other people&#8217;s labor. So just very quick thank you from me. Thank you for taking the time to do that, and thank you for chatting to me today.</p>\n\n\n\n<p>[00:37:46] <strong>Andy Fragen:</strong> It is certainly not me alone. Colin Stewart has been invaluable, and is a brilliant developer.</p>\n\n\n\n<p>[00:37:52] <strong>Nathan Wrigley:</strong> Well, a profound change to WordPress. Yeah, thank you so much for chatting with me today, I really appreciate it.</p>\n\n\n\n<p>[00:37:58] <strong>Andy Fragen:</strong> You&#8217;re very welcome, sir.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>.</p>\n\n\n\n<p>Andy is a dedicated member of the WordPress community as well as a trauma surgeon. Somehow he manages to balance the demands of his profession with his passion for the community and, as you will hear, to important work inside of WordPress Core. Even while in the operating room, waiting for patients to be prepped, Andy has been known to find moments to answer forum questions and provide support to others. It’s truly remarkable.</p>\n\n\n\n<p>Andy talks about the important topic of automatic rollbacks in WordPress, a feature aimed at reverting to a previous version if an automatic plugin or theme update fails, ensuring the website remains functional for users. I’ve managed to encapsulate the idea into the previous sentence, but as you will hear, the execution of that idea was anything other than straightforward.</p>\n\n\n\n<p>Andy discusses the origins of the rollback feature. The team working on this problem identified complexities and potential fatal errors during plugin updates and came up with a simple yet effective solution which worked, but as with so much in code, some edge cases meant that the road to a fully workable solution for all WordPress users was not quite in sight. Many times the drawing board had to be dusted off and the problem looked at once again.</p>\n\n\n\n<p>While developing this feature, numerous challenges were encountered, from finding consistent test conditions to managing technical limitations. Andy shares insights into the critical role of testing and collaboration with hosting companies, meticulous attention to detail, and problem-solving skills developed to combat issues like file write delays and loopback test redirects.</p>\n\n\n\n<p>Andy explains how the team managed to avoid fatal errors in active plugins with extensive testing and incremental improvements. They introduced functionalities like WP error checks, simulation features for testing error handling, and a new move directory function to enhance reliability.</p>\n\n\n\n<p>Andy also discusses the broader impact of their rollback efforts. Many users might not notice this new feature, but in a sense that’s how it should be. The more unnoticeable to end-users update failures are, the better. It means that sites that would previously have been broken, are now working, and that’s a win for everyone.</p>\n\n\n\n<p>If you&#8217;re interested in the behind-the-scenes development of a WordPress feature that quietly keeps your website running smoothly, and in hearing how a dedicated contributor balances his passion for WordPress with a demanding medical career, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/afragen/\">Andy&#8217;s WordPress.org profile</a></p>\n\n\n\n<p><a href=\"https://github.com/afragen/core-rollback\">core-rollback on GitHub</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2024 14:03:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Do The Woo Community: WordPress Accessibility Day with Michelle Frechette, Sarah Kornblum &amp; Ryan Bracey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=85884\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://dothewoo.io/wordpress-accessibility-day-with-michelle-freschette-sarah-kornblum-ryan-bracey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25581:\"Episode Transcript\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>Michelle:<br />Well, I&#8217;m excited because I host a bunch of podcasts. This is my first time guest hosting on the <em>Do the Woo</em> Podcast. So we&#8217;re here today at WordPress Event Talk because the three of us are going to be working on a very important event coming up. So who is <em>us</em>? I&#8217;m Michelle Frechette. I am the Director of Community Engagement at StellarWP. I&#8217;m also the Executive Director at Post Status, but all of that takes a backseat today to the fact that I am one of the organizers for an incredible upcoming 24-hour event on accessibility called WordPress Accessibility Day, coming up on October 9th and 10th. So who is the rest of <em>us</em>? I&#8217;m going to ask you to introduce yourselves, tell us a little bit about yourselves, and then we&#8217;re going to talk, the three of us, about why WordPress Accessibility Day is so important. Over to you, Sarah. Sarah, tell us a little bit about yourself.</p>\n\n\n\n<p>Sarah:<br />Hi, I am Sarah. I have my own web design company, <em>Two Dogs and a Laptop.</em> Before coming into the WordPress space and the website world, I was a middle school special education math teacher. Accessibility has a very important place in my heart because, given the right tools, anybody can do anything they want to do. So that&#8217;s why I am here today.</p>\n\n\n\n<p>Michelle:<br />I love it. I do have one question though. Does that mean you could never get another dog?</p>\n\n\n\n<p>Sarah:<br />Right now, I actually have two fosters.</p>\n\n\n\n<p>Michelle:<br />So it&#8217;s temporarily four dogs and a laptop?</p>\n\n\n\n<p>Sarah:<br />Yes, right now it&#8217;s four dogs and a laptop. The numbers change every once in a while.</p>\n\n\n\n<p>Michelle:<br />As long as the URL stays the same, it&#8217;s all good.</p>\n\n\n\n<p>Sarah:<br />That&#8217;s right. The name doesn&#8217;t change, but sometimes the number fluctuates a little bit.</p>\n\n\n\n<p>Michelle:<br />Exactly. And joining us today, we also have Ryan Bracy. Ryan, tell us about yourself.</p>\n\n\n\n<p>Ryan:<br />Yeah, my name is Ryan Bracey. I&#8217;m the Director of Web Development and User Experience at an agency called <em>Second Melody</em> based in New Jersey. I am also an organizing member of WordPress Accessibility Day, which, as Michelle said, kind of takes front row today.</p>\n\n\n\n<p>Michelle:<br />I&#8217;m excited. This is my first time organizing this event. Ryan, this is your second year, is that correct?</p>\n\n\n\n<p>Ryan:<br />Yeah, I was a volunteer three years ago and an organizer the past two.</p>\n\n\n\n<p>Michelle:<br />Oh, so it&#8217;s more than, yeah. And Sarah?</p>\n\n\n\n<p>Sarah:<br />This is my first time. I&#8217;m new to this space as well.</p>\n\n\n\n<p>Michelle:<br />So, how have you found our organization? It seems like we had our first meeting at the beginning of the year, thinking we had so much time, but now it&#8217;s coming up very quickly.</p>\n\n\n\n<p>Sarah:<br />It goes really fast.</p>\n\n\n\n<p>Ryan:<br />It really does.</p>\n\n\n\n<p>Sarah:<br />When we&#8217;re talking in January or February, it seems like the event is so far away, and now we&#8217;re here, and it&#8217;s crunch time. It&#8217;s coming up real quick.</p>\n\n\n\n<p>Michelle:<br />It sure is. Comments, Ryan?</p>\n\n\n\n<p>Ryan:<br />No, the same. Yeah, I remember a bunch of our updates being like, &#8220;I&#8217;m just in a holding pattern right now,&#8221; and then all of a sudden, it was every day something new happening. But we&#8217;re coming up to it now.</p>\n\n\n\n<p>Michelle:<br />And now we need flight control because so much is happening all at once.</p>\n\n\n\n<p>Sarah:<br />Yes, exactly.</p>\n\n\n\n<p>Michelle:<br />So what are your roles within the organizing team? Sarah, what are you doing?</p>\n\n\n\n<p>Sarah:<br />I am helping June with social media, so I&#8217;ve been doing a lot of the social media posting. She does most of it. I&#8217;m just here for moral support and backup. But it&#8217;s a lot. I don&#8217;t know how any one person does it on their own, which is why there&#8217;s a team of us, right? Because it&#8217;s not possible to do all of this. It&#8217;s become such a big day that you need as much help as you can get.</p>\n\n\n\n<p>Michelle:<br />Absolutely. It would be like seven full-time jobs if anybody tried to do it alone. It&#8217;s unlikely that one person could handle it all. If anybody could, it’d probably be Amber or Joe, but we&#8217;ll talk about them in a little while. Ryan, what&#8217;s your role on the team?</p>\n\n\n\n<p>Ryan:<br />I think Amber and Joe did it by themselves for a while, too.</p>\n\n\n\n<p>Sarah:<br />Probably.</p>\n\n\n\n<p>Ryan:<br />I am the team lead for the speakers&#8217; team. My role this year has been receiving speaker applications, reviewing them with my team, making selections, coordinating with speakers, getting them the information they need, adding them to our Slack workspace, and preparing them for the event. We&#8217;re also holding practice sessions as we lead up to the day. So, pretty much everything with the speakers is coming through me.</p>\n\n\n\n<p>Michelle:<br />Yeah, 24 hours of programming is all but on your shoulders. I know you have a team, and we all work together.</p>\n\n\n\n<p>Ryan:<br />Yeah, and day of, I&#8217;ll just be coordinating with speakers, of course. But yes, it&#8217;s not just me, there&#8217;s a whole team.</p>\n\n\n\n<p>Michelle:<br />Absolutely. You asked what I do. I am the team lead for marketing. I&#8217;ve been doing things like asking people like Bob to let us have an episode of his podcast to talk about the event. We&#8217;ve also had great team members on other podcasts and webinars for different companies to spread the word as much as possible. Which brings me to my next question: Why is web accessibility so important? Why should people attend a 24-hour event like this? We don’t expect anyone to listen to all 24 hours live, but why is it important for people to learn more about web accessibility, especially if they don&#8217;t have any disabilities themselves? Ryan, what are your thoughts?</p>\n\n\n\n<p>Ryan:<br />A lot of thoughts, but I&#8217;ll try to keep it short. So, I&#8217;ve been involved in this space for a few years now, probably since 2016 or 2017, when I started to become aware of accessibility. At first, you think it&#8217;s just about catering to people with disabilities. But as you dive in, you realize that making a website more accessible improves the experience for everyone. Better contrast, more functional UI components, structured headings—all of these make the site easier to use for everyone, not just those with disabilities. By focusing on accessibility, you put out a much better product, which benefits everyone. At the end of the day, you&#8217;re creating something that anyone in the world can use, which is how it should be. There&#8217;s a Tim Berners-Lee quote where he says the internet is for everybody, and accessibility is a way to achieve that.</p>\n\n\n\n<p>Michelle:<br />Oh, I like that. Sarah, when we talk about accessibility, I know you and I echo everything Ryan just said. I don&#8217;t know if you have anything to add, but we often hear that accessibility compromises design and aesthetics. What are your thoughts about that?</p>\n\n\n\n<p>Sarah:<br />I don’t think accessibility compromises design and aesthetics. If your design can&#8217;t be viewed by most people, what&#8217;s the point of the design? If you feel it’s a compromise, then the design wasn’t good to begin with. Accessibility means everyone can use it, no matter their background or what&#8217;s going on in their lives. Going back to my teaching background, when I made adjustments to help certain students, all the students benefited. It made the material accessible for everyone, not just those who needed extra help. The same applies to websites—accessibility helps everyone, and it’s often overlooked if you don’t personally need it. Accessibility Day starts the conversations that need to be had.</p>\n\n\n\n<p>Michelle:<br />That reminds me of something people often talk about when they say accessibility helps everyone. When curb cuts started to be required for wheelchair users, of which I am one, it also made life easier for people pushing strollers, using pushcarts, or walking with a cane or walker. Curb cuts benefit so many people, not just those in wheelchairs. Isn’t that also true of accessibility features on the web?</p>\n\n\n\n<p>Ryan:<br />Definitely.</p>\n\n\n\n<p>Sarah:<br />So true. And those little plates with bumps on them at curb cuts—those are meant for people with vision impairments, but they help everyone. If you&#8217;re texting while walking and you hit those bumps, you’re reminded that a street crossing is coming up. They benefit everyone, not just those with vision impairments.</p>\n\n\n\n<p>Michelle:<br />Absolutely. Ryan, you had something to add?</p>\n\n\n\n<p>Ryan:<br />I love bringing in real-world examples like that. It makes the case for accessibility so much clearer. The web is just an extension of that.</p>\n\n\n\n<p>Michelle:<br />I like to compare it to my experience as a wheelchair user. I walk around my house, but as soon as I go beyond 20 or 30 feet, I need accessibility features. If I approach a building with no curb cut and no automatic door opener, I can&#8217;t access it. The same happens on the web—if the tabbing doesn’t work, or the screen reader isn&#8217;t accurate, I can’t access your website, just like I can’t access stairs in the physical world.</p>\n\n\n\n<p>Ryan:<br />Yeah, that&#8217;s great.</p>\n\n\n\n<p>Sarah:<br />Exactly. And there are so many people who need the help, so you&#8217;re losing those potential customers if your website isn’t accessible. If somebody can’t access it, they’re leaving. Just like you wouldn’t try to break down a door to get into a building—you’d just go somewhere else.</p>\n\n\n\n<p>Michelle:<br />We often think of people with disabilities as being born with them or having experienced some tragic accident, like becoming blind or using a wheelchair. But the truth is, most of us—or I’ll say many of us—will end up with some kind of disability as we age. For instance, a large portion of the population will need glasses as they get older. And I think my generation, and younger ones, will experience this even more rapidly because of our constant screen use. This is anecdotal, but from my own experience, I now wear not only glasses for the computer but also bifocals. That didn’t happen because I was born with vision issues—it’s from years of screen use and aging. So, web accessibility benefits all of us as we grow older and need things like larger fonts and better contrast.</p>\n\n\n\n<p>Ryan:<br />That&#8217;s a great point. Microsoft has an Inclusivity Handbook, which is excellently written, and they break down user impairments into categories: visual impairment, hearing impairment, motor impairment, cognitive impairment. But then they also talk about the temporality of those impairments, meaning that you can have a permanent disability, a temporary disability, or even a situational one. For instance, if someone breaks an arm, that’s a temporary disability. Or if you’re a new parent, breastfeeding a child, you temporarily can’t use both hands, so you have a motor disability. Situational impairments might be something like being on a noisy train and not being able to hear your phone, so captions become really important. Accessibility helps everyone, even in temporary or situational contexts.</p>\n\n\n\n<p>Sarah:<br />I love how you mentioned situational and temporary disabilities, because those are so often overlooked. When people think about disabilities, they tend to only consider permanent disabilities, but there are so many times when a temporary or situational disability affects someone’s ability to use a website, and accessibility helps in those moments, too. For example, if you’re on the subway, you can’t listen to something at full volume, so you need captions. Accessibility just makes life easier for everyone.</p>\n\n\n\n<p>Michelle:<br />Exactly. And every time you consider these things, you increase the number of users your website reaches by making it accessible.</p>\n\n\n\n<p>Michelle:<br />I live in a condo built in 1988, and every door handle is just a knob. I walk with a cane, so if I have something in one hand and my cane in the other, I have to put something down to turn the doorknob. I just ordered brand-new handles with levers so that I can hit them with my elbow and open the door without putting anything down. It’s a simple fix, but it makes a big difference. It’s the same with web accessibility—it’s often about small changes that make things much more accessible.</p>\n\n\n\n<p>Sarah:<br />You just have to be careful not to make the doors too accessible for your cats! They might learn how to open them, and then you’ve got a whole new problem.</p>\n\n\n\n<p>Michelle:<br />Right, especially when you have guests in the restroom—awkward! But yes, you&#8217;re always being observed if you live with pets.</p>\n\n\n\n<p>Ryan:<br />I love the door example. Those are called Norman doors—doors that are confusing to use. It’s a user experience concept introduced by Don Norman in the ’90s. His example was how you don’t know whether to push or pull a door when you walk up to it. Your example ties into that—it’s about making doors, or anything, easier to use.</p>\n\n\n\n<p>Sarah:<br />Exactly.</p>\n\n\n\n<p>Ryan:<br />Something as simple as a door.</p>\n\n\n\n<p>Sarah:<br />And even with keyless entry cars now, I never take my car key out anymore. It used to be a hassle to find it in my bag or pocket, but now I just walk up to the car, and it opens. Accessibility can be like that—it makes things easier for everyone.</p>\n\n\n\n<p>Michelle:<br />I need one of those cars! My next car will definitely have more features.</p>\n\n\n\n<p>Michelle:<br />But bringing it back to WordPress Accessibility Day—Ryan, you’re the speaker wrangler, the lead speaker organizer, as we might say in WordCamp talk. What are some of the things we can look forward to that day?</p>\n\n\n\n<p>Ryan:<br />Oh boy, this is a hard question for me because I love all my speakers equally! But yes, I’ll start with the keynote. Our keynote speaker this year is Lainey Feingold, a disability rights lawyer. She’s going to talk to us about the legal landscape surrounding web accessibility, which is really in flux right now, especially with new European laws coming out. Lainey has been involved in accessibility since the early ’90s. One of her major accomplishments is the braille on ATM machines—that was because of her advocacy. So she’ll be kicking off the entire event. It’s definitely a session to attend if you can.</p>\n\n\n\n<p>We also have a wide range of topics that cover everything from beginner to expert levels. Whether you’re a content creator, designer, developer, product manager, or team manager, there’s something for you. The full schedule is up now, and you can also register on the website.</p>\n\n\n\n<p>Michelle:<br />I love that. Sarah, what are some of the topics you’re excited about?</p>\n\n\n\n<p>Sarah:<br />Oh, there are so many that I want to stay up for all 24 hours just to catch them all. It feels like if I’m not there live, I’m missing out. But honestly, there’s so much I want to see!</p>\n\n\n\n<p>Michelle:<br />Same here. As a non-developer, I’m not as interested in those more technical talks, but I’m excited for developers to hear them. I’m a content marketer, so I’m most excited about the sessions on content and design, but I plan to catch as many as possible.</p>\n\n\n\n<p>Ryan:<br />I know, it’s hard to pick favorites. But if you can’t attend live, don’t worry—all the sessions will be available on YouTube afterward, and we’re striving to have them translated into as many languages as possible. So if anyone listening speaks another language and would like to volunteer to help with translations, that would be a great way to contribute!</p>\n\n\n\n<p>Michelle:<br />And during the live sessions, we’ll have human live captioning, so the transcripts will be accurate. We’ll also have live ASL interpretation on screen during the event. While we recognize that there are different sign languages around the world, for this event we’ll be using American Sign Language (ASL). I’ve also been busy recording all the intros for the sessions that will be on YouTube afterward, so you’ll hear my voice introducing speakers and thanking our sponsors.</p>\n\n\n\n<p>Sarah:<br />Wow, that’s a lot of work!</p>\n\n\n\n<p>Michelle:<br />Yes, the dulcet tones of Michelle Frechette! (laughs) But seriously, it’s been a lot of fun. And speaking of which, Sarah, tell people how they can register and what they can expect.</p>\n\n\n\n<p>Sarah:<br />It’s a completely free event! You just need to register ahead of time. The registration link is 2024.wpaccessibility.day/register/. It’s a big register button, so you can’t miss it.</p>\n\n\n\n<p>Michelle:<br />And Bob assures us that all the links will be in the show notes for this episode, so you can find them there as well. Sarah’s wearing our official T-shirt for this year that says “Focus: It’s a Feature, Not a Bug,” which is a fun inside joke for developers.</p>\n\n\n\n<p>Ryan:<br />Yes, it comes from people reporting the focus outline (the box around links when tabbing) as a bug, when in fact it’s a feature for accessibility.</p>\n\n\n\n<p>Sarah:<br />Exactly! Focus outlines aren’t a design flaw—they enhance the design by making it easier for people to navigate the site.</p>\n\n\n\n<p>Ryan:<br />I still get that comment on almost every website.</p>\n\n\n\n<p>Michelle:<br />And if you want a shirt like Sarah’s, you can get one when you register with a donation of $50 or more. All the funds go toward running the event—paying speakers, interpreters, and captioners, and covering the costs of the website and other resources.</p>\n\n\n\n<p>Ryan:<br />Yes, and no one on the organizing team pockets any of the money. We do this because we love the community and accessibility, and we want to help others.</p>\n\n\n\n<p>Sarah:<br />If this event had a paid staff, it would cost money to attend, but we’re all volunteers.</p>\n\n\n\n<p>Michelle:<br />Exactly. Any donations go toward making the event possible. And because we operate under the umbrella of a nonprofit, donations are tax-deductible. It all goes back into the event to keep it going year after year.</p>\n\n\n\n<p>Michelle:<br />October 9th and 10th is coming up fast! Ryan, what time does the event start?</p>\n\n\n\n<p>Ryan:<br />It starts at 14:45 UTC, which is 10:45 AM Eastern time.</p>\n\n\n\n<p>Michelle:<br />And are all of our speakers from North America?</p>\n\n\n\n<p>Ryan:<br />No, we have speakers from 12 different countries this year, which is three more than last year. We’ve made a strong effort to branch out, and we have speakers from Europe, Africa, Asia-Pacific, Australia, Canada, South America—we’re very international this year.</p>\n\n\n\n<p>Michelle:<br />That’s awesome! I think around 25% of our speakers also identify as disabled, which I think is really cool.</p>\n\n\n\n<p>Ryan:<br />Yes, I have all the stats. We have 37% of our speakers identifying as male, 57% as female, 7% as non-binary, and 3% as trans. Additionally, 17% of our speakers are non-white, and 23% identify as living with a disability.</p>\n\n\n\n<p>Michelle:<br />And all of that information was volunteered by the speakers themselves.</p>\n\n\n\n<p>Sarah:<br />What other stats do you have for us?</p>\n\n\n\n<p>Ryan:<br />Four of our speakers are first-time speakers, which is very exciting!</p>\n\n\n\n<p>Michelle:<br />That’s amazing!</p>\n\n\n\n<p>Sarah:<br />We’ll definitely need to show up and give them extra support.</p>\n\n\n\n<p>Ryan:<br />Exactly.</p>\n\n\n\n<p>Sarah:<br />And we can ask questions, right? This is a live event.</p>\n\n\n\n<p>Ryan:<br />Yes, all the sessions are live, and there will be time for Q&amp;A at the end of each talk. We’re asking our speakers to limit their talks to 30 to 45 minutes so there’s about 10 minutes for questions. There will also be breaks between sessions.</p>\n\n\n\n<p>Michelle:<br />I’m going to try to stay up for all 24 hours, but we’ll see how that goes!</p>\n\n\n\n<p>Sarah:<br />All-nighters aren’t kind to us anymore!</p>\n\n\n\n<p>Michelle:<br />Exactly. Any final thoughts, Ryan?</p>\n\n\n\n<p>Ryan:<br />We’re just really excited for this year and hoping for a huge turnout. There’s no limit on registration, so if you’re interested, definitely sign up! Whether you’re new to accessibility or an expert, there’s something for everyone. You can also volunteer or donate to support the event.</p>\n\n\n\n<p>Sarah:<br />I’m super excited for this event! It’s my first time attending live, and I can’t wait to experience it.</p>\n\n\n\n<p>Michelle:<br />It’s going to be great! Thanks to both of you for joining me today, and thanks to Bob Dunn for letting us take over this podcast spot to talk about WordPress Accessibility Day. We’ll see everyone on October 9th!</p>\n\n\n\n<p>Ryan:<br />Yeah!</p>\n\n\n\n<p>Sarah:<br />Yay!</p>\n</div>\n\n\n\n\n<p>In this episode of <em><strong>Do the Woo</strong></em>, <strong>Michelle Frechette</strong>, guest hosting for the first time, joins fellow <strong>WordPress Accessibility Day</strong> organizers, <strong>Sarah Kornblum</strong> and <strong>Ryan Bracey</strong>, to discuss the upcoming 24-hour event on October 9th and 10th, 2024. Together, they chat about the importance of web accessibility, the challenges of organizing a global event, and the various ways accessibility improves the user experience for everyone. </p>\n\n\n\n<p> Whether you&#8217;re a developer, designer, or content creator, this episode highlights why WordPress Accessibility Day is an essential resource for anyone in the WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Takeaways</h2>\n\n\n\n<p><strong>Web Accessibility Benefits Everyone</strong>: The hosts emphasize that web accessibility is not just about helping people with permanent disabilities but improves the experience for all users. Features like better contrast, structured navigation, and user-friendly designs make websites easier to use for everyone, including those with temporary or situational impairments.</p>\n\n\n\n<p><strong>Small Changes Can Make a Big Difference</strong>: Simple adjustments, both in physical spaces and on the web, like curb cuts or focus outlines, improve access for a wider audience. Accessibility features benefit all users, not just those with specific disabilities.</p>\n\n\n\n<p><strong>WordPress Accessibility Day is Global</strong>: The event has speakers from 12 different countries, showcasing diverse perspectives on accessibility from around the world. This international focus enhances the inclusivity of the event and the information shared.</p>\n\n\n\n<p><strong>It’s a Free Event with a Wide Range of Topics</strong>: WordPress Accessibility Day covers accessibility for all levels—from beginners to experts. There are sessions tailored for content creators, designers, developers, and team leaders, making it a valuable resource for anyone in the WordPress community.</p>\n\n\n\n<p><strong>Inclusivity Goes Beyond Design</strong>: Beyond aesthetics, accessibility is about creating websites and digital experiences that everyone can navigate and use. Good design doesn&#8217;t compromise accessibility—it enhances it.</p>\n\n\n\n<p><strong>Live and Accessible</strong>: All sessions at WPAccessibility Day will feature live human captioning, live ASL interpretation, and will be made available on YouTube afterward with translations in multiple languages, ensuring the event is accessible to as many people as possible.</p>\n\n\n\n<p><strong>Opportunities to Get Involved</strong>: Listeners can volunteer, help with translations, or donate to support the event. This community-driven approach helps make the event free and accessible to all while ensuring that speakers, interpreters, and captioners are compensated for their work.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Links to WordPress Accessibility Day</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https://2024.wpaccessibility.day/\">WordPress Accessibility Day 2024</a></strong></li>\n\n\n\n<li><strong><a href=\"https://2024.wpaccessibility.day/\">WordPress Accessibility Day Registration</a></strong></li>\n\n\n\n<li><strong><a href=\"https://2024.wpaccessibility.day/schedule/\">WordPress Accessibility Day Schedule</a></strong></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Connect</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https://meetmichelle.online/\">Meet Michelle</a></strong></li>\n\n\n\n<li><strong><a href=\"https://profiles.wordpress.org/michelleames/\">Michelle on WordPress.org</a></strong></li>\n\n\n\n<li><strong><a href=\"https://www.linkedin.com/in/michellefrechetteames/\">Michelle on LinkedIn</a></strong></li>\n\n\n\n<li><strong><a href=\"https://secondmelody.com/\">Second Melody</a></strong></li>\n\n\n\n<li><strong><a href=\"https://profiles.wordpress.org/braceomatic88/\">Ryan on WordPress.org</a></strong></li>\n\n\n\n<li><strong><a href=\"https://www.linkedin.com/in/ryan-bracey-61288324/\">Ryan on LinkedIn</a></strong></li>\n\n\n\n<li><strong><a href=\"https://2dogsandalaptop.com/\">Two Dogs and a Laptop</a></strong></li>\n\n\n\n<li><strong><a href=\"https://www.linkedin.com/in/sarah-kornblum/\">Sarah on LinkedIn</a></strong></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2024 09:18:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Do The Woo Community: Tips for the Anonymous Product Developers About Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=85197\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/blog/tips-for-the-anonymous-product-developers-about-page/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2788:\"<p id=\"ember607\">This is a pet peeve of mine. Being a visible player in the WooCommerce (and WordPress) space, I am inundated with requests to look at stuff, connect, offer advice, all of which I&#8217;m cool with. I also keep my eye on what&#8217;s happening out there.&nbsp;Often this all happens on social media. But regardless of the quality of the product, there is one thing that bugs me.</p>\n\n\n\n<p id=\"ember608\"><strong>Who are you?</strong></p>\n\n\n\n<p id=\"ember609\">This has happened a lot of times to me. And it happened again, so it&#8217;s fresh in my mind. a month or so ago. I was on X, saw a Woo plugin that I have never heard of and I clicked through to the site. Typically, I do two things. I glance at what the extension does, then I find out who created it. I look for the about page.</p>\n\n\n\n<p id=\"ember610\">But as so often happens, there is nothing about the person, team or business behind it. Now I understand that a lot of developers are introverts. And sometimes writing about themselves can be challenging, but yet&#8230;</p>\n\n\n\n<p id=\"ember611\">Absolutely <strong>nothing</strong>.</p>\n\n\n\n<p id=\"ember612\"><strong>Where is the online authenticity?</strong></p>\n\n\n\n<p id=\"ember613\">Guess what people? I am not going to use— or buy— your product out of the blue, even if I really need it. Unless you tell me who the heck you are.</p>\n\n\n\n<p id=\"ember614\">In that last example, I did a bit more investigation and in a roundabout way figured out it was the person who had originally tweeted it. But he didn&#8217;t make it easy.</p>\n\n\n\n<p id=\"ember615\">And it didn&#8217;t change my mind about using it. Sorry.</p>\n\n\n\n<p id=\"ember616\">And not too long ago I saw a different tweet. There was no link for a handle to the plugin&#8217;s Twitter page. Lo and behold, in the description, I found who created it. Following through to the site I was kept in the dark there with little information.</p>\n\n\n\n<p id=\"ember617\">I cannot say if other people are like me or not. But I can only wonder if there is some specific reason you don&#8217;t want to let me know you are behind this plugin? Do you really think I will snag it up without any proof of credibility? And I&#8217;m not talking an about page that says something like:</p>\n\n\n\n<p id=\"ember618\">We are a dedicated team of WooCommerce developers who really understand your needs and wanted to give you a solution that would make your life easier.</p>\n\n\n\n<p id=\"ember619\">And that is it. Well, blah, blah, blah.</p>\n\n\n\n<p id=\"ember620\">About pages are important. Otherwise, in the whole scheme of things,&nbsp;you are just another speck of dust in the cosmic universe. So, please tell me, who are you&nbsp;. It will certainly help you and just may put a few more bucks in your pocket and build that needed trust.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Oct 2024 07:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 6.7 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17857\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13637:\"<p id=\"block-0eaa018b-f0fe-49ae-a80b-762dd1f69d27\">WordPress 6.7 Beta 1 is ready for download and testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is under development.</strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.  Instead, set up a test environment or a local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 6.7 Beta 1</h2>\n\n\n\n<p>You can test Beta 1 in any of the following ways:&nbsp;</p>\n\n\n\n<table><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong>                                  </td><td>Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> WordPress Beta Tester</a> plugin on a WordPress install.&nbsp;Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the<a href=\"https://wordpress.org/wordpress-6.7-beta1.zip\"> Beta 1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong>                      </td><td>Use this<a href=\"https://make.wordpress.org/cli/\"> WP-CLI</a> command: <code>wp core update --version=6.7-beta1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a<a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20[%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20]%20%7D\"> 6.7 Beta 1 WordPress Playground instance</a> to test the software directly in your browser. No setup required–-just click and go!</td></tr></tbody></table>\n\n\n\n<p>The scheduled final release date for WordPress 6.7 is <strong>November 12, 2024</strong>. Your help testing Beta and RC versions over the next six weeks is vital to ensuring the final release is everything it should be: stable, powerful, and intuitive.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether or not you have experience.</p>\n\n\n\n<p>If you encounter an issue, please share it in the<a href=\"https://wordpress.org/support/forum/alphabeta/\"> Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so<a href=\"https://core.trac.wordpress.org/newticket\"> via WordPress Trac</a>. You can also check your issue against a list of<a href=\"https://core.trac.wordpress.org/tickets/major\"> known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the<a href=\"https://wordpress.slack.com/messages/core-test/\"> #core-test channel</a> on<a href=\"https://wordpress.slack.com/\"> Making WordPress Slack</a>.</p>\n\n\n\n<p>WordPress 6.7 will include many new features that were previously only available in the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 6.7 in the<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\"> What’s New in Gutenberg</a> posts for versions <a href=\"https://make.wordpress.org/core/2024/06/09/what-is-new-in-gutenberg-18-5-05-jun/\">18.5</a>, <a href=\"https://make.wordpress.org/core/2024/06/20/whats-new-in-gutenberg-18-6/\">18.6</a>, <a href=\"https://make.wordpress.org/core/2024/07/04/whats-new-in-gutenberg-18-7-03-july/\">18.7</a>, <a href=\"https://make.wordpress.org/core/2024/07/17/whats-new-in-gutenberg-18-8-17-july/\">18.8</a>, <a href=\"https://make.wordpress.org/core/2024/07/31/whats-new-in-gutenberg-18-9-31-july/\">18.9</a>, <a href=\"https://make.wordpress.org/core/2024/08/14/whats-new-in-gutenberg-19-0-14-august/\">19.0</a>, <a href=\"https://make.wordpress.org/core/2024/08/28/whats-new-in-gutenberg-19-1-28-august/\">19.1</a>, <a href=\"https://make.wordpress.org/core/2024/09/12/what-is-new-in-gutenberg-19-2-11-september/\">19.2</a>, and <a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/\">19.3</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s New in WordPress 6.7 Beta 1</h2>\n\n\n\n<p>WordPress 6.7 Beta 1 contains over 500 enhancements and over 500 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">200 tickets for WordPress 6.7 Core</a>. Here’s a glimpse of what’s coming:</p>\n\n\n\n<h3 class=\"wp-block-heading\">Meet the Twenty Twenty-Five theme</h3>\n\n\n\n<p>Launching with WordPress 6.7, the new default theme, <a href=\"https://make.wordpress.org/core/2024/08/15/introducing-twenty-twenty-five/\">Twenty Twenty-Five</a>, embodies ultimate flexibility and adaptability, showcasing how WordPress empowers you to tell your story with a rich selection of patterns and styles. Inspired by glimpses of natural beauty and ancestry heritage, it evokes ideas of impermanence, the passage of time, and continuous evolution–mirroring life’s journey. Experience effortless site creation with Twenty Twenty-Five and follow its progress or report issues on <a href=\"https://github.com/wordpress/twentytwentyfive\">this GitHub repo</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Zoom Out to Compose with Patterns</h3>\n\n\n\n<p>The Zoom Out view simplifies your editing experience by allowing you to create and edit at the pattern level rather than focusing on individual blocks. Easily toggle this view from the toolbar to streamline your site-building process, making it faster and more intuitive to design pages using patterns.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Media improvements&nbsp;</h3>\n\n\n\n<p>Now supporting HEIC image uploads–automatically converted to JPEG for maximum compatibility–you can add high-quality images without worrying about browser support. Plus, enjoy auto-sizing for lazy-loaded images and expanded background image options at both individual and global levels, giving you greater control over your site&#8217;s visuals and performance.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Expanding Block Supports</h3>\n\n\n\n<p>Several blocks now come with expanded support options, enabling even more design possibilities. Notably, the long-requested shadow support for Group blocks has been added, a big win for designers and theme developers!</p>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Options API&nbsp;</h3>\n\n\n\n<p>The latest WordPress release enhances the Preview Options in the block editor, empowering developers to customize content previews. A new API allows plugins and themes to add custom items to the preview dropdown menu, enabling users to see content in different formats or environments. This flexibility enriches the editing experience while maintaining the existing familiar Preview dropdown structure.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Refined Data Views</h3>\n\n\n\n<p>The Data Views introduced in 6.5 continue to be improved. This release is focused on refining the experience with a few new features aimed at making these views more flexible for customization and more functional to use.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Manage Block Bindings Directly</h3>\n\n\n\n<p>Updates to this API in 6.7 polish and open most of the underlying APIs, improving the overall user experience, and add a user interface (UI) that allows you to connect attributes with custom fields to their binding sources. This new UI makes it possible to create bindings directly in a block instead of needing to use the Code Editor. By default admin and editor users can create and modify bindings, but this can be overridden with `block_editor_settings_all or map_meta_cap` filters.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Simplified and Smarter Query Loop Block</h3>\n\n\n\n<p>The Query Loop block is improved, as it now automatically inherits the query from the template by default, eliminating the need for manual configuration. This means your posts display immediately in both the editor and on the front end, streamlining the process so users can focus on content without extra configuration needed.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Edit and Control Font Size Presets</h3>\n\n\n\n<p>An enhanced Styles interface allows for greater flexibility when creating, editing, removing, and applying font size presets. You can now easily modify the presets provided by a theme or create your own custom options. A key feature is the ability to toggle fluid typography, which enables responsive font scaling with additional options for finer control over responsiveness.</p>\n\n\n\n<h3 class=\"wp-block-heading\">View Meta Boxes in the iframed Post Editor</h3>\n\n\n\n<p>A new split view option has been introduced that allows you to access both the editor canvas and metaboxes while editing. This change will provide a consistent WYSIWYG experience between the editor and front end views.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Template Registration API</h3>\n\n\n\n<p>With this release, developers can now more easily register custom block templates without complex filters. Streamline your development process and create custom templates with ease.&nbsp;</p>\n\n\n\n<p><strong><strong>The features included in this first beta may change before the final release of WordPress 6.7, based on what testers like you find.</strong></strong></p>\n\n\n\n<p>Get an overview of the<a href=\"https://make.wordpress.org/core/6-7/\"> 6.7 release cycle</a> and check the<a href=\"https://make.wordpress.org/core/\"> Make WordPress Core blog</a> for<a href=\"https://make.wordpress.org/core/tag/6-7/\"> 6.7-related posts</a> in the next few weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during Beta &amp; Release Candidate</h2>\n\n\n\n<p>The WordPress community sponsors a<a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\"> monetary reward for reporting new, unreleased security vulnerabilities</a>. This reward doubles during the period between Beta 1 on October 1, 2024 and the final Release Candidate (RC) scheduled for November 5, 2024. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the<a href=\"https://hackerone.com/wordpress\"> HackerOne page</a> and in the<a href=\"https://wordpress.org/about/security/\"> security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Just for you: a Beta 1 haiku</h3>\n\n\n\n<p>Lines of code arise,&nbsp;<br />Testing shapes the future path,&nbsp;&nbsp;<br />WordPress grows once more.</p>\n\n\n\n<p class=\"has-text-align-left is-style-default\"><em>Props to <em><a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a>, </em><a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>colorful-tones</a>,</em> <em><em><a href=\"https://profiles.wordpress.org/courane01/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>courane01</a>, <a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a>, <a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</a>, and <a href=\"https://profiles.wordpress.org/priethor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>priethor</a></em> or reviewing and collaborating on this post!</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Oct 2024 04:41:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: InstaWP Announces the World’s First WordPress Online Hackathon ‘AnyoneCanWP’\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=162356\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/instawp-announces-the-worlds-first-wordpress-online-hackathon-anyonecanwp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2545:\"<p>InstaWP, known for its innovative one-click WordPress sandbox launcher, has launched <a href=\"https://anyonecanwp.com/\">AnyoneCanWP</a>, the world’s first online hackathon dedicated to WordPress development. Registrations are open now, and participants can submit their projects until October 26.</p>\n\n\n\n<p>The hackathon will officially begin on October 11, 2024, with a <a href=\"https://streamyard.com/watch/FkyPknkrPqFi\">keynote address</a> by Joost de Valk, founder of Yoast SEO and a pivotal figure in the WordPress ecosystem. This sets the stage for an engaging competition where developers and designers can showcase their skills.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Important Dates</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Hackathon Start Date: October 11, 2024</li>\n\n\n\n<li>Submission Deadline: October 26, 2024</li>\n\n\n\n<li>Public Voting Period: October 18 – October 28, 2024</li>\n\n\n\n<li>Final Presentations and Judging: November 10, 2024</li>\n</ul>\n\n\n\n<p>To participate, individuals must first <a href=\"https://anyonecanwp.com/registration/\">register</a> with an email address to receive official details and an invitation. Participants can create their projects using InstaWP’s 1-click sandbox launcher. Projects must be completed within a 15-day timeframe using only free plugins and themes.</p>\n\n\n\n<p>During the public voting phase, which runs from October 18 to October 28, participants can promote their projects and engage with the community to gather votes.</p>\n\n\n\n<p>The hackathon jury includes WordPress celebrities, including Miriam Schwab (Head of WordPress Relations at Elementor and co-founder of Strattic), Jamie Marsland (Head of WordPress YouTube), Davinder Singh Kainth (curator of the WP Weekly newsletter), and Anne-Mieke Bovelett (Accessibility advocate and multilingual WordPress expert).</p>\n\n\n\n<p>The winner will take home $3,000, with second and third places receiving $1,000 and $500, respectively. All top ten participants will also get InstaWP credits and additional partner credits to elevate their WordPress projects and services. Plus, the top winners will receive a complimentary one-year premium account with InstaWP, unlocking a suite of advanced features and tools.</p>\n\n\n\n<p>The event is sponsored by Automattic, who also provided <a href=\"https://wptavern.com/instawp-gets-seed-funding-from-automattic\">seed funding</a> to InstaWP in 2022. For more information and to register for the hackathon, interested participants can visit the official <a href=\"https://anyonecanwp.com/\">website</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Sep 2024 18:34:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Do The Woo Community: The Do the Woo Lunch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=85827\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://dothewoo.io/blog/the-do-the-woo-lunch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2850:\"<p>For the first time, we had a invite-only lunch during the recent WordCampUS 2024. We invited our sponsors, hosts and some DTW friends. Having it during the day, and on Showcase Day, gave more opportunity to for people to fit it into their schedule. But of course, some were not able to make it as there is so much going on with meetings and other get together. But we are so happy that we were able to do it.</p>\n\n\n\n<p>What was absolutely amazing is that our <strong><a href=\"https://www.avalara.com/\">sponsor Avalara</a></strong> stepped up to sponsor the lunch. Oliver St. George who lives in Seattle is very familiar with Portland as he has lived there as well. So he was able to find us a room at the Spirit of 77, across from the convention center.</p>\n\n\n\n<p>Avalara is an exclusive sponsor of our <a href=\"https://dothewoo.io/podcasts/scaling-enterprise-wordpress-and-open-source-software/\">Scaling Enterprise: WordPress &amp; OSS</a> and a shared sponsor of <a href=\"https://dothewoo.io/podcasts/woo-devchat/\">Woo DevChat</a>.</p>\n\n\n\n<p>So a huge thank you to <strong><a href=\"https://www.avalara.com/\">Avalara</a></strong>!</p>\n\n\n\n<p>And check out some photos from the lunch. (We will be adding more soon)</p>\n\n\n\n\n<img width=\"1024\" height=\"768\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/IMG_3831.jpg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-85840\" />\n\n\n\n<img width=\"1024\" height=\"768\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/IMG_3833.jpg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-85839\" />\n\n\n\n<img width=\"1024\" height=\"768\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/IMG_3835.jpg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-85837\" />\n\n\n\n<img width=\"1024\" height=\"768\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/IMG_3838.jpg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-85838\" />\n\n\n\n<img width=\"1024\" height=\"768\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/IMG_3841.jpg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-85841\" />\n\n\n\n<img width=\"1024\" height=\"683\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/IMG_6746.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-85835\" />\n\n\n\n<img width=\"1024\" height=\"683\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/IMG_6749.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-85833\" />\n\n\n\n<img width=\"1024\" height=\"683\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/09/IMG_6750.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-85836\" />\n\n\n\n\n<p>And if you would like to see more <a href=\"https://bobwp.com/2024/09/30/my-wordcampus-2024-photo-galley/\">photos from BobWP from WordCampUS 2024, check the gallery out here.</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Sep 2024 09:12:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"Gutenberg Times: Gutenberg Changelog #108 – Gutenberg 19.3, WordPress 6.7 – Block Themes for Agencies, WordCamp Asia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=30291\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-108-block-themes-for-agencies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61363:\"<p>In this episode, Birgit Pauli-Haack and JC Palmes, engineering manager at WebDev Studios, discuss Gutenberg 19.3, WordPress 6.7 &#8211; Block Themes for Agencies, and WordCamp Asia.</p>\n\n\n\n<p>Add a summary/excerpt here</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-108-block-themes-for-agencies/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">JC Palmes</h2>\n\n\n\n<ul class=\"wp-block-social-links is-layout-flex wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-x  wp-block-social-link\"><a href=\"https://twitter.com/jpalmes\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">X</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-github  wp-block-social-link\"><a href=\"https://github.com/khleomix/\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">GitHub</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress  wp-block-social-link\"><a href=\"https://profiles.wordpress.org/khleomix/\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://www.instagram.com/khleomix/\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-facebook  wp-block-social-link\"><a href=\"https://www.facebook.com/jcpalmes/\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-linkedin  wp-block-social-link\"><a href=\"https://www.linkedin.com/in/jcmaepalmes/\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">LinkedIn</span></a></li></ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://khleomix.com/\">Website</a></li>\n\n\n\n<li><a href=\"https://webdevstudios.com/2024/08/26/webdevstudios-wordpress-block-themes/\">Embracing the Future: How WebDevStudios Is Leading with WordPress Block Themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/powder/\">Powder Theme</a> by Brian Gardner</li>\n\n\n\n<li><a href=\"https://github.com/WebDevStudios/wds-bt\">WDS-BT on GitHub</a></li>\n\n\n\n<li><a href=\"https://wdsbt.wdslab.com/\">Demo Site of WDS-BT Theme</a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2025/\">WordCamp Asia</a> </li>\n</ul>\n\n\n\n<p><strong>Announcements</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/news/2024/09/17/how-to-build-a-multi-block-plugin/\">How to build a multi-block plugin</a></li>\n\n\n\n<li><strong>DataViews</strong>\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/design/2024/09/20/data-views-update-2/\">Data Views Update #2</a> was published&nbsp;</li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=O1fIC4N_HVw\">Introduction to Data Views Developer Hours</a> (Developer Hours)</li>\n\n\n\n<li>Part 1: <a href=\"https://developer.wordpress.org/news/2024/08/27/using-data-views-to-display-and-interact-with-data-in-plugins/\">Using Data Views to display and interact with data in plugins</a>&nbsp;</li>\n\n\n\n<li>Part 2:<a href=\"https://developer.wordpress.org/news/2024/09/23/actions-from-data-views-adding-images-to-the-media-library/\">Actions from Data Views: Adding images to the Media Library</a></li>\n</ul>\n</li>\n\n\n\n<li><strong>WordPress 6.7 </strong>\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/6-7/\">WordPress 6.7 Beta 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/09/03/roadmap-to-6-7/\">Roadmap to 6.7</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<p><strong>What&#8217;s released: </strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/create-block-theme/releases/tag/v2.5.0\">Create Block Theme plugin version 2.5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/\">What’s new in Gutenberg 19.3? (25 September)</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello, and welcome to our 108 episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about Gutenberg&#8217;s 19.3, WordPress 6.7 briefly, block themes for agencies in WordCamp Asia. I&#8217;m your host, Birgit Pauli-Haack curator at the Gutenberg Times, and a full-time core contributor for the WordPress Open Source project sponsored by Automattic. For the first time on the show, I have a great pleasure to introduce to you, dear listeners, JC Palmes. She&#8217;s one of the local leads of the WordCamp Asia 2025, and in her day job, JC works as the engineering manager at WebDev Studios. Welcome to the show, JC. How are you today? How&#8217;s the weather in the Philippines?</p>\n\n\n\n<p><em>JC Palmes: </em>Hi, Birgit. Thank you so much for having me. It&#8217;s a real pleasure to join you on the show. The Philippines is still very warm today. Well, warmer than usual. We are supposed to have a typhoon coming up.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, no. Oh, no. So the Philippines is in the tropics, right? So it&#8217;s similar to Bangkok from the weather in Florida.</p>\n\n\n\n<p><em>JC Palmes:</em> More or less. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. All right. So the Philippines, I don&#8217;t know a lot about the Philippines that will change when I come over for WordCamp Asia, but the Philippines comprises of about 7,000 islands. So where do you live?</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. It&#8217;s 7,641 islands to be exact. It changes on a decade to decade basis, I guess. But yeah, I am in the Panay Island in the city of Iloilo and it&#8217;s a small island, but it&#8217;s a vibrant hub for tech and innovation. Yeah. It&#8217;s not as traffic heavy as Manila, which you will experience next year. You&#8217;ll love the people here if we come to visit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, I&#8217;m sure about it. Yeah. But when you say you&#8217;re active in the community, so you organized WordPress meetups in Iloilo, and you also organized or started the WordCamp Iloilo. When did this all happen?</p>\n\n\n\n<p><em>JC Palmes:</em> We organized WordPress Iloilo Meetup Group around August 2016, 2017.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> You almost at eight years.</p>\n\n\n\n<p><em>JC Palmes</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Over eight years.</p>\n\n\n\n<p><em>JC Palmes: </em>Started our first WordCamp in 2018.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, wow. Yeah. And then you had one 2019, right?</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. We did.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Did you also organize one after the pandemic?</p>\n\n\n\n<p><em>JC Palmes:</em> Yes, we did. We organized&#8230; Well, we had one last 2023 and opted not to do 2024 because WordCamp Asia is going to be in the Philippines and most of my local organizers here are also organizers in WordCamp Asia and volunteers as well. So it&#8217;s a lot to ask them to pay local WordCamp as well as the flagship one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. No, I wouldn&#8217;t have thought that there would be a local one when there is a regional one, because that takes a lot of out of you as an organizer or especially a lead organizer, but also if you just going to have a team organizing role, it&#8217;s a lot of work and you don&#8217;t want to lose focus on that. Yeah. I totally get it. Yeah. So yeah, we had the last month we got together because I connected with you about two things, right? There was one was the webinar for WebDev Studios on the lunch-and-learn.</p>\n\n\n\n<p>And then we also discussed, I read the article by Lisa Sabin-Wilson on the website, WebDev Studio that you started to have working with Block Themes. And then when I read through the article, I found that you had created a starter theme that your agency is going to use for projects. So today I want to talk to you a little bit about it because we get a lot of questions about how agencies work with Block Themes and all that. So I just wanted to, being with the source as the engineering manager, I think you had a major role in putting that together.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. WDSBT was, well, it&#8217;s kind of a brainchild between Lisa, me, and Mitch, our director of engineering, and it&#8217;s a starter theme. We stands for, of course, WebDev Studios Block Theme. And the goal really was to create a flexible block-based foundation that fully embraces modern WordPress capabilities while also allowing for highly customizable websites. When we initially started this, we started with Brian Gardner&#8217;s Powder theme for inspiration. But because I spearheaded the project, and really when I started this, I was learning about Block Themes, and as I go along, I found that instead of changing, adding into the Powder theme, we needed to make it entirely our own &#8217;cause we have a design system and we need to make sure that the theme that we are going to create aligns with that design system. So the original setup with the Powder theme didn&#8217;t really align with the vision, so it was mostly overhauled by me. So&#8230;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Tell me a little bit about the design system, because a lot of people think about design system that is not in WordPress, but maybe in Figma or in some other design tool. How are you working with that? Is that something that you now built into the Block Theme or is it separate?</p>\n\n\n\n<p><em>JC Palmes:</em> It&#8217;s built into the Block Theme. So what we did was take that design system, so the design system was created with blocks in mind. We have sort of redesigned the core blocks in a way that it would be easier for us to create the components that we mostly use in our projects and would be easily extendable based on, of course, on a project-to-project basis because every project is different, but all of the elements in a component are going to be the same. And the core blocks as is with our design is pretty solid, but we needed more. Well, clients needed more, and that is what our design system allows us to do. And by integrating that with the theme, it just makes our work with whatever design our senior UX designer, Jennifer Cooley creates and just makes things easier and faster.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm. Excellent. Excellent. So when you put this together, how long did it take you to from learning about Block Themes in zero learning to, &#8220;Okay. We have a solid foundation for our projects.&#8221;</p>\n\n\n\n<p><em>JC Palmes:</em> It took me probably around two, three months. It would probably take a lot, well, it would probably be faster if I already knew the structure. And I&#8217;m saying that because I&#8217;m dyslexic, so I work with patterns and learning new things kind of takes me out of my comfort zone. But because of how Block Themes in general are structured, it&#8217;s structured enough for me to pick up the patterns right away. And it took two, three months before we are actively using it on projects. So we&#8217;ve used it on three successful projects so far, launched projects.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So what did you find coming from the classic theme in the agency? So what you found easy to do with or easier maybe in switching to Block Themes and what did you think was very hard?</p>\n\n\n\n<p><em>JC Palmes</em>: So what was relatively easy is the process of working with native WordPress blocks. That&#8217;s the mouthful. Again, my brain works with patterns, right? I&#8217;m not sure if it&#8217;s going to be the same for other engineers, but that was what&#8217;s easy for me. And because of that, it kind of provided us with a solid foundation and really allowed for quick implementation of reusable design elements, which is integrated in our design system. And what was hard, of course, was transitioning from our wd_s PHP-based framework to a block-based approach. Although before it was transitioned into Block Themes already. It was a hybrid theme, but we were mostly using it for PHP based framework still, but transitioning meant rethinking of the entire development process, and that takes a while for it to click, and we are getting there. Again, as I mentioned, we&#8217;ve successfully launched three projects. One of those is a really big site and well, the last project that we launched is the first TrueBP Build where we did not really use any shortcuts, I guess.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Good. Good. Good.</p>\n\n\n\n<p><em>JC Palmes:</em> And it&#8217;s also probably one of the most successful launches that we&#8217;ve had with regards to performance and page speed and all those fun stuff. It&#8217;s a site with 18,000 plus users and it got 100 performance scores on page speed and 93 on mobile, 100 on desktop, 93 on mobile, and 93 on mobile was big.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>That&#8217;s awesome. Congratulations. Yeah.</p>\n\n\n\n<p><em>JC Palmes: </em>Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So you have a team of developers that also had a different level of familiarity with Block Themes and blocks. How did the transition work for them? What were the blocks mostly?</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. So the team that I worked with at WebDevs teachers for this particular project are, well, all of the engineers that I have on WebDevs teachers are amazing developers. The theme that created this site already established in Block Themes, although didn&#8217;t have the actual experience of building one for clients. They built one personally as I did, and I worked with them closely to make sure that we learned together.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Excellent.</p>\n\n\n\n<p><em>JC Palmes:</em> That&#8217;s best, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm. Yeah.</p>\n\n\n\n<p><em>JC Palmes: </em>And there were a lot of gutters we had to pull in Ryan and Nick.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> You mean Ryan Welcher and Nick Diego?</p>\n\n\n\n<p><em>JC Palmes:</em> Ryan Welcher. Yeah. Ryan Welcher helped us a lot and figuring things out, especially with Block Bindings, that unblocked a lot of stuff for us.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Block Bindings, so it&#8217;s amazing, especially because it works so much with the meta fields and you can have your own data sources. Yeah. So what I often heard from agencies is that they don&#8217;t use core blocks, but that seems to be different in yours, in your case, that you mostly base it all on native core blocks and only have variations and primary block styles that you extend them to or with. So I think that&#8217;s a great way to leverage all the work that the developers do in core to bring those forward and you can build your sites on it.&nbsp;</p>\n\n\n\n<p>The last question I have on that, and then I think we can move on unless you want to say something more, is so with the Block Themes, there is also your clients are now able to create their own templates or modify the templates. Is that all open to them or what&#8217;s the training about? What&#8217;s the implementation at the clients? What&#8217;s the process there to give them that freedom?</p>\n\n\n\n<p><em>JC Palmes</em>: It&#8217;s open to them, but we did add in some guard rails, particularly with what we&#8217;ve set in theme Jason, but then again, it&#8217;s WordPress, it&#8217;s open for clients this time around. We did not sort of think deeply, I guess? That&#8217;s the only word they can really think of right now. Features are with a website that is designed for clients, you&#8217;ll have to be very careful with telling them what to do, how to use this block, how to figure things out.</p>\n\n\n\n<p>And with Block Themes, because they&#8217;re able to just create an entire template at an entirely new header and all those stuff, we made sure that we have all of the documentation ready for them. Documentation that is part of WordPress, we just give them the link to that because you don&#8217;t have to change it out. It&#8217;s all there for them to read. We fully document any custom block that we create. And also all of the custom blocks that we do are also just core blocks. We opted to always do core blocks first if it&#8217;s doable, and just go the other route if not. But so far we were able to do everything just using core blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Core blocks. Yeah. Wonderful. Excellent.</p>\n\n\n\n<p><em>JC Palmes:</em> And clients showing them how to use the website and with Block Themes, we thought was going to be hard. It wasn&#8217;t it. They were very happy with just having that freedom and being that it&#8217;s intuitive enough for them to just go in and add in their content. It&#8217;s just amazing to see.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So when you have one of these large projects, how many block patterns do you&#8230; What&#8217;s the good number that you use there? Is it 25 or is it 50 or is it&#8230; Yeah. I heard other people have 58 patterns in there, or 58 new blocks.</p>\n\n\n\n<p><em>JC Palmes:</em> Oh wow. That&#8217;s a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>JC Palme</em>s: Because we are leveraging core blocks, we are actively using them for everything. We have variations. So BT, WSBT, we can add in variations with just a couple lines of code and eight variations that variations and block variations. You don&#8217;t really need to create that many patterns or blocks because then they&#8217;ll be able to just use it. But of course, if there&#8217;s a sub layout, we create a pattern for that, a template pattern so that they can just add that in a page and then just change things around. I&#8217;m not exactly sure how many patterns we did for this site. I know that it&#8217;s not 50 plus, it&#8217;s less than that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay. All right. Okay. So if listeners are interested in learning from you, and I know developers like to look at code and theme developers even more, especially your theme JSON and how you set up all the assets. And so your theme is available on GitHub, that&#8217;s public record, right?</p>\n\n\n\n<p><em>JC Palmes: </em>Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s in a public record.</p>\n\n\n\n<p><em>JC Palmes:</em> It is public now. It was silently public for the past few months, and then we opened it up publicly release this post when we set out version 1.0, and it&#8217;s that to go up to 1.5 by this week with some modifications with the versioning cache buster, and then fix this particularly to the mobile menu because that needs a lot of love.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It does. Yes. Yes. Absolutely. Yeah. Especially when you have things that are you want on a desktop, but you don&#8217;t want them on the mobile and you want to kind of stack things differently in a different order. It&#8217;s really hard to implement that. Yeah. Totally get it.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So I will show in the show notes if that&#8217;s okay with you, the GitHub repo for the WDS-BT theme. Well, maybe you could come up with a cuter name.</p>\n\n\n\n<p><em>JC Palmes:</em> We just really call it BT.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, of course. Block Themes, I get it. Yeah. And it&#8217;s the acronym from your company, WebDev Studio.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Totally get it. I will share that. And I also will share, again, the link to the article that Lisa Wilson put together in the show notes so you can kind of look through it to your listeners. But I find it very interesting to talk to you about that. So thank you for sharing all your insights on that.</p>\n\n\n\n<p>JC Palmes: Thank you.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So dear listeners, we have a few announcements for you, and it&#8217;s mostly about what&#8217;s published. So there&#8217;s a data views update number two, has been published on the design make blog with new updates on cam-sounds like what are new features on the data views. There&#8217;s some great work being done there. You can catch up with that. So it was the primary filter visibility has been changed. Then you can reorder table columns and view options. So you can hide columns, a feature that was available in the WP admin, but not always all columns and not always all columns are in there, so you can get them in and out.</p>\n\n\n\n<p>And then also have a featured image and the title field in the display for pages. And then you can pin columns and rows. And the advanced filtering is really great. You can have and and/or filtering categories in tag or is any out of particular list of tags. So when you&#8217;re looking at the 2,000 or 20,000 blog posts, you can narrow down the filtering quite a bit in the admin section there. So check it out, I share it in the show notes. Then there&#8217;s two more posts on the developer blog. So if you went to block development more on the beginner side, there&#8217;s an article on how to build a multi block plugin.</p>\n\n\n\n<p>So with the create-block scaffolding tool, we had a similar article about two months ago, but this is a little bit of a different approach. So you get more variations on how you can approach that, and it&#8217;s really great because it gets you step by step through that tutorial. Troy Chaplin is a new writer on the developer blog, and he is from Ottawa, Canada and is writing on the second blog now&#8230; blog post. And the second blog post was actually the second part of a series on data views on how you as a plugin developer can use it for your plugin in the admin section. So the first part came out a month ago, like using data views to display and interact with data in plugins. And then the second one is called actions from data views. So how to add the image that you bring in from the data into a media library.</p>\n\n\n\n<p>So it&#8217;s kind of an app pretty much that you can build there. It&#8217;s a React app and you get through in the tutorial from beginning to end. So it&#8217;s a really interesting series of blog posts. And with that, there was a data views developer hours where both JuanMa Garrido wrote the two articles that I just mentioned. But then there was also Nick Diego was in the developer hours, and Andre Manero who&#8217;s one of the developers who put this all together. And the recording I will also share in the show notes. And the last announcement&#8230; it&#8217;s not the last announcement, the second last announcement is you take it&#8217;s about WordCamp Asia.</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordCamp Asia</h3>\n\n\n\n<p><em>JC Palmes:</em> Oh, yeah, right. Okay. WordCamp Asia. So the next batch of tickets for WordCamp Asia 2025 will be released on October 3 at 12:00 PM Philippine time. I&#8217;m not sure what that is in UTC. I&#8217;m really bad with time zones.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, it&#8217;s kind of earlier in the day. It&#8217;s in the morning. Yeah. So October 3rd in the morning is the ticket release. Yes. Yeah. Awesome.</p>\n\n\n\n<p><em>JC Palmes:</em> With those who don&#8217;t know WordCamp Asia 2025 will be held at the PICC in Manila Philippines from February 20 to 2022&#8230; No, 20 to 22, 2025. So yeah, be sure to mark your calendars and secure your tickets as soon as they&#8217;re available. Maybe we can talk, if you see me just say hi.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And I just saw on Twitter a series from Sushi about the photos of the walkthrough of the organizing team in Manila. So it was, if you follow him on Twitter, I can share some links that as well in the show notes. So you can see how grand this convention center is where the conference will be held. So I&#8217;m really looking forward to that.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. They&#8217;re doing that today. I did fly out because, well, I need to fly again in the next couple of weeks. But then again, also I do have one more thing with WordCamp Asia 2025, you&#8217;re also still looking for sponsors.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. So if you or your company are interested in supporting the event, feel free to reach out. I&#8217;d love to discuss how you can get involved.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And I&#8217;ll link the call for sponsors page in the show notes so you can check it out what the options are for different levels and all that and what&#8217;s all included into the sponsor packages. I think that helps. No, that was really good. Thank you. Well, that&#8217;s a few months to go. So some people are really late in their decisions and it&#8217;s the next year, so their budget is not out yet. So I can understand that some people are a little bit hesitant to get this going. So the speaker is also, you got a lot of submissions I heard for speakers.</p>\n\n\n\n<p><em>JC Palmes:</em> A lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Was it more than last year?</p>\n\n\n\n<p><em>JC Palmes: </em>I haven&#8217;t checked yet. So I&#8217;m mentoring sponsors, operations and the technology team. Global leads are sponsoring other teams. And then one of the local leads as well, Andrew is he is mentoring venue, which takes a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Oh, yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> So we all have our hands full. We are getting there. We have an amazing set of organizers as usual, and I can&#8217;t wait to see them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I&#8217;m so grateful that everybody puts things together. And the two WordCamps Asia that I&#8230; &#8217;23 and &#8217;24 were just amazing. And I had a great time and it was great to talk to everybody there. And they were also open. And yeah, I&#8217;ve made a lot of new friends, so happy to also hopefully get there again next year.</p>\n\n\n\n<p><em>JC Palmes: </em>You should. It&#8217;s in my country.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And if I come, I&#8217;ll spend a few days. So my approach is always I come in early, maybe a week or four days early, get over the jet lag, get the lay of the land. So I don&#8217;t know. So when I want to meet people. I know where the restaurants are, I know where the venue is, but I also get to do some sightseeing in a place where I haven&#8217;t been. So if it&#8217;s the first time&#8230; Yeah. I&#8217;m really looking forward to exploring Manila the few days that I have beforehand. I haven&#8217;t booked the flight yet. I need to wait for the okay. Of course, I don&#8217;t see why not. We&#8217;ll see how that goes.</p>\n\n\n\n<p><em>JC Palmes:</em> That would be nice. Amazing. I mean, Manila is an amazing city to explore.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I&#8217;m looking forward to that.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; WordPress 6.7 Beta 1 &#8211; Create Block Theme</h3>\n\n\n\n<p>So next week, WordPress 6.7 Beta 1 is going to come out in October. On Thursday, October 1st, no Tuesday, sorry, on Tuesday, October 1st. And if you want to refresh what&#8217;s on the docket, I&#8217;ll share the link to the roadmap from 6.7 that Anne McCarthy put out. But I&#8217;m also hoping that by then after that, she also publishes a little bit more updated, because I know there is some change in the Zoom out feature, which I really love and I know the best part that I love will get in.</p>\n\n\n\n<p>What was a little bit harder was to figure out how the editing works when you edit what you zoom out on your site for design. And if you want to contribute and have some time and want to learn at the same time, keep an eye out for that. The Make test team is about to publish with the beta, the help to test WordPress 6.7 post. It&#8217;s going to be a long one, but you can pick the features that you want to learn about or you want to test about, and the more you test, the better the version becomes. So that&#8217;s a big appeal to help us testing the beta versions.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. For sure. I do want to touch on &#8217;cause you&#8217;ve already mentioned some of the big updates, right? I think it&#8217;s also worth mentioning some of the smaller fixes that don&#8217;t always get a lot of attention, but really make a big difference in day-to-day use. There are a few things that I really love personally and versus there&#8217;s the great Block theme plugin that now allows you to, no, they rename on assets when saving or exporting, and it&#8217;s a small but neat update, but that makes asset management easier for developers working with custom fonts. And we work with custom fonts a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm. Yeah. Yeah. Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> So fonts are now copied directly to the local theme folder, which is such a time saver when dealing with multiple customizations. One other update that I think is worth mentioning is removal of the categories hidden tag.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I haven&#8217;t mentioned anything about the&#8230; So when we are talking about now about the create Block Theme plugin new version that was released a week ago, and are you using in your Block Theme building process, the grade Block Theme plugin? How do you use that?</p>\n\n\n\n<p><em>JC Palmes:</em> We are. So it&#8217;s integrated in WDEVS BT, we are able to create&#8230; Well, this scaffold new blocks using a template that we have set in BT and leveraging the create-block script. So we have that added in our package JSON, and when our developers create a new block, we just run the script and it will scaffold all the files they need as part of the theme and they can just start creating a new block right away. It works right away, right away, right away. Yeah. It works. Once you run the script, it takes the template that we&#8217;ve set and then scaffold is a block and you have a very simple block showing up right away.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, okay. So that&#8217;s the create-block script. And that&#8217;s where probably Ryan came in because he&#8217;s a specialist in the…</p>\n\n\n\n<p><em>JC Palmes: </em>Yeah. That one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah. Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> And also we are&#8230; So this is an internal thing that we do with the create blocks plugin where we use it for a versioning thing or when we are doing patterns, changing patterns, and editing patterns and grading patterns. And it&#8217;s still a work in progress of course, but we are actively using that plugin and also the script and amazing plugins.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So the create block theme, you create the patterns in the editor and then you…</p>\n\n\n\n<p><em>JC Palmes:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Okay. So you export them through the create block theme plugin methods into the…</p>\n\n\n\n<p><em>JC Palmes:</em> Yes, part of. So the create-block theme plugin right now does not really take patterns, but we somehow are finding a way to override that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm. Okay. All right. Yeah. The newest version of the create block theme plugin had a few things, and you mentioned one that was the rename of the font assets, when the theme is saved when exported, there&#8217;s also an attempt to try to add the synced patterns to the theme on save.&nbsp;</p>\n\n\n\n<p><em>JC Palmes:</em> That one I have not tested yet.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. It hasn&#8217;t been out long enough probably.</p>\n\n\n\n<p><em>JC Palmes: </em>Oh, okay. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It just came out last week. Yeah. So that is definitely something to test for theme developers and that were really waiting for that to happen. And then the remove categories hidden, you wanted to mention that?</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. So removing categories hidden from the default pattern header, and it&#8217;s a very subtle fix, right? But it just cleans up the UI, making it easier to manage and organize patterns, especially when you have more than 50 plus patterns.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> So if you want to keep things tidy, you have to organize.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah. And then another new feature is that it wraps the main tag around the Query Loop instead of the post content. It&#8217;s necessary because, so the skip to content kind of goes to the Query Loop instead of the full page kind of thing. So that has solved quite a few accessibility items there. And then the last one I wanted to mention is, oh yeah, that the fonts are copied and you mentioned it as well in the local theme folder. When you use a different font for a style variation, it automatically is downloaded there and added to the theme as its folder. Yeah. Cool.</p>\n\n\n\n<p><em>JC Palmes: </em>Yeah. I actually have two more.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Go ahead.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. So you&#8217;ve mentioned the main tag that&#8217;s also one of the things, and I think that just makes it, that&#8217;s an accessibility thing that we really need to improve on and that will help ensure better semantic HTML and accessibility. And also there&#8217;s some behind the scenes cleanups that I really like and it&#8217;s removing unused styles and unused style rules in data views, and it just makes for a leaner code base and better performance.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Excellent.</p>\n\n\n\n<p><em>JC Palmes:</em> Also, the swapping of the pre-published check buttons was another nice tweak because I&#8217;m visual when I&#8217;m coding, so if something changes, I notice right away because dyslexic. I work in patterns. So if one thing changes and I think that is a really good change, I check it out and see how and why that is like one of the&#8230; it&#8217;s one of my top, it just makes it leaner and easier for me to work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I&#8217;m glad. Yeah. No. I find it very helpful to have this plugin and in combination with the site editor and then you make some changes there and it gets better and better even goes a little bit further than core, especially with the sync patterns for themes. I think that&#8217;s a little bit of a step forward that is outside of core because core is not yet ready for that and to get it into hands of theme developers to test it out and see how does it work and how good does it fit in into the development process. Yeah. So that&#8217;s our create Block Theme plugin update, and now we come from the big one, that&#8217;s the Gutenberg 19.3 plugin release.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 19.3</h3>\n\n\n\n<p>The release had about 165 PRs following 52 contributors, including 7 first-time contributors. Kai Hao was the release lead and he published a release post that I certainly will share with you in the show notes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>So there are a few enhancements that we&#8217;re going to talk about. There are also new API or one new API. I&#8217;m sorry that my voice is a little horsey. I come from a week of nasty cold and I&#8217;m glad that we can connect today. Yeah. So I&#8217;m happy that you also can take over some of the things JC with me. Okay.&nbsp;</p>\n\n\n\n<p>So the first enhancement is actually not an enhancement. It&#8217;s kind of an update on the minimum PHP requirement for the create block script, which is 7.2. You cannot be on an older PHP version anymore. And using that script to create blocks, sometimes they need to point out that thing. So in the restore, there&#8217;s a restore, the move to trash button disappeared in the document settings and people were looking for it. They found them in the three.menu, but they needed it more prominent. So it&#8217;s coming back.</p>\n\n\n\n<p><em>JC Palmes:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>JC Palmes: </em>Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So the inspector controls, so when the developer talks about inspector controls, they talk about the sidebar on the block editor and now they changed that when for custom blocks, they didn’t always have the block name in there to highlight that out. So that has changed. It was actually a bug I would think, because you want the name of the custom block name also in the inspector control. So that has been rectified and for patterns you can now change. It&#8217;s not for the patterns, it&#8217;s for when you go to add a page, your editor always comes out with a set of patterns that are available and you don&#8217;t want them. Now there is a user preference that you can switch on or toggle on and off in your preference sidebar or tool. So the modal, you can disable that modal and not have the selection in front of you. It took a while, but there was definitely something they listen to users to have that. Same with a move to trash button. The developers always, not always, but often listen to users when there is a strong emotion coming there away.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. That&#8217;s amazing. I have strong emotions with that trash button as well. Having that not there is just, it&#8217;s making things off for me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. It&#8217;s kind of disconcerting. I want to have just trash it. Where is it? Yeah.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Components</strong></h3>\n\n\n\n<p>So in the components, it&#8217;s not a public component yet, but the developers are working on a tabs block component or a tabs component, and that is actually used throughout the editor, but it&#8217;s not available yet for blocks. It&#8217;s not public yet, but you can definitely look at the PR and see how it works so you can prepare yourself and they just improve the animation and the related utilities to make it to prepare for coming out of experimentation.</p>\n\n\n\n<p><em>JC Palmes:</em> Tabs block would be amazing. We&#8217;ve had to grade our own custom tabs block just because it&#8217;s not available and having that as one of the core blocks would be really awesome.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Mm-hmm. Yeah. Same with the accordion block, I think there&#8217;s someone working on that as well. I saw some prototypes how that works. But yeah, it&#8217;s not going to come. I don&#8217;t think it&#8217;s going to come for 6.7 because they&#8217;re still in experimentation and we have what? Four days to go. Three days to go for beta, so I don&#8217;t think it&#8217;s coming.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. Just three days.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Block Library</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So what else? The block library had some changes, especially here now for the image block. I think there was…</p>\n\n\n\n<p><em>JC Palmes:</em> Oh, yeah. That one. Sorry. Yeah, with dropping multiple&#8230; not just multiple images, right? So you are now able to drop any kind of media and it&#8217;ll automatically translate to whatever that is. If it&#8217;s a video, it&#8217;ll be an actual video and images. It&#8217;s a time saver.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm. Yeah. It automatically&#8230; So if it&#8217;s all images automatically creates a gallery block.</p>\n\n\n\n<p><em>JC Palmes:</em> Gallery. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I tested it quite a bit and you need to be a little bit&#8230; When you drag and drop, you need to be quite precise with your mouse.</p>\n\n\n\n<p><em>JC Palmes:</em> With that. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. To get it next to the image that&#8217;s already there to create a gallery out of two images, but it&#8217;s just a little practice that you need. And then it&#8217;s really saving so much time to upload and download and gallery block and oh, I changed my mind. I don&#8217;t want one image, I want two images. So now I need to remove the image and put a gallery block in and yeah.</p>\n\n\n\n<p><em>JC Palmes: </em>Yeah. It&#8217;s just a time saver really.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Absolutely. Especially when you&#8217;re someone who changed their mind often.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p>Birgit Pauli-Haack: And what&#8217;s also there now is for the gallery list block to have now added a drop-down for the taxonomies so you can really select all the categories that you want to have in there. And then there were quite a few enhancements that are coming under the umbrella of a zoom out feature.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Zoom Out</h3>\n\n\n\n<p>So the zoom out mode is officially out of experiment and it&#8217;s now available to all users. And this mode allows you to zoom out, to edit, or create at the pattern level over granular block editing. So you&#8217;ll see it when you want to add a pattern to a site, an existing site kind of zooms out so you see more of your page and then you get the insert outside of that, so where you can insert it without getting into other container blocks kind of thing. Yeah. So it&#8217;s actually really neat to see how a pattern would change the content of your page in relation to the other patterns or other page content that&#8217;s there. So it&#8217;s a really interesting way of helping you with the design of things. Have you experienced that on the Gutenberg plugin level yet?&nbsp;</p>\n\n\n\n<p><em>JC Palmes:</em> Works not so much yet. Yeah. But that is one of the things that I want to play with this week. I just didn&#8217;t have the time to do that last week, but with all of this new things, so I just want to play around with it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, when you say play, it&#8217;s testing, right?</p>\n\n\n\n<p><em>JC Palmes:</em> It&#8217;s testing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s testing.</p>\n\n\n\n<p><em>JC Palmes:</em> Well, in my brain it&#8217;s still playing love to code. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Mine too. Yeah. It&#8217;s kind of, &#8220;Oh, I&#8217;m going to play around with that.&#8221; But it&#8217;s more like, &#8220;Yeah. We need to test it.&#8221;</p>\n\n\n\n<p><em>JC Palmes: </em>Testing, creating, and all that fun stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Thinking about use cases, thinking about how to break it because that&#8217;s-</p>\n\n\n\n<p><em>JC Palmes:</em> Exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; yeah. And last month ago, or maybe three weeks ago, I got a kudos from a co-worker who said, &#8220;Well, you always find creative ways to break things.&#8221; It was my superpower, you know?</p>\n\n\n\n<p><em>JC Palmes:</em> Super power.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah., the zoom out toggle that is in the header section of the editor, there is a zoom out toggle. So you can say, okay, give me 50% of the view or give me the 100% that&#8217;s next to the preview tab. It might not stay there, but if you just want to kind of test it a bit and you don&#8217;t know, and I don&#8217;t always know when I would trigger that there&#8217;s an automation when all of a sudden it zooms out. But if you want to be in control of it, there&#8217;s a little toggle switch in the editor header and then you drag and drop your patterns into the zoom out mode. And then you also see of course everything in the list view and have the top level section in the zoom out mode and the list view is open. You only see the top sections of your site.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Block Editor<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>It&#8217;s really interesting. So the block editor got a few things. So this release also had a few other drag and drops, not only the image or the pattern, but you also can drag and drop a mix of audio and image blocks into the canvas and it will automatically create those individual blocks. That&#8217;s what you mentioned earlier as well.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And then there is the link editing. That&#8217;s a small fix, but it&#8217;s something that was really missing was to create a link for the phone number. So if there&#8217;s a phone number or a recognizable phone number in your content, it will automatically create the link for it. So when you watch it on or look at it in mobile, you get the button-</p>\n\n\n\n<p><em>JC Palmes:</em> You&#8217;ll be able to click on it. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; call button. Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> Yes. &#8216;Cause adding that is going to be really awesome. It&#8217;s missing, and we&#8217;ve been adding that for some clients who needed that. So having that automatically added is just a nice small thing to have.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Post Editor</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Absolutely. So there is a new preference modal in the new media section.</p>\n\n\n\n<p><em>JC Palmes:</em> That I didn&#8217;t know about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I didn&#8217;t know about it either. Yeah. So this preference for the media section is to switch on client-side media processing. So it doesn&#8217;t all have to go to server sooner or later it will go to the server, but you can do it actually in the browser window. And then you have a lot more options open for dealing with media. And it&#8217;s the first part of the client-side media processing by Pascal Birchler. He had a featured plugin where he tested all that out and now this one comes into core. That&#8217;s really great. I&#8217;m really happy about that. So it&#8217;s definitely for mobile, also interesting for mobile users because they can&#8217;t wait till everything is done on the server because if you have a slow connection, you want it still to be processed without having to wait for all the back and forth there. So that&#8217;s really cool.</p>\n\n\n\n<p><em>JC Palmes:</em> I just let this pre-upload compression and having that as a toggle. And then, yeah, the approval step is sometimes when media is optimized, it just does not always look the way that we want it to look. So having that approval step is nice to have.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So in the page editor, you can now double-click on the template part. So when you edit a page and you click into the template parts, it&#8217;s going to sometimes tell you this is a template part, you can&#8217;t edit that or go to the edit template part kind of screen. And now with double-click, you can switch over to template part editing. So it&#8217;s much faster now to, and if you know what you&#8217;re doing, it&#8217;s definitely helpful to have that there. I was always trying to do that with a double-click. I don&#8217;t know why, but it was kind of really-</p>\n\n\n\n<p><em>JC Palmes:</em> Oh, same. I do that too. I like this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So when you publish a post in the pre-publish section there, there is a warning in a notification that you might have pictures and other from a third place so that the images are not on your site and they&#8217;re linking out to either Google or some other place. And the feature offers you to upload all the images to your own media library so you can really have your&#8230; You&#8217;re not surprised when all of a sudden images go away from the third party.</p>\n\n\n\n<p><em>JC Palmes:</em> That is a very helpful fix. We&#8217;ve had issues with that where with patterns, when you copy a pattern, it will try to, it&#8217;ll look for images in your local, right? And you don&#8217;t always know that it&#8217;s referencing your local, because when you look at the site and it&#8217;s uploaded on an environment, you see that images are there and it&#8217;s only because it&#8217;s referencing local images and you are viewing the site in your computer. So you see that, but other people would not know. So having that would be a lifesaver.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>And it was in the section there, but very rarely did it pop up but now&#8230; and it was only working for gallery blocks and image blocks. But if you had an image from a third party in a media text block or in a cover block, it wouldn&#8217;t come over. It wouldn&#8217;t recognize it in that, and now it does. So it&#8217;s kind of expanding that feature to other block types. And I experienced that when I was working. I&#8217;m working on a tutorial on how to use Playground for a theme demo site so you don&#8217;t have to spin up your own site and you can get everybody their own link to Playground.</p>\n\n\n\n<p>And I was trying to figure out how is the content or what do I have to do with the content? And I used a theme that had some patterns with the local assets, with the theme local assets, and I needed to get those into the media library. So when I import it to Playground, it knows, okay, I have those images because it wouldn&#8217;t go back to the theme assets for that. So it was really interesting to figure that out, and this was really helpful to at least get the marker, but it didn&#8217;t do it for the cover and the media text blocks. So seeing that here in the new release is really interesting.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. It&#8217;s going to be very helpful that that is missing for those blocks. And we&#8217;ve been using those blocks quite extensively.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> They&#8217;re wonderful blocks to use. Yeah. They make a really great design all the time. So the next thing is also about the pre-publish screen, but it kind of switch the cancel the publish button so that the publish button is always under the mouse. So when you hit the publish first and then the next one, it had the cancel button there. So people sometimes cancel their publishing, although they wanted to publish, so now you can just keep your mouse there and have the second publish there as well. That&#8217;s a very good and nice quality of life kind of feature, but obviously somebody needed to think of it to do that. Yeah.</p>\n\n\n\n<p><em>JC Palmes</em>: That&#8217;s one of the things that I mentioned earlier and one of my favorite bits, so just swapping that is just, it just reduces unnecessary cursor movement and improves the user experience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Block Bindings</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, yeah. So totally. Then is the block bindings, your new favorite feature has an update. So what the feature does not do yet is give you an interface to actually create the post meta data or metafields, but now it uses the label that you put in your registration for the block bindings and not the variable name, which is definitely an improvement for that, especially for users who are not developers who always kind of little put back when they&#8217;re not reading normal words, but words with underscores in it and all that.</p>\n\n\n\n<p><em>JC Palmes:</em> I just love block bindings and I&#8217;ll always be on the lookout for whatever is new that&#8217;s going to come into it. We&#8217;ve been using that and learning more about how it works and just again, playing around with it and trying to make it do things that it&#8217;s not doing yet with core.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Which part? What are those?</p>\n\n\n\n<p><em>JC Palmes: </em>Well, we&#8217;ve kind of packed it around to be able to.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I love that when you say, &#8220;Oh, we hacked around it.&#8221;</p>\n\n\n\n<p><em>JC Palmes:</em> Just allowing to show meta that it&#8217;s not supposed to&#8230; Well, it&#8217;s not that it&#8217;s not supposed to show it&#8217;s always there, right? It&#8217;s just not ready yet. But it&#8217;s a play around between checking on the database and then checking things on. It&#8217;s a lot of experimentation in order to get what it natively does not do what we needed it to do for the project that we were working on before.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So you were ahead of your time with your needs.</p>\n\n\n\n<p><em>JC Palmes:</em> Well, we had to, right? The client work that would really&#8230; We can&#8217;t really wait for when a feature that we need is going to come out and WordPress the way it is. And with all the things ready for us to just change, I guess. No, not change, build on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I heard from a few extenders that&#8217;s plugin developers, theme developers, agency developers that they feel, oh, it&#8217;s time that more blocks are actually&#8230; Because you can only do block bindings for four blocks. One is the paragraph block, the image block, the button block, and the headings block, but all the other blocks, you cannot do a list block with things here and all that. So yeah, it definitely is time to expand the range of blocks that can hold bindings to metadata, definitely. And I know that the team knows that they&#8217;re definitely working on it. I&#8217;m scrolling through things.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments <strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>Yeah. There is one, speaking of block bindings under the experiments is now bringing the UI to the site editor to edit the values for the metadata or the block bindings. So you can do that in your&#8230; and they built the rest API endpoints for that so they can go back to the server and come back and have it all saved. So that&#8217;s a really good&#8230; It&#8217;s an experiment. You have to enable it through the experiments page. But yeah, test it out. Developers would love your feedback on it.</p>\n\n\n\n<p><em>JC Palmes:</em> Oh yeah, we&#8217;ve kind of done the same thing, but it&#8217;s not visible to users. It&#8217;s more in the code where we are able to change things around. But then again, it&#8217;s having that as a visual changeable thing. It&#8217;s just going to be a time saver.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Absolutely. Absolutely.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>What I also want to point out, for those who are keen on learning more about the data views, the documentation has been updated, and especially the storybook has now better styles for the combined fields stories and also allows more layout for the combined fields storybook. So definitely an enhancement for those who want to look up the documentation for the data of use. And the stories for that storybook is kind of a component, is a documentation style to have each single component outside of the context of the block editor to what are the properties and how does it behave when you change settings just alone for that component.</p>\n\n\n\n<p>And it&#8217;s a really great way to learn about all the WordPress components and not a whole lot of people know about it. But that will change because the design system that the design team is working on will be also based probably on storybook because for the admin, if you ever want the data views to be part of the WordPress WPAdmin, there is a whole lot of work to be done to cement the design system about every single screen and all that. So they&#8217;re working on that for the color scheme and the typography and all that to make it more seamless. And I think somebody did a test or an audit on all the color strings that are in the WP-Admin sections. And I think she found 68 different colors. So it&#8217;s all kind of different gray tones. It&#8217;s different. Yeah, blue tones, different dark blue tones. And I was really amazing. And they definitely is not increasing the standardization when you have so many colors and a thing too about the design system-</p>\n\n\n\n<p><em>JC Palmes:</em> So it could be a nice thing to have that revamped on and just be able to make it more visible to everyone &#8217;cause it&#8217;s a very helpful way to when you&#8217;re creating components and creating blocks.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Code Quality</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So the next two items I think are more for the developers because they are code quality related. The editor uses hooks instead of higher order components in the block manager. So that&#8217;s interesting for contributors. And then the data view fields store is, and the actions are moving from the editor package into the fields package. So if you have already done some exploration on the data views and data view fields, you need to make a note of that, that the package has changed a bit. I think the Gutenberg developers are very good and do the warnings in the console. So you probably see that when you use them. All right. So that&#8217;s the Gutenberg Changelog for Gutenberg plugin 19.3 and my voice is a bit fading, so I&#8217;m really happy that you walked this through with me. JC, it was wonderful to have you. We are coming to the end of the site, so if people want to get in touch with you, what is a good place for them to reach you? WP Slack or is it more on the social webs?&nbsp;</p>\n\n\n\n<p><em>JC Palmes:</em> I&#8217;m always in Slack and I&#8217;m always on Facebook and Instagram as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Okay. Yeah. So I will share the links in the show notes as well too. So you can get in touch with JC Palmes if you have questions about WordCamp Asia or the Block Theme that they&#8217;re working on. It was wonderful that you have been on the show. Thank you so much. And as always, dear listeners, the show notes will be published on <a href=\"http://gutenbergtimes.com/podcast\">gutenbergtimes.com/podcast</a>. This is episode 108, and if you have questions and suggestions or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@utenbergtimes.com\">changelog@utenbergtimes.com</a>. All right. Well, thank you everybody and thank you, JC.</p>\n\n\n\n<p><em>JC Palmes:</em> Thanks so much for having me, Birgit. It&#8217;s been a great conversation and I really enjoyed diving into all these updates with you. This is also my first podcast, by the way.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, right. Oh, we got you.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah, amazing. I love it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So until the next time then if I may, I will ask you to come to the show again, maybe after WordCamp Asia and we talk about our adventure in Manila, how about that?</p>\n\n\n\n<p><em>JC Palmes:</em> I love that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right. Well, thank you so much. And do you have a wonderful weekend or rest of the evening for you and see you all and hear you all, dear listeners, in two weeks. Thanks again. Bye-bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Sep 2024 09:07:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: On with Theo / T3.gg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=127096\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://ma.tt/2024/09/t3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2040:\"<p>On Thursday, a prominent developer, YouTuber, Twitch streamer, and journalist posted a video titled <a href=\"https://www.youtube.com/watch?v=XoTToRfM3iA\">This might be the end of WordPress</a>. <em>It was very harsh</em>. In that video you&#8217;ll hear him say about me, &#8220;he&#8217;s a chronic hater&#8221; (7:55), &#8220;seems like he&#8217;s been a pretty petty bastard for a long time now&#8221; (10:22), &#8220;I hate this shit, I hate when people are assholes and they get away with it because I&#8217;m doing it for the greater good, the fake nice guy shit. I&#8217;ll take an asshole over a fake nice guy any day, people whose whole aesthetic is being nice, I hated it.&#8221; (11:25), &#8220;Honestly I&#8217;d rather the license just be explicit about it than this weird reality of &#8216;If you get popular enough you can still use it but the guy who made WordPress is going to be an asshole to you.&#8217; That seems much worse than most open source models.&#8221; (14:39)&#8230; it goes on.</p>\n\n\n\n<p>Ouch!</p>\n\n\n\n<p>However, one of my colleagues <a href=\"https://bt.hn/\">Batuhan</a> is a follower of <a href=\"https://x.com/t3dotgg\">Theo&#8217;s</a> and suggested I engage with him. It turns out we were both in San Francisco, and he was game for a livestreamed, no-conditions interview at his studio. I believe discussion is the best way to resolve conflict, that&#8217;s why my door is open to Lee Wittlinger, Heather Brunner, <a href=\"https://x.com/photomatt/status/1839134832846327894\">Brian Gardner</a>, or any WP Engine or Silver Lake representative who wants to talk to resolve things.</p>\n\n\n\n<p>Saturday afternoon I went to Theo&#8217;s studio, we had a vigorous <em>two hour</em> debate and discussion with some real-time chat polling that also changed my mind on a few things, and his, too. I left feeling like I had a new friend. &#xfe0f;And met some awesome cats. Check out the video.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p></p>\n\n\n\n<p><a href=\"https://www.youtube.com/@t3dotgg\"></a> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 29 Sep 2024 20:35:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: We Are Looking for Guest Posts from our Listeners\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=85872\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://dothewoo.io/we-are-looking-for-guest-posts-from-our-listeners/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3510:\"Episode Transcript\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>BobWP:<br />Hey everyone, BobWP here on Community. Well, this episode is more or less about the return of our blog here at Do The Woo, but it really is about community. Now, before I even get into that, a little news about this show, BobWP on Community. I know everyone loves conversation, and often when I go solo on this show, it just really doesn&#8217;t fit like our other shows do, which are centered around conversation. So, very soon, I&#8217;ll be announcing a new member of our hosting team and co-host of this show. It will be BobWP and whoever I choose on Community. We will have conversations between ourselves and an occasional guest.</p>\n\n\n\n<p>What I really want to share with you is that we have everything in place to accept guest posts on our new blog. As with our podcast, the blog is by the community, for the community. During WordCamp US, I recorded more details on that. I talked about some of the past decisions regarding whether to have a blog or not. I also outlined the blog&#8217;s future, including contributions from hosts, guests, and even listeners. It was pretty brief, but I talked about moving forward with this new blog.</p>\n\n\n\n<p>Now, as I said, we are ready for you, the listener. We have an invitation for you. Our guest posts are unique in that we’re looking for you to add to the conversation. For example, do you have a story that relates to an episode you&#8217;ve listened to? Do you want to expand your thoughts and insights on a particular episode through a short post or maybe a longer post instead of a comment? Or were you a guest, and would you like to update something from your episode or maybe even elaborate on something you mentioned?</p>\n\n\n\n<p>So, as a listener, if you have an idea for a post, you can go to dothewoo.io/guest-posts, or you can reach out in another way, and I’ll send you the link. The link will also be in the show notes. But I&#8217;m pretty excited about this blog because it’s a little different in that we want to tie all the posts into episodes from our podcasts. So, if you&#8217;re interested, reach out to us. I&#8217;m looking forward to you being a bigger part of the Do The Woo community.</p>\n</div>\n\n\n\n\n<p>Here’s a suggested intro for your show notes:</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>In this episode of <em><strong>BobWP on Community</strong></em>, Bob shares  news about the return of the Do The Woo blog and how it will further engage the WooCommerce community. </p>\n\n\n\n<p>He chats about the future of the blog, opportunities for listeners to contribute guest posts, and the plans to bring on a new co-host for this show. </p>\n\n\n\n<p>Whether you&#8217;re a longtime listener, guest, or simply a member of the community, <strong><a href=\"https://dothewoo.io/guest-posts/\">Bob invites you</a></strong> to join in and become an even bigger part of the conversation.</p>\n\n\n\n<p>More on the blog</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https://dothewoo.io/guest-posts/\">More info on being submitting a guest post.</a></strong></li>\n\n\n\n<li><strong><a href=\"https://dothewoo.io/a-blog-for-the-community-by-the-community/\">A Blog for the Community, by the Community</a></strong></li>\n\n\n\n<li><a href=\"https://dothewoo.io/blog/the-soft-relaunch-of-the-do-the-woo-blog/\"><strong>The Soft Relaunch of the Do the Woo Blog</strong></a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 29 Sep 2024 15:30:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: Where is Lee Wittlinger?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=127055\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2024/09/missing-spokespeople/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1464:\"<p>Lee controls the board of WP Engine. The board is why WP Engine hasn&#8217;t done a trademark deal for <a href=\"https://x.com/photomatt/status/1840115470768451991\">their use of the WordPress and WooCommerce trademarks</a>.</p>\n\n\n\n<p>You hide behind lawyers and corporate PR when you&#8217;re wrong, not when you&#8217;re right.</p>\n\n\n\n<p>I&#8217;m <a href=\"https://x.com/photomatt/with_replies\">replying on Twitter</a>, I&#8217;m <a href=\"https://www.reddit.com/user/photomatt/\">commenting on Reddit</a> <a href=\"https://news.ycombinator.com/threads?id=photomatt\">and Hacker News</a>, I&#8217;m <a href=\"https://ma.tt/2024/09/on-theprimeagen/\">dropping into livestreams with ThePrimeagen</a> and <a href=\"https://www.youtube.com/watch?v=9sBuHwQpwAU\">WPMinute</a>. I&#8217;m talking to journalists whenever they reach out, and I&#8217;m happy to go on any large credible podcast or show to discuss these issues.</p>\n\n\n\n<p>Lee could do the same. Why isn&#8217;t he? </p>\n\n\n\n<p><a href=\"https://www.silverlake.com/people/lee-wittlinger/\">Lee is a managing director of a $102B private equity firm</a>, he is probably richer than me. (<a href=\"https://ma.tt/2024/09/charitable-contributions/\">Though I doubt he gives back as much</a>.)</p>\n\n\n\n<p>&#8220;Because their lawyers are telling him not to.&#8221; Why do you think their lawyers are telling them not to?</p>\n\n\n\n<p>Open invite: Lee, let&#8217;s debate this publicly. Propose a neutral venue and moderator.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Sep 2024 20:12:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Multidots Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=127003\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2024/09/multidots-support/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:234:\"<p><a href=\"https://www.multidots.com/updates/taking-a-stand-for-the-wordpress-ecosystem-why-we-must-all-give-back/\">Anil Gupta has made an amazing commitment to the WordPress ecosystem</a>. I applaud the way he runs his business.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Sep 2024 05:50:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Matt Mullenweg Announces Temporary Lifting of WP Engine Ban\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=162894\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/matt-mullenweg-announces-temporary-lifting-of-wp-engine-ban\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4356:\"<p>Matt Mullenweg has <a href=\"https://wordpress.org/news/2024/09/wp-engine-reprieve/\">announced</a> that the restrictions on WP Engine will be temporarily lifted until <strong>October 1, 00:00 UTC,</strong> allowing them to access WordPress servers. <a href=\"https://wptavern.com/wp-engine-banned-from-using-wordpress-org-resources\">WP Engine was banned</a> on September 25 from utilizing any WordPress.org resources following legal actions related to trademark disputes, which left WP Engine customers unable to access the Plugin/Theme directory or update their websites</p>\n\n\n\n<p>The temporary reprieve gives WP Engine time to &#8220;spin up their mirrors of all WordPress.org’s resources that they were using for free while not paying and making legal threats against us.&#8221;, according to the official statement.</p>\n\n\n\n<p>The announcement post blamed WP Engine for the situation: “WP Engine was well aware that we could remove access when they chose to ignore our efforts to resolve our differences and enter into a commercial licensing agreement.&nbsp;<a href=\"https://usaawards.ceotodaymagazine.com/previous-winner/heather-brunner/\">Heather Brunner</a>,&nbsp;<a href=\"https://www.silverlake.com/people/lee-wittlinger/\">Lee Wittlinger</a>, and their Board chose to take this risk. WPE was also aware that they were placing this risk directly on WPE customers. You could assume that WPE has a workaround ready, or they were simply reckless in supporting their customers. Silver Lake and WP Engine put their customers at risk, not me.&#8221;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I see <a href=\"https://t.co/FwFPhIHs7i\">https://t.co/FwFPhIHs7i</a> is still showing issues.<br /><br />We\'ve removed all network blocks so anything they\'ve having trouble with is a result of their own work.</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1839810649599422801?ref_src=twsrc%5Etfw\">September 27, 2024</a></blockquote>\n</div>\n\n\n\n<p>Matt tweeted, “We&#8217;ve removed all network blocks so anything they&#8217;ve having trouble with is a result of their own work.” In another tweet, he clarified, “Silver Lake is the only entity we have beef with.” During the <a href=\"https://www.youtube.com/watch?v=9sBuHwQpwAU\">WP Minute</a> live stream, Matt reiterated that the WP Engine situation was uniquely bad and that he doesn&#8217;t foresee this happening again with any other hosting provider.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">That\'s not true, every other WP host in the world has been just fine through this. Silver Lake is the only entity we have beef with.</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1839780429060288683?ref_src=twsrc%5Etfw\">September 27, 2024</a></blockquote>\n</div>\n\n\n\n<p>On the same livestream, Matt was asked by Brian Coords about allowing WP Engine users more time to transition to new hosts. Matt acknowledged the suggestion, admitting it was a valid point.</p>\n\n\n\n<p>WP Engine tweeted: “We’re pleased to see access restored to the repository of WordPress plugins for our customers who operate their sites with us at WP Engine.”</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We’re pleased to see access restored to the repository of WordPress plugins for our customers who operate their sites with us at WP Engine.</p>&mdash; WP Engine (@wpengine) <a href=\"https://twitter.com/wpengine/status/1839805389036036424?ref_src=twsrc%5Etfw\">September 27, 2024</a></blockquote>\n</div>\n\n\n\n<p>The community remains divided—some support the decision, while others are less impressed.</p>\n\n\n\n<a href=\"https://x.com/SolespireMarcus/status/1839774942977569048\"><img width=\"500\" height=\"136\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/09/image-500x136.png\" alt=\"\" class=\"wp-image-162900\" /></a>\n\n\n\n<a href=\"https://x.com/charliemoss/status/1839786470615261661\"><img width=\"500\" height=\"129\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/09/image-1-500x129.png\" alt=\"\" class=\"wp-image-162902\" /></a>\n\n\n\n<p>While the reprieve is a temporary solution, it remains to be seen how the situation will unfold in the long run.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Sep 2024 04:37:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Gutenberg Times: Gutenberg 19.3, Simplified Query Loop and blocks in theme.json — Weekend Edition #306\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=30242\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://gutenbergtimes.com/gutenberg-19-3-simplified-query-loop-and-blocks-in-theme-json-weekend-edition-306/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15532:\"<p>Hi there, </p>\n\n\n\n<p>This was anything but a slow WordPress news week, though, however none of it related to the software and the block editor. There are a few WordPress news places where you get updates and opinions. Official <a href=\"https://wordpress.org/news/\">WordPress news</a> is one, <strong>Michelle Frechette </strong>over at Post Status has a great summary with links: <a href=\"https://poststatus.com/give-back-deeply/\">Give Back &#8230; Deeply</a>, <strong>Matt Medeiros</strong> and the <a href=\"https://thewpminute.com/automattic-vs-wp-engine-heres-what-we-know/\">WP Minute team share what they know</a>, and <strong>Anil Gupta</strong>, Multidots is <a href=\"https://www.multidots.com/updates/taking-a-stand-for-the-wordpress-ecosystem-why-we-must-all-give-back/\">taking a stand for the WordPress Ecosystem: why we must all give back&nbsp;</a></p>\n\n\n\n<p>Next week, <a href=\"https://make.wordpress.org/core/6-7/\">WordPress 6.7 Beta 1</a> is on the schedule for October 1, 2024. To refresh what is on the docket for this next version you can consult <a href=\"https://make.wordpress.org/core/2024/09/03/roadmap-to-6-7/\">Roadmap to 6.7</a>. If you want to contribute and learn at the same time, keep an eye out for the &#8220;Help to test WordPress 6.7&#8221; post from the Make Test team as well. </p>\n\n\n\n<p>I&#8217;ve been battling a nasty cold all week, and it seems I just need to let it run its course. I apologize in advance if my thoughts aren&#8217;t entirely coherent. To minimize any potential embarrassment, I&#8217;m keeping this weekend&#8217;s edition brief.</p>\n\n\n\n<p>I will be taking a social media break for a few days, too, it&#8217;s good for my mental health people tell me. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/gutenberg-19-3-simplified-query-loop-and-blocks-in-theme-json-weekend-edition-306/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/gutenberg-19-3-simplified-query-loop-and-blocks-in-theme-json-weekend-edition-306/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/gutenberg-19-3-simplified-query-loop-and-blocks-in-theme-json-weekend-edition-306/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/gutenberg-19-3-simplified-query-loop-and-blocks-in-theme-json-weekend-edition-306/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ol>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>Release lead, <strong>Kai Hao</strong>, shared in his post <a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/\">What’s new in Gutenberg 19.3? (25 September)</a> the highlights from the new version:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/#drag-and-drop-grid-items-in-manual-mode\">Zoom Out Mode</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/#content-panel-for-template-parts\">Swap the position of the publish buttons</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/#use-custom-block-names-in-inspector-controls\">Use custom block names in inspector controls</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/#allow-opting-out-of-the-choose-a-pattern-modal-when-adding-new-pages\">Allow opting out of the “Choose a pattern” modal when adding new pages</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/#automatic-phone-number-linking\">Automatic phone number linking</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/09/25/whats-new-in-gutenberg-19-3-25-september/#allow-dropping-multiple-images-to-the-image-block\">Allow dropping multiple images to the image block</a></li>\n</ul>\n\n\n\n<img width=\"652\" height=\"369\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/09/Zoomed-out.png?resize=652%2C369&ssl=1\" alt=\"Zoom Out view Gutenberg 19.3\" class=\"wp-image-30254\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Joen Asmussen</strong> published his 64th <a href=\"https://make.wordpress.org/design/2024/09/24/design-share-64-sep-9-sep-20/\">Design Share</a> and shows off the work of the WordPress Design team of the last two weeks: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Global styles iA</li>\n\n\n\n<li>WP Briefing Landing Page</li>\n\n\n\n<li>Adding “Drag” to Image Placeholder Text</li>\n\n\n\n<li>WP.org: Moving “Log in” to the secondary navigation</li>\n\n\n\n<li>Figma Organization for the new design system</li>\n\n\n\n<li>Secondary button appearance concept</li>\n\n\n\n<li>Unify DropZones</li>\n\n\n\n<li>Updated shadows / elevation in WP Components</li>\n\n\n\n<li>Updating ToggleGroupControl</li>\n\n\n\n<li>Storybook Improvements</li>\n</ul>\n\n\n\n<img width=\"652\" height=\"336\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/09/Screenshot-2024-09-28-at-13.00.18.png?resize=652%2C336&ssl=1\" alt=\"An early in-the-clouds exploration of how the global styles iA\" class=\"wp-image-30256\" />An early in-the-clouds exploration of how the global styles iA\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-108-block-themes-for-agencies/\">Gutenberg Changelog #108 – Gutenberg 19.3, WordPress 6.7 – Block Themes for Agencies, WordCamp Asia</a></p>\n\n\n\n<img width=\"652\" height=\"189\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/Screenshot-2024-09-30-at-10.09.05.png?resize=652%2C189&ssl=1\" alt=\"Gutenberg Changelog 108 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-30347\" />\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> continued in their <em>Core Improvements</em> series about the <strong><a href=\"https://make.wordpress.org/core/2024/09/23/core-editor-improvement-simplified-query-loop-block-with-smarter-defaults-intuitive-settings/\">Simplified Query Loop block with smarter defaults &amp; intuitive settings</a>.</strong> The enhancements streamline how you create  dynamic post lists, making it more user-friendly and customizable.  McCarthy explains how stronger defaults help with the first time usage, a toggle switch lets you change from default query to using a custom query, and the block&#8217;s filtering options include post formats now.</p>\n\n\n\n<a href=\"https://make.wordpress.org/core/2024/09/23/core-editor-improvement-simplified-query-loop-block-with-smarter-defaults-intuitive-settings/\"><img width=\"652\" height=\"479\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/09/Query-Loop-Post-format-support-1024x753-1.png?resize=652%2C479&ssl=1\" alt=\"\" class=\"wp-image-30260\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Fabian Kägy,</strong> director of editorial engineering at 10Up, documentation release lead for WordPress 6.7 was a guest on the <a href=\"https://shoptalkshow.com/634/\"><strong><em>ShopTalk Show</em> 634th podcast episode</strong></a>, with hosts <strong>Chris Coyier </strong>and <strong>Dave Ruppert</strong>. &#8220;Fabian Kägy helps us understand the modern WordPress development process, Gutenberg vs Block editor vs full site editing, building with blocks or pages, what&#8217;s coming in the Twenty Twenty-Five Theme, and whether the theme authoring process has been made too difficult in 2024?&#8221; they wrote in the description. </p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<em><a href=\"https://shoptalkshow.com/634/\">634: </a>Fabian Kägy on WordPress, Blocks, and Enterprise Dev on<a href=\"https://shoptalkshow.com/634/\"> ShopTalk Show</a>. </em>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the article, <a href=\"https://kinsta.com/blog/theme-json-blocks-property/\"><strong>What WordPress developers need to know about the blocks property in theme.json</strong></a>, <strong>Jeremy Holcombe</strong> breaks down the &#8220;blocks&#8221; property in the <code>theme.json</code> file for WordPress. This lets developers set up block settings globally. It makes customizing Gutenberg blocks a breeze by centralizing design options like colors and typography. Plus, it keeps everything consistent and boosts site performance by cutting down on custom CSS. Holcombe also includes easy-to-follow implementation tips, practical examples, and code snippets to help theme developers get the most out of this feature. It really streamlines the development process and amps up overall site optimization.</p>\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2024&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a>&nbsp;|&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>JuanMa Garrido</strong> published <a href=\"https://developer.wordpress.org/news/2024/09/23/actions-from-data-views-adding-images-to-the-media-library/\">Actions from Data Views: Adding images to the Media Library</a>. It&#8217;s a continuation of the tutorial, he published earlier this month: <a href=\"https://developer.wordpress.org/news/2024/08/27/using-data-views-to-display-and-interact-with-data-in-plugins/\">Using Data Views to display and interact with data in plugins</a> in which he walked you through on  how to create a plugin that displays a React app in the WordPress admin to list a dataset of pictures using Data Views. In this second part, you learn how to provide users with tools to directly add any listed images to the Media Library.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this week&#8217;s Live Developer Hours<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/303330393/?eventOrigin=group_events_list\">, </a><strong>JuanMa Garrido, André Maneiro </strong>and <strong>Nick Diego </strong>gave<strong> </strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/303330393/?eventOrigin=group_events_list\"><strong>An Introduction to Data Views</strong></a> and answered a ton of questions. They covered, the fundamentals of the DataViews component, how to add a React app to a custom WordPress admin page and how to display a custom dataset using Data Views. </p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Featured Image: &#8220;Mitchell Library, Sydney (#24)&#8221; by Christopher Chan is licensed under CC BY-NC-ND 2.0</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Sep 2024 03:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WordPress.org blog: WP Engine Reprieve\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17850\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2024/09/wp-engine-reprieve/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1506:\"<p>I&#8217;ve heard from <a href=\"https://wpengine.com/\">WP Engine</a> customers that they are frustrated that WP Engine hasn&#8217;t been able to make updates, plugin directory, theme directory, and Openverse work on their sites. It saddens me that they&#8217;ve been negatively impacted by <a href=\"https://www.silverlake.com/\">Silver Lake</a>&#8216;s commercial decisions.</p>\n\n\n\n<p><a href=\"https://wpengine.com/\">On WP Engine&#8217;s homepage</a>, they promise &#8220;Unmatched performance, automated updates, and bulletproof security ensure your sites thrive.&#8221;</p>\n\n\n\n<p>WP Engine was well aware that we could remove access when they chose to ignore our efforts to resolve our differences and enter into a commercial licensing agreement. <a href=\"https://usaawards.ceotodaymagazine.com/previous-winner/heather-brunner/\">Heather Brunner</a>, <a href=\"https://www.silverlake.com/people/lee-wittlinger/\">Lee Wittlinger</a>, and their Board chose to take this risk. WPE was also aware that they were placing this risk directly on WPE customers. You could assume that WPE has a workaround ready, or they were simply reckless in supporting their customers. Silver Lake and WP Engine put their customers at risk, not me.</p>\n\n\n\n<p>We have lifted the blocks of their servers from accessing ours, until October 1, UTC 00:00. Hopefully this helps them spin up their mirrors of all of WordPress.org&#8217;s resources that they were using for free while not paying, and making legal threats against us.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Sep 2024 21:03:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Do The Woo Community: Our Weekly Recap is Coming Back to the Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=85803\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://dothewoo.io/blog/our-weekly-recap-is-coming-back-to-the-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:822:\"<p>Over the years, we have done a weekly recap on Friday&#8217;s. It evolved over time and I always strategize exactly what we will be dropping in here. </p>\n\n\n\n<p>It&#8217;s not going to be the latest news, products, etc. in the space, as there are more than enough sites doing that.</p>\n\n\n\n<p>Instead, this will serve as a good weekly collection of:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Posts and episodes here on Do the Woo</li>\n\n\n\n<li>Content from our hosts, partners and sponsors.</li>\n</ul>\n\n\n\n<p>Plus, if any listener comments on a specific episode or post, we will also be including a snippet from their comment in the recap. <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /> </p>\n\n\n\n<p>Just a solid list of content that you may have missed. That&#8217;s it. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Sep 2024 09:58:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: On ThePrimeagen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=126890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2024/09/on-theprimeagen/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:469:\"<p>I dropped on the livestream for ThePrimeagen earlier today after a colleague pinged me that he was talking about the Silver Lake / WP Engine situation.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Afterward, I also privately shared with him the cell phone for Heather Brunner, the WP Engine CEO, so she can hop on or debate these points. As far as I&#8217;ve heard she hasn&#8217;t responded. Why is WP Engine scared of talking to journalists live?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Sep 2024 06:31:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WordCamp Central: Quarterly WordPress Event Sponsorship Report, 2016-2024 Q3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=8020458\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://central.wordcamp.org/news/2024/09/quarterly-wordpress-event-sponsorship-report-2016-2024-q3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4060:\"<p>Below is the total amount of sponsor invoices generated to date for WordCamp and WordPress events, including the Community Summit fund and the Global Sponsorship fee.</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading has-text-align-left\">Global Sponsorship</h2>\n\n\n\n<p><strong>$1,500,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automattic</li>\n\n\n\n<li>Bluehost</li>\n</ul>\n\n\n\n<p><strong>$1,000,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Bubblestorm Management</li>\n\n\n\n<li>GoDaddy</li>\n</ul>\n\n\n\n<p><strong>$200,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>DreamHost</li>\n\n\n\n<li>BoldGrid</li>\n\n\n\n<li>Liquid Web</li>\n\n\n\n<li>Weglot</li>\n</ul>\n\n\n\n<p><strong>$100,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>OnTheGoSystems</li>\n\n\n\n<li>GreenGeeks</li>\n\n\n\n<li>Awesome Motive</li>\n</ul>\n\n\n\n<p><strong>$50,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>HubSpot</li>\n\n\n\n<li>Pantheon</li>\n\n\n\n<li>InMotion Hosting</li>\n\n\n\n<li>Nexcess</li>\n\n\n\n<li>SiteGround</li>\n\n\n\n<li>SiteLock</li>\n</ul>\n\n\n\n<p><strong>$10,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Parallels International</li>\n\n\n\n<li>Yoast</li>\n\n\n\n<li>WiredTree</li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading has-text-align-left\">Per Event Sponsorship</h2>\n\n\n\n<p><strong>$2,000,000 or above</strong></p>\n\n\n\n<p>Automattic</p>\n\n\n\n<p><strong>$500,000 or above</strong></p>\n\n\n\n<p>WP Engine</p>\n\n\n\n<p><strong>$100,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Pantheon</li>\n\n\n\n<li>SiteGround</li>\n\n\n\n<li>Google</li>\n\n\n\n<li>GoDaddy</li>\n\n\n\n<li>SiteLock</li>\n\n\n\n<li>Elementor</li>\n\n\n\n<li>Hostinger</li>\n\n\n\n<li>Wordfence</li>\n\n\n\n<li>Cloudways</li>\n\n\n\n<li>A2 Hosting</li>\n\n\n\n<li>Yoast</li>\n\n\n\n<li>Flywheel</li>\n\n\n\n<li>Plesk</li>\n\n\n\n<li>Gravity Forms</li>\n\n\n\n<li>DreamHost</li>\n\n\n\n<li>WPMU DEV</li>\n\n\n\n<li>Nexcess</li>\n</ul>\n\n\n\n<p><strong>$50,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>GreenGeeks</li>\n\n\n\n<li>WordPress VIP</li>\n\n\n\n<li>InMotion Hosting</li>\n\n\n\n<li>dotblog</li>\n\n\n\n<li>Media Temple</li>\n\n\n\n<li>Pressable</li>\n\n\n\n<li>Weglot</li>\n\n\n\n<li>BoldGrid</li>\n\n\n\n<li>Liquid Web</li>\n\n\n\n<li>StellarWP</li>\n\n\n\n<li>WEDOS</li>\n\n\n\n<li>BigCommerce</li>\n\n\n\n<li>PayPal</li>\n\n\n\n<li>Omnisend</li>\n\n\n\n<li>DigitalCube</li>\n\n\n\n<li>Kinsta</li>\n</ul>\n\n\n\n<p><strong>$25,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>NitroPack</li>\n\n\n\n<li>Qualpay</li>\n\n\n\n<li>Avalara</li>\n\n\n\n<li>Setka</li>\n\n\n\n<li>Rocket.net</li>\n\n\n\n<li>Hover</li>\n\n\n\n<li>Sucuri</li>\n\n\n\n<li>Patchstack</li>\n\n\n\n<li>FastSpring</li>\n\n\n\n<li>KnownHost</li>\n\n\n\n<li>Jilt</li>\n\n\n\n<li>Themeum</li>\n\n\n\n<li>GiveWP</li>\n\n\n\n<li>WebPros</li>\n\n\n\n<li>PeachPay</li>\n\n\n\n<li>WP Buffs</li>\n\n\n\n<li>WP Rocket</li>\n\n\n\n<li>YITH</li>\n\n\n\n<li>Litespeed</li>\n</ul>\n\n\n\n<p><strong>$10,000 or above</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Amazon Lightsail</li>\n\n\n\n<li>ilkli</li>\n\n\n\n<li>Pagely</li>\n\n\n\n<li>10up</li>\n\n\n\n<li>VendorFuel</li>\n\n\n\n<li>Verisign</li>\n\n\n\n<li>HubSpot</li>\n\n\n\n<li>RunCloud</li>\n\n\n\n<li>GoWP</li>\n\n\n\n<li>Square</li>\n\n\n\n<li>Oliver POS</li>\n\n\n\n<li>WPDeveloper</li>\n\n\n\n<li>LearnDash</li>\n\n\n\n<li>InstaWP</li>\n\n\n\n<li>Stackabl</li>\n\n\n\n<li>BuddyBoss</li>\n\n\n\n<li>Beaver Builder</li>\n\n\n\n<li>ServerPress</li>\n\n\n\n<li>doMEn Ltd</li>\n\n\n\n<li>WS Form</li>\n\n\n\n<li>rtCamp</li>\n\n\n\n<li>Crocoblock</li>\n\n\n\n<li>FIU College of Business</li>\n\n\n\n<li>Deer Designer</li>\n\n\n\n<li>AddThis</li>\n\n\n\n<li>Blockonomics</li>\n\n\n\n<li>WP Beginner</li>\n\n\n\n<li>Monarx</li>\n\n\n\n<li>CookiePro</li>\n\n\n\n<li>miniorange</li>\n\n\n\n<li>Airwallex</li>\n\n\n\n<li>AdRoll</li>\n\n\n\n<li>Prime Strategy</li>\n\n\n\n<li>CloudAccess.net</li>\n\n\n\n<li>UpdraftPlus</li>\n\n\n\n<li>Rochen</li>\n\n\n\n<li>TextExpander</li>\n\n\n\n<li>Titan</li>\n\n\n\n<li>GoGoCreate</li>\n\n\n\n<li>TraitWare</li>\n\n\n\n<li>Tutor LMS</li>\n\n\n\n<li>Cloudinary</li>\n\n\n\n<li>EasyWP</li>\n</ul>\n</div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Sep 2024 12:56:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Isotta Peira\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: WPE &amp; Trademarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=126793\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2024/09/wordpress-engine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1859:\"<p>I&#8217;ve been writing and talking about <a href=\"https://wpengine.com/\">WP Engine</a> a lot in the last week, but I want to be crystal clear about the core issue at play.</p>\n\n\n\n<p>In short, <strong>WP Engine is violating WordPress&#8217; trademarks</strong>. Moreover, they have been doing so for years. We at Automattic have been attempting to make a licensing deal with them for a very long time, and all they have done is string us along. Finally, I drew a line in the sand, which they have now leapt over.</p>\n\n\n\n<p>We offered WP Engine the option of how to pay their fair share: either pay a direct licensing fee, or make in-kind contributions to the open source project. This isn&#8217;t a money grab: it&#8217;s an expectation that any business making hundreds of millions of dollars off of an open source project ought to give back, and if they don&#8217;t, then they can&#8217;t use its trademarks. WP Engine has refused to do either, and has instead taken to casting aspersions on my attempt to make a fair deal with them.</p>\n\n\n\n<p>WordPress is licensed under the GPL; respect for copyright and IP like trademarks is core to the GPL and our conception of what open source means. If WP Engine wants to find another open source project with a more permissive license and no trademarks, they are free to do so; if they want to benefit from the WordPress community, then they need to respect WordPress trademark and IP.</p>\n\n\n\n<p>Further reading:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://automattic.com/2024/09/25/open-source-trademarks-wp-engine/\">Automattic&#8217;s cease and desist to WP Engine</a>.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/09/wp-engine/\">WP Engine is not WordPress</a>.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/09/wp-engine-banned/\">WP Engine is banned from WordPress.org</a>.</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Sep 2024 08:25:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WP Engine Banned from Using WordPress.org Resources\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=162706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wp-engine-banned-from-using-wordpress-org-resources\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3393:\"<p>The <a href=\"https://wptavern.com/highlights-from-matt-mullenwegs-spiciest-word-camp-presentation-at-wordcamp-us-2024\">dispute</a> between Automattic and WP Engine has intensified. Both companies have issued <a href=\"https://wptavern.com/automattic-responds-to-wp-engines-cease-and-desist-with-legal-action\">Cease and Desist</a> orders to each other, leading WP Engine to remove the news feed from the WordPress admin dashboard. In response, WordPress.org has now <a href=\"https://wordpress.org/news/2024/09/wp-engine-banned/\">banned WP Engine</a> from utilizing any of its resources.</p>\n\n\n\n<p>The WordPress.org <a href=\"https://wordpress.org/news/2024/09/wp-engine-banned/\">statement</a> read: “Pending their legal claims and litigation against WordPress.org, WP Engine no longer has free access to WordPress.org’s resources. WP Engine wants to control your WordPress experience, they need to run their own user login system, update servers, plugin directory, theme directory, pattern directory, block directory, translations, photo directory, job board, meetups, conferences, bug tracker, forums, Slack, Ping-o-matic, and showcase. Their servers can no longer access our servers for free.”</p>\n\n\n\n<p>The statement continued: “The reason WordPress sites don’t get hacked as much anymore is we work with hosts to block vulnerabilities at the network layer, WP Engine will need to replicate that security research on their own. Why should WordPress.org provide these services to WP Engine for free, given their attacks on us?”</p>\n\n\n\n<p>The announcement also reiterated what was shared in the <a href=\"https://wordpress.org/news/2024/09/wp-engine/\">WP Engine is not WordPress</a> article. “WP Engine is free to offer their hacked up, bastardized simulacra of WordPress’s GPL code to their customers, and they can experience WordPress as WP Engine envisions it, with them getting all of the profits and providing all of the services.”</p>\n\n\n\n<p>For those wondering about Flywheel, Matt has clarified that Flywheel also would be affected as WP Engine had <a href=\"https://wptavern.com/wp-engine-acquires-flywheel\">acquired Flywheel</a> in 2019.</p>\n\n\n\n<p>The new <a href=\"https://wpenginestatus.com/incidents/640187\">status page</a> on WP Engine explains: “There is currently no impact on the performance, reliability or security of your site nor does it impact your ability to make updates to your code or content. We know how important this is for you and we are actively developing a remediation for this issue.”</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeAQc3Uvv-sdYlDvR-sesI4GM_0abvuj-gjLbBxh1o5CzMTM6eJ-5z_laSZ5PuTd9_HdkRLEKQERXahbi1WlnOAZ3uAAJ0tpq_xa92-y-dG-cXyWjCH3si0O8NBRMbiYPYkJXf8amRLhN7JxDGJWlR0gx6A?key=PALVa_N-_6uIHSJtAE9ORA\" alt=\"\" />\n\n\n\n<p>Meanwhile, Automattic-owned Pressable has a new <a href=\"https://pressable.com/wpe-contract-buyout/\">page</a>. <img width=\"624\" height=\"377\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXe0BT5uhA913OiWkflUOtk1zOA5M9XibhsVvNpd3mCQzpep3j76wq7Q7ebxFjo0bxwDjnULqTX9JG7aHTfENyKvZTD8GdGl-3pA1sgePFi_XuJLNigboMiExpnf7HzqyJCZcKCQgwRJo6Ly-8Osy3aCc1f1?key=PALVa_N-_6uIHSJtAE9ORA\" /> The WordPress community is not happy with these events. Several people have come forward to <a href=\"https://x.com/MetaPrinxss/status/1839093092525421061\">offer help</a> to those caught in the crossfire.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Sep 2024 06:55:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.org blog: WP Engine is banned from WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17834\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/2024/09/wp-engine-banned/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1922:\"<p>Any WP Engine customers having trouble with their sites should <a href=\"https://wpengine.com/contact/\">contact WP Engine support and ask them to fix it</a>.</p>\n\n\n\n<p>WP Engine needs a trademark license, they don&#8217;t have one. I won&#8217;t bore you with the story of how WP Engine <a href=\"https://x.com/photomatt/status/1838502185879167069\">broke thousands of customer sites yesterday in their haphazard attempt to block our attempts to inform the wider WordPress community</a> regarding their disabling and locking down a WordPress core feature in order to extract profit.</p>\n\n\n\n<p><strong>What I will tell you is that, pending their legal claims and litigation against WordPress.org, WP Engine no longer has free access to WordPress.org&#8217;s resources.</strong></p>\n\n\n\n<p>WP Engine wants to control your WordPress experience, they need to run their own user login system, update servers, plugin directory, theme directory, pattern directory, block directory, translations, photo directory, job board, meetups, conferences, bug tracker, forums, Slack, Ping-o-matic, and showcase. Their servers can no longer access our servers for free.</p>\n\n\n\n<p>The reason WordPress sites don&#8217;t get hacked as much anymore is we work with hosts to block vulnerabilities at the network layer, WP Engine will need to replicate that security research on their own.</p>\n\n\n\n<p>Why should WordPress.org provide these services to WP Engine for free, given their attacks on us?</p>\n\n\n\n<p>WP Engine is free to offer their hacked up, bastardized simulacra of WordPress&#8217;s GPL code to their customers, and they can experience WordPress as WP Engine envisions it, with them getting all of the profits and providing all of the services.</p>\n\n\n\n<p>If you want to experience WordPress, use any other host in the world besides WP Engine. <a href=\"https://wordpress.org/news/2024/09/wp-engine/\">WP Engine is not WordPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Sep 2024 22:50:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: Charitable Contributions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=126720\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://ma.tt/2024/09/charitable-contributions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1816:\"<p>I knew <a href=\"https://automattic.com/2024/09/25/open-source-trademarks-wp-engine/\">going to war with Silver Lake</a>, a $102B private equity firm, they would pull out every dirty trick to try to smear my name, do <a href=\"https://en.wikipedia.org/wiki/Opposition_research\">oppo research</a>, imply I&#8217;m a mafia boss trying to extort them, etc.</p>\n\n\n\n<p>I have kept my personal philanthropy  private until now. I would like to offer up one piece of evidence for the public to consider, which is the IRS accounting of my 501c3 charitable donations. </p>\n\n\n\n<p>This is something I&#8217;ve tried to keep quiet, because true philanthropy isn’t about recognition. As you can see, my personal liquidity goes up and down but I give back as much as I can when I can.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>2011:</strong> $295,044.60</li>\n\n\n\n<li><strong>2012: </strong>$401,121.00</li>\n\n\n\n<li><strong>2013: </strong>$2,088,890.88</li>\n\n\n\n<li><strong>2014:</strong>  $98,648.00</li>\n\n\n\n<li><strong>2015: </strong> $101,947.00</li>\n\n\n\n<li><strong>2016:</strong> $42,300.00</li>\n\n\n\n<li><strong>2017:</strong> $51,562.50</li>\n\n\n\n<li><strong>2018:</strong> $606,957.68</li>\n\n\n\n<li><strong>2019:</strong> $620,802.65</li>\n\n\n\n<li><strong>2020:</strong> $607,452.48</li>\n\n\n\n<li><strong>2021:</strong> $2,151,602.26</li>\n\n\n\n<li><strong>2022:</strong> $2,780,054.20</li>\n\n\n\n<li><strong>2023:</strong> $2,276,425.06</li>\n</ul>\n\n\n\n<p>If <a href=\"https://www.silverlake.com/people/lee-wittlinger/\">Lee Wittlinger</a>, who controls Silver Lake&#8217;s investments in the WordPress ecosystem, or <a href=\"https://wpengine.com/newsroom/leadership-team/heather-brunner/\">Heather Brunner</a>, the CEO of WP Engine, would like to publish their charitable contributions  over the past 12 years, they are welcome to do so.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Sep 2024 20:06:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Ajmer in India to Host its First WordPress Event ‘WP Campus Connect’\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=162370\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/ajmer-in-india-to-host-its-first-wordpress-event-wp-campus-connect\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2971:\"<p>Ajmer, a city in the Indian state of Rajasthan, is all set to organize its first-ever WordPress event &#8211; <a href=\"https://events.wordpress.org/ajmer/2024/wpcampusconnect/\">WP Campus Connect</a>. This month-long initiative in October aims to empower students across multiple campuses by introducing them to the powerful tools and opportunities that WordPress offers.</p>\n\n\n\n<p>Organizers have partnered with four different colleges to host a series of interactive workshops over four weekends &#8211; October 5-26, 2024. Each workshop will take place on a different college campus, providing students with the chance to learn in a hands-on environment.</p>\n\n\n\n<p>Participants can expect comprehensive training sessions led by experienced professionals from the WordPress community. In addition to technical skills, the workshops will also cover various career paths within the WordPress ecosystem.&nbsp;</p>\n\n\n\n<p><a href=\"https://x.com/PoojaDerashri\">Pooja Derashri</a>, event organizer and co-founder of WPVibes, said: “By introducing students to WordPress, we’re providing them with more than just technical knowledge; we’re giving them access to a world of career possibilities. This initiative will help students not only build valuable skills but also connect with professionals and peers who can guide them in their career journey.”</p>\n\n\n\n<p>The Ajmer WordPress Meetup group has been active since 2017, and the organizers had planned to engage with students even before the pandemic caused the group to go quiet. They later shifted their approach, opting to conduct workshops at colleges rather than gathering students in one location.</p>\n\n\n\n<p>With an anticipated turnout of 350 to 400 students, WP Campus Connect promises to be a vibrant hub for learning and collaboration. The event is designed not only to educate but also to inspire students to consider future careers in web development, digital marketing, and more.</p>\n\n\n\n<p>The organizers have ambitious plans to expand the program in the future. They aim to bring in global speakers to offer valuable industry insights and establish a mentorship program that connects students with experienced WordPress professionals. They also plan to host hackathons and competitions focused on WordPress while collaborating with industry partners to create internship and job opportunities for students.</p>\n\n\n\n<p>Recently, much emphasis has been placed on attracting new users, especially students, to WordPress. Josepha Haden Chomphosy, Executive Director of the WordPress project, discussed this month the importance of WordPress and how it <a href=\"https://wordpress.org/news/2024/09/episode-85-wordpress-in-education/\">equips students with essential skills</a> for thriving in their future careers. WordPress.com is also giving away <a href=\"https://wptavern.com/wordpress-com-offers-1000-free-premium-websites-to-students\">1,000 free premium websites</a> exclusively to university students.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Sep 2024 17:04:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: #138 – Isla Waite, Bet Hannon and Ryan Bracey on What to Expect From WP Accessibility Day 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=162588\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/podcast/138-isla-waite-bet-hannon-and-ryan-bracey-on-what-to-expect-from-wp-accessibility-day-2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55708:\"Transcription<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, what to expect from WP Accessibility Day 2024.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Isla Waite, Bet Hannon and Ryan Bracey.</p>\n\n\n\n<p>Isla Waite, originally from the UK has lived in Sacramento, California for 17 years. With a background in graphic design and over a decade in website project management, she recently started her own accessible web design business. Three years ago, Isla joined the WordPress accessibility meetup led by Amber Hinds, which also led to her involvement with the WordPress Accessibility Day. She is now a team lead, managing the tech and vendor teams to promote web accessibility.</p>\n\n\n\n<p>Bet Hannon has worked with businesses and nonprofits for over 16 years, helping them build WordPress websites, integrate other communication channels, and learn how to use digital marketing tools more effectively. She is the founder and CEO of AccessiCart, a services agency that focuses on accessibility and e-commerce, along with other high user interaction websites. Bet lives in Bend, Oregon and is a co-organizer of the WordPress meetup there.</p>\n\n\n\n<p>Ryan Bracey is the director of web development and user experience at Second Melody, a mid-sized branding agency located in New Jersey, which builds custom WordPress websites for clients of all sizes and industries. In this role, Ryan has taken a holistic approach to accessibility within the agency by promoting collaboration between clients and departments alike, to ensure all phases of a project are completed with intention.</p>\n\n\n\n<p>During the podcast, we discussed the significance of WordPress Accessibility Day, which is a 24 hour virtual conference running on the ninth to the 10th of October, 2024.</p>\n\n\n\n<p>It&#8217;s free to attend, and we&#8217;ll offer a wealth of resources around the topic of WordPress accessibility. The event will include live captions, ASL interpreters, and professionally created event transcriptions.</p>\n\n\n\n<p>It&#8217;s being driven by a team of passionate volunteers, and is geared towards making the digital space accessible for all.</p>\n\n\n\n<p>We&#8217;ll cover the logistical details, including how to register, and the optional donations and sponsorships that can enrich your participation. Our guests share their personal motivations and experiences that fuel their dedication to the accessibility cause.</p>\n\n\n\n<p>We also get into the global reach of the event with translation efforts and volunteer opportunities that make WordPress accessibility day 2024 for a truly inclusive initiative.</p>\n\n\n\n<p>Isla, Bet and Ryan talk about the challenges and triumphs of advancing web accessibility. The importance of both conformance and compliance, and practical steps you can learn about during the event to make your website more accessible.</p>\n\n\n\n<p>Whether you&#8217;re a developer, a designer or a content creator, this episode is packed with insights and inspiration to help you contribute to a more accessible web using WordPress.</p>\n\n\n\n<p>If you&#8217;re interested in making the web a more accessible and inclusive place, this episode is for you.</p>\n\n\n\n<p>If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Isla Waite, Bet Hannon and Ryan Bracey.</p>\n\n\n\n<p>I am joined on the podcast by Isla Waite, Bet Hannon and Ryan Bracey. Welcome to you all.</p>\n\n\n\n<p>[00:04:51] <strong>Bet Hannon:</strong> Great to be here.</p>\n\n\n\n<p>[00:04:52] <strong>Ryan Bracey:</strong> Thank you, yeah.</p>\n\n\n\n<p>[00:04:52] <strong>Nathan Wrigley:</strong> Very, very nice to have you. I can&#8217;t actually remember if we&#8217;ve had three guests on the podcast before.</p>\n\n\n\n<p>A quick hat tip before we begin to Michelle Frechette, who has been instrumental in lining up this podcast episode and wrangling today&#8217;s three guests.</p>\n\n\n\n<p>In no particular order, I&#8217;m just going to go in the list that I&#8217;ve got them written down on my screen. Would you mind just doing a very quick one minute introduction, quick bio about who you are? Something relevant to what we&#8217;re going to be talking about today, which is the WordPress Accessibility Day 2024. So let&#8217;s start with Isla. Could we just have your little bio please?</p>\n\n\n\n<p>[00:05:24] <strong>Isla Waite:</strong> Okay, my name is Isla Waite, I hail from the UK, but I live in Sacramento, California for the last 17 years. I have been in website project management for, gosh, more than a decade. Graphic design was my original life, and before that I was in Britain doing things.</p>\n\n\n\n<p>I recently started my own business in accessible websites. I stumbled upon WordPress Accessibility Meetup, run by Amber Hinds, about three years ago. And through that discovered WordPress Accessibility Day and said, yes, I&#8217;ll get involved in that. And now I am one of the team leads, I&#8217;m the tech and vendors team lead.</p>\n\n\n\n<p>[00:05:58] <strong>Nathan Wrigley:</strong> Very, very nice. Thank you so much for that. Okay, next one on the list is Bet. Bet, would you do the same? Just introduce yourself.</p>\n\n\n\n<p>[00:06:05] <strong>Bet Hannon:</strong> Absolutely. So I&#8217;m Bet Hannon, I&#8217;m the CEO of AccessiCart. We are an accessibility services agency that focuses on e-commerce and other high user interaction sites. And this is my third go around with WordPress Accessibility Day. I serve on the board of directors, I&#8217;m the treasurer, and I am the team lead for finance and sponsors. So I primarily do money things for WordPress Accessibility Day.</p>\n\n\n\n<p>[00:06:32] <strong>Nathan Wrigley:</strong> Okay, thank you so much. And finally, last but by no means least, Ryan.</p>\n\n\n\n<p>[00:06:36] <strong>Ryan Bracey:</strong> Thanks. So yeah, Ryan Bracey, I&#8217;m the director of Web Development at Second Melody. We&#8217;re a branding studio located here in New Jersey, where I&#8217;m also located. Yeah, much like Isla, I stumbled across Accessibility Day through Amber Hind&#8217;s Accessibility Meetup. Joined as a volunteer three years ago, been an organiser for the past two years, and this year I am helping out as the team lead for speakers. So, dealing with everything related to talking to speakers, reviewing speakers, making the schedule, with the help from a lot of other people.</p>\n\n\n\n<p>[00:07:06] <strong>Nathan Wrigley:</strong> Thank you very much. I obsess about WordPress, and so it&#8217;s not news to me that the WordPress Accessibility Day is a thing, but it occurs to me that maybe a bunch of people listening to this podcast will not have heard of this event before. So, whoever wants to take the question, could you just briefly outline what it is, what the intent is, and maybe, given that it&#8217;s coming up very soon, let&#8217;s get the date and the URL out there as well, so that people can pause this podcast, go and have a look, and then come back and press play again. So whoever wants to take that, just give us the lowdown, the introduction to when it is, and what it&#8217;s all about.</p>\n\n\n\n<p>[00:07:39] <strong>Ryan Bracey:</strong> Yeah. So WordPress Accessibility Day will be held this year, October 9th through 10th. We are a 24 hour conference, that&#8217;s why it spans the 9th through the 10th. So there are 24 hour long sessions. You can tune in starting on the 9th, watch all the way throughout the day, the night, into the next day. We are an international conference, a hundred percent virtual, so this is why we&#8217;re able to do a 24 hour day.</p>\n\n\n\n<p>So no matter where you are in the world, you can find a session that you&#8217;re interested in, that works for your schedule, participate how you want to participate. And our main focus here is just WordPress accessibility. So looking at educating and informing people on accessibility within the space, how they can help out, how they can get involved, and hopefully educating some people on things they didn&#8217;t know.</p>\n\n\n\n<p>[00:08:27] <strong>Nathan Wrigley:</strong> Nice. Thank you so much. I don&#8217;t know about the schedule too much. We can come to that in a moment. I don&#8217;t really want to particularly cherry pick out individual speakers, although you may wish to later.</p>\n\n\n\n<p>But given the fact that it&#8217;s running around the clock, so this 24 hour cycle, has that given you an opportunity to highlight different parts of the world, and raise the profile of different communities?</p>\n\n\n\n<p>So, you know, we&#8217;ve got three flagship events which span the globe, Asia, Europe, and America. But, you know, there&#8217;s communities in Australia, the Philippines, Taiwan, South America, all of these things. Has that been an endeavor? Is that part of the whole 24 hour nature, to raise the profile of different community members throughout the world?</p>\n\n\n\n<p>[00:09:04] <strong>Isla Waite:</strong> Absolutely, yeah. This year in particular, we have grown our marketing department of this nonprofit Accessibility Day, and thank you to Michelle. We are sending out social media, and blogs, and podcasts in all different areas of the world. She&#8217;s connected with all kinds of people to make sure stuff is pushed out at appropriate times for different time zones.</p>\n\n\n\n<p>We&#8217;ve had good responses to those things. So we now have team members coming in from different regions in Australia and Hungary. Speakers from all different places, all around the world. I think this year, as it should be, is better than the last, and next year will be better than this year, and that will keep happening.</p>\n\n\n\n<p>[00:09:42] <strong>Nathan Wrigley:</strong> Bet I think it was, that mentioned that she was a director. And when I hear that word, it immediately summons up some sort of structure in the background, you know, a hierarchy of people and what have you.</p>\n\n\n\n<p>A lot of the events that I&#8217;ve seen online, I get the impression that it&#8217;s a bunch of friends that get together sometimes, and organise an event around a particular theme. But given that there&#8217;s directors and things like that, I&#8217;m presuming that there&#8217;s more going on in the background, a little bit more of a professional nature to it. Perhaps like a, well, we call it in the UK a charity, I think it&#8217;s called a nonprofit in North America. But is there some sort of structure in the background like that?</p>\n\n\n\n<p>[00:10:16] <strong>Bet Hannon:</strong> Yes. Intentionally done in 2021, as we were going into 2022, was really thinking about, and one of the things that we, as a community, felt was really important was making sure that our speakers were compensated. All over the world, often people with disabilities are not compensated, and we expect them to do the educational work, but we expect that we want our speakers to be compensated.</p>\n\n\n\n<p>So there&#8217;s a small stipend that they get, and that was not allowed by the WordPress Foundation. So we explored other options, and we incorporated ourselves as a 501 C3. So we are a nonprofit organisation within the United States. And we exist under the fiscal umbrella, or the kind of oversight, fiscal oversight, of a larger nonprofit called Knowbility, that does a lot of work around education and accessibility awareness.</p>\n\n\n\n<p>That gives us the, we have the nonprofit piece, and so we just have three board members, so it&#8217;s not huge. And then we have the organising team for the event that has grown quite dramatically. You know, Isla talked about things kind of improving year to year, but this is by far the most organisers and volunteers that we&#8217;ve had, in terms of getting things put forward.</p>\n\n\n\n<p>And we&#8217;ve been able to do some amazing new things. You know, Isla mentioned the marketing efforts that have really stepped up this year. But we&#8217;ve also had some folks step forward, not so much related to the day of the event, but to start doing some translation so that we&#8217;re able to, you know, all the talks happen in English, but we are wanting to be sure that we&#8217;re finding some ways to translate those into Spanish, and French, and other languages that folks are interested in having them appear in, so we can spread the word.</p>\n\n\n\n<p>[00:11:56] <strong>Isla Waite:</strong> Shout out to Joni for all the work she&#8217;s done for that.</p>\n\n\n\n<p>[00:11:59] <strong>Bet Hannon:</strong> New translation lead, so that&#8217;s been amazing.</p>\n\n\n\n<p>[00:12:01] <strong>Nathan Wrigley:</strong> So a lot of the events that are online in the WordPress space, a lot of them are free to attend, certainly. Some of them are, you know, there&#8217;s a gatekeeping aspect to it, it might be financial, it might be the surrender of an email address or something like that. Is there any barrier to participating in this event during the day, or can literally anybody rock up and consume the content that you are creating?</p>\n\n\n\n<p>[00:12:23] <strong>Isla Waite:</strong> I was just commenting that, wouldn&#8217;t that be terrible if we put a barrier in the way of people accessing WordPress Accessibility Day?</p>\n\n\n\n<p>[00:12:30] <strong>Bet Hannon:</strong> We&#8217;ve worked really hard to make sure that there are no financial barriers for attending this. And so you can come to WordPress Accessibility Day. The only thing you need to do is surrender your email because you need an account to log into the Zoom, to attend the events. You can opt in or out of our mailing list though. So it&#8217;s free to attend.</p>\n\n\n\n<p>We offer you the option to give a $10 donation. If you want an event t-shirt, you can make a $50 donation. If you want to micro sponsor your company for $150, you can do that. But we have some amazing sponsors that have come in to help us put on the event.</p>\n\n\n\n<p>It&#8217;s more than just needing a streaming service to be able to do the event, because we&#8217;re offering live captions, because we&#8217;re talking about technical matters, sometimes that&#8217;s an issue, right? We have to have folks that are really skilled at doing those sorts of live captions. We&#8217;re offering live ASL interpreters during the event. And then, really quickly after the event, within the next few weeks, there&#8217;ll be professional transcriptions done.</p>\n\n\n\n<p>As you probably know, when you are doing a transcription of an audio, not a lot of them that are technical get everything right, the AI versions of those. And so having folks that are skilled to do that is a piece of that.</p>\n\n\n\n<p>So those things together, having the streaming service, and all those other things to get it all out, our amazing sponsors are helping us to do that in a way that makes it free for people to attend.</p>\n\n\n\n<p>[00:13:52] <strong>Nathan Wrigley:</strong> So if I was to show up and I surrender my email address, it&#8217;s going to be taking place through Zoom, and you&#8217;ve given some nice options there for some things that you can do to help the cause, if you&#8217;d like to buy a T-shirt or what have you.</p>\n\n\n\n<p>But if I turn up and I wish to read the captions, I think you mentioned there that you&#8217;re going to be having live captions. That implies, although I could be wrong, that you&#8217;ve got a human, a person actually transcribing them in real time.</p>\n\n\n\n<p>And I think you&#8217;re right, the option to do that with technology falls over so quickly with technical terms. And no doubt, a WordPress event, there&#8217;s going to be hundreds of words bandied around, which wouldn&#8217;t be accurately transcribed, so that&#8217;s really nice. So you&#8217;ll be able to read those, and I&#8217;m guessing that that will be in English.</p>\n\n\n\n<p>[00:14:33] <strong>Bet Hannon:</strong> Yes. Initially, all the presentations and all the captions will be in English.</p>\n\n\n\n<p>[00:14:36] <strong>Nathan Wrigley:</strong> And is that the case for all of the presentations as well? I was to, yeah. So everything throughout the 24 hours is in the English language, and the captions will be in the English language as well, okay.</p>\n\n\n\n<p>[00:14:46] <strong>Bet Hannon:</strong> Right. And our hope is that, you know, our volunteer translators are going to be getting to work fairly quickly, and starting to put those out as they can, right? Again, the translation pieces are all done by volunteers.</p>\n\n\n\n<p>[00:14:58] <strong>Nathan Wrigley:</strong> Oh, okay. So, as soon as the session has ended, you&#8217;ve got, in your team of volunteers, there&#8217;s a bunch of people who are going to be transcribing those into, well, I&#8217;ll just name some languages and you can tell me, things like Spanish, and Italian, and what have you, and Japanese and things like that.</p>\n\n\n\n<p>[00:15:11] <strong>Bet Hannon:</strong> The big focus is Spanish, and then after that French, just in terms of the number of places that those languages are spoken. But we do have volunteers that pop up, for example, you know, there&#8217;s some languages in the different regions of India that people have an interest in making sure that the talks are available to their communities, and so folks can step up. And so if you have folks that, you know, I was in an interview earlier today, and someone expressed an interest in translating for Arabic because they want their community to be able to access this information. So if you have a community that you want to volunteer to help translate for, reach out.</p>\n\n\n\n<p>[00:15:46] <strong>Nathan Wrigley:</strong> Bet, where would we reach out to?</p>\n\n\n\n<p>[00:15:48] <strong>Bet Hannon:</strong> So the wpaccessibility.day is the website, and we&#8217;ll get you the link for that. And then there&#8217;s a volunteer section, and people can volunteer.</p>\n\n\n\n<p>[00:15:56] <strong>Isla Waite:</strong> I think it very much depends on where we can get volunteers from. We have ideal languages that we know are very popular in our part of the world, but we want as many languages as possible. So there&#8217;s really no restriction on who might volunteer and from where. And if you can speak another language, then we want you.</p>\n\n\n\n<p>[00:16:13] <strong>Nathan Wrigley:</strong> I&#8217;m just going to ask a question one at a time. And, again, we&#8217;ll just go in the order of the people that we did before, so I&#8217;ll start with Isla. It&#8217;s a personal question so you can answer this in any way that you like.</p>\n\n\n\n<p>Why have you gone in the direction of accessibility? Given all the interesting things that you can do online, why has accessibility become such a crucial part of your life, such that you are being involved, and giving up probably quite a lot of your time to organise an event like this? So it&#8217;ll be the same question, but we&#8217;ll begin with Isla.</p>\n\n\n\n<p>[00:16:38] <strong>Isla Waite:</strong> For me, I don&#8217;t think it&#8217;s any one thing. I think a number of things sort collided at the same time for me in my professional career and private life. Like I said, I&#8217;ve been a project manager for more than a decade, with a background in graphic design. Before that I was in the military.</p>\n\n\n\n<p>I am a very mission-focused person, and I was finding after a decade that, as much as I love my clients, I have some wonderful clients, I felt like, I need something to dig my heels into, and my fingers, and my brain, that has a bigger impact. And I think a lot of people find that at some point in their career. I just needed to see that I was somehow making a difference. Just little me, you know, little part of it, little butterfly wing situation.</p>\n\n\n\n<p>So that was part of it. And then, like I said, I stumbled across the Accessibility Day, Accessibility meetup. I was just intrigued. At that point I was really just learning what accessibility was. I stumbled upon the quote by Tim Berners-Lee, you know, the internet, access for everyone regardless of disability, which is now in my signature block.</p>\n\n\n\n<p>And then my father was diagnosed with Alzheimer&#8217;s, which is one of those hidden diseases for a long time. But early on, I watched him struggle on the internet. So he&#8217;s, at the time, in his sixties. I was watching over his shoulder, just sort of trying to do something really simple. I was like, huh, this could happen to anybody, it&#8217;s not just Alzheimer&#8217;s. I&#8217;m very interested in the cognitive side of things, as much as the seen disabilities.</p>\n\n\n\n<p>Anyway, that all sort of happened at the same time, and I decided, this is a path for me I think. And then just recently, I got involved with IAAP, the International Association of Accessible Professionals, and I just passed my CPAC. So yeah, for me it&#8217;s about getting on a path for the rest of my working life, and maybe beyond, where I feel like I&#8217;m doing something that my heart is driving.</p>\n\n\n\n<p>[00:18:18] <strong>Nathan Wrigley:</strong> What a lovely answer. That&#8217;s great, thank you. Same question to Bet.</p>\n\n\n\n<p>[00:18:23] <strong>Bet Hannon:</strong> Yeah, so I had been around flagship WordCamps and hearing about accessibility a little bit. But in 2016 we had a, one of our clients mentioned they needed help making their site accessible. And so that was when we really, about eight years ago, we really dug into learning about accessibility.</p>\n\n\n\n<p>And when our team did that, we realised all of us on the team had people that we knew that were impacted. And we saw the difference it makes in people&#8217;s lives, to be able to be independent, and have sense of human dignity in being able to do stuff on the web.</p>\n\n\n\n<p>And so much so that we shifted the focus of the agency. So it is what we do, but it&#8217;s, my take on it is, I hope we work ourselves out of work. I mean, if we could get to the point where nobody needs help learning how to do accessibility, because it&#8217;s just something we all do and know how to do. And so that&#8217;s a piece of what drives me to work.</p>\n\n\n\n<p>With Accessibility Day, is really just sort of extending that education and finding ways to help people learn and grow, and know how to do accessibility better. Because I think when we know better, we can do better. But to think about building in empathy for different ways of accessing the web. It&#8217;s just a huge part of what I want to be about, so this organisation gives me a chance to do that.</p>\n\n\n\n<p>[00:19:40] <strong>Nathan Wrigley:</strong> Yeah, another great answer. No pressure at all, Ryan.</p>\n\n\n\n<p>[00:19:43] <strong>Ryan Bracey:</strong> I know, I can&#8217;t believe I have to follow those two.</p>\n\n\n\n<p>[00:19:46] <strong>Nathan Wrigley:</strong> Two really powerful messages, so over to you.</p>\n\n\n\n<p>[00:19:49] <strong>Ryan Bracey:</strong> Similar to Bet&#8217;s timeline, right around 2016 for me. I&#8217;ve been a developer for, gosh, probably over a decade as well. But around that time period, 2016, we had a lot of clients coming to us mentioning accessibility. And up to that point in my career, it hadn&#8217;t really been something I knew much about, or given a lot of focus to.</p>\n\n\n\n<p>Started really focusing on it because it was a client ask, obviously something I needed to do for work. And as I went down that path of researching, what is this? What do I need to do to be compliant? I stumbled across Amber Hind&#8217;s accessibility meetups, started attending those, found this really warm and welcoming community.</p>\n\n\n\n<p>And just the whole push behind it, or the movement behind it even of, when you do this work it&#8217;s, I mean, yes, at the end of the day, we&#8217;re just creating websites, but it&#8217;s something so small that, why should we ever create a website that not everyone on earth can access? Meaning, yes, it doesn&#8217;t seem like a huge impact overall, in the big scheme of the world, but everyone has the right to be able to do anything anyone else can do. So why not just something as simple as browse the web.</p>\n\n\n\n<p>And then as you really dive more into it, you realise a lot of the things you do to help cater to the accessibility crowd, you&#8217;re also catering to everybody in the world. So when you make something easy for one person, you make it a lot easier for everybody. So there&#8217;s added benefit across the board. It makes your work a lot better, it makes your work more accessible, everyone can participate.</p>\n\n\n\n<p>I was also lucky around that time to find WordPress Accessibility Day. So I volunteered as a moderator, I believe I was three years ago. At the same time in my professional life, at my company, we went through massive growth. We had some restructuring, I was promoted to director of the website department. So as part of that role, I was tasked with also becoming more active in the community. So already had spoken at Amber&#8217;s Meetup, I was already a little bit of a part of Accessibility Day, so I took a larger role as an organiser. Lucky enough to work at a company that gives me the ability to do those things, and encourages me to do those things.</p>\n\n\n\n<p>I think to echo what both Isla and Bet have said, it just really kind of gives meaning to your day, to know that what you&#8217;re doing is making someone&#8217;s life a little bit easier.</p>\n\n\n\n<p>[00:22:08] <strong>Nathan Wrigley:</strong> That was also a fabulous answer. I think, in the last sentence, you encapsulated it in the one word, meaning. I think maybe that sort of sums it up. It gives some significance to work, which could otherwise be fairly technical and a bit dry. You know, if you&#8217;re just building websites all day, every day, I think it would be easy to, I don&#8217;t know, maybe you are fascinated by that for its own sake, but it would be easy to lose sight of that.</p>\n\n\n\n<p>And everything that you&#8217;ve, the three of you have just mentioned, points to a kind of more moral dimension to the work of building a website. I get this intuition, having spoken to many people in the community that you are in, that it seems to be replete with genuinely nice people, which is just lovely. I mean, the WordPress community itself is fairly nice, but then there&#8217;s a subset of that community, the WordPress community, the accessibility in WordPress community, which seems to have its own high level of loveliness, for want of a better word.</p>\n\n\n\n<p>[00:23:07] <strong>Bet Hannon:</strong> Well, Ryan kind of touched on that, you know, like finding this warm community. And I think that&#8217;s, you know, a lot of us work from home, and serving on this planning, organising team, for me, and I think for others too, is a way that we really connect every week. You know, we&#8217;re meeting most of the year, every two weeks. We&#8217;re now in the kind of pitched lead up to the event, so we&#8217;re meeting every week, and we get a chance to know one another. A lot of us have never met face to face yet, but we&#8217;re just a part of each other&#8217;s lives in a way that is genuinely warm and supporting, and that&#8217;s awesome too.</p>\n\n\n\n<p>[00:23:38] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s really nice. If somebody was to be listening to this and decides, you know what, I&#8217;m going to show up for the Accessibility Day 2024. Are there parts of the event which enable socialising, for want of a better word, or is it all about the presentations, or do you have, I don&#8217;t know, breakout rooms, or some way in which people can facilitate what you&#8217;ve just mentioned? You know, this kinda moral aspect, this nice camaraderie that you&#8217;ve all got.</p>\n\n\n\n<p>[00:24:02] <strong>Bet Hannon:</strong> If you only log into the Zoom, then you&#8217;re just consuming the presentations. But there is a Slack channel that you can get access to, and there will be a lot of chatting going on there. And that&#8217;s where you&#8217;ll get notified if you win any of the sponsors prizes, and the drawings and those kinds of things. So the Slack channel is the place where you could start to make some connections.</p>\n\n\n\n<p>[00:24:24] <strong>Nathan Wrigley:</strong> So there are opportunities for that. So, dear listener, if you are going to attend then, you never know, you might come out of it with a bunch of new friends as well, which is really nice.</p>\n\n\n\n<p>I&#8217;m just looking at the website itself, you have the most fabulous URL, by the way. It&#8217;s wpaccessibility.day. I mean, it couldn&#8217;t be better, that&#8217;s just great. Well done for bagging that one. That website itself, I&#8217;m presuming had to go onto the microscope quite a lot. Given the nature of the event, it would be somewhat remiss if the website had glaring accessibility errors in it.</p>\n\n\n\n<p>I don&#8217;t know if any of you three have been involved directly with the website, but I&#8217;d be interested in hearing some of the challenges. I think we all know that the idea of a hundred percent accessibility is something a bit off there into the distance, and it may never be achievable in anybody&#8217;s timeframe. But, what are some of the things that you&#8217;ve really gone out of your way to make as accessible as possible over there?</p>\n\n\n\n<p>[00:25:14] <strong>Bet Hannon:</strong> I want to like give a shout out to Ryan because he designed that website for us.</p>\n\n\n\n<p>[00:25:19] <strong>Ryan Bracey:</strong> Thank you Bet.</p>\n\n\n\n<p>[00:25:20] <strong>Bet Hannon:</strong> It&#8217;s awesome. Do you want to talk a little bit about that, Ryan?</p>\n\n\n\n<p>[00:25:23] <strong>Ryan Bracey:</strong> Yeah, absolutely. So as I mentioned, I do work for a branding agency, and as part of my involvement last year with Accessibility Day, we donated our agency resources to the group. There was interest to go through a rebrand, get a new logo, get a new entire branding.</p>\n\n\n\n<p>So my wonderful branding designers that I work with, and I&#8217;ll give him a shout out, Jay Zawislak, he is our creative director, took this on. He designed the logo, chose the color palette, chose the fonts. And when he went through that exercise, he worked pretty closely with myself, just because I&#8217;m a little more versed in accessibility.</p>\n\n\n\n<p>But we were really looking at, from step one of coming up with the brand, are these fonts accessible? And accessibility, as you mentioned, there is no a hundred percent, it is a spectrum. What works for one person might not work for another person, and vice versa. But you can look at small things like, if I do a lowercase l, a capital i, the number one, are those glyphs all different? Is the spacing between letters enough that it&#8217;s easy to read? Are the characters distinct enough that they&#8217;re easy to read?</p>\n\n\n\n<p>So even looking at fonts in that way, when we were picking colors, we were comparing all the colors against each other to make sure contrast worked. So wherever text is laid over a color, those have been checked.</p>\n\n\n\n<p>We also then took an opportunity to kind of showcase what can be done in an accessible website design. So when I designed it, I worked closely with our other board member, Joe Dolson, who actually started Accessibility Day, and now leads our website team as well, developed the website. And we decided to try to showcase things that can be done to make a site beautiful and accessible, because there is a little bit of a misconception within the design community that accessible design means ugly design, which is not true.</p>\n\n\n\n<p>So we even, you&#8217;ll notice at the top of the site if you are on it, there is a toggle to go into kind of a dark mode. We really wanted to showcase that this can be done in an accessible way. It honors users&#8217; browser preferences. If you prefer dark, it&#8217;s in dark by default. If you prefer light, it&#8217;s in light by default. We made sure when you switch it over everything is accessible in that mode as well. So that was done very intentionally too, because dark mode was kind of a big trend last year. So when we did the site, we wanted to show that can be done accessibly as well.</p>\n\n\n\n<p>We used a lot of pastel colors. Again, those are often seen as inaccessible. So showing that actually you can have a very colorful site, you can have a soft colorful site in a very accessible way. So a lot of thought went into it. And it was, like I said, kind of used as a showcase piece to say, actually, you can be accessible and beautiful at the same time. You just have to put a little bit more thought into it, but you can have a good product at the end of the day.</p>\n\n\n\n<p>[00:28:08] <strong>Nathan Wrigley:</strong> It&#8217;s really nice. I should say, I probably misspoke a little bit, given when this podcast is going to air, the URL that maybe would be more relevant is 2024. So the URL is the numerals 2024.wpaccessibility.day. That will actually get you to the current version of the site. It looks broadly similar, doesn&#8217;t it? You know, the design aesthetics, and what have you. But it&#8217;s absolutely marvelous. And so thank you for all of the hard work you&#8217;ve put in there.</p>\n\n\n\n<p>Just out of interest, Ryan, because you&#8217;ve been in the weeds with that, how much extra work, if you like, and I know this is a sort slightly contentious question, but if you had built this website, I don&#8217;t know, with some kind of page builder technology built inside a WordPress, and you&#8217;d had no thought to accessibility at all, against the version that we&#8217;re looking at now, how much more time do you actually have to spend on it? Was it a significant overhead, or is it just now muscle memory for you that you can just do it all at the same speed as you would with any website?</p>\n\n\n\n<p>[00:29:05] <strong>Ryan Bracey:</strong> I find there&#8217;s actually not a lot of extra work that goes into making something accessible, like I kind of alluded to, it&#8217;s just having that thought in your head beforehand. So to kind of draw a design analogy, if you know you&#8217;re working with a brand that has a red and black color palette, you know you have to design in red and black. It&#8217;s no harder, or easier, or more work, or less work than designing a blue and green website, it&#8217;s just a different approach. You have to think about it a little differently.</p>\n\n\n\n<p>So accessibility works in the same way, you just go into it knowing, I have to make sure that my fonts are big enough, I have to make sure I&#8217;m not pairing fonts, colors, and background colors that no one can see. I have to make sure, if I&#8217;m introducing functionality, I&#8217;m introducing something that&#8217;s well known, it&#8217;s being introduced in the right way, I am doing it in a way that&#8217;s easy for everyone to use.</p>\n\n\n\n<p>[00:29:57] <strong>Bet Hannon:</strong> It&#8217;s really just kind of an additional, thinking about user experience.</p>\n\n\n\n<p>[00:30:01] <strong>Ryan Bracey:</strong> Right. I was going to say, at the risk of sounding controversial, it kind of just is, if you&#8217;re good at user experience, you&#8217;re good at accessibility.</p>\n\n\n\n<p>[00:30:09] <strong>Isla Waite:</strong> And it gives you boundaries. I know so that many designers flail without some kind of boundaries. And yes, the brand gives you some boundaries but, you know, I was talking to another designer recently, and it&#8217;s designed with purpose. That&#8217;s how I look at accessibility. Yes, you have a brand, but now you&#8217;re designing with a purpose. And going after it like that, everyone just totally is on the same page immediately. As long as the team has an accessible culture, it&#8217;s not any different to designing the old way.</p>\n\n\n\n<p>[00:30:35] <strong>Ryan Bracey:</strong> Yeah, it&#8217;s essentially just laying out a larger set of design requirements at the beginning of a project.</p>\n\n\n\n<p>[00:30:40] <strong>Nathan Wrigley:</strong> We&#8217;re at an interesting time with accessibility because I feel, I&#8217;ve said this a few times on this podcast, that if we rewound the clock a decade, then accessibility wasn&#8217;t really, it didn&#8217;t really have a spotlight on it particularly. But now it really does, almost that it&#8217;s the thing of our time. You know, in the year 2024, it really does feel like one of the most talked about subjects.</p>\n\n\n\n<p>I think there&#8217;s a couple of reasons for that, and the one is the moral dimension that you mentioned, all three of you alluded to that. And actually it felt like that was the dimension for the three of you, you know, the moral aspect to it. And probably behind that a little bit, the community that is behind that moral dimension.</p>\n\n\n\n<p>But increasingly, I think there&#8217;s going to be a legal dimension as well, where the carrot, if you like, the moral thing, you know, dangle the carrot and hopefully people will come along. That will work for some people, you three being prime examples. But the stick, the legal aspect I think is coming fairly soon. I know that in the European Union, we&#8217;re going to have legislation coming around next year, which will make this all the more important.</p>\n\n\n\n<p>So attending events like this feels like, really, if you&#8217;re not skilled on this, this is the perfect moment to get involved, because at some point somebody might be knocking on the door with some paperwork that you don&#8217;t necessarily want to read. That&#8217;s not a particularly great reason to do it, but it is a fairly compelling reason. And I don&#8217;t know if anybody&#8217;s got anything to say about that, about the legal aspect, and the ambulance chasing lawyers and all of that coming up.</p>\n\n\n\n<p>[00:32:10] <strong>Bet Hannon:</strong> The reality is, for a lot of medium and small businesses, they tend to put off a lot of compliance things until they have to. That&#8217;s just sort of the way that they are, because of the revenue is just not there to do it often, so that happens. But people do come on board, and try to work at what they are required to do.</p>\n\n\n\n<p>And you&#8217;re right, we already have that in the US with the serial plaintiff lawsuits. We&#8217;re gearing up for the enforcement of the European Accessibility Act. But even in the UK and other places, there are other laws already there that are starting to be more enforced.</p>\n\n\n\n<p>And so, yeah, legal compliance is a thing. That is the main topic of our keynote speaker at the event this year in fact. Lainey Feingold is a US attorney who has been instrumental in accessibility law throughout the United States. She got involved with some of the early lawsuits around bank customers who were suing their banks over non-accessible ATMs, primarily blind consumers suing them. And out of that developed a kind of, structured negotiation, bringing together the people who build the ATMs, and the people who are blind who need to use them, and the users.</p>\n\n\n\n<p>And so it kind of builds on that user experience that we were talking about before, bringing folks together rather than being antagonistic. I mean, I think people do want to do the right thing. So I don&#8217;t know how much of those stories she&#8217;ll tell us in her keynote, but she was very, you know, if you&#8217;re in the US and you have an ATM with braille on it, Laney was a part of that. She&#8217;s going to be talking about the legal landscape for the WordPress community, and I&#8217;m really excited about that.</p>\n\n\n\n<p>[00:33:52] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s a nice segue Bet actually because, again, the URL 2024.wpaccessibility.day, and then if you add forward slash schedule, to the end of that, you&#8217;re going to be able to see what&#8217;s going on. And as you said, right at the top of the list is Lainey&#8217;s keynote address.</p>\n\n\n\n<p>But then underneath that we have all of the different bits and pieces that are rolling out over the following 24 hours, and they&#8217;re all clearly labeled, the times that you can see them live, and what have you.</p>\n\n\n\n<p>I&#8217;m going to put you all on the spot and ask for you to pick one, or maybe two, that you are particularly excited about. Now, caveat emptor, I am not suggesting, even for a moment, that if you pick two, that means the others are in any way, shape, or form, less worthwhile, let&#8217;s put it that way. We understand how this works. We can&#8217;t mention all of them because we just don&#8217;t have the time. But if you find that to be a fair thing to do, I&#8217;ll start with, well, let&#8217;s go with Isla. Couple that you are particularly excited about, or one, whichever you like.</p>\n\n\n\n<p>[00:34:48] <strong>Isla Waite:</strong> Well, I&#8217;m going from my brain, and I&#8217;ve only really studied the schedule twice. Once when I was, this is how the process goes, I was eliminating all indication of who these speeches, presentations come from, so that the speaker&#8217;s team could go through that, and it was anonymised so there&#8217;s no favoritism or anything, so yeah, that&#8217;s how it&#8217;s done.</p>\n\n\n\n<p>So that was my first exposure to, all of the applications of the speakers, which were somewhere in the region of 80 to 100. So the team did an amazing job of getting through all of that, and coming up with the 24, 25 presentations.</p>\n\n\n\n<p>I&#8217;ve since looked at it once because we&#8217;ve been pretty busy. So from the top of my head, I know there is one that focuses on a culture among developers, and that stuff is obviously very, very interesting to me because I work, I guide the team or whoever&#8217;s involved in a particular project.</p>\n\n\n\n<p>And that involves people who work predominantly with me, and people who work with the organization that we&#8217;re helping. It becomes a very molded team of people who need to understand how this all works, and how you&#8217;re going to keep doing it going forward.</p>\n\n\n\n<p>So I&#8217;m always interested on other people&#8217;s approaches to that. And I believe that speakers from Hungary, so I&#8217;m super excited to hear about that perspective from another country.</p>\n\n\n\n<p>[00:35:57] <strong>Nathan Wrigley:</strong> There&#8217;s one right in front of me at the moment which is entitled, Creating a Developer Culture of Accessibility and it&#8217;s Jessie Frio, Mark Steadman. So maybe that was the one that you were thinking of. So there we go, we&#8217;ve managed to find that one. That&#8217;s great. Okay, let&#8217;s go to Bet. Same question.</p>\n\n\n\n<p>[00:36:12] <strong>Bet Hannon:</strong> I am, not so much the presentations, I am super excited about hearing Lainey&#8217;s keynote. I do a lot of work with folks that are trying to wrestle through all those legal compliance things, and that&#8217;s just the nature of what I end up doing with a lot of folks. So I just eat that stuff up, and I really eager to hear from her, she&#8217;s a great presenter too.</p>\n\n\n\n<p>[00:36:31] <strong>Nathan Wrigley:</strong> Perfect. So we&#8217;ve had a culture one, we&#8217;ve had a compliance one. So, yeah, over to you, Ryan, for the last one or two.</p>\n\n\n\n<p>[00:36:37] <strong>Ryan Bracey:</strong> Oh wow. As the speaker lead organiser, I feel like I love all my children. We do have some really interesting topics this year, maybe I&#8217;ll answer it that way.</p>\n\n\n\n<p>To go off Lainey&#8217;s keynote, we do have a few other talks that kind of focus around the legal landscape this year. This was a big push for us to get speakers in that area because it is becoming more prevalent.</p>\n\n\n\n<p>We also have some interesting talks that focus around accessibility from a designer aspect, which I think is an oft overlooked topic. I think a lot of times it just falls to the developer, when it&#8217;s really something that starts in the beginning.</p>\n\n\n\n<p>We do have some interesting culture ones, that talk about how to structure accessibility within your company.</p>\n\n\n\n<p>But there is one talk I am actually pretty excited about. It is called, How to Remediate Accessibility Issues in WordPress by Cam Coulter. And I think that one&#8217;s going to be very interesting to our audience because he&#8217;s talking specifically about how to address issues that pop up in WordPress, which, as WordPress developers, we know is not often a fully hardcoded, self-built system. You&#8217;re working with a lot of page builders, plugins, third party developers, software systems. So he&#8217;s talking about how to identify those things, and make changes when maybe you don&#8217;t have access to that source code.</p>\n\n\n\n<p>[00:37:53] <strong>Nathan Wrigley:</strong> Oh, well, thank you. That was nice, all three of you giving us a very different answer.</p>\n\n\n\n<p>If you go to that page though, although it might sound on the face of it that accessibility is a niche, it turns out that niche is really broad. I&#8217;ll just go through a few, I&#8217;m just looking at the page now. So the one that you just mentioned, Ryan, How to Remediate Accessibility Issues in WordPress.</p>\n\n\n\n<p>Then there&#8217;s one about agile accessibility, Building Inclusivity into the Product Roadmap. Practical Accessibility Tips for Content Creators. Accessibility Challenges with Single Page Applications. Why can’t I use my brand color there, and if not there, then where? That&#8217;s an interesting one. Is your page builder, accessible? Captchas and other gotchas. CSS tiny tips. Insights from a community driven survey. Developing accessible Gutenberg blocks. That one would capture I think.</p>\n\n\n\n<p>I&#8217;m about halfway down the page and I&#8217;ll stop there. But you&#8217;ve immediately got the idea that this not one thing, there really is a whole broad church of things to be consuming and getting involved in.</p>\n\n\n\n<p>So I know it&#8217;s not the three of you entirely, but I think this event is going to be absolutely fabulous. So just quickly, one more time, 2024.wpaccessibility.day. Just before we knock it on the head, as we say in the UK, just before we finish, is there anything that you want to just mention as a way of rounding it off? Something that I failed to ask, something that you think was important say. Let&#8217;s go round the houses. Let&#8217;s start with Isla.</p>\n\n\n\n<p>[00:39:19] <strong>Isla Waite:</strong> Yeah, I want to tack on a little bit to Bet&#8217;s comments about the legal stuff. It&#8217;s been a big thing in California recently, and I&#8217;m definitely not going to go into the details of that. But, you know, eventually California will sort itself out and there&#8217;ll be some kind of law that makes sense.</p>\n\n\n\n<p>But something that came up in the draft of that bill was compliance, and somewhere else, I believe the word conformance was used. I&#8217;ve studied those words a lot having just done my CPAC. Compliance being a legal thing, conformance being in the spirit of. And with all this talk of laws, and people definitely being worried and, scared and, you know, Bet&#8217;s clients and mine as well, oh my gosh, how do I get compliant?</p>\n\n\n\n<p>Yes, that is super important and, yes, it&#8217;s probably going to be the law. But for everyone else who&#8217;s just trying to get on board and figure this out, start with conformance. Start with doing something in the spirit of accessibility. All you have to do is squint at your colors and figure out, can I see them if my eyesight&#8217;s not very good? There&#8217;s so many places you can start to conform, and work in the spirit of accessibility. And I hope lots of those people come to WordPress Accessibility Day 2024.</p>\n\n\n\n<p>[00:40:25] <strong>Nathan Wrigley:</strong> Nice. Thank you for that final comment, that&#8217;s lovely. And, Bet, anything you wanted to add?</p>\n\n\n\n<p>[00:40:30] <strong>Bet Hannon:</strong> Yeah, I think a lot of times, we&#8217;ve kind of alluded to it a couple different times, some of the stuff Ryan talked about. A lot times people think accessibility is something very complex, that only specialists can do. And I try to help people understand, you know, start where you&#8217;re at, and if you can put alt text on images, and make sure your heading structures are right, and make sure your link texts are there, and work on your color contrast. That&#8217;s a lot of accessibility issues, and they don&#8217;t necessarily require very much technical knowledge at all, right? Content creators do a lot of that work. And so get started and start learning, but also, the more you educate yourself, the more you can stop creating inaccessible content.</p>\n\n\n\n<p>[00:41:11] <strong>Nathan Wrigley:</strong> Nice. And it feels like this event is perfectly poised for that. Whether you are really deeply into this journey, there&#8217;s content here you. But you are the 101 stage, and you just want some tips right at the outset, there&#8217;s things here well. Okay, thank you. And, Ryan, rounding us off.</p>\n\n\n\n<p>[00:41:25] <strong>Ryan Bracey:</strong> Yeah. And I just wanted to say, and Nathan, you alluded to this but, as you read our schedule, we do have a little bit for everybody, and we took a really concerted effort to make sure that this wasn&#8217;t a fully technical conference. If you&#8217;re not a developer, there are going to be talks for you here. If you&#8217;ve worked in accessibility for years, there will be talks for you here. If you&#8217;ve just heard about accessibility today on this podcast, there are talks for you there.</p>\n\n\n\n<p>So as we&#8217;ve mentioned, it is free to attend. So if you go to our website, you can register right now. It&#8217;s October 9th, block off your calendar. Each session only lasts for 45 minutes. One happens every hour, so you can kind of watch them at your leisure throughout the day. And like I said, we have something for everybody. So no matter what position or role you work in, no matter where you are in your accessibility day journey, you can probably find a talk that is relevant to what you are looking to get out of it.</p>\n\n\n\n<p>[00:42:15] <strong>Nathan Wrigley:</strong> Thank you so much. And playing it forwards a little bit, I would also draw attention to the menu on the URL, which we&#8217;ve been mentioning, 2024.wpaccessibility.day. Couple of things, there&#8217;s a volunteer menu item, maybe go and check that out if you&#8217;re interested in supporting the event going forwards. And also a donate menu item as well if you want to support the endeavors in that way.</p>\n\n\n\n<p>That has been a really interesting podcast. If you are new at accessibility, this event is for you. If you&#8217;re experienced, this event is for you. And if you would like to possibly make some new friends in a different community, this event is also for you. So it&#8217;s got a bit of everything for everybody.</p>\n\n\n\n<p>Thank you so much for chatting to me about it today. Thank you, Isla, thank you Bet, and thank you, Ryan. I really appreciate it.</p>\n\n\n\n<p>[00:43:03] <strong>Bet Hannon:</strong> Thanks for having us.</p>\n\n\n\n<p>[00:43:04] <strong>Ryan Bracey:</strong> Yeah, thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://2024.wpaccessibility.day/people/isla-waite/\">Isla Waite</a>, <a href=\"https://2024.wpaccessibility.day/people/bet-hannon/\">Bet Hannon</a> and <a href=\"https://2024.wpaccessibility.day/people/ryan-bracey/\">Ryan Bracey</a>.</p>\n\n\n\n<p>Isla Waite, originally from the UK, has lived in Sacramento, California for 17 years. With a background in graphic design and over a decade in website project management, she recently started her own accessible web design business. Three years ago, Isla joined the WordPress Accessibility Meetup, led by Amber Hinds, which has led to her involvement with the WordPress Accessibility Day. She is now a team lead, managing the tech and vendors teams to promote web accessibility.</p>\n\n\n\n<p>Bet Hannon has worked with businesses and nonprofits for over 16 years, helping them build WordPress websites, integrate other communication channels, and learn how to use digital marketing tools more effectively. She is the founder &amp; CEO of AccessiCart, a services agency that focuses on accessibility and eCommerce, along with other high user interaction websites. Bet lives in Bend, Oregon, and is a co-organizer of the WordPress Meetup there.</p>\n\n\n\n<p>Ryan Bracey is the Director of Web Development &amp; User Experience at Second Melody. A mid sized branding agency located in NJ, which builds custom WordPress websites for clients of all sizes and industries. In this role Ryan has taken a holistic approach to accessibility within the agency by promoting collaboration between clients and departments alike, to ensure all phases of a project are completed with intention.</p>\n\n\n\n<p>During the podcast we discuss the significance of <a href=\"https://2024.wpaccessibility.day/\">WordPress Accessibility Day</a>, which is a 24-hour virtual conference running on 9th to the 10th October, 2024. It’s free to attend and will offer a wealth of resources around the topic of WordPress accessibility. The event will include live captions, ASL interpreters, and professionally created event transcriptions. It’s being driven by a team of passionate volunteers and is geared towards making the digital space accessible for all.</p>\n\n\n\n<p>We cover the logistical details, including how to register and the optional donations and sponsorships that can enrich your participation. Our guests share their personal motivations and experiences that fuel their dedication to the accessibility cause. We also get into the global reach of the event, with translation efforts and volunteer opportunities that make WordPress Accessibility Day 2024 a truly inclusive initiative.</p>\n\n\n\n<p>Isla, Bet, and Ryan talk about the challenges and triumphs of advancing web accessibility, the importance of both conformance and compliance, and practical steps you can learn about during the event to make your website more accessible. Whether you’re a developer, a designer, or a content creator, this episode is packed with insights and inspiration to help you contribute to a more accessible web using WordPress.</p>\n\n\n\n<p>If you’re interested in making the web a more accessible and inclusive place, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://2024.wpaccessibility.day/\">WP Accessibility 2024 website</a></p>\n\n\n\n<p><a href=\"https://www.meetup.com/wordpress-accessibility-meetup-group/\">WordPress Accessibility Meetup</a></p>\n\n\n\n<p><a href=\"https://accessicart.com/\">AccessiCart website</a></p>\n\n\n\n<p><a href=\"https://secondmelody.com/\">Second Melody website</a></p>\n\n\n\n<p><a href=\"https://knowbility.org/\">Knowbility website</a></p>\n\n\n\n<p><a href=\"https://www.accessibilityassociation.org/\">International Association of Accessible Professionals website</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Sep 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Automattic Responds to WP Engine’s Cease and Desist with Legal Action\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=162542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/automattic-responds-to-wp-engines-cease-and-desist-with-legal-action\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9830:\"<p>After the <a href=\"https://wptavern.com/highlights-from-matt-mullenwegs-spiciest-word-camp-presentation-at-wordcamp-us-2024\">incidents</a> at WordCamp US 2024, <a href=\"https://x.com/wpengine/status/1838350670564377051\">WP Engine</a> sent a “cease and desist” letter to Automattic demanding that Automattic and its CEO, Matt Mullenweg, retract and stop making false, harmful, and disparaging statements about WP Engine.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Automattic Confirms Legal Action&nbsp;</h3>\n\n\n\n<p>Matt Mullenweg has confirmed that they have officially initiated legal action against WP Engine for the “Unauthorized Use of WordPress Foundation and WooCommerce, Inc. Intellectual Property” and requested them to stop the unauthorized use of trademarks belonging to Automattic &amp; Woo.&nbsp;</p>\n\n\n\n<div class=\"wp-block-file\"><a id=\"wp-block-file--media-82fb2235-2325-468a-8a3a-ff60fd229f1d\" href=\"https://wptavern.com/wp-content/uploads/2024/09/acnd_09_23_2024.pdf\">acnd_09_23_2024</a><a href=\"https://wptavern.com/wp-content/uploads/2024/09/acnd_09_23_2024.pdf\" class=\"wp-block-file__button wp-element-button\">Download</a></div>\n\n\n\n<p>The document reads, “Our Client owns all intellectual property rights globally in and to the world-famous WOOCOMMERCE and WOO trademarks; and the exclusive commercial rights from the WordPress Foundation to use, enforce, and sublicense the world-famous WORDPRESS trademark, among others, and all other associated intellectual property rights. We are writing about WP Engine’s web hosting and related services that improperly use our Client’s WORDPRESS and WOOCOMMERCE trademarks in their marketing.“</p>\n\n\n\n<p>The letter further asserts: “<strong>We understand that our Client has contacted you about securing a proper license to use its trademarks, yet no such agreement has been reached. </strong>As such, your blatant and widespread unlicensed use of our Client’s trademarks has infringed our Client’s rights and <strong>confused consumers into believing, falsely, that WP Engine is authorized, endorsed, or sponsored by, or otherwise affiliated or associated with, our Client.</strong> WP Engine’s unauthorized use of our Client’s trademarks also dilutes their rights, tarnishes their reputation, and otherwise harms the goodwill they have established in their famous and well-known trademarks, and has <strong>enabled WP Engine to unfairly compete with our Client, leading to WP Engine’s unjust enrichment.</strong>”</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXcCORhRC2nP1xvKhcURh5NbA7nVdxbFGd5W0ff2Iq8RB5ucrBu2xfWTagUNu3dy5KlrA4M8ruvg62cqj6bnvlE-YPxUVCzU1zOk9ZfOCS3djHu5dD9RKk7qLw708ovapaEzk0E8t93OBmSDvyENiR_D9dM?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p>The legal team also accuses that, “WP Engine has developed a business generating annual revenues of over $400 million, which has been based entirely on extensive and unauthorized uses of our Client’s trademarks.”</p>\n\n\n\n<p>Automattic&#8217;s lawyers warned, “Our Client is entitled to file civil litigation to obtain an injunction and an award of actual damages, a disgorgement of your profits, and our Client’s costs and fees. Our Client also is entitled to seek an award of attorney’s fees due to the bad faith and extraordinary nature of WP Engine’s knowing and willful infringements.” </p>\n\n\n\n<p>But <strong>Automattic is willing to amicably resolve this matter, including through a licensing relationship for use of its trademarks. </strong>WP Engine has time till October 03 to confirm its understanding of and compliance with Automattic’s requests including the below ones.&nbsp;</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdYDl96k1WlilwAU8pryXiuNFfY9udoDjcwppQrVTRaZroUEi-w28pu5UH0XlPAOtvX3HL_N42MEKxFmyj21u4AHmNKFrlHaqtNSSlICiA8nogcT4E1EXwS5jRasSv7ZTHo-qx8gI8GkXkCvbfOHvjPE3Fq?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p>The document also contains screenshots (shared below) from social media and WP Engine’s website, highlighting alleged misuse of trademarks and community confusion.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXcWUarZwMNkiS5izIbQwTe91unuMK1YW8K58q4JgOqn6YuHL7eDpS748XiCbZteOvNIKumrk2eEYjpYiAXcKvTHnKV3seaJZsxw4O8KSHMiNwZ5NEO59jRSJIEv0dQXpQl3qxZa0-iiichta9E8XCisRW5-?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfys6Mjc-Qrs41MRjyL4oW2FZIly-LO4nWl9AiWQgT6bSkcMltSkRK07zabQpHQHewxwkhPWGeowlTTKksa2at-BEVPVVvGLpvaikD01DlpAWl6LqoKe4Ih2KZPfkHt3iEA9caLhHWh76jaTBsH6kV6ung?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfdJF3LfO7SeeS4-uO7oiG1UivXQ2ROoGDcvYyrVUigC3x2fs6L-msS8uRl46gArk4YY0wJ7s0Aauz5_MJAj23SYHHTUIGHehw6nxjrMCGnARxqQ8lxokxEys7Kg9AG1ebxiKmZnFxsd0AUAmVScUqQ2qHp?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p>The legal battle between the two giants will have long-term effects on the community at large. Even more interesting is that Automattic had <a href=\"https://wptavern.com/automattic-makes-second-investment-wpengine\">invested</a> in WP Engine in 2011.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">More About Cease and Desist Letter From WP Engine&nbsp;</h3>\n\n\n\n<p>WP Engine’s <a href=\"https://wpengine.com/wp-content/uploads/2024/09/Cease-and-Desist-Letter-to-Automattic-and-Request-to-Preserve-Documents-Sent.pdf\">cease and desist</a> letter stated that “WP Engine is fully prepared to take all necessary steps to protect its business, employees and customers, as well as the entire WordPress ecosystem, from the harm Automattic is attempting to inflict upon them.”&nbsp;</p>\n\n\n\n<p>The document stressed that “Automattic and its CEO Matthew Mullenweg must immediately cease and desist from disparaging WP Engine and/or its investor by making false factual statements.”</p>\n\n\n\n<p>“Mr. Mullenweg’s statements also reflect a clear abuse of his conflicting roles as both (1) the Director of the non-profit WordPress Foundation, and (2) the CEO of at least two for-profit businesses that compete with WP Engine. From his sham assertion of trademark rights, to his market-wide disparagement, to disruption of known business relationships by either convincing or coercing WP Engine’s customers from doing any further business with it, these acts reflect just a few examples of Mr. Mullenweg’s unethical abuse of power. That Mr. Mullenweg quietly demanded tens of millions from WP Engine for his for-profit company while publicly claiming to be selflessly safeguarding the interests of the community is shameful.” WP Engine’s legal team stated.&nbsp;</p>\n\n\n\n<p></p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdF0GrTuLpJmk5XnZrGbNXDS19oW6Pmghgyh1lncgs-yCR9wp2h76ugSJKUnoBQfcQ2lHQ5jKrFyjBO7754Lj33cuuNlU_B6WdHBgrARw4yxauV7trDBr9Yb66FZ4JkK_TWGjiwxI6VtRzf8J6I4GxgpG3Y?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />From WordPress #Announcements Slack channel\n\n\n\n<p><a href=\"https://wordpress.slack.com/archives/C024MFP4Q/p1727128075148229\"></a>Matt also attended a <a href=\"https://x.com/MetaPrinxss/status/1838653973655699681\">Twitter Spaces discussion</a> and Courtney Robertson has <a href=\"https://x.com/courtneyr_dev/status/1838395777636254129\">shared</a> an AI-generated version of its transcript.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other Developments</h3>\n\n\n\n<h4 class=\"wp-block-heading\">WP Engine’s News Feed Removed?</h4>\n\n\n\n<p>Matt <a href=\"https://x.com/photomatt/status/1838502185879167069\">tweeted</a> about rumors that WP Engine removed the news feed from wp-admin dashboards. Some users confirmed that the whole WordPress News Metabox has been <a href=\"https://x.com/Maximebj/status/1838521044732113389\">removed</a> from the WP Engine dashboard but is still available in <a href=\"https://x.com/ravisoni6262/status/1838555523563819424\">Local</a>.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXc187GCzYtpDHKrCw2vdSwCpI3olcG9G4ohWEdfBRTniXOg4TEjB1ZxGuoH6riYYBSwTUIa5eyjR5IIWO7lSgfF8pKL8JxmvyoTPbLNMIl-C16s712m_rps_yZ7AMpsRMq0Q-LuavqaM46iRw7-c7LojinG?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p><a href=\"https://x.com/amitcha/status/1838581885347201448\"></a></p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXc_sfTdHpiUZ-24xYmJ2O0wb68rybJhzMjvS2seqZDEuC3vFIc4CZYPLIYrx9iAxHPA3Rq-A2AMeqw0zEeCAdU2mzzvlmm_YKFojwXqgKqRlcK9z1ilJAqegXrGGdTsCF5NyzoTk6LJtUAFMSQnIb7w-x-J?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p><a href=\"https://x.com/ravisoni6262/status/1838555523563819424\"></a></p>\n\n\n\n<p>Users were divided on the widget’s importance, but several people expressed dissatisfaction with WP Engine’s move.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdc6qQRjN3cnONQ47hXvSPTOLXtnXwt7FHj8jbiF8lSHUBDpb1E7j3_ylHNda-0n_7M5VC1WEJPSjy0cymnEGSRWVIYorwcOGe1jHVrpqKQIXZqPoHXAaBJC-Qgx5U-kJkyoVrub84tRpEzkiaQMt96iqw?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p></p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeY21VBZNWIKS6Ans8E4YNenVfpL1v97AT5LtS37SekyoBGaxofyqz7Iyu2LnrfjmviJwHNl56Kx4EgyzpR1oji7fMNtUAC6bX042XKtRtuMv_emDDBFIKj4xZTXlPMgnJKKwwlutpvNSvND2rF4_C-oZUC?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<h4 class=\"wp-block-heading\">WP Tavern Articles Missing?</h4>\n\n\n\n<p>A <a href=\"https://old.reddit.com/r/Wordpress/comments/1fofdpy/wp_tavern_articles_that_recently_went_missing/\">Reddit post</a> alleged that several WPTavern posts had disappeared after the WC US Q&amp;A session. However, WPTavern founder Jeff Chandler debunked the claims, <a href=\"https://x.com/jeffr0/status/1838653542392885531\">stating</a>, “With some help, I conducted a thorough investigation and I can confidently say that not only were those posts not deleted, they never existed.” The Reddit post was later deleted.</p>\n\n\n\n<p>(This concludes Part 2. Stay tuned for Part 3.)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Sep 2024 23:58:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Highlights from Matt Mullenweg’s Spiciest Word Camp Presentation at WordCamp US 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=162483\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/highlights-from-matt-mullenwegs-spiciest-word-camp-presentation-at-wordcamp-us-2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15480:\"<p>The highly anticipated Q&amp;A session with Matt Mullenweg at WordCamp US kicked off with him stating, “This might be one of my spiciest WordCamp presentations ever.” He opened the session by reading his recent article, <a href=\"https://ma.tt/2024/09/ecosystem-thinking/\">WordCamp US &amp; Ecosystem Thinking</a>, set against the backdrop of jazz music. Matt then used the analogy of the &#8220;<a href=\"https://en.wikipedia.org/wiki/Tragedy_of_the_commons\">Tragedy of the Commons</a>&#8221; to discuss the importance of Five for the Future. He also addressed his cryptic tweets and warned about the potential threat of private equity hollowing out and undermining open-source communities.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXe_D3O4YGt8kjma3RfJ_Q5SFZWeWzvmpW21KsxPIieVpE-t7z2U-TwEnhSIr0wY_R2MF2StJ4xaXSNzttVJo8H7V3f55ymR5Lt5oVYOSs-iwdKKxVnYcNM6Jfvz-_6-cz9S-QkyqjwtEYJetaXCiG7VE8Y?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<h3 class=\"wp-block-heading\">Key Points from the Q&amp;A Session</h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>This might be the last Word Camp you see WP engine have a booth at.</p>\n\n\n\n<p>&#8211; Matt Mullenweg</p>\n</blockquote>\n\n\n\n<p>Matt said that most of the information he’s about to share in the presentation has come from WP Engine employees who reached out to him. WPEngine is controlled by Silver Lake a Private Equity Firm that in Matt’s words “doesn&#8217;t give a dang about your open source ideals it just wants return on Capital.”&nbsp;</p>\n\n\n\n<p>He went on to discuss the fate of other companies Silver Lake has acquired. In 2010, they bought 25% of Talend and proceeded to monetize its open-source user base, eventually generating 20x returns over seven years. Silver Lake also bought 5% of Unity for $400 million and raised prices drastically, leading to multiple CEO changes and the rise of the open-source alternative, Godot Game Engine.</p>\n\n\n\n<p>Silver Lake, valued at $102 billion, also owns WP Engine, but Mullenweg criticized the company for contributing little to the WordPress community’s “Five for the Future” initiative. He referred to Lee Wittlinger, the Managing Director of Silver Lake, as “a schoolyard bully” and announced that WP Engine would no longer be allowed at future WordCamps. &nbsp;</p>\n\n\n\n<p>Mullenweg offered to return the $75,000 WP Engine had paid to be a Super Admin Sponsor and also accused them of misusing the WordPress trademark. “WP Engine sounds like WordPress, and their colors are even similar to WP&#8217;s blue. There&#8217;s brand confusion.”</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdJjFvA5Xd_t3AgkhvRkVWySLDcXTSkDmtX29gvFNlIpc0y82v9ikSm7-l2gLZI4m6A4_frudo-gqeHvaFLWUFjSUW4cy_Y-O3rP0DZZKemYWVYZIpUHzctsOaQ7tNo5d48gRe8sq7QLJ8DlQQf4WJxdYLk?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p><a href=\"https://wpengine.com/agency-directory/axelerant-technologies-inc/\"></a>He also touched on broader issues, noting that WordPress growth had slowed in the last 18 months, partly due to changes in W3 Techs&#8217; methodology and non-contributing companies outcompeting contributing ones. However, he pointed out that WordPress had recently regained momentum and &#8220;grown an entire Drupal of market share.&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>What we create together is bigger than any one person.</p>\n\n\n\n<p>&#8211; Matt Mullenweg</p>\n</blockquote>\n\n\n\n<p>Matt admitted he didn’t want to make the presentation but felt compelled to speak out against bad actors. “The only way to fight a bully is to fight them back. If you just allow them to run rampant on the playground they&#8217;re just going to keep terrorizing everyone.”</p>\n\n\n\n<p>Mullenweg explained that he had attempted to discuss increasing WP Engine’s contributions, but after receiving no positive response, he felt it necessary to call them out publicly. He encouraged users to consider switching to hosts that actively contribute to WordPress when their WP Engine contracts are up for renewal. He also emphasized that WP Engine employees are not at fault and that he supports those who speak out about their company’s lack of participation in the WordPress community.</p>\n\n\n\n<p>Mullenweg also shared some exciting developments for WordPress, including upcoming Google Docs-like collaboration features. He stressed the importance of software licenses, likening them to the Constitution, as they guarantee freedom. Additionally, he expressed his pride in seeing WordPress adopted by the U.S. Army and the federal government.</p>\n\n\n\n<p>A fan of AI, Mullenweg advised developers to explore AI-assisted tools like Cursor and also promised to honor Jessica Lyschik’s Speed Build Challenge.</p>\n\n\n\n<p>The video of Matt Mullenweg’s <a href=\"https://www.youtube.com/live/fnI-QcVSwMU?t=5s\">Q&amp;A session at WordCamp US</a> is now available on YouTube.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 2 &#8211; Matt’s Next Steps</h3>\n\n\n\n<p>Matt&#8217;s statements at the WordCamp session were just the beginning. He then followed up the attack on WP Engine by publishing <a href=\"https://wordpress.org/news/2024/09/wp-engine/\">WP Engine is not WordPress</a> in WordPress.org. One of his major criticisms was that WP Engine is the only WordPress hosting provider that disables revisions by default.&nbsp;</p>\n\n\n\n<p>He didn’t mince words, stating, “What WP Engine gives you is not WordPress, it’s something that they’ve chopped up, hacked, butchered to look like WordPress, but actually they’re giving you a cheap knock-off and charging you more for it. This is one of the many reasons they are a cancer to WordPress, and it’s important to remember that unchecked, cancer will spread.”&nbsp;</p>\n\n\n\n<p>“WP Engine is setting a poor standard that others may look at and think is ok to replicate. We must set a higher standard to ensure WordPress is here for the next 100 years.”, he continued.&nbsp;</p>\n\n\n\n<p>He then launched a <a href=\"https://x.com/photomatt/status/1837303425106837784\">Twitter poll</a> asking the community if WP Engine should be allowed to have a booth at the next WordCamp, and the majority voted in favor of WP Engine&#8217;s continued presence.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXcR8pXgijgE1EQ2wxPs207gWBQV0S_zDR2Ab-Zx7XZydVk5YjyemmbDka3ZUBH9E-x_lqp0kFT8rQ0zCMox1p-QHTwIKWy04D4QtL6tlQf8zMbr02tka50qpt9ZYE_4DzqUZK-5u9agEsftss6C6gQPVP5Z?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https://x.com/photomatt/status/1837303425106837784\"></a>Response From WP Engine</h3>\n\n\n\n<p>In response, WP Engine published a blog post titled <a href=\"https://wpengine.com/blog/highlighting-wordpress-innovation-contribution/\">Highlighting Over a Decade of Innovation and Contribution to the WordPress Community</a>. In it, they detailed their contributions to WordPress, including sponsoring WordCamps, organizing educational events like DE{CODE}, and empowering the WordPress community through content like the <a href=\"https://wpengine.com/blog/wordpress-roundup-august-2024/\">WordPress Roundup</a> and <a href=\"https://wpengine.com/blog/why-wordpress/\">Building WordPress</a> series. They also highlighted their products like Faust.js, WPGraphQL, Headless WordPress platform, &nbsp;Local,&nbsp; Advanced Custom Fields (ACF), and Genesis Blocks.&nbsp;</p>\n\n\n\n<p>However, WP Engine did not address any of Mullenweg’s specific accusations. They concluded their post by reaffirming their dedication to WordPress, saying, “WP Engine’s commitment to WordPress and its passionate community is unwavering…WP Engine will remain at the forefront, finding new and exciting ways to drive the WordPress ecosystem’s success for years to come in partnership with this vibrant, innovative community.”</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community&nbsp;Reactions</h3>\n\n\n\n<p>Matt Mullenweg’s comments sparked intense debate within the WordPress community, leaving it shocked and divided. While some rallied behind Matt, even going so far as to cancel their WP Engine subscriptions, others were uncomfortable with his approach.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXe1QO5KiT2R0VNVC5Sm_XNLIKpmI_GQ79VyGSlLjKeTdr9mrSpYgX7ibRjGWJrxsyp0qXyJVR9XOt34P12vWxOnU73r1946oXos2iATQcfnJ_-t93XsPeCgSQiGsNeeOQQr2cVxyWw_OJK2ecjUdHiLCxpU?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p><a href=\"https://x.com/danielstn10/status/1837490652516335830\"></a></p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdWQR3zxKaXfbTD5wp3a7cs213ajf9s2DdNbsOXrLvd98ZWaRvj7W_ynpoDYXv0pWCBu0xUr9IyZqz5mPixyedJ3Yu3r-wKfC9SDI1UpJJVWVJYyibZG1v-9zxTG71nPWNkAkX9rCtQeNWBv-Q5maWAcE-Y?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p><a href=\"https://x.com/hellosammunoz/status/1837225569798226082\"></a></p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf5pJ8EOERgtH4LL0NtTlEV1qgIw6VoBT5RgGC6p0z914WLMGZ75y1DPQcOuRIfEDSG10HcXUoaxNtUk-bwMZmnPonuYuk5tN9kIs0zZV5D7ND4RmA1Z7v2gugjiuqZny4wnc9Z3jW7ngjrgI_TsQhN7zCx?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p><a href=\"https://x.com/VicDrover/status/1837275144492044393\"></a>Rodolfo Melogli, founder of Business Bloomer <a href=\"https://x.com/rmelogli/status/1837386256264610163\">tweeted</a>, “I don&#8217;t think a CEO should attack people/corps based on personal opinions, no matter if right or wrong. Not good for the WordPress ecosystem tbh.”</p>\n\n\n\n<p>Nate Finch, author at Level Up Tutorials <a href=\"https://x.com/n8finch/status/1837503920362688798\">suggested</a>, “As far as I know, there is no requirement that any company that sponsors a WordCamp be involved with 5FTF, let only hit a certain threshold. If this is the case, and maybe it should be a requirement, it should be added to the sponsor agreement for WordCamps.”</p>\n\n\n\n<p>“It’s not enough to provide services and products and marketing at WordCamps; if you&#8217;re making millions of dollars off WordPress I think we all can agree you really need to contribute some real hard value back into it.”, said <a href=\"https://x.com/SethRubenstein/status/1837356406992949486\">Seth Rubenstein</a> of Pew Research Center.</p>\n\n\n\n<p>Hendrik Luehrsen, CEO of Luehrsen // Heinrich was <a href=\"https://x.com/photomatt/status/1837671613791444999\">worried</a>, “With his recent remarks, @photomatt may have just killed the #FFTF program. It’s a tough sell to maintain public profiles on a platform that can be weaponized against someone &#8211; deserved or not.” However, Matt assured that his goal is to raise awareness of the 5FTF initiative.</p>\n\n\n\n<p>“You can’t really promote the benefits of open source and then moan when companies build on that free platform and monetize it.” <a href=\"https://x.com/WPTutz/status/1837529360862949755\">tweeted</a> WPTuts.&nbsp;</p>\n\n\n\n<p>WPHercules published <a href=\"https://wpherc.com/wordpress-com-is-not-wordpress-1369/\">WordPress.com is not WordPress</a> as a parody countering WP Engine is not WordPress. They point out that “plugin extensibility is sacred,” but WordPress.com restricts plugin installation in lower-priced plans.&nbsp;</p>\n\n\n\n<p>Andrew Palmer, in <a href=\"https://fundwp.com/the-complex-dynamics-of-wordpress-a-passionate-critique/\">The Complex Dynamics of WordPress: A Passionate Critique</a>, pointed out Matt’s difficulty letting go of certain issues, which at times contradicted his own WordPress philosophy. He recommended elevating other leaders within the WordPress community to help balance decision-making and ensure clearer guidance and recognition of contributions.</p>\n\n\n\n<p>Kevin Geary’s <a href=\"https://geary.co/wordpress-big-tragedy-of-the-commons-problem/\">WordPress’ Big “Tragedy of the Commons” Problem</a> shares, “The problem is that Matt is putting a massively important project, and our future, in the hands of a historically failed model. Some of the smartest minds in economics have arrived at another obvious conclusion when tackling the Tragedy of the Commons problem: owned land is better cared for than public land because it benefits the private owner to protect and care for it.”</p>\n\n\n\n<p>He suggests, “WordPress should be driven by a proper funding model, a proper visionary, a consistent core development team, and consistent marketing.”</p>\n\n\n\n<p>James Giroux analyzed Matt&#8217;s actions as a Project Lead in <a href=\"https://jamesgiroux.ca/wcus-freedom-isnt-free/\">WCUS: Freedom Isn’t Free</a>. &#8220;Matt is the Project Lead, and he has a track record of calling things out in a direct, and sometimes uncomfortable way&#8230;I think it’s pretty hypocritical to say that Matt is mean or a bully while also saying things like “it’s because Matt wants Automattic to win” or “it’s because Matt doesn’t like competitors to Automattic”.</p>\n\n\n\n<p>Another hot topic was the brand confusion Matt highlighted between WP Engine and WordPress. Robert DeVore <a href=\"https://x.com/deviorobert/status/1837328835752181988\">pointed out</a> that more people are confused by WordPress.org vs WordPress.com than by WordPress vs WP Engine. Daniel Schutzsmith also <a href=\"https://x.com/schutzsmith/status/1837999842037293528\">shared his experience</a> with a client who faced the same confusion.</p>\n\n\n\n<p>Discussions are taking place on <a href=\"https://www.reddit.com/r/Wordpress/comments/1flqqm5/matt_just_threw_wp_engine_under_the_bus_hard/\">Reddit</a> too.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Pantheon &amp; GoDaddy &#8211; Then &amp; Now&nbsp;</h3>\n\n\n\n<p>Matt&#8217;s criticism of companies is not new. One of the most memorable incidents took place the night before <a href=\"https://wptavern.com/pantheons-100k-wordcamp-us-sponsorship-revoked-the-night-before-the-event\">WordCamp US 2016</a> when Pantheon’s $100K sponsorship was abruptly revoked. Their promotional materials, including their booth, were stashed away in a storage room, and the sponsorship fee was later refunded in full.</p>\n\n\n\n<p>Fast forward to this year’s WordCamp, and Pantheon returned as an Editor Sponsor alongside Automattic. Courtney Robertson of GoDaddy <a href=\"https://x.com/courtneyr_dev/status/1837376492151656747\">tweeted</a>: “Wild how we are all talking about @wpengine and not the elevator doors from Pantheon sponsored. I would like to know more about standards changing.”</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXcxOl6OpxH49B5zFo2kF9sjX4AfDO3VC1Bx0OvyNVvxpwWpS92tzBkQNeCYi1yMhOX2em5wWlAkpyIGQ8ly2GwrOTkLLFjhqWfEHLbzPwmjpj0lB0fMnVEAhMQepFMVPrehh5syzvkZQg_iJwAW5b6thcKT?key=gSgzezlYMuW2Mx-hWXqG-A\" alt=\"\" />\n\n\n\n<p><a href=\"https://x.com/miriamschwab/status/1836462121946878325\"></a>In 2022, Matt identified <a href=\"https://wptavern.com/matt-mullenweg-identifies-godaddy-as-a-parasitic-company-and-an-existential-threat-to-wordpress-future\">GoDaddy</a> as a “Parasitic Company” and an “Existential Threat to WordPress’ Future”. And this year, the very same GoDaddy was a Super Admin sponsor. They sponsored Courtney Robertson for Contributor’s Day and <a href=\"https://www.thewpcommunitycollective.com/fellowships/godaddy-wc-fellowship/contributor-day-stipend-form/\">allotted $2,000</a> for eight self-funded Table Lead contributors. Matt even mentioned their contributions in his Ecosystem Thinking article.</p>\n\n\n\n<p>(This concludes Part 1. Stay tuned for Part 2.)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Sep 2024 18:55:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Do The Woo Community: The Ultimate Guide to WooCommerce Hosting: Performance, Support, and Growth with Marcel and Mike\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=85702\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://dothewoo.io/the-ultimate-guide-to-woocommerce-hosting-performance-support-and-growth-with-marcel-and-mike/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55036:\"<div class=\"wp-block-group has-border-color has-light-gray-background-color has-background has-small-font-size has-global-padding is-layout-constrained wp-container-core-group-is-layout-16 wp-block-group-is-layout-constrained\">\n<p class=\"has-secondary-color has-text-color has-link-color wp-elements-9acf640b7ba38a84a982fc35d618387f\">This show is sponsored by&#8230;</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-15 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-12 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group has-base-background-color has-background wp-container-content-5 has-global-padding is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-11 wp-block-group-is-layout-constrained\">\n<img width=\"1650\" height=\"1650\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2021/03/avalara-logo-_dtw.png?resize=1650%2C1650&ssl=1\" alt=\"\" class=\"wp-image-75400\" />\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-container-content-6\"><strong><a href=\"https://developer.avalara.com/\">Avalara</a></strong>: help developers make sure their Woo projects are tax compliance done right with Avalara&#8217;s API. Visit their extensive developer resources today.</p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-4 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-14 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group has-base-background-color has-background wp-container-content-7 has-global-padding is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-13 wp-block-group-is-layout-constrained\">\n<img width=\"1509\" height=\"1038\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/01/Woo-logo-color.png?resize=1509%2C1038&ssl=1\" alt=\"\" class=\"wp-image-77744\" />\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-container-content-8\"><strong><a href=\"https://woocommerce.com/partners/\">WooCommerce</a></strong>: Join the official WooCommerce Marketplace and get your products in front of millions of engaged WooCommerce store owners.</p>\n</div>\n</div>\n</div>\n</div>\n\n\n\nEpisode Transcript\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>Marcel:<br />Well, hello there. Welcome to the show. Hi, Mike, how are you?</p>\n\n\n\n<p>Mike:<br />Hey, Marcel. I&#8217;m good. And yourself?</p>\n\n\n\n<p>Marcel:<br />I am wonderful. It&#8217;s September, summertime is ending. Vacation was just a couple of weeks ago, so I guess I’m in the most perfect mode you can get in the year.</p>\n\n\n\n<p>Mike:<br />Yeah, the gray weather has really shown us that summer might be over. I think we&#8217;ll get a second wave, right? Usually.</p>\n\n\n\n<p>Marcel:<br />Yeah, it seems there&#8217;s going to be some cold weather coming. There&#8217;s something in Portugal that’s a special time of year in October, where there’s just this little extra sun coming in and warm weather that gives you a last goodbye kiss of the summer. And it seems like this year we&#8217;re going to have it a little bit earlier than October.</p>\n\n\n\n<p>Well, today we’re going to go ahead and talk about WooCommerce and hosting—the critical aspects for anyone running an online store in WordPress. And unlike a regular WordPress site, WooCommerce introduces, I guess, unique challenges due to the dynamic nature of e-commerce. Things like product catalogs, customer data, and orders, all of which place more demands on your hosting environment. And the right hosting can mean the difference between a smooth shopping experience or a sluggish website.</p>\n\n\n\n<p>I guess sales are directly affected by good hosting. So, I guess we could break down a little bit what our listeners need to know to ensure that WooCommerce sites perform at their best. And okay, let’s kick things off by discussing—we keep talking about performance here, Mike. I feel like this is the third or fourth episode where the word “performance” is going to come out multiple times per minute, or per episode. And I don’t want this to be maybe yet another episode about performance and how important this and this and this and that is. But having said that, the only—or not the only—but the main task of a good hosting service is effectively to provide performance to your website. So, performance is actually crucial for both the user experience, SEO, sales results, and all of that. If the store loads slowly, visitors will leave before making a purchase, search engines may rank you lower. So, it’s definitely a key factor in performance—the hosting, the server response time, and all of that. As a general rule, or if you had 30 seconds to give somebody good advice about hosting, what would you say?</p>\n\n\n\n<p>Mike:<br />Pick something with enough resources, tools, and quality support to help you through any challenges that may arise as part of being an e-commerce store owner. And what you said is a very good list. I would add employee productivity. I have some clients who have 10 people in the backend processing orders all the time. That’s all un-cached, it requires a lot of resources and checking in the database for stuff. And then also business-to-business components—if your business needs to talk to another business, that’s fetching information, that’s going to require resources as well. I think, yeah, those three things I think are the most important. The support, quality tools, and resources. Without those, you’re going to be sacrificing some kind of quality overall, whether it’s for your users, your employees, or for your own, if you’re a stakeholder, profits and stuff like that.</p>\n\n\n\n<p>Marcel:<br />Right, right. And when you say support tools, do you also mean the actual support service that a hosting company provides? Not only whatever you can get through a dashboard of some sort, but also talking to somebody—is that important to you?</p>\n\n\n\n<p>Mike:<br />Yeah, definitely. I think talking to support staff, if you’ve worked with WooCommerce long enough, is generally one of those like, “Oh, how is this going to go?” moments. It could either go really well—you get someone who is enthusiastic and interested in troubleshooting together, finding solutions. And then you have other support staff who are like, “There’s nothing we can do,” or they try and point the finger somewhere else and are not trying to help you directly with the issue. And then as well as that too, it’s having the tools available to do troubleshooting, like having the command-line access with SSH, phpMyAdmin or similar tools to be able to investigate things in the database, New Relic or other things for gathering rich amounts of data. I know some service hosting companies have their own APM tool, and they have their own in-house scripts that they’ve built over time to help you scan logs and look for patterns and that kind of stuff. So I think both are really important.</p>\n\n\n\n<p>Marcel:<br />Yeah, that’s why I asked you, because in our freelance work that we do, sometimes we need to do the job of a good host support agent and sort of translate—let the client know what the issue is or might be—and just do a little bit of the bridge that one has to do between support and our client. Because sometimes support will say, “Yeah, this is this plugin that is running slow, this is this other thing and you should contact your developer” and stuff like that. And sometimes they’re right, but sometimes it seems like they’re definitely lazy about investigating the issue. But I think there are a couple of, well, this is getting better from time to time. I guess competition is responsible for improving all these services, and there are some really good ones, like you said, that have their own tools, and they’re very quick and immediately identify what the issue is, or being proactive as well—maybe mentioning that your website is running slow, there’s a long-running task occupying a lot of CPU power, and they go ahead and inform the client about it. All of this, I think, is super important. Right?</p>\n\n\n\n<p>Mike:<br />Yeah, you just reminded me, there are a few hosts that’ll send out emails if there’s been a 502 Bad Gateway or a 504 Timeout, or “Hey, we found malware,” or “You’re running this plugin version that has a known security vulnerability.” So, I think proactivity is one of the most attractive components of a hosting company, for sure.</p>\n\n\n\n<p>Marcel:<br />So I guess if we would begin establishing a list of all the things that people should look out for in a hosting company—well, besides price and CPU power and memory and all of that, I guess one of the most important factors is really how support works and what support provides in terms of service when things go wrong, or when you need help and when you need advice. So yeah, before committing to any host service, just try to figure out a little bit more about how support provides, because I personally think it’s probably the most important thing you can get. I mean, if the memory is low, that support guy will tell you, “Raise the memory,” and it’ll work, right? Or if CPU is not enough, “Add more CPU power to your hosting,” or this or that. So, it’s always going to end up being that support provides the information you’re looking for when you have difficulties, and managing hosting and leveraging what is the best plan and what I need, etc., is a decision that you will make today. But probably in a month’s time, or in a year’s time when your store grows, you’re going to have to revisit all of those choices again, and you’re going to have to fine-tune the hosting service that you’ve just hired to be more efficient for your successful store that’s running. And so that’s not that much important at the beginning, I would say.</p>\n\n\n\n<p>Mike:<br />Yeah, I agree. I think, like I said, if you have enough resources and things are performing well, things are smooth, then there’s not too much to worry about. But hopefully, as the store is growing and being successful, you then have to adapt over time, and it’s really useful to have support staff at the hosting company who can help you assess what your needs actually are resource-wise and be able to accommodate. Every store is different. I think we’ve both seen plenty of them. They’re never exactly the same. There are always a few differences.</p>\n\n\n\n<p>Marcel:<br />And when you see those pricing tables, they usually talk about the bandwidth, the CPUs, and this and that. And some of them do mention a couple of support services or support nuances, but talking to someone before committing to hosting services is a good idea. Or maybe asking other people or the community or any social media for advice on that. But having said that, okay, so now let’s see. We’ve talked about the support. It’s important. The different places where the data centers are and the different areas of the world the hosting service covers is also important, especially for stores. If you want to have a very fast-running store and if you’re operating worldwide, it’s important for you to know where that hosting service has its data centers so that you can expand your assets or different resources to those data centers. But let’s dive into more specifically really what’s important about memory, disk speed, PHP workers, caching systems, database optimization, security, backups, and scalability at the end. So, let’s start with the memory. I will just introduce very quickly how important memory is. And Mike, maybe I’ll propose to you this format: I give you a statement about what memory is and how important it is for WooCommerce, and you either agree or disagree with me and add your points to it. Sounds good?</p>\n\n\n\n<p>Mike:<br />Sounds good.</p>\n\n\n\n<p>Marcel:<br />Alright. So, if we talk about memory, why is memory important? We know that WooCommerce requires more memory, more RAM than a typical WordPress</p>\n\n\n\n<p>site because it’s all dynamic content. We have products, we have reviews, shopping carts, we have customer data. So, if you’re running a small store, maybe 1 or 2 gigabytes of RAM may be sufficient. But for larger stores and high-traffic websites, you would need 4, 8, 10, 12, 16, I don’t know, to run just to make sure everything runs smoothly. And without enough RAM, your server could become very overwhelmed. You could have slowing down pages and crashes, which is obviously the last thing that you want to have. What do you think about RAM? How important is RAM?</p>\n\n\n\n<p>Mike:<br />Yeah, it’s really important for sure, especially for the database. If you don’t have enough RAM, the database queries will time out or get terminated. And that can cause all kinds of weird issues where things didn’t get synchronized or it didn’t add to a queue that needed to be processed later. And then you also have some plugins that use a lot of RAM, right? So one of the things we often have to adjust is the memory limit in PHP so that certain tasks can execute. So, it’s one of those things you can’t oversell. On hosting, if you start to allocate more RAM than what’s physically available, it won’t work. And if you try and use virtual memory—if you remember back in the day, we would have a RAM disk and stuff like that—RAM is always going to be faster than hard drives. Even if—I don’t think SSDs will ever get—eventually, maybe SSDs will just be RAM chips. That would be cool. But I have a feeling that’s quite expensive.</p>\n\n\n\n<p>Marcel:<br />And RAM specifically has to have the ability to quickly read, write, read, write in a way and at a speed that SSDs are not designed to do. If we would have a world where SSDs and RAM would be the same chip, I guess the only company that could be able to do that would be Apple. But jokes aside, it’s sort of like every one of these two components has its own job to do in the environment. You talked about the database and RAM’s importance for the database, but there’s also the PHP side of it. So, when you’re working with RAM, RAM is basically shared between two main things: the database and the PHP. So, PHP, when it runs, it needs memory to do its calculations, and when it’s done, it just serves the results to the web server, which then displays it to the client. So, having PHP tasks that also take a lot of memory is also important in this case. But that is fairly easy to measure and to know. And if you have a PHP task that takes a lot of memory, then that’s usually a bad sign. So, increasing memory to cover up PHP memory leaks is not a good thing to do, but it’s also an important part of the process.</p>\n\n\n\n<p>Mike:<br />I agree.</p>\n\n\n\n<p>Marcel:<br />Then we have disk speed. The disk is another critical factor, particularly when you&#8217;re handling large amounts of data. And we know that with WooCommerce we can get that. But basically, for WooCommerce, I guess SSDs—the solid-state drives—are almost always a better choice than the traditional HDDs, and SSDs are mainly faster to read and write data, which is especially important for large WooCommerce stores with, I would say, thousands of products or images or orders or customers. So having SSDs can significantly improve site load times, which obviously are crucial for keeping customers engaged. We are old enough to have been around to witness the transition from HDDs to SSDs in the hosting world. Was that the same for you? Thank God we already have SSDs for hosting. And did that, in your experience, provide a huge performance impact?</p>\n\n\n\n<p>Mike:<br />Yeah, I mean nowadays you wouldn&#8217;t ever choose a host that didn’t use solid-state drives. It’s directly related to performance and the database. You want the database stored on SSD, not a hard drive like the old school ones. I’m pretty sure there are instances where I&#8217;ve witnessed this happen, usually from very low-cost hosting on a machine that was older than it should have been for being allowed to be in the web hosting space. And then you move them somewhere that uses modern technology, and the client is like, “Whoa, my time to first byte used to be 15 seconds, and now it’s a second.” And they’re like, “I cannot believe that that makes that big of a difference.” So if you are lucky enough to find a client’s site that’s still using an old-school hard drive, and you move them to SSD, I’m sure you’ll see a significant boost.</p>\n\n\n\n<p>Marcel:<br />I guess nowadays, HDDs in a hosting environment are used for more static data or for large data sets that you don’t provide specifically in a dynamic way to a web server. They would be more considered for saving data files that are just accessed sporadically. And so you do see some hosting companies offering this large amount of hosting space for this specific use, and they are usually using… there is still this discussion around which one of these two different types of drives lasts longer, because SSDs are more prone to fail, I guess, than HDDs. But then again, we have bad experiences with HDDs as well. If you mess with them too much or if… well, when they’re in the hosting environment, nobody will touch them, but they’re also very sensitive to movement and heat and other factors. I do remember the time when we had this transition from HDDs to SSDs on our personal computers, especially for the people who had Apple computers in early around 2012, 2011, 2012, when there was a transition between HDDs and SSDs. And people were buying these external SSDs and putting them into the USB connection and just booting off of external SSDs.</p>\n\n\n\n<p>And some people also tweaked their computers and opened them up and installed the SSDs inside and replaced the HDD. And we got huge improvements in speed and suddenly the operating system was loading, we would say, it seemed like it was running off the memory only, there would be no hard drive. And I guess we can say the same for hosting. So files being read very quickly is a lot more efficient for hosting.</p>\n\n\n\n<p>Mike:<br />Yeah, definitely. I do remember there&#8217;s one hosting company that they had… I brought a client that had so many images, it was like an Android news website, so they had so many images and they needed terabytes and terabytes. It was insane how much this was. And we ended up, because the SSDs were going to be so expensive, we ended up using hard drives in a RAID or something like that. And because it was just for the images—obviously you want to read the images as quickly as possible as well, similar to the database—but it was the only way that they could have sustainable long-term growth because of how much the image library grew every day. They needed something that made sense for the next 10 years at least. So yeah, I would just add to that. It’s an important little piece too. They still have their place, right? My Synology NAS, you have one as well, right? I chose Western Digital Red hard drives for the enterprise drives.</p>\n\n\n\n<p>Marcel:<br />Exactly.</p>\n\n\n\n<p>Mike:<br />They’re designed to run 24/7 and also last the longest. I think SSDs have a limited number of writes, right? Isn’t that…?</p>\n\n\n\n<p>Marcel:<br />Yeah. There are some calculations around how many times they can read and write, which defines their lifetime cycle, yeah.</p>\n\n\n\n<p>Mike:<br />Whereas hard drives are not unlimited, but it’s like, you have other problems at that point. You probably won’t be alive anymore.</p>\n\n\n\n<p>Marcel:<br />Exactly. Alright, that’s the disk topic. Let’s talk on another topic, and let’s talk about PHP workers, which not every hosting company discloses how many PHP workers one can get when we do a hosting plan with them, but basically—and I think they’re often overlooked—but they are a very essential aspect of hosting for WooCommerce specifically. So for everyone listening who doesn’t know what PHP workers are, in simple terms, they handle the simultaneous processes that occur on your website. So let’s say, for example, multiple users adding products to their carts or checking out at the same time. If you don’t have enough PHP workers, your site will slow down during busy times because there aren’t enough resources to process all the requests, and people are going to wait for their requests to process. So from the time that you ask for a specific URL and by the time you get the result delivered, that’s the time that the hosting will spend doing some sort of work, calculating some result for you to show on the website.</p>\n\n\n\n<p>And PHP workers are essentially the processes that take that request, process it, run the PHP script, and deliver the page that they’re requesting. So those 200 milliseconds, 400 milliseconds, they’re going to be busy doing something. So if you have 10 people coming in, there’s going to be eventually a queue, and people are going to be waiting for their turn to get the process running, to get the PHP worker running. So if you think of it like a restaurant, if there aren’t enough waiters, service gets slow. It’s kind of the same thing. PHP workers are expensive for hosting companies, and they’re also expensive for the resources that you have on your hosting side, but they’re an important part of it. What’s your take on PHP workers?</p>\n\n\n\n<p>Mike:<br />Yeah, I wanted to add to the waiter example that service will slow down, but you also get people leaving,</p>\n\n\n\n<p>which would be like a 502 Bad Gateway, where it’s like there’s not enough service, I’m leaving with a bad review.</p>\n\n\n\n<p>Marcel:<br />Yeah, exactly.</p>\n\n\n\n<p>Mike:<br />Which is what happens if a visitor comes to your site to try and buy something, and they just see an error message, right? 502 Bad Gateway. It’s like, oh, then they just leave. Some people will be patient and try to reload, but…</p>\n\n\n\n<p>Marcel:<br />Right.</p>\n\n\n\n<p>Mike:<br />Attention is harder and harder to maintain these days.</p>\n\n\n\n<p>Marcel:<br />Yeah. Why do you think most hosting companies don’t disclose how many PHP workers they have?</p>\n\n\n\n<p>Mike:<br />I think it’s a tricky thing to make equal because it’s very related to CPU and also the way that your site functions. So, I think it can be misleading to, for example, say you have 32 virtual CPUs and 500 PHP workers, though CPU cores and PHP workers, in my experience, are not created equally across hosting spaces. CPU is something that you can oversell and split. So, if I have 32 physical CPU cores, I can easily split that into 20 or 30 virtual machines that have four or eight CPUs, and it will just split and make them weaker between them. Whereas the kind of hosting I really like is when it’s a physical dedicated machine, and you’re not using virtual CPUs at all. And the PHP workers from that kind of machine tend to be way more powerful in executing scripts compared to ones on oversold VPS-style hosting.</p>\n\n\n\n<p>Marcel:<br />And PHP workers, because they work simultaneously on a specific task, they are consuming CPU resources, and it’s sort of like, you would think, “Okay, I have four cores, so I can have at least four PHP workers, but I could also have eight PHP workers. We could split each core between two PHP workers.” But the more PHP workers you add, the slower they themselves will run because they’re concurrently running and doing their task. And so that will eventually also slow down, and you will serve more people at the same time, but everybody will get a slower response at the end of the day. So it’s not a linear thing. It doesn’t seem like the more PHP workers you have, the faster it will go. There are certain limits. So that’s why I think also hosting companies don’t disclose their PHP workers, because it’s a game of being the best performer but also not just wasting a lot of resources on PHP workers that aren’t clearly needed. And also there’s some sort of energy consumption concern behind this as well. You don’t just want to have a bunch of processes running all the time, so it’s kind of like a balancing game. But some hosting companies do provide those numbers, and they market offering according to PHP workers. And more isn’t always better.</p>\n\n\n\n<p>Mike:<br />Yeah, very true. And it also depends a lot on the nature of the site and what it’s doing. I remember a client who did a lot of un-cached activity, so the idea was you would land on a website, and then they had a single sign-on system that you could connect your login to, and it would make an API request to a third party to authenticate, and then it would let you go shopping for some exclusive deals or whatever. We were doing load testing to get ready for the holiday season. It was for a very large company, and we found that they were running out of PHP worker threads. And even though we had a dedicated server with a huge amount of resources, and the CPU was basically flat, and the RAM wasn’t going that high, PHP workers were running out, and we were getting errors.</p>\n\n\n\n<p>I had a long discussion with the hosting company to say, “Look, yes, we’re using that lane, right? Yeah, we’re sort of keeping a waiter at the table, but it’s because we’re waiting for information from—we’re taking an order from a friend who’s running late, and we’re just waiting for the feedback from them to give to the waiter.” So, it’s not like the waiter is stressed or carrying a lot of plates necessarily. Sometimes the PHP worker is not actively processing a lot of information; sometimes they’re idle and waiting for information to come back. And I think that’s an important part: if the PHP worker is not actively processing and you picture the waiter running around constantly, sometimes they’re not doing much. And it’s okay to allocate more PHP worker threads in situations like that, if you’re monitoring the system and you can see that it’s not stressed. If CPU and RAM are showing very low levels of usage, then you can ramp up the PHP workers.</p>\n\n\n\n<p>But in the opposite way, if you have… I remember one of the first VPSs I ever provisioned and set up. It had one CPU core and 512 megabytes of RAM, and I was determined to run things on as few resources as possible and just rely on caching. It was a very cache-heavy website, it wasn’t a WooCommerce store, and I just kept increasing the PHP worker threads available, the MPM max children, and you can put it as high as you want. But then when I did load testing for un-cached responses, the server froze completely. And when I SSH’d in, the load number was like 200 and something, which it should be as close to 1 or 1 times the number of CPU cores that you have. You could just imagine these poor waiters, there was a lot of very, very tiny waiters carrying a lot of stuff, and none of them knew where they were going anymore. They were all confused, and the queue just got so backed up.</p>\n\n\n\n<p>Marcel:<br />I would imagine if this podcast included video, we would put up a graphic of tiny waiters in multiple restaurants just running around and being unorganized, and it would be very interesting to visualize that. I completely forgot. So, we’ve been talking about the importance of RAM and disk space and PHP workers, but not naming numbers. So I will try to give people a little bit of some ideas of what the numbers are for each of these individual components. Let’s call them, and I’ll name some numbers, and you correct me if I’m good with my numbers or not. But this is basically the same thing with engines in a car. If you have BMW, for example, they’re famous for having these big engines, they have 3 liters, 4-liter engines, and you just throw a bunch of gasoline in it. The explosion is huge. They have thick engine walls that can handle all the explosion. Then you have superpower, you have a lot of power because you really just have thick walls and a lot of gasoline exploding inside those cylinders. So that’s one way to do it. Let’s call it the easy way. It’s not an easy way to have a very big controlled explosion inside a cylinder, but let’s call it easy. The more tricky way is to have a 1-liter engine or a 1.5-liter engine and have an explosion that has almost the same kind of force or power that has this bigger explosion, but because you&#8217;ve adapted the shape of the cylinder, but because you made a special mixture between air and combustion and all of that, because you took a little bit more time into figuring out how to almost get the same kind of force with a lot less energy.</p>\n\n\n\n<p>I guess that’s a little bit the comparison that we’re making here. You can obviously have 16 GB of RAM and 16 CPUs and a lot of disk space and everything will run smoothly, yes. But is that efficient? Do you need all of that? Are you using your BMW to drive 5 kilometers to take your kid to school, or do you drive 300 kilometers every day and really need that strong engine to work in your favor? So, having that in mind, and taking into consideration that everything is running smoothly—you don’t have custom code that is just occupying a lot of resources—I would say less than 50 concurrent users, 2 gigabytes of RAM is enough. If you have 100 to 200 concurrent users, I think 4 gigabytes. And more than 200 concurrent users, it’d be 8+ to 16 gigabytes. I think these are good numbers. Would you agree with these numbers?</p>\n\n\n\n<p>Mike:<br />I think those are probably safe starting points, assuming the database is not huge. That would be my one caveat. If you have a 20-gigabyte database, then you’re going to want to start with at least 32 GB of RAM, I’d say, or more. But yeah, and then load tests—now people are getting prepared for the holiday season, Black Friday is coming up, and I would load test the most resource-hungry scenarios you can think of in terms of the marketing stuff you’re doing, whether it’s newsletters or paid traffic on Meta or Google or whatever it is. And we’re doing something right now with a client, and once they get to 200 users, things are not going well. So, we’re identifying the bottlenecks with New Relic and coming up with strategies of how to mitigate them.</p>\n\n\n\n<p>Marcel:<br />And the strategy is definitely not just, “Okay, let’s just double the RAM and everything will be good,” right? Because that’s also a cost that people have to take into consideration. You don’t have infinite money to pay for these resources and just be happy with it, right?</p>\n\n\n\n<p>Mike:<br />Yeah, I think during the holiday season is when people tend to be more open to the idea of just throwing resources at the problem. It’s certainly the easiest solution. Even if it costs more, usually it’s going to be worth it. If your site is crashing, you’re not making as much money, for sure. But yeah</p>\n\n\n\n<p>, in general, I don’t like the idea of, “Oh, just keep throwing resources at it until it works properly.” I think you and I would go and identify what is taking so long. Is the code optimized correctly? Is there a way to rewrite it so it’s more efficient in processing data and using less RAM and stuff like that?</p>\n\n\n\n<p>Marcel:<br />And it’s a lot more intelligent and rewarding if you figure out what’s consuming that much resource, and then suddenly, with the same kind of resources, the website’s speed doubles. There’s something special about tuning that, right? Obviously, if you&#8217;re time-constrained, and the holiday season is coming, then okay, let’s add some more RAM for the next three months, and then we’ll figure it out later, fine. But the figuring out later part needs to happen sometime.</p>\n\n\n\n<p>Mike:<br />Yeah, websites are just like a house or an F1 car. You can’t just keep adding stuff to it or turning something on and forgetting you left it on. If you have a basement and you turn the water on to do some sort of task, and then you got distracted and left it on, you’re adding more and more resources to accommodate a flood that you don’t need for any business purposes. I think that’s really important because a lot of the times when I do investigations, the thing that’s gobbling up CPU or RAM or disk space is a feature that they tested once upon a time and no longer use. The person at the company who suggested it is no longer with the company or whatever. So, I think this sort of website hygiene maintenance stuff is just so, so important. Also, hosting companies can help you with that, right? Good hosting companies will tell you if you’re about to run out of hosting, sorry, disk space, because without disk space, nothing will work. You won’t be able to do database operations, you won’t be able to log into your WordPress site.</p>\n\n\n\n<p>Marcel:<br />You might not even be able to SSH into your hosting and do anything in there, yeah.</p>\n\n\n\n<p>Mike:<br />Yeah, you can usually SSH in, but running commands will just give you weird output.</p>\n\n\n\n<p>Marcel:<br />And the same thing with RAM, right? If you run out of RAM and you need just a little extra to run some command to just basically kill something or fix something, it’s the same thing.</p>\n\n\n\n<p>Mike:<br />Yeah. You can SSH in, but running commands will just give you weird output. It’s a funny experience.</p>\n\n\n\n<p>Marcel:<br />And as far as CPUs are concerned, for 50 concurrent users, I’d say 2 CPUs, for 100 to 200 concurrent users, 4 CPUs, and for more than 200 concurrent users, you’ll need 8 CPUs. I would say that’s a round number or more depending on the situation. Would you agree with those numbers as well?</p>\n\n\n\n<p>Mike:<br />In general, I’d say they’re probably good starting points. It’s going to depend again on how many of those people are window shopping versus adding items to their cart. I think if you have caching set up properly and you don’t have a huge product catalog where every user is visiting different products, you can have tons—you could have hundreds or even thousands of window shoppers. But as soon as people start adding items to their cart, then the majority of caches are bypassed. Depending on how your site is tuned, we’ve seen this plenty of times where code is running unnecessarily for uncached visitors. WordPress runs a lot of functions, plugins execute a lot of code that doesn’t need to be, and that can slow things down.</p>\n\n\n\n<p>Marcel:<br />And as far as PHP workers are concerned, I would say on the same scale—50 concurrent users, 2 PHP workers; 100 to 200 concurrent users, 4 PHP workers; and more than 200, 10 PHP workers.</p>\n\n\n\n<p>Mike:<br />Yeah, you could start with those and see what happens.</p>\n\n\n\n<p>Marcel:<br />Let’s talk about the big elephant in the room—caching systems. Caching is definitely one of the most effective ways to improve the performance of an eCommerce store. There are different types of caching. There’s page caching, which saves a static version of your website. But we all know that WooCommerce stores can only have so many static versions of pages. Not all pages can be static like on a regular site, and those will be delivered without making your server do all the work from scratch. Right? Then you have object caching, you have Redis cache, you have… those would help you with database queries. You have browser caching, so the client side can also do some caching to save the resources locally on the user’s devices. You have OPCache or code caching, and you have a bunch of different caching systems to reduce the load on the server.</p>\n\n\n\n<p>I was thinking about asking you this question—how important is caching to you? But it seems like a silly question. I would rather ask you about the experience that you’ve been having with your most recent clients. Taking into consideration that hosting can provide some caching solutions, and based on the hosting services you&#8217;ve worked with, do you think there’s a hosting service that really nails the caching system for WooCommerce?</p>\n\n\n\n<p>Mike:<br />I would say it’s really difficult to do it perfectly because all stores are different. So, the best you can really expect from a hosting company is that they provide the tools and configuration possibilities necessary to set up caching correctly for your site. Most hosts do a decent job of setting up things where the cart and checkout are excluded, and they make sure the right cookies are excluded, like the ones for items in the cart. Edge caching is becoming more popular now, thanks to Cloudflare Enterprise integration, which is becoming easier. You get to take advantage of that, which reduces time-to-first-byte across different locations.</p>\n\n\n\n<p>So, no hosting company gets it perfectly right, but a lot of them offer a good starting point, a springboard, so you can configure caching yourself. I saw one hosting company recently that helped their client cache logged-in users for a Woo store, which I thought was really clever. Caching logged-in users sounds like dark magic, but their business model required users to register an account and log in to see the product catalog. Everything else was uncached, but once they logged in, they had a custom system where a cookie allowed for logged-in pages to be cached. It was really clever.</p>\n\n\n\n<p>That’s a special use case, and I wouldn’t expect every hosting company to offer that, but it was a great example of a very customized solution that worked well. Usually, though, it’s a balance of having good tools and knowing how to use them.</p>\n\n\n\n<p>Marcel:<br />The thing that’s special about WooCommerce is that some of the pages cannot be cached in the same way that other pages can. So, the least a hosting company needs to be aware of when offering WooCommerce-specialized hosting services is that there are certain pages within the WooCommerce store environment that need to be treated differently. You might also have custom pages where you want to insert exclusions for certain types of caching. Caching needs to be adapted to the nature of the store, not only for WooCommerce generally, but also for your own unique needs. I think that’s an important part of choosing a hosting provider. If you know they have the capability to adapt to your needs, that’s crucial.</p>\n\n\n\n<p>And yeah, hosting services are getting better at accommodating those requests. If you have the knowledge, you can still go to AWS or Google Cloud and configure everything yourself, but most store owners don’t have the time or expertise for that. Thankfully, many of these caching techniques are now available through hosting companies, and they take care of a lot under the hood. So, it’s definitely something to look for when choosing a host.</p>\n\n\n\n<p>Let’s talk very quickly about database optimization. This is one that site owners often overlook. Since WooCommerce stores store a lot of data, and we talked about this in our previous episode, everything from customer and order history… your database can get bloated, and that can slow things down. Regularly optimizing the database by removing transients or optimizing tables can make a big difference in performance. There are plugins that can help with that, and some hosting providers might also offer database optimization services. In 30 seconds, because I want to get to the end of the topics I have, Mike, how important is database optimization?</p>\n\n\n\n<p>Mike:<br />I think it’s similar to disk space and other stuff. If you don’t have an optimized database, everything is slower. Especially with WooCommerce, where the post table holds so much data, things can get really bloated. If your database is cluttered with unnecessary data, queries take longer, and that can impact performance. So yeah, it’s critical. Optimizing the database is not an optional thing. It’s like a house—if things are disorganized, or if there are too many of the same item in one drawer, it’s hard to find what you need. The same applies to your database.</p>\n\n\n\n<p>Marcel:<br />And also, I would say if people want to know more about database and performance optimization, they should check out our previous episode here on <em>Do the Woo</em>.</p>\n\n\n\n<p>Now let’s talk security and backups. Security is vital, obviously, since you&#8217;re handling customer data and payments. So, there are a couple of measures that hosting providers take to provide more security. SSL is mandatory—there&#8217;s not even a need to discuss that. But backups are also very important, and backups can be tricky. If you have a store that’s running 24/7 and you have a lot of orders coming in, if something happens and you need to restore a database, you’re going to lose some data unless you have a smart backup system. Some automated backup systems are more clever than others, but that’s definitely something to keep in mind. Your hosting provider will help a lot if they take care of that. Would you agree, Mike?</p>\n\n\n\n<p>Mike:<br />Yes, absolutely. Backups are crucial. Hosting companies need to have quick, reliable backups, and the ability to restore them quickly. And backups should not take hours and hours to complete unless your database is absolutely massive. But without a proper backup and restore plan in place, you’re in trouble if something goes wrong. Hourly backups, for example, can be a lifesaver, especially for stores that have a lot of transactions.</p>\n\n\n\n<p>Also, good hosting companies will take a snapshot before you restore a backup. In case you made a mistake or restored the wrong version, you can roll it back. It’s important to have that safety net.</p>\n\n\n\n<p>Marcel:<br />Right. And snapshots are very useful. Having backups done quickly is important, but knowing how to restore them is just as important. You need to be able to get your site back up quickly if something goes wrong, and that’s where good hosting support comes in.</p>\n\n\n\n<p>Mike:<br />I would also say verifying that your backups are actually valid and work should be part of every store&#8217;s maintenance. Test your backups periodically to make sure they restore properly. You don&#8217;t want to find out when something goes wrong that your backups were incomplete or corrupted.</p>\n\n\n\n<p>Marcel:<br />Exactly. It’s like a fire drill. You need to run it once or twice a year to make sure everything works as expected.</p>\n\n\n\n<p>Lastly, let’s talk about scalability. When your WooCommerce store grows, you’ll need to scale it. You might start with shared hosting, which we haven’t really mentioned in this episode, but as your traffic increases, you might need to upgrade to a VPS or even a dedicated server for larger businesses. Usually, companies use AWS or Google Cloud because they allow you to scale resources up and down easily. It’s important to choose a hosting provider that can grow with your store, so you’re not stuck with limits that could hurt your business.</p>\n\n\n\n<p>How important do you think it is when people start out to choose a hosting company that can scale? Or do you think there are hosts that are</p>\n\n\n\n<p>better suited for different stages of a business’s growth?</p>\n\n\n\n<p>Mike:<br />That’s a good question. I think it’s always a good idea to bet on your own success. You should anticipate growth unless you&#8217;re sure that your business model is limited and won’t require much scaling. It’s important to choose a hosting company that can grow with you. I’m sure you’ve experienced this too—migrating a WooCommerce store from one hosting platform to another is a nerve-wracking experience for clients. Many people have had bad experiences with migrations, and it can be traumatic if something goes wrong. So, it’s better to start with a hosting company that offers both shared hosting and scalable options like VPS and dedicated servers. You want to be able to grow without needing to change hosts.</p>\n\n\n\n<p>Marcel:<br />Exactly. And we fall back to what we talked about earlier—support is key. When you hit a threshold and need to upgrade, you want the hosting company to handle that transition smoothly. If you have a hosting provider that says, “Unfortunately, now you need to do this and that,” and they just put the whole thing back on the client, that’s not a good service. When scaling, the hosting company should be a partner in that process.</p>\n\n\n\n<p>Ideally, they should say, “Hey, you&#8217;re growing. Shared hosting is not an option anymore. Don&#8217;t worry. Let&#8217;s schedule a migration during your least busy hours, and by tomorrow morning when you wake up, you&#8217;ll have a new hosting service that can accommodate your growth.” That&#8217;s the kind of hosting service you want, right?</p>\n\n\n\n<p>Mike:<br />Yeah, definitely. When we’re offering advice to clients, we usually want them to be prepared for the next 10 to 20 years with whatever challenges or growth opportunities they may face. We have a handful of hosting providers we know can accommodate different types of stores and business models, so they will scale as needed.</p>\n\n\n\n<p>It’s hard to find hosts that can do horizontal scaling—multiple servers. Usually, once you&#8217;ve added a domain name that maps to a specific server, you can’t add another. Vertical scaling is more common; they’re happy to let you resize your server and make it bigger. But some clients want parallel processing or geo-redundancy. I have one client that has servers in Chicago and New Jersey, with a primary and secondary database setup. If Chicago goes down, New Jersey takes over. Not every host supports that kind of infrastructure, though.</p>\n\n\n\n<p>Marcel:<br />There are two other things I want to add before we wrap up: bandwidth and monitoring tools.</p>\n\n\n\n<p>Bandwidth is something people need to keep an eye on, even though most hosting providers offer scalable or unlimited bandwidth. But you should calculate your bandwidth needs by taking the average page size and multiplying it by the number of visitors and pages viewed. For example, if your average page size is 2MB, and you get 5,000 visitors per month, each viewing five pages on average, you&#8217;re looking at 50GB of bandwidth a month.</p>\n\n\n\n<p>I haven’t had a client run into bandwidth limits recently, but it’s still something to watch out for. Have you seen any issues with bandwidth?</p>\n\n\n\n<p>Mike:<br />No, not in recent years. Most hosting providers have moved toward offering unlimited bandwidth, especially since many use Cloudflare to handle some of the load. I see more issues with outgoing emails being rate-limited, though. Some hosts will restrict the number of outgoing emails, especially if they think there’s suspicious activity, like a flood of order confirmation emails during a sale. It’s not great if you&#8217;re running a big sale and your emails are getting blocked, because customers start to wonder where their order confirmation is. That leads to support tickets and frustration.</p>\n\n\n\n<p>Marcel:<br />Right, good point. And finally, monitoring. As a developer, I really appreciate hosting companies that provide good monitoring tools. I’m talking about dashboards where you can see CPU usage, memory usage, disk space, PHP workers, and even bandwidth. Some hosts offer integration with tools like New Relic, or they have their own monitoring tools. It’s important to be able to check on your website’s health regularly.</p>\n\n\n\n<p>The first thing a developer or freelancer will ask a client is, “Do you have a staging website?” If your hosting provider allows you to spin up low-end environments like staging or performance environments, it’s incredibly helpful. You don&#8217;t need production-level power for staging, but you do need an environment to test things. And most hosting providers do offer them, but not all of them are free. So, having that capability without extra charges is key.</p>\n\n\n\n<p>What do you think about that?</p>\n\n\n\n<p>Mike:<br />I completely agree. As developers, we’re always asking for a staging environment. It’s the first thing we ask before making any significant changes. Having a staging site on the same host is crucial for testing updates, new features, or troubleshooting problems without affecting the live site. And yes, it shouldn’t be expensive.</p>\n\n\n\n<p>Monitoring is also essential. The good hosting companies will provide a robust dashboard with real-time stats. And if you’re using New Relic or similar tools, you can get deep insights into performance, slow queries, and which plugins are hogging resources. That can save you a lot of headaches in the long run.</p>\n\n\n\n<p>Marcel:<br />Exactly. And I would say the most successful clients I’ve worked with are the ones who focus less on dashboards and numbers and more on working with the right people. Having a good relationship with a hosting company that offers solid support is often more important than staring at charts all day. When something goes wrong, it’s the support that matters most.</p>\n\n\n\n<p>Mike:<br />Yeah, and that’s something we’ve noticed too. If the client has a skilled development team, then having good monitoring tools is great, because they can dig into the details themselves. But if you’re a store owner who doesn’t have that technical expertise, then having access to a knowledgeable and responsive support team is far more valuable.</p>\n\n\n\n<p>It’s like giving someone a spaceship—if they don’t know how to fly it, it’s useless. So having both—good tools and good support—covers all your bases. But if you had to choose between them, I’d recommend going with quality support.</p>\n\n\n\n<p>Marcel:<br />Exactly. The store owners I’ve worked with who have been the most successful aren’t necessarily worried about the fancy dashboards—they care about the people they work with. And having a reliable hosting partner with good support is more important than anything.</p>\n\n\n\n<p>Alright, everyone, that’s it for today. Thank you so much for listening and tuning in. This was, once again, Mike and I talking about WooCommerce and performance. We keep talking about performance—it’s important, I know! We’re probably getting a bit repetitive on that subject, but we have some future episodes ahead with different guests. We’re going to talk a lot more about development, too. So yeah, tune in for those.</p>\n\n\n\n<p>Mike, I’ll talk to you in the next one!</p>\n\n\n\n<p>Mike:<br />Sounds good, man. Thanks!</p>\n</div>\n\n\n\n\n<p>In this episode of <strong><em>Woo DevChat</em></strong>, <strong>Marcel</strong> and <strong>Mike</strong> dive deep into the critical aspects of hosting for WooCommerce stores. </p>\n\n\n\n<p>They explore how hosting directly impacts your store&#8217;s performance, sales, and user experience, and discuss essential factors like RAM, CPU power, PHP workers, caching systems, and database optimization. </p>\n\n\n\n<p>The conversation highlights the importance of choosing the right hosting provider that can scale with your store’s growth, while providing top-notch support. Whether you’re just starting out or building a high-traffic WooCommerce site, this episode will equip you with valuable insights to ensure your WooCommerce store runs smoothly and efficiently.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Takeaways</h2>\n\n\n\n<p><strong>Hosting Directly Impacts Performance and Sales</strong>: A slow-loading WooCommerce store can lead to lost sales and lower search engine rankings. Choosing a hosting provider with sufficient resources, speed, and reliability is crucial for success.</p>\n\n\n\n<p><strong>The Importance of Support</strong>: Quality support is just as essential as having the right hosting resources. A knowledgeable support team that can proactively troubleshoot and resolve issues can be a game-changer, especially for non-technical store owners.</p>\n\n\n\n<p><strong>RAM, CPU, and PHP Workers</strong>: WooCommerce sites require more RAM and CPU power than regular WordPress sites due to the dynamic nature of e-commerce. PHP workers are crucial for processing simultaneous tasks, and understanding the right balance of resources can prevent slowdowns during peak times.</p>\n\n\n\n<p><strong>Caching Systems</strong>: Implementing effective caching strategies, such as page caching, object caching, and browser caching, is one of the most impactful ways to improve performance. However, WooCommerce stores require customized caching due to the dynamic content of e-commerce sites.</p>\n\n\n\n<p><strong>Database Optimization</strong>: Regularly optimizing your database by clearing transients and optimizing tables can significantly boost site performance, especially as your store grows and accumulates more data.</p>\n\n\n\n<p><strong>Scalability is Key</strong>: As your WooCommerce store grows, having a hosting provider that can easily scale from shared hosting to VPS or dedicated servers is important. Scaling smoothly without disruption requires the right provider and strong support.</p>\n\n\n\n<p><strong>Backups and Security</strong>: Frequent backups and a robust security setup are non-negotiable for WooCommerce stores. Automated, smart backup systems and proactive monitoring can save you from major losses in the event of a failure or security breach.</p>\n\n\n\n<p><strong>Monitoring and Staging Environments</strong>: Good hosting providers offer monitoring dashboards and the ability to create staging environments. These tools help developers test changes without affecting live sites and provide insights into performance, memory usage, and potential bottlenecks.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Links</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https://wpvip.com/\">WordPressVIP</a></strong></li>\n\n\n\n<li><a href=\"https://newrelic.com\"><strong>New Relic</strong></a></li>\n\n\n\n<li><strong><a href=\"https://www.cloudflare.com\">Cloudflare</a></strong></li>\n\n\n\n<li><strong><a href=\"https://redis.io\">Redis</a></strong></li>\n\n\n\n<li><strong><a href=\"https://www.phpmyadmin.net\">phpMyAdmin</a></strong></li>\n\n\n\n<li><strong><a href=\"https://aws.amazon.com\">AWS (Amazon Web Services)</a></strong></li>\n\n\n\n<li><strong><a href=\"https://cloud.google.com\">Google Cloud</a></strong></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Sep 2024 08:55:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: On WP Engine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=126284\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2024/09/on-wp-engine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:182:\"<p>I wrote a bit more on Lee Wittlinger / Silver Lake and WP Engine over on WordPress.org: <a href=\"https://wordpress.org/news/2024/09/wp-engine/\">WP Engine is not WordPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 22 Sep 2024 00:12:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 10 Oct 2024 21:09:02 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 10 Oct 2024 21:00:39 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20240127174858\";}','no'),(401541,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1728637742','no'),(401542,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1728594542','no'),(401543,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1728637742','no'),(401544,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/10/proud-mary/\'>Please Welcome Mary Hubbard</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\'>WordPress 6.7 Beta 2</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-org-login-gets-mandatory-affiliation-checkbox-following-wp-engine-dispute\'>WPTavern: WordPress.org Login Gets Mandatory Affiliation Checkbox Following WP Engine Dispute</a></li><li><a class=\'rsswidget\' href=\'https://heropress.com/ten-years-of-heropress/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ten-years-of-heropress\'>HeroPress: Ten Years Of HeroPress</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/mary-hubbard-to-be-the-new-executive-director-of-wordpress-org\'>WPTavern: Mary Hubbard to be the New Executive Director of WordPress.org</a></li></ul></div>','no'),(401547,'_transient_timeout_bulk-secret','1728594683','no'),(401548,'_transient_bulk-secret','o0k0vp','no'),(401755,'_transient_timeout_wp_rocket_customer_data','1728689725','no');
INSERT INTO `hyu_options` VALUES (401756,'_transient_wp_rocket_customer_data','O:8:\"stdClass\":17:{s:2:\"ID\";s:6:\"331795\";s:10:\"first_name\";s:7:\"Charles\";s:5:\"email\";s:29:\"charles.d.breitbart@gmail.com\";s:12:\"date_created\";s:10:\"1709085389\";s:15:\"licence_account\";s:2:\"-1\";s:15:\"licence_version\";s:8:\"3.17.0.2\";s:18:\"licence_expiration\";s:10:\"1740707796\";s:12:\"consumer_key\";s:8:\"2c173c35\";s:10:\"is_blocked\";s:1:\"0\";s:12:\"is_staggered\";s:1:\"0\";s:14:\"has_auto_renew\";s:1:\"1\";s:19:\"has_one-com_account\";s:1:\"0\";s:6:\"status\";s:6:\"active\";s:22:\"last_order_reseller_id\";s:1:\"0\";s:11:\"renewal_url\";s:99:\"https://wp-rocket.me/checkout/renew/charles.d.breitbart@gmail.com/cc520cd47934cb8185467c6bc99648e6/\";s:16:\"upgrade_plus_url\";s:82:\"https://wp-rocket.me/checkout/upgrade/charles.d.breitbart@gmail.com/2c173c35/plus/\";s:20:\"upgrade_infinite_url\";s:87:\"https://wp-rocket.me/checkout/upgrade/charles.d.breitbart@gmail.com /2c173c35/infinite/\";}','no'),(402105,'_transient_timeout_wp_rocket_pricing','1728662557','no'),(402106,'_transient_wp_rocket_pricing','O:8:\"stdClass\":3:{s:8:\"licenses\";O:8:\"stdClass\":3:{s:6:\"single\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":3:{s:7:\"regular\";i:59;s:4:\"sale\";d:44.25;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:47.2;s:14:\"is_grandmother\";i:59;s:15:\"not_grandfather\";i:59;s:10:\"is_expired\";i:59;}}s:8:\"websites\";i:1;}s:4:\"plus\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":4:{s:7:\"regular\";i:119;s:4:\"sale\";d:89.25;s:11:\"from_single\";O:8:\"stdClass\":2:{s:7:\"regular\";i:60;s:4:\"sale\";i:45;}s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:95.2;s:14:\"is_grandmother\";i:119;s:15:\"not_grandfather\";i:119;s:10:\"is_expired\";i:119;}}s:8:\"websites\";i:3;}s:8:\"infinite\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":5:{s:7:\"regular\";i:299;s:4:\"sale\";d:224.25;s:11:\"from_single\";O:8:\"stdClass\":2:{s:7:\"regular\";i:240;s:4:\"sale\";i:180;}s:9:\"from_plus\";O:8:\"stdClass\":2:{s:7:\"regular\";i:180;s:4:\"sale\";i:135;}s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:239.2;s:14:\"is_grandmother\";i:299;s:15:\"not_grandfather\";i:299;s:10:\"is_expired\";i:299;}}s:8:\"websites\";s:9:\"unlimited\";}}s:8:\"renewals\";O:8:\"stdClass\":4:{s:10:\"extra_days\";i:15;s:16:\"grandfather_date\";i:1640995200;s:16:\"grandmother_date\";i:315532800;s:16:\"discount_percent\";O:8:\"stdClass\":3:{s:14:\"is_grandfather\";i:20;s:15:\"not_grandfather\";i:0;s:10:\"is_expired\";i:0;}}s:5:\"promo\";O:8:\"stdClass\":4:{s:4:\"name\";s:11:\"Anniversary\";s:16:\"discount_percent\";i:25;s:10:\"start_date\";i:1719273600;s:8:\"end_date\";i:1719964799;}}','no'),(402256,'_site_transient_timeout_theme_roots','1728627586','no'),(402257,'_site_transient_theme_roots','a:2:{s:7:\"kadence\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";}','no'),(402258,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1728625786;s:7:\"checked\";a:2:{s:7:\"kadence\";s:5:\"1.2.6\";s:16:\"twentytwentyfour\";s:3:\"1.1\";}s:8:\"response\";a:2:{s:7:\"kadence\";a:6:{s:5:\"theme\";s:7:\"kadence\";s:11:\"new_version\";s:5:\"1.2.9\";s:3:\"url\";s:37:\"https://wordpress.org/themes/kadence/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/kadence.1.2.9.zip\";s:8:\"requires\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"7.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.2.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(402259,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1728625786;s:8:\"response\";a:1:{s:23:\"wp-rocket/wp-rocket.php\";O:8:\"stdClass\":8:{s:4:\"slug\";s:9:\"wp-rocket\";s:6:\"plugin\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"new_version\";s:8:\"3.17.0.2\";s:3:\"url\";s:21:\"https://wp-rocket.me/\";s:7:\"package\";s:52:\"https://wp-rocket.me/2c173c35/wp-rocket_3.17.0.2.zip\";s:14:\"stable_version\";s:8:\"3.17.0.2\";s:6:\"tested\";s:5:\"6.6.2\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://atlantagynecomastia.com/wp-content/plugins/wp-rocket/assets/img/icon-256x256.png\";s:2:\"1x\";s:88:\"https://atlantagynecomastia.com/wp-content/plugins/wp-rocket/assets/img/icon-128x128.png\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:40:\"userway-accessibility-widget/userway.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:42:\"w.org/plugins/userway-accessibility-widget\";s:4:\"slug\";s:28:\"userway-accessibility-widget\";s:6:\"plugin\";s:40:\"userway-accessibility-widget/userway.php\";s:11:\"new_version\";s:5:\"2.5.3\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/userway-accessibility-widget/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/userway-accessibility-widget.2.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:73:\"https://ps.w.org/userway-accessibility-widget/assets/icon.svg?rev=2526447\";s:3:\"svg\";s:73:\"https://ps.w.org/userway-accessibility-widget/assets/icon.svg?rev=2526447\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/userway-accessibility-widget/assets/banner-1544x500.png?rev=2798246\";s:2:\"1x\";s:83:\"https://ps.w.org/userway-accessibility-widget/assets/banner-772x250.png?rev=2798246\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.86\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.86.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=3159417\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=3159417\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:55:\"kadence-starter-templates/kadence-starter-templates.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"w.org/plugins/kadence-starter-templates\";s:4:\"slug\";s:25:\"kadence-starter-templates\";s:6:\"plugin\";s:55:\"kadence-starter-templates/kadence-starter-templates.php\";s:11:\"new_version\";s:5:\"2.1.3\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/kadence-starter-templates/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/kadence-starter-templates.2.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:70:\"https://ps.w.org/kadence-starter-templates/assets/icon.svg?rev=2354891\";s:3:\"svg\";s:70:\"https://ps.w.org/kadence-starter-templates/assets/icon.svg?rev=2354891\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/kadence-starter-templates/assets/banner-1544x500.jpg?rev=2354883\";s:2:\"1x\";s:80:\"https://ps.w.org/kadence-starter-templates/assets/banner-772x250.jpg?rev=2354883\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:33:\"kadence-blocks/kadence-blocks.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/kadence-blocks\";s:4:\"slug\";s:14:\"kadence-blocks\";s:6:\"plugin\";s:33:\"kadence-blocks/kadence-blocks.php\";s:11:\"new_version\";s:5:\"3.3.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/kadence-blocks/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/kadence-blocks.3.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/kadence-blocks/assets/icon-256x256.png?rev=2502131\";s:2:\"1x\";s:67:\"https://ps.w.org/kadence-blocks/assets/icon-128x128.png?rev=2502131\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/kadence-blocks/assets/banner-1544x500.jpg?rev=1954109\";s:2:\"1x\";s:69:\"https://ps.w.org/kadence-blocks/assets/banner-772x250.jpg?rev=1954109\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/shortpixel-image-optimiser\";s:4:\"slug\";s:26:\"shortpixel-image-optimiser\";s:6:\"plugin\";s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";s:11:\"new_version\";s:5:\"5.6.4\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/shortpixel-image-optimiser/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/shortpixel-image-optimiser.5.6.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/shortpixel-image-optimiser/assets/icon-256x256.png?rev=1038819\";s:2:\"1x\";s:79:\"https://ps.w.org/shortpixel-image-optimiser/assets/icon-128x128.png?rev=1038819\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/shortpixel-image-optimiser/assets/banner-772x250.png?rev=1730573\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.8.0\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:6:\"7.11.7\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wordfence.7.11.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"4.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"23.6\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.23.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3112542\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3112542\";}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.5\";}s:41:\"kadence-blocks-pro/kadence-blocks-pro.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"stellarwp/plugins/kadence-blocks-pro\";s:6:\"plugin\";s:41:\"kadence-blocks-pro/kadence-blocks-pro.php\";s:4:\"slug\";s:18:\"kadence-blocks-pro\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:41:\"https://www.kadencewp.com/kadence-blocks/\";s:6:\"tested\";s:5:\"6.6.2\";s:8:\"requires\";s:3:\"6.2\";s:7:\"package\";s:142:\"https://licensing.kadencewp.com/api/plugins/v2/download?plugin=kadence-blocks-pro&version=2.5.0&key=ktm_wc_order_QntgzZthxGmwU_am_KNCvYgXgYw3Y\";s:5:\"icons\";a:1:{s:3:\"svg\";s:76:\"https://www.kadencewp.com/wp-content/uploads/kadence-misc/kadence-plugin.svg\";}}s:27:\"kadence-pro/kadence-pro.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"stellarwp/plugins/kadence-theme-pro\";s:6:\"plugin\";s:27:\"kadence-pro/kadence-pro.php\";s:4:\"slug\";s:17:\"kadence-theme-pro\";s:11:\"new_version\";s:6:\"1.0.21\";s:3:\"url\";s:40:\"https://www.kadencewp.com/kadence-theme/\";s:6:\"tested\";s:5:\"6.6.3\";s:8:\"requires\";s:3:\"6.3\";s:7:\"package\";s:142:\"https://licensing.kadencewp.com/api/plugins/v2/download?plugin=kadence-theme-pro&version=1.0.21&key=ktm_wc_order_QntgzZthxGmwU_am_KNCvYgXgYw3Y\";s:5:\"icons\";a:1:{s:3:\"svg\";s:76:\"https://www.kadencewp.com/wp-content/uploads/kadence-misc/kadence-plugin.svg\";}}}s:7:\"checked\";a:11:{s:40:\"userway-accessibility-widget/userway.php\";s:5:\"2.5.3\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.86\";s:55:\"kadence-starter-templates/kadence-starter-templates.php\";s:5:\"2.1.3\";s:41:\"kadence-blocks-pro/kadence-blocks-pro.php\";s:5:\"2.5.0\";s:33:\"kadence-blocks/kadence-blocks.php\";s:5:\"3.3.1\";s:27:\"kadence-pro/kadence-pro.php\";s:6:\"1.0.21\";s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";s:5:\"5.6.4\";s:23:\"wordfence/wordfence.php\";s:6:\"7.11.7\";s:23:\"wp-rocket/wp-rocket.php\";s:8:\"3.16.2.1\";s:33:\"duplicate-post/duplicate-post.php\";s:3:\"4.5\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"23.6\";}}','no'),(402446,'_transient_timeout_rocket_preload_check_duration','1728634087','no'),(402447,'_transient_rocket_preload_check_duration','0.54109001159668','no'),(402733,'_transient_timeout_wpseo_total_unindexed_posts_limited','1728648265','no'),(402734,'_transient_wpseo_total_unindexed_posts_limited','0','no'),(402735,'_transient_timeout_wpseo_total_unindexed_terms_limited','1728648265','no'),(402736,'_transient_wpseo_total_unindexed_terms_limited','0','no'),(402754,'_transient_timeout_wpseo_unindexed_post_link_count','1728734664','no'),(402755,'_transient_wpseo_unindexed_post_link_count','2','no');
/*!40000 ALTER TABLE `hyu_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_postmeta`
--

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

--
-- Dumping data for table `hyu_postmeta`
--

LOCK TABLES `hyu_postmeta` WRITE;
/*!40000 ALTER TABLE `hyu_postmeta` DISABLE KEYS */;
INSERT INTO `hyu_postmeta` VALUES (7,6,'_seedprod_page','1'),(8,6,'_seedprod_page_uuid','ad0df5e8-a1df-42ea-b834-691af2192c98'),(9,6,'_seedprod_page_template_type','cs'),(301,1275,'kt_blocks_editor_width',''),(302,1275,'_kad_post_transparent',''),(303,1275,'_kad_post_title','default'),(304,1275,'_kad_post_layout','default'),(305,1275,'_kad_post_sidebar_id',''),(306,1275,'_kad_post_content_style','default'),(307,1275,'_kad_post_vertical_padding','default'),(308,1275,'_kad_post_feature','default'),(309,1275,'_kad_post_feature_position',''),(310,1275,'_kad_post_header',''),(311,1275,'_kad_post_footer',''),(312,1275,'_wp_page_template','default'),(314,1275,'footnotes',''),(316,1275,'_kadence_starter_templates_imported_post','1'),(317,1329,'kt_blocks_editor_width',''),(318,1329,'_kad_post_transparent',''),(319,1329,'_kad_post_title','hide'),(320,1329,'_kad_post_layout','fullwidth'),(321,1329,'_kad_post_sidebar_id',''),(322,1329,'_kad_post_content_style','unboxed'),(323,1329,'_kad_post_vertical_padding','hide'),(324,1329,'_kad_post_feature','hide'),(325,1329,'_kad_post_feature_position',''),(326,1329,'_kad_post_header',''),(327,1329,'_kad_post_footer',''),(328,1329,'_has_fluentform','a:0:{}'),(329,1329,'_wp_page_template','default'),(333,1329,'_kadence_starter_templates_imported_post','1'),(411,1407,'_edit_lock','1706379457:1'),(412,1329,'_edit_lock','1728594598:3'),(529,1482,'kt_blocks_editor_width',''),(530,1482,'_kad_post_transparent',''),(531,1482,'_kad_post_title','default'),(532,1482,'_kad_post_layout','default'),(533,1482,'_kad_post_sidebar_id',''),(534,1482,'_kad_post_content_style','default'),(535,1482,'_kad_post_vertical_padding','default'),(536,1482,'_kad_post_feature','default'),(537,1482,'_kad_post_feature_position',''),(538,1482,'_kad_post_header',''),(539,1482,'_kad_post_footer',''),(540,1482,'_has_fluentform','a:0:{}'),(541,1482,'_wp_page_template','default'),(543,1482,'_kadence_starter_templates_imported_post','1'),(544,1482,'_dp_original','1230'),(545,1482,'_edit_last','5'),(546,1482,'_edit_lock','1720738583:5'),(547,1484,'kt_blocks_editor_width',''),(548,1484,'_kad_post_transparent',''),(549,1484,'_kad_post_title','default'),(550,1484,'_kad_post_layout','default'),(551,1484,'_kad_post_sidebar_id',''),(552,1484,'_kad_post_content_style','default'),(553,1484,'_kad_post_vertical_padding','default'),(554,1484,'_kad_post_feature','default'),(555,1484,'_kad_post_feature_position',''),(556,1484,'_kad_post_header',''),(557,1484,'_kad_post_footer',''),(558,1484,'_has_fluentform','a:0:{}'),(559,1484,'_wp_page_template','default'),(561,1484,'footnotes',''),(562,1484,'_kadence_starter_templates_imported_post','1'),(563,1484,'_dp_original','1132'),(564,1484,'_edit_last','3'),(566,1484,'_edit_lock','1728594578:3'),(578,1484,'_yoast_wpseo_content_score','90'),(579,1484,'_yoast_wpseo_estimated-reading-time-minutes','1'),(580,1484,'_yoast_wpseo_wordproof_timestamp',''),(581,1482,'_yoast_wpseo_estimated-reading-time-minutes','4'),(582,1482,'_yoast_wpseo_wordproof_timestamp',''),(592,1491,'_menu_item_type','post_type'),(593,1491,'_menu_item_menu_item_parent','0'),(594,1491,'_menu_item_object_id','1482'),(595,1491,'_menu_item_object','page'),(596,1491,'_menu_item_target',''),(597,1491,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(598,1491,'_menu_item_xfn',''),(599,1491,'_menu_item_url',''),(601,1492,'_menu_item_type','post_type'),(602,1492,'_menu_item_menu_item_parent','0'),(603,1492,'_menu_item_object_id','1484'),(604,1492,'_menu_item_object','page'),(605,1492,'_menu_item_target',''),(606,1492,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(607,1492,'_menu_item_xfn',''),(608,1492,'_menu_item_url',''),(642,1511,'kt_blocks_editor_width',''),(643,1511,'_kad_post_transparent',''),(644,1511,'_kad_post_title','default'),(645,1511,'_kad_post_layout','default'),(646,1511,'_kad_post_sidebar_id',''),(647,1511,'_kad_post_content_style','default'),(648,1511,'_kad_post_vertical_padding','default'),(649,1511,'_kad_post_feature','default'),(650,1511,'_kad_post_feature_position',''),(651,1511,'_kad_post_header',''),(652,1511,'_kad_post_footer',''),(653,1511,'_has_fluentform','a:0:{}'),(654,1511,'_wp_page_template','default'),(656,1511,'_kadence_starter_templates_imported_post','1'),(658,1511,'_yoast_wpseo_estimated-reading-time-minutes','5'),(659,1511,'_yoast_wpseo_wordproof_timestamp',''),(660,1511,'_dp_original','1482'),(661,1511,'_edit_lock','1711846746:1'),(662,1511,'_edit_last','1'),(663,1511,'_yoast_wpseo_content_score','60'),(671,1329,'_edit_last','3'),(672,1329,'_yoast_wpseo_content_score','90'),(673,1329,'_yoast_wpseo_estimated-reading-time-minutes','11'),(674,1329,'_yoast_wpseo_wordproof_timestamp',''),(676,1275,'_edit_lock','1717625282:5'),(677,1525,'kt_blocks_editor_width',''),(678,1525,'_kad_post_transparent',''),(679,1525,'_kad_post_title','default'),(680,1525,'_kad_post_layout','default'),(681,1525,'_kad_post_sidebar_id',''),(682,1525,'_kad_post_content_style','default'),(683,1525,'_kad_post_vertical_padding','default'),(684,1525,'_kad_post_feature','default'),(685,1525,'_kad_post_feature_position',''),(686,1525,'_kad_post_header',''),(687,1525,'_kad_post_footer',''),(688,1525,'_has_fluentform','a:0:{}'),(689,1525,'_wp_page_template','default'),(691,1525,'_kadence_starter_templates_imported_post','1'),(692,1525,'_yoast_wpseo_estimated-reading-time-minutes','6'),(693,1525,'_yoast_wpseo_wordproof_timestamp',''),(695,1525,'_yoast_wpseo_content_score','90'),(696,1525,'_dp_original','1511'),(697,1525,'_edit_lock','1711839659:1'),(698,1525,'_edit_last','1'),(704,1540,'_kadence_starter_templates_imported_post',''),(705,1540,'_kad_post_transparent',''),(706,1540,'_kad_post_title',''),(707,1540,'_kad_post_layout',''),(708,1540,'_kad_post_sidebar_id',''),(709,1540,'_kad_post_content_style',''),(710,1540,'_kad_post_vertical_padding',''),(711,1540,'_kad_post_feature',''),(712,1540,'_kad_post_feature_position',''),(713,1540,'_kad_post_header',''),(714,1540,'_kad_post_footer',''),(715,1540,'_kad_form_fields','a:3:{i:0;a:4:{s:8:\"uniqueID\";s:9:\"e1fdf1-d9\";s:4:\"name\";s:0:\"\";s:5:\"label\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";}i:1;a:4:{s:8:\"uniqueID\";s:9:\"eb97cf-0d\";s:4:\"name\";s:0:\"\";s:5:\"label\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";}i:2;a:4:{s:8:\"uniqueID\";s:9:\"96110f-1d\";s:4:\"name\";s:0:\"\";s:5:\"label\";s:7:\"Message\";s:4:\"type\";s:8:\"textarea\";}}'),(716,1540,'_kad_form_browserValidation','1'),(717,1540,'_kad_form_submitHide',''),(718,1540,'_kad_form_recaptcha',''),(719,1540,'_kad_form_fieldBorderStyle','a:5:{s:3:\"top\";a:3:{i:0;s:8:\"palette6\";i:1;s:0:\"\";i:2;i:1;}s:5:\"right\";a:3:{i:0;s:8:\"palette6\";i:1;s:0:\"\";i:2;i:1;}s:6:\"bottom\";a:3:{i:0;s:8:\"palette6\";i:1;s:0:\"\";i:2;i:1;}s:4:\"left\";a:3:{i:0;s:8:\"palette6\";i:1;s:0:\"\";i:2;i:1;}s:4:\"unit\";s:2:\"px\";}'),(720,1540,'_kad_form_inputFont','a:18:{s:5:\"color\";s:8:\"palette9\";s:11:\"colorActive\";s:0:\"\";s:4:\"size\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:8:\"sizeType\";s:2:\"px\";s:10:\"lineHeight\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:8:\"lineType\";s:0:\"\";s:13:\"letterSpacing\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:10:\"letterType\";s:0:\"\";s:13:\"textTransform\";s:0:\"\";s:6:\"family\";s:0:\"\";s:6:\"google\";b:0;s:5:\"style\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:6:\"subset\";s:0:\"\";s:10:\"loadGoogle\";b:1;s:7:\"padding\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:6:\"margin\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}}'),(721,1540,'_kad_form_style','a:22:{s:12:\"showRequired\";b:1;s:4:\"size\";s:8:\"standard\";s:7:\"padding\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"tabletPadding\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"mobilePadding\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:11:\"paddingUnit\";s:2:\"px\";s:13:\"requiredColor\";s:0:\"\";s:10:\"background\";s:8:\"palette3\";s:16:\"backgroundActive\";s:0:\"\";s:12:\"borderActive\";s:8:\"palette7\";s:16:\"placeholderColor\";s:8:\"palette6\";s:8:\"gradient\";s:0:\"\";s:14:\"gradientActive\";s:0:\"\";s:14:\"backgroundType\";s:6:\"normal\";s:20:\"backgroundActiveType\";s:6:\"normal\";s:9:\"boxShadow\";a:8:{i:0;b:0;i:1;s:7:\"#000000\";i:2;d:0.200000000000000011102230246251565404236316680908203125;i:3;i:1;i:4;i:1;i:5;i:2;i:6;i:0;i:7;b:0;}s:15:\"boxShadowActive\";a:8:{i:0;b:0;i:1;s:7:\"#000000\";i:2;d:0.40000000000000002220446049250313080847263336181640625;i:3;i:2;i:4;i:2;i:5;i:3;i:6;i:0;i:7;b:0;}s:3:\"gap\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:7:\"gapUnit\";s:2:\"px\";s:10:\"labelStyle\";s:6:\"normal\";s:11:\"basicStyles\";b:1;s:6:\"isDark\";b:1;}'),(722,1540,'_kad_form_background','a:3:{s:10:\"background\";s:8:\"palette3\";s:8:\"gradient\";s:0:\"\";s:14:\"backgroundType\";s:6:\"normal\";}'),(723,1540,'_kad_form_labelFont','a:17:{s:5:\"color\";s:8:\"palette9\";s:4:\"size\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:8:\"sizeType\";s:2:\"px\";s:10:\"lineHeight\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:8:\"lineType\";s:0:\"\";s:13:\"letterSpacing\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:10:\"letterType\";s:2:\"px\";s:13:\"textTransform\";s:0:\"\";s:6:\"family\";s:0:\"\";s:6:\"google\";b:0;s:5:\"style\";s:0:\"\";s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:6:\"subset\";s:0:\"\";s:10:\"loadGoogle\";b:1;s:7:\"padding\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:6:\"margin\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}}'),(732,1551,'kt_blocks_editor_width',''),(733,1551,'_kad_post_transparent',''),(734,1551,'_kad_post_title','default'),(735,1551,'_kad_post_layout','default'),(736,1551,'_kad_post_sidebar_id',''),(737,1551,'_kad_post_content_style','default'),(738,1551,'_kad_post_vertical_padding','default'),(739,1551,'_kad_post_feature','default'),(740,1551,'_kad_post_feature_position',''),(741,1551,'_kad_post_header',''),(742,1551,'_kad_post_footer',''),(743,1551,'_has_fluentform','a:0:{}'),(744,1551,'_wp_page_template','default'),(746,1551,'_kadence_starter_templates_imported_post','1'),(747,1551,'_yoast_wpseo_estimated-reading-time-minutes','4'),(748,1551,'_yoast_wpseo_wordproof_timestamp',''),(749,1551,'_yoast_wpseo_content_score','90'),(751,1551,'_dp_original','1525'),(752,1551,'_edit_lock','1711842792:1'),(759,1551,'_edit_last','1'),(784,1563,'kt_blocks_editor_width',''),(785,1563,'_kad_post_transparent',''),(786,1563,'_kad_post_title','default'),(787,1563,'_kad_post_layout','default'),(788,1563,'_kad_post_sidebar_id',''),(789,1563,'_kad_post_content_style','default'),(790,1563,'_kad_post_vertical_padding','default'),(791,1563,'_kad_post_feature','default'),(792,1563,'_kad_post_feature_position',''),(793,1563,'_kad_post_header',''),(794,1563,'_kad_post_footer',''),(795,1563,'_has_fluentform','a:0:{}'),(796,1563,'_wp_page_template','default'),(798,1563,'_kadence_starter_templates_imported_post','1'),(799,1563,'_yoast_wpseo_estimated-reading-time-minutes','2'),(800,1563,'_yoast_wpseo_wordproof_timestamp',''),(802,1563,'_dp_original','1559'),(803,1563,'_edit_lock','1711844558:3'),(804,1563,'_edit_last','3'),(965,1563,'_yoast_wpseo_content_score','90'),(1018,1665,'_menu_item_type','post_type'),(1019,1665,'_menu_item_menu_item_parent','0'),(1020,1665,'_menu_item_object_id','1563'),(1021,1665,'_menu_item_object','page'),(1022,1665,'_menu_item_target',''),(1023,1665,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1024,1665,'_menu_item_xfn',''),(1025,1665,'_menu_item_url',''),(1028,1491,'_wp_old_date','2024-01-27'),(1031,1492,'_wp_old_date','2024-01-27'),(1032,1666,'kt_blocks_editor_width',''),(1033,1666,'_kad_post_transparent',''),(1034,1666,'_kad_post_title','default'),(1035,1666,'_kad_post_layout','default'),(1036,1666,'_kad_post_sidebar_id',''),(1037,1666,'_kad_post_content_style','default'),(1038,1666,'_kad_post_vertical_padding','default'),(1039,1666,'_kad_post_feature','default'),(1040,1666,'_kad_post_feature_position',''),(1041,1666,'_kad_post_header',''),(1042,1666,'_kad_post_footer',''),(1043,1666,'_has_fluentform','a:0:{}'),(1044,1666,'_wp_page_template','default'),(1046,1666,'_kadence_starter_templates_imported_post','1'),(1047,1666,'_yoast_wpseo_estimated-reading-time-minutes','10'),(1048,1666,'_yoast_wpseo_wordproof_timestamp',''),(1050,1666,'_dp_original','1559'),(1051,1666,'_edit_lock','1711844703:3'),(1052,1666,'_edit_last','3'),(1053,1668,'kt_blocks_editor_width',''),(1054,1668,'_kad_post_transparent',''),(1055,1668,'_kad_post_title','default'),(1056,1668,'_kad_post_layout','default'),(1057,1668,'_kad_post_sidebar_id',''),(1058,1668,'_kad_post_content_style','default'),(1059,1668,'_kad_post_vertical_padding','default'),(1060,1668,'_kad_post_feature','default'),(1061,1668,'_kad_post_feature_position',''),(1062,1668,'_kad_post_header',''),(1063,1668,'_kad_post_footer',''),(1064,1668,'_has_fluentform','a:0:{}'),(1065,1668,'_wp_page_template','default'),(1067,1668,'_kadence_starter_templates_imported_post','1'),(1068,1668,'_yoast_wpseo_estimated-reading-time-minutes','7'),(1069,1668,'_yoast_wpseo_wordproof_timestamp',''),(1071,1668,'_dp_original','1559'),(1072,1668,'_edit_lock','1711845764:3'),(1073,1668,'_edit_last','3'),(1074,1670,'_menu_item_type','post_type'),(1075,1670,'_menu_item_menu_item_parent','1671'),(1076,1670,'_menu_item_object_id','1668'),(1077,1670,'_menu_item_object','page'),(1078,1670,'_menu_item_target',''),(1079,1670,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1080,1670,'_menu_item_xfn',''),(1081,1670,'_menu_item_url',''),(1083,1671,'_menu_item_type','post_type'),(1084,1671,'_menu_item_menu_item_parent','0'),(1085,1671,'_menu_item_object_id','1666'),(1086,1671,'_menu_item_object','page'),(1087,1671,'_menu_item_target',''),(1088,1671,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1089,1671,'_menu_item_xfn',''),(1090,1671,'_menu_item_url',''),(1093,1666,'_yoast_wpseo_content_score','60'),(1099,1666,'yoast-structured-data-blocks-images-cache','a:0:{}'),(1100,1686,'yoast-structured-data-blocks-images-cache','a:0:{}'),(1102,1690,'yoast-structured-data-blocks-images-cache','a:0:{}'),(1105,1563,'footnotes',''),(1120,1668,'_yoast_wpseo_content_score','90'),(1121,1668,'footnotes',''),(1128,1511,'footnotes',''),(1138,1525,'footnotes',''),(1140,1551,'footnotes',''),(1142,1666,'footnotes',''),(1147,1540,'_edit_lock','1708632822:1'),(1154,1726,'yoast-structured-data-blocks-images-cache','a:0:{}'),(1180,1275,'_edit_last','5'),(1181,1275,'_yoast_wpseo_content_score','60'),(1182,1275,'_yoast_wpseo_estimated-reading-time-minutes','2'),(1183,1275,'_yoast_wpseo_wordproof_timestamp',''),(1194,1756,'_menu_item_type','post_type'),(1195,1756,'_menu_item_menu_item_parent','0'),(1196,1756,'_menu_item_object_id','1275'),(1197,1756,'_menu_item_object','page'),(1198,1756,'_menu_item_target',''),(1199,1756,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1200,1756,'_menu_item_xfn',''),(1201,1756,'_menu_item_url',''),(1204,1491,'_wp_old_date','2024-01-31'),(1205,1671,'_wp_old_date','2024-01-31'),(1206,1670,'_wp_old_date','2024-01-31'),(1207,1665,'_wp_old_date','2024-01-31'),(1208,1492,'_wp_old_date','2024-01-31'),(1331,1563,'_yoast_wpseo_focuskw','Before and After Gynecomastia'),(1332,1563,'_yoast_wpseo_title','Atlanta Gynecomastia Surgery: Before & After Results'),(1333,1563,'_yoast_wpseo_metadesc','Check out these gynecomastia before and after photos of grade 1 to grade 4 gyno surgery to better understand potential surgery results.'),(1334,1563,'_yoast_wpseo_linkdex','58'),(1341,1329,'_yoast_wpseo_focuskw','Atlanta Gynecomastia Center'),(1342,1329,'_yoast_wpseo_title','Atlanta Gynecomastia Center | Male Breast Reduction Surgery'),(1343,1329,'_yoast_wpseo_metadesc','Visit the Atlanta Gynecomastia Center for your free consultation with one of the best gynecomastia plastic surgeons in Georgia. Our top rated male breast reduction specialists will help with your gyno surgery needs.'),(1344,1329,'_yoast_wpseo_linkdex','73'),(1394,1563,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1397,1525,'_yoast_wpseo_focuskw','gynecomastia causes'),(1398,1525,'_yoast_wpseo_title','Main Causes of Gynecomastia (Atlanta Gynecomastia Center)'),(1399,1525,'_yoast_wpseo_metadesc','Learn more about the main causes of gynecomastia and why you may be experiencing gyno yourself. Come in for a consultation today.'),(1400,1525,'_yoast_wpseo_linkdex','73'),(1403,1525,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1407,1484,'_yoast_wpseo_focuskw','contact'),(1408,1484,'_yoast_wpseo_title','Contact the Atlanta Gynecomastia Center & Book an Appointment'),(1409,1484,'_yoast_wpseo_metadesc','Contact the Atlanta Gynecomastia Center today to book your appointment and get scheduled with a doctor consultation.'),(1410,1484,'_yoast_wpseo_linkdex','50'),(1411,1484,'_yoast_wpseo_schema_page_type','ContactPage'),(1413,1551,'_yoast_wpseo_focuskw','gynecomastia grades'),(1414,1551,'_yoast_wpseo_title','Gynecomastia Grades & Stages (Atlanta Gynecomastia Center)'),(1415,1551,'_yoast_wpseo_metadesc','Learn more about the various gynecomastia grades and stages that the Atlanta Gynecomastia Center can help you with.'),(1416,1551,'_yoast_wpseo_linkdex','76'),(1417,1551,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1420,1666,'_yoast_wpseo_focuskw','gynecomastia surgery'),(1421,1666,'_yoast_wpseo_title','Atlanta Gynecomastia Pre & Post Surgery Timeline'),(1422,1666,'_yoast_wpseo_metadesc','Learn about the pre and post surgery timeline when going about a procedure at the Atlanta Gynecomastia Center.'),(1423,1666,'_yoast_wpseo_linkdex','81'),(1424,1666,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1425,1878,'yoast-structured-data-blocks-images-cache','a:0:{}'),(1428,1275,'_yoast_wpseo_focuskw','gynecomastia doctors'),(1429,1275,'_yoast_wpseo_title','Meet the Doctors at the Atlanta Gynecomastia Center'),(1430,1275,'_yoast_wpseo_metadesc','Learn more about our board-certified plastic surgeons at the Atlanta Gynecomastia Center, and how they can help you achieve your results.'),(1431,1275,'_yoast_wpseo_linkdex','65'),(1432,1275,'_yoast_wpseo_schema_page_type','ProfilePage'),(1435,1668,'_yoast_wpseo_focuskw','gynecomastia cost'),(1436,1668,'_yoast_wpseo_title','Atlanta Gynecomastia Surgery Cost and Insurance Overview'),(1437,1668,'_yoast_wpseo_metadesc','Learn more about how much gynecomastia surgery costs in Atlanta and the available insurance options at the Atlanta Gynecomastia Center.'),(1438,1668,'_yoast_wpseo_linkdex','69'),(1439,1668,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1442,1511,'_yoast_wpseo_focuskw','gynecomastia'),(1443,1511,'_yoast_wpseo_title','What is Gynecomastia Overview (Atlanta Gynecomastia Center)'),(1444,1511,'_yoast_wpseo_metadesc','Learn more about what exactly is gynecomastia, its causes, various grades, and more at the Atlanta Gynecomastia Center.'),(1445,1511,'_yoast_wpseo_linkdex','70'),(1446,1511,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1484,1901,'kt_blocks_editor_width',''),(1485,1901,'_kad_post_transparent',''),(1486,1901,'_kad_post_title','default'),(1487,1901,'_kad_post_layout','default'),(1488,1901,'_kad_post_sidebar_id',''),(1489,1901,'_kad_post_content_style','default'),(1490,1901,'_kad_post_vertical_padding','default'),(1491,1901,'_kad_post_feature','default'),(1492,1901,'_kad_post_feature_position',''),(1493,1901,'_kad_post_header',''),(1494,1901,'_kad_post_footer',''),(1495,1901,'_has_fluentform','a:0:{}'),(1496,1901,'_wp_page_template','default'),(1498,1901,'_kadence_starter_templates_imported_post','1'),(1499,1901,'_yoast_wpseo_estimated-reading-time-minutes','10'),(1500,1901,'_yoast_wpseo_wordproof_timestamp',''),(1501,1901,'_yoast_wpseo_content_score','30'),(1503,1901,'footnotes',''),(1504,1901,'_yoast_wpseo_focuskw','gynecomastia revision'),(1505,1901,'_yoast_wpseo_title','Gynecomastia Revision Surgery (Atlanta Gyno Plastic Surgeons)'),(1506,1901,'_yoast_wpseo_metadesc','Learn more about why you may need Gynecomastia revision surgery and how the Atlanta Gynecomastia Center can help.'),(1507,1901,'_yoast_wpseo_linkdex','83'),(1508,1901,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1509,1901,'_dp_original','1551'),(1510,1901,'_edit_lock','1711845280:1'),(1512,1901,'_edit_last','1'),(1516,1906,'kt_blocks_editor_width',''),(1517,1906,'_kad_post_transparent',''),(1518,1906,'_kad_post_title','default'),(1519,1906,'_kad_post_layout','default'),(1520,1906,'_kad_post_sidebar_id',''),(1521,1906,'_kad_post_content_style','default'),(1522,1906,'_kad_post_vertical_padding','default'),(1523,1906,'_kad_post_feature','default'),(1524,1906,'_kad_post_feature_position',''),(1525,1906,'_kad_post_header',''),(1526,1906,'_kad_post_footer',''),(1527,1906,'_has_fluentform','a:0:{}'),(1528,1906,'_wp_page_template','default'),(1529,1906,'_kadence_starter_templates_imported_post','1'),(1530,1906,'_yoast_wpseo_estimated-reading-time-minutes','11'),(1531,1906,'_yoast_wpseo_wordproof_timestamp',''),(1532,1906,'_yoast_wpseo_content_score','60'),(1533,1906,'footnotes',''),(1534,1906,'_yoast_wpseo_focuskw','adolescent gynecomastia'),(1535,1906,'_yoast_wpseo_title','Adolescent Gynecomastia Surgery at Atlanta Gynecomastia Center'),(1536,1906,'_yoast_wpseo_metadesc','Learn more about how to treat adolescent gynecomastia near Atlanta and when surgery may be the right option to choose for yourself.'),(1537,1906,'_yoast_wpseo_linkdex','80'),(1538,1906,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1540,1906,'_dp_original','1901'),(1541,1906,'_edit_lock','1711843874:1'),(1543,1906,'_edit_last','1'),(1544,1908,'kt_blocks_editor_width',''),(1545,1908,'_kad_post_transparent',''),(1546,1908,'_kad_post_title','default'),(1547,1908,'_kad_post_layout','default'),(1548,1908,'_kad_post_sidebar_id',''),(1549,1908,'_kad_post_content_style','default'),(1550,1908,'_kad_post_vertical_padding','default'),(1551,1908,'_kad_post_feature','default'),(1552,1908,'_kad_post_feature_position',''),(1553,1908,'_kad_post_header',''),(1554,1908,'_kad_post_footer',''),(1555,1908,'_has_fluentform','a:0:{}'),(1556,1908,'_wp_page_template','default'),(1557,1908,'_kadence_starter_templates_imported_post','1'),(1558,1908,'_yoast_wpseo_estimated-reading-time-minutes','12'),(1559,1908,'_yoast_wpseo_wordproof_timestamp',''),(1560,1908,'_yoast_wpseo_content_score','30'),(1561,1908,'footnotes',''),(1562,1908,'_yoast_wpseo_focuskw','adult gynecomastia'),(1563,1908,'_yoast_wpseo_title','Adult Gynecomastia Surgery (Atlanta Gyno Plastic Surgeons)'),(1564,1908,'_yoast_wpseo_metadesc','Learn more about how to treat adult gynecomastia in Atlanta and when surgery may be the right option to choose for yourself.'),(1565,1908,'_yoast_wpseo_linkdex','78'),(1566,1908,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1568,1908,'_dp_original','1906'),(1569,1908,'_edit_lock','1711844565:1'),(1571,1908,'_edit_last','1'),(1573,1911,'kt_blocks_editor_width',''),(1574,1911,'_kad_post_transparent',''),(1575,1911,'_kad_post_title','default'),(1576,1911,'_kad_post_layout','default'),(1577,1911,'_kad_post_sidebar_id',''),(1578,1911,'_kad_post_content_style','default'),(1579,1911,'_kad_post_vertical_padding','default'),(1580,1911,'_kad_post_feature','default'),(1581,1911,'_kad_post_feature_position',''),(1582,1911,'_kad_post_header',''),(1583,1911,'_kad_post_footer',''),(1584,1911,'_has_fluentform','a:0:{}'),(1585,1911,'_wp_page_template','default'),(1586,1911,'_kadence_starter_templates_imported_post','1'),(1587,1911,'_yoast_wpseo_estimated-reading-time-minutes','12'),(1588,1911,'_yoast_wpseo_wordproof_timestamp',''),(1589,1911,'_yoast_wpseo_content_score','60'),(1590,1911,'footnotes',''),(1591,1911,'_yoast_wpseo_focuskw','bodybuilder gynecomastia'),(1592,1911,'_yoast_wpseo_title','Bodybuilder Gynecomastia Surgery (Atlanta Gynecomastia Center)'),(1593,1911,'_yoast_wpseo_metadesc','Learn more about how to treat bodybuilder gynecomastia near Atlanta, Georgia and when surgery may be the right option to choose for yourself.'),(1594,1911,'_yoast_wpseo_linkdex','80'),(1595,1911,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1597,1911,'_dp_original','1908'),(1598,1911,'_edit_lock','1711844979:1'),(1600,1911,'_edit_last','1'),(1620,1482,'_kad_blocks_custom_css',''),(1621,1482,'_kad_blocks_head_custom_js',''),(1622,1482,'_kad_blocks_body_custom_js',''),(1623,1482,'_kad_blocks_footer_custom_js',''),(1624,1482,'footnotes',''),(1626,1482,'_yoast_wpseo_content_score','90'),(1646,1949,'_menu_item_type','post_type'),(1647,1949,'_menu_item_menu_item_parent','1491'),(1648,1949,'_menu_item_object_id','1911'),(1649,1949,'_menu_item_object','page'),(1650,1949,'_menu_item_target',''),(1651,1949,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1652,1949,'_menu_item_xfn',''),(1653,1949,'_menu_item_url',''),(1655,1950,'_menu_item_type','post_type'),(1656,1950,'_menu_item_menu_item_parent','1491'),(1657,1950,'_menu_item_object_id','1908'),(1658,1950,'_menu_item_object','page'),(1659,1950,'_menu_item_target',''),(1660,1950,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1661,1950,'_menu_item_xfn',''),(1662,1950,'_menu_item_url',''),(1664,1951,'_menu_item_type','post_type'),(1665,1951,'_menu_item_menu_item_parent','1491'),(1666,1951,'_menu_item_object_id','1906'),(1667,1951,'_menu_item_object','page'),(1668,1951,'_menu_item_target',''),(1669,1951,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1670,1951,'_menu_item_xfn',''),(1671,1951,'_menu_item_url',''),(1673,1952,'_menu_item_type','post_type'),(1674,1952,'_menu_item_menu_item_parent','1491'),(1675,1952,'_menu_item_object_id','1901'),(1676,1952,'_menu_item_object','page'),(1677,1952,'_menu_item_target',''),(1678,1952,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1679,1952,'_menu_item_xfn',''),(1680,1952,'_menu_item_url',''),(1683,1756,'_wp_old_date','2024-02-04'),(1684,1491,'_wp_old_date','2024-02-04'),(1685,1671,'_wp_old_date','2024-02-04'),(1686,1670,'_wp_old_date','2024-02-04'),(1687,1665,'_wp_old_date','2024-02-04'),(1688,1492,'_wp_old_date','2024-02-04'),(1711,1973,'_menu_item_type','post_type'),(1712,1973,'_menu_item_menu_item_parent','1975'),(1713,1973,'_menu_item_object_id','1551'),(1714,1973,'_menu_item_object','page'),(1715,1973,'_menu_item_target',''),(1716,1973,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1717,1973,'_menu_item_xfn',''),(1718,1973,'_menu_item_url',''),(1720,1974,'_menu_item_type','post_type'),(1721,1974,'_menu_item_menu_item_parent','1975'),(1722,1974,'_menu_item_object_id','1525'),(1723,1974,'_menu_item_object','page'),(1724,1974,'_menu_item_target',''),(1725,1974,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1726,1974,'_menu_item_xfn',''),(1727,1974,'_menu_item_url',''),(1729,1975,'_menu_item_type','post_type'),(1730,1975,'_menu_item_menu_item_parent','0'),(1731,1975,'_menu_item_object_id','1511'),(1732,1975,'_menu_item_object','page'),(1733,1975,'_menu_item_target',''),(1734,1975,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1735,1975,'_menu_item_xfn',''),(1736,1975,'_menu_item_url',''),(1738,1491,'_wp_old_date','2024-02-09'),(1739,1950,'_wp_old_date','2024-02-09'),(1740,1951,'_wp_old_date','2024-02-09'),(1741,1949,'_wp_old_date','2024-02-09'),(1742,1952,'_wp_old_date','2024-02-09'),(1743,1671,'_wp_old_date','2024-02-09'),(1744,1670,'_wp_old_date','2024-02-09'),(1745,1665,'_wp_old_date','2024-02-09'),(1746,1756,'_wp_old_date','2024-02-09'),(1747,1492,'_wp_old_date','2024-02-09'),(1776,2001,'yoast-structured-data-blocks-images-cache','a:0:{}'),(1780,2004,'yoast-structured-data-blocks-images-cache','a:0:{}'),(1783,2006,'yoast-structured-data-blocks-images-cache','a:0:{}'),(1833,1482,'_yoast_wpseo_focuskw','types of gynecomastia'),(1834,1482,'_yoast_wpseo_title','Types of Gynecomastia (Atlanta Gynecomastia Center)'),(1835,1482,'_yoast_wpseo_metadesc','Learn more about the different types of gynecomastia including adolescent, adult, bodybuilder, and even gyno revision surgery.'),(1836,1482,'_yoast_wpseo_linkdex','72'),(1837,1482,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(1863,1975,'_wp_old_date','2024-02-10'),(1864,1974,'_wp_old_date','2024-02-10'),(1865,1973,'_wp_old_date','2024-02-10'),(1866,1491,'_wp_old_date','2024-02-10'),(1867,1950,'_wp_old_date','2024-02-10'),(1868,1951,'_wp_old_date','2024-02-10'),(1869,1949,'_wp_old_date','2024-02-10'),(1870,1952,'_wp_old_date','2024-02-10'),(1871,1671,'_wp_old_date','2024-02-10'),(1872,1670,'_wp_old_date','2024-02-10'),(1873,1665,'_wp_old_date','2024-02-10'),(1874,1756,'_wp_old_date','2024-02-10'),(1875,1492,'_wp_old_date','2024-02-10'),(1876,2055,'_menu_item_type','post_type'),(1877,2055,'_menu_item_menu_item_parent','0'),(1878,2055,'_menu_item_object_id','1329'),(1879,2055,'_menu_item_object','page'),(1880,2055,'_menu_item_target',''),(1881,2055,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1882,2055,'_menu_item_xfn',''),(1883,2055,'_menu_item_url',''),(1886,2056,'_wp_page_template','default'),(1887,2056,'_dp_original','3'),(1888,2056,'_edit_lock','1712161630:1'),(1889,2056,'_edit_last','1'),(1890,2056,'_yoast_wpseo_focuskw','Accessibility Policy'),(1891,2056,'_yoast_wpseo_title','Accessibility Policy | Atlanta Gynecomastia Center'),(1892,2056,'_yoast_wpseo_metadesc','The accessibility policy for the Atlanta Gynecomastia Center.'),(1893,2056,'_yoast_wpseo_linkdex','61'),(1894,2056,'_yoast_wpseo_content_score','60'),(1895,2056,'_yoast_wpseo_estimated-reading-time-minutes','2'),(1896,2056,'_yoast_wpseo_wordproof_timestamp',''),(2017,2055,'_wp_old_date','2024-02-11'),(2018,1975,'_wp_old_date','2024-02-11'),(2019,1974,'_wp_old_date','2024-02-11'),(2020,1973,'_wp_old_date','2024-02-11'),(2021,1491,'_wp_old_date','2024-02-11'),(2022,1950,'_wp_old_date','2024-02-11'),(2023,1951,'_wp_old_date','2024-02-11'),(2024,1949,'_wp_old_date','2024-02-11'),(2025,1952,'_wp_old_date','2024-02-11'),(2026,1671,'_wp_old_date','2024-02-11'),(2027,1670,'_wp_old_date','2024-02-11'),(2028,1665,'_wp_old_date','2024-02-11'),(2029,1756,'_wp_old_date','2024-02-11'),(2030,1492,'_wp_old_date','2024-02-11'),(2171,1906,'_kad_blocks_custom_css',''),(2172,1906,'_kad_blocks_head_custom_js',''),(2173,1906,'_kad_blocks_body_custom_js',''),(2174,1906,'_kad_blocks_footer_custom_js',''),(2175,1563,'_kad_blocks_custom_css',''),(2176,1563,'_kad_blocks_head_custom_js',''),(2177,1563,'_kad_blocks_body_custom_js',''),(2178,1563,'_kad_blocks_footer_custom_js',''),(2179,1911,'_kad_blocks_custom_css',''),(2180,1911,'_kad_blocks_head_custom_js',''),(2181,1911,'_kad_blocks_body_custom_js',''),(2182,1911,'_kad_blocks_footer_custom_js',''),(2183,1525,'_kad_blocks_custom_css',''),(2184,1525,'_kad_blocks_head_custom_js',''),(2185,1525,'_kad_blocks_body_custom_js',''),(2186,1525,'_kad_blocks_footer_custom_js',''),(2187,1551,'_kad_blocks_custom_css',''),(2188,1551,'_kad_blocks_head_custom_js',''),(2189,1551,'_kad_blocks_body_custom_js',''),(2190,1551,'_kad_blocks_footer_custom_js',''),(2191,1901,'_kad_blocks_custom_css',''),(2192,1901,'_kad_blocks_head_custom_js',''),(2193,1901,'_kad_blocks_body_custom_js',''),(2194,1901,'_kad_blocks_footer_custom_js',''),(2195,1666,'_kad_blocks_custom_css',''),(2196,1666,'_kad_blocks_head_custom_js',''),(2197,1666,'_kad_blocks_body_custom_js',''),(2198,1666,'_kad_blocks_footer_custom_js',''),(2199,1275,'_kad_blocks_custom_css',''),(2200,1275,'_kad_blocks_head_custom_js',''),(2201,1275,'_kad_blocks_body_custom_js',''),(2202,1275,'_kad_blocks_footer_custom_js',''),(2203,1668,'_kad_blocks_custom_css',''),(2204,1668,'_kad_blocks_head_custom_js',''),(2205,1668,'_kad_blocks_body_custom_js',''),(2206,1668,'_kad_blocks_footer_custom_js',''),(2208,1511,'_kad_blocks_custom_css',''),(2209,1511,'_kad_blocks_head_custom_js',''),(2210,1511,'_kad_blocks_body_custom_js',''),(2211,1511,'_kad_blocks_footer_custom_js',''),(2212,1908,'_kad_blocks_custom_css',''),(2213,1908,'_kad_blocks_head_custom_js',''),(2214,1908,'_kad_blocks_body_custom_js',''),(2215,1908,'_kad_blocks_footer_custom_js',''),(2245,1484,'_kad_blocks_custom_css',''),(2246,1484,'_kad_blocks_head_custom_js',''),(2247,1484,'_kad_blocks_body_custom_js',''),(2248,1484,'_kad_blocks_footer_custom_js',''),(2296,2056,'wpil_sync_report3','1'),(2297,2056,'wpil_links_inbound_internal_count','0'),(2298,2056,'wpil_links_inbound_internal_count_data','eJxLtDKwqq4FAAZPAf4='),(2299,2056,'wpil_links_outbound_internal_count','1'),(2300,2056,'wpil_links_outbound_internal_count_data','eJylU02P0zAQ/SuRkbixbdouZF1FHPaAhKBw4xhNnWlj8NqW7RCqqv+dGbu7FLHiay+Rx5l57/nNDMhaHrWcrz/I+lqKT16b7r3r0XTvtP0iZCOPUb6SwlDU6V6sOTfKpRRjMIJOq0aKISUf5WxmcfqMIeJhf7Co3B3EpEGhTRiuKJwpZxOoNMt1VOZi4uOyluIPpZxGRJpjC0S8lXUB8RnkF/Uf+VrWC5a/oMKsvF41K6qizKSTQbHeFIx08Cgu4aJ8KUVMkMbIAb3fj1uj43CO+CGkrQBcF3ciq2i4rL81EKOgH8eM+VXj9ESrsNdZVrP6e4jJv4D+TtsZv+nKD/41H1o24fmz+bJZE752tr3HpifjN+9CDm4WTyGCgNBO3I2CWPj4N81QVsAc1B1iVHiflXn/waPf8/7AfZyd2hhwF7A0tV78D3H+Fmthj21ekmnQ0WMopDxZbWbOI9IpN9rUjb6HhI/JOuVuRzPuy2xRT5TRiodrU1aA8jW3rVzw1LuwB6tVlwLsdlo9FHJfXTjn0YqB2nUXg3vKSWDVwEnEe0PgBiFidR6+Kg1YbXCq3mYzqjcXblS32Q5x1gB9j323PXSepGvL+zkveo1TUPT+vDmn03f5L4k4'),(2301,2056,'wpil_links_outbound_external_count','0'),(2302,2056,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(2303,2056,'wpil_sync_report2_time','2024-03-10T17:19:29+00:00'),(2305,1911,'wpil_links_inbound_internal_count_data','eJztmc+PnCAUx/8Vw33r+NthTu2ll/5KeujRIDAurQtGMI3ZzP9e0NGhu2maieuFcPPh4/H45pMHPhGMCvjM4OH0FUYZBD861lafBaFt9YnxXwCW8FnCAoJWWxUj4GR8JUwgGPoW6KcyheBRqU7CMOT090/aSzo2I6dYPCGpGMKUK9q/02ZoDz+osaMyrAUZ64G1hPYP9uvQxDahhVTmMYkg+E/4KRsImLE50snVMJqDdFOQVzv8ZoZhFJstxnritLsoLWM9S3sqploKTl/mGCZdYIeTMIdAKqQGOTtplbDQi3M129msmlxDyHZoZkPPxC3Dy7tyiskUE3weMImKvkGc4Ur16HxmeJ1ICVOiv/ppVRA+V9a6l8kJcfxonLSLtj7cRA4+jlyA6xKIEEqqeqw6nRnjRrHDnE4rMJrT+XtfFy2QR+WKSpxnhVOoFMZCtdDrBVJLIxiRm1iJPStLWcmiyCVWjHC2XgFGg6QkqMe3ISfx5KzkxJlL5MR6YUvkwNZuEzKpR2Y5mIo0cQmZV8UGPQneBJbu24pN5slZik2e5y6RY4rNi9vv2xSb3CNzRSZJo9IpZA4QvH9xCw703WYTLoXHZTmbyswpXJL43xUm+D70De3HTeiUHp31WlM69b29OzpHj85adXJfde7q8vmOsHVipZ6de9jxLeIbO4VTfxP2Z8e3jG/slG61jHdnxzeNb+yk/sy6ix3fPbbuyv7Muosd3z9e+8dJfHSJnd36x5FvIN8ayMeDS8zsXG8ufwB1GYze'),(2307,1911,'wpil_links_outbound_internal_count_data','eJzdWl2PozYU/SsWlfrGJhBCCKNRH0ZVP9TdrdSHfYw84CTuMDZrm03paP57r+2QSbajdjFsTfMSxWDuvT4+Pjb3gvNonT/RfH7zPo+WefChptXmLS9JtfmFsocgz/Inma/yoILWhpbBje4r80UeNKIK4N86yoO9UrXMZzNGDr8TIUm7axkp+COWiuKCMEXEG2jOzi+HW0E+NnCvakMsH0gZQgtucCZDsBNaQzPtIgEPXCr9dwHe/sWL7pblAdVthiHG+zyyRmpj5G8D/VVfzqNYjzSGB80g41WygKegp6KqIsHNO2tDtTUJzs3JPM0DqbBqpO0EYBUcnDNl20sLnjyZkFWzsw14sqho0d3LjE2qMbAXdKBc7DCjxUYJvN3S4vQgKani4tgPUMHFdnPm99l0wqzY604WuBfEkUEcAYAcnWAPjh5xWZJyc99uagiUMg3g3EZX8QLb6C6H+UwBYlcCJdmXE0h7xIXyxoooyZL+rDDjr5v7isr959BdMuS9jlGq8q7CUgZw48nY/ETJYSBUmi4Gg+TLTRzqEJePlM30mN7U+/o7/edWg/DtN/NFdgP2gQ23nW3Nyj9qLkxjHQ9xhAXBtwc9G9ai9advA4dMBIatsfZYkK6X8dsDo3/2+2L3de8wjYLAmrKTGsUujs2vhRbvyK1ZJIc9lTUR1qlm1q3xbCgCS7xhatPUJVbktbCe/UnMEmZDFntSNhVBLW8EAnAI+kSFanCFuECUhTAwyRkCM7Kp1ElNnHUndtaddNFjMeFGEhnybXjewZ8MLePlNW1O8RqMC/qIRYsM1Ihv0TmAgyiycKbIqseSvjjb6ImQsLiB4hNhzHqeedy4vhqQY25rAJHnbQ0i8LitHb1PbVszYXnc1qJM6w4QcDxFSpwVKeuxab26kHhFpO4zGVlKPcrS10VzXG1KvWtT6lWb0mlqU+pVm+KFVqCOheMJ1NL9VO2aDpKN2BHhL+ETpalPKRoLtzFFBxDxLDoQgUfROXqfmuiYsHyKzjwPzseLjhQcpDjpf6I492TLBQnxFi6EMKNwqpMe3+LT60oxQ8sCjDArkQHZppiPBEH1nis+LM+8cn+Zd1XYWtCCsl1IGYwDhkt87lEOb/HTZUwSaUiOqCLKPjZUUCINfbaUwVXAHfF6eHkic5eXHhvpBW0KGAXV8u1PYRZJdFV8iXUXKYmUNr98hLgYtvWs/+elK5HH2c3nKyu1YwSPqJFI8RK38Isu8/OjZeEj9/pxmvbHEPph8TCNMnG2uqYVBo13BtxhdHCvBvfZpTs62E5hQVU7CU5kiUOReLqc0F1+NqihO4B4GDMG1OvW/ZlByh2wWR/2J8GL5VXxAubj+w7fYaQYUKFz2D0ORCrYBqWmhXnNtqrRcvHgkxtXdVLTRZMPLzijO4PzMJa4V03SHjmqjiWPmO2xUpiFrC088iKN+/NivKzkWMCNmJbUkPhNS+oI/KUlO+8TS0vasDymJWE7ettRb5jQuFc/XE6vetESFlJZwdvsFHYilxzTeF+KjI7guNLj+RMRHYFX6ZniJyI2LJ+fiIAC/GZIiH4yJBymPwNqIS7vSBX9E98TtZ/GO9LK4bwz3XOwfkfq8B1GigGFj3l/Uuxx8UCYhN9psCKLrokVEczIjyeEh/HCvbKR9OCFt4rXIl5f08wv5ibBio75tB/Oy+h3BrsBbHj+CwSsJY8='),(2309,1911,'wpil_links_outbound_external_count_data','eJxNj91qwzAMhV9l6H5JQ7smU1+hP5e7NI5tWjFHCrFDKKXvXjljY3c68J3zIYsNPgg3hws2HwhfI0VzEh+iORJ/A3b4SNgiRE2GPBwKm3CLME8R9Nrpect5TFjXy7JUS+gHXzkZ6iFwbdn2Esm9pxwmIZ/WijYk5XJ+IvwVSu4QiBVlq+P9qlJ6XOmzhj2CZXeTqcBNW9KP4O2/oHxivQ/e9HczxvlK/LumgijOZhIupC44USHr/vP5AuD/WAU='),(2312,1908,'wpil_links_inbound_internal_count_data','eJztmE1vnDAQhv9K5HsKNiyY2VNOvfRL6qFH5IB348YxCBtVKNr/Xg9kI6pW6kq7XCzfsBm/jEePxuYVQEt4VZDuvwLdAfnRK11/7lqp60/KPBPg8GqhBKL9qFYt2WOshQzIOGjin0oO5Mm53kKSGPnrpxysnI6TkU33IqxTopHGyeGDHybr6Xs39dImoh21u1+/SFA196KddfiYUSD/EcYwn4bCsRE+rUegi0g/i/y1t284DZTh5phfOO+L5pz5VT7SKacl2X9ZNDBRspazUACxTrjRLkG+Pk3nP27cMt4t9bLvElaPx2XgVzZaNed3fNZUTnVmmcBEu+EojGpqN4jDQTXvC2WrXDe8xfmqiOZQr757moOEaZ4wyIekQB6wvHcfJ9ORN3HRtrKtH6e69zkpg7VKl0R014glkT93dPKliXgArdIiKDwyhAHxsONwlMN0FSEsEuIJoTQoQviZkHXVrsIki5gAKwoeEiYMcx9EO6sLfTtY8giLjwmsp6SrnnLdpWQX8QBaFGFdSvjqznqbLlJETCDLaVBHTnVuIi/SXAVHGeEAxndBwcGKf/WQu+83+MvhERdgJS8jLhfhUkVcfHcJ7G9nO1xodGHn0yiPvFzGS7RlkZcyKNd+S16iSYu88KAMlS15iW4t8pLH8+hCXqJhO99343l0IS/RwcUmy6qQeNnAwaXRwkULt0pD4mSzvnL6DQPqMi4='),(2314,1908,'wpil_links_outbound_internal_count_data','eJzdWd+P4yYQ/leQK/XNl9hOHIco6sOqumvV21bqwz1GBJOErhdbgDd1V/u/d4BkN3u3uqt/6HDzkhgbZoZvPoZhIDha4EeOp6vfcTTHwaeKF5uPZc6KzW9c3AU4w48KL3BQQGvD82Bl+iqc4KCWRQBPswwHB60rhScTwY5/MalYs28Eo+U9UZoTyoRm8h00J7QUmlA9seNgWKm0eUwiHHxjqOkGirhpCwKKtzhyQior5Avr/zCvcRQb82MYaC2PZtkMRkFPzXXBgtWtk6GbigWX4hROcaA00bUyDZh/VW8Lrg6nlpkI2OYEzB06yliRmWH5TUGUCuDDo5X5wNmxJ1Qs59asbPbfRRyrkOT3XEzMnN5Vh+on87A2IPz4wzTJViCfl2J9lg1TZn9XpbSNZdxHEZGMrI/GG06i02c+A4esBUYHeAc0UnbuZfW2wOjrel/kvq0d3CjZTjLn1Cjuotj+OmjJnq3tIjkeuKqYdEoNs9ZWs6XIhpa10Ju6yolmb5n1ZL2tinrvuAU+oQWnhly3bglAf27c5l4Y1pdyTwSnGy3Jbsfp80Dj11Ke+sESI3S3uSDuk+1EBD2YTkBjw116YHldMNSUtUQADkNchDAbVQpUSvTApa5JgUCMqgtYH2AI0mVOmuBkDMlzlm+2zaaCOXBhFurUGV6UlDjDXy+hJ1iXnaPPooXXLl+HxjFqUilW5+XlB2+xKU7ni/ax6far8egkwgudIiP8C3h70STuTJM0aRF5Sa2YCstdOApeRPN4fk28MHHWQYzKHSIQbTQajCFJd4a02FhfBRJKRM5NOFfeKJLMouyqKAJuucQLvWDcix2z7uyIOrJD1XLPZOMveqRp6jHjHQq3IdNfQMRz+gsWeEx/T9rHlv5aszymv/ESB/cEUt8tgKg0kpAIW4KgExd7hZ75dwk9W7YrJQvJDl6E4FrYW/3tStE8Ta5pV0rALAcwgu0IWZBfZS6DECXtfhTqGmsrySkX+5DDmU7CfJnP3eq6EpkpAEce+B68LfboGeBeDFn8z0t1Ei9Wny+t6M3Sw2WVoRdkWffom7aHDPoReRfCX+j6+6spLLKrqilA49aC24sNy+8SYs9scJ1CynUzCkpksw4l8PFSwnT51aKGbgDifmXI7rcg6bI9M1i+BzKbVG0UvJhfFS/AHz+f8e1Hih7F6Q6bx5EpDTuhMrSwpyUXNZpS3vnkxlWlZaY0/ekFZ3Rjce7Hkh616RalhjNL7ok4EK2JCEVDPfIijdvzYrji0lDADVhdMpD4rS4ZC/xVl87aR1ZdcmZ5rC7BdvTxTL1+gab7FUeX7NUsWiZCrgoi8jHsRF0KBINFnOERHDb0ZN5DT+Y19GTjDD2Z19ATQQT405IQ/WJJ2C/+9LhE63JGKvg/ZMv0YRxnpEWHfGe8ebA5I53x7UeK7tcbi2l7UhwIvWNCwe84WJFF18SKCDzy4Rnhfrzofpsxa8ELb9cVSby8Js8nU1tfRad62vvLu60bi10PNjz9C2kl5ds='),(2316,1908,'wpil_links_outbound_external_count_data','eJxVj81OAzEMhF8F+b4NK35a3FcocOQYeTdWN8KNV5uUVVX13XGCkOA2E0++sQl7vEa8379j/4TwMUfxrxpY/CGmT8AdXjNuEcScjwH2NZvxAeG8CJjaPiNMpcwZnVvXdTMxSZkszptRT+7HOtG1K5yL5sKLJnYnEu6GhSmX3B0viS1sOlJlPhrSklX2Vf9D1tcdQkxGSmQ7DG0jy83tz5sZ24nSOOnSEC8If7vvhL9YchvZyRQCBz9c/CznY0y/PKsQHalETe1MhFGtMlnD7fYNMbdonA=='),(2319,1906,'wpil_links_inbound_internal_count_data','eJztmU2P2yAQhv+K5fs2wd8hp55WlfqxUg89WgQTh5aABViVtdr/Xgix19mqqiKvL4gb4GEMk0cz4zcIJlv4TOF2/w2CHMY/OsrqL6IhrP5M+a8YVvBZwRLGzMxq2sR7a6tgCuNestiMKjM8ad0puNlw8vsnkYoM7cAJFmekNEWYcE3kBzPdzJcf9NARtUGNYERZm4f50411nRnPQmk7TAGM/+P9chgYUzvnyJztAIFz0l2c/HXBJ7sMQWJvmJiNl8uBrErMLmOpqWYk3n91Puxp47k7BQsYK410r5yRCRIW5uVcu3nugqYmF4r1rZuYnZhRPD6rLj6ppoK7BXtQIVvEKa61RMcjxdNG0lAt5NXORAXhYz1778vFCHF8skbO1ccpxtHjwMW4jJqGNPVhqDtzMMptwLbuNExg5E5ze60XE58AirtcUuSlT6BkuQ2iPAtOInxCvCUqanpJeRtRfjR2QyRkNP0KmCzCKAkYXfPNDgCfMEpSS8SUb+ahWwRMGoBxl0uzMvUJmNQ4v+aZrj8QqQeTdkikReSyEWJjOlrETxb4GetWUfnET2Z+ng5JTXHPkGTD26KFePNuVSsPEF2rVu5X1QI7GH+aAfPkMtEiWIoAywhLkvsES2ZMHmfxiqiKzNjUKpN0olnzcxDDsqJVBoSuRavMvGp6QHHTJZ8RW9jeVIGUa7IpisInUuz31K1+8z7fU7sAzPg9BbzqhxNzrPamOs1r0rIsA4JMPBakKveKGhu4f6SZ6HsvWyKXNcMg6MZTK1N5pRuvTk6Qiqec45dyszo5QTN+rVZZIOcOcoJaPJFTevV3+OrkBIl4IqfySiJenZygF0/kZKFa3UNOkIlfO+RQre4hJ8jGo2ycJjufyFlLNgZBN550493WJ2LWzTUvfwDbf8Vk'),(2321,1906,'wpil_links_outbound_internal_count_data','eJzdWVuv4jYQ/itWKvUtC7kAIQj14ajqRV1aqQ/7iIxjiEuOndrOoenq/PeObTiH7a62m5hVUl4QTuyZyTffzNgenEdZ/p7l09WveTTLg3c1q7ZvRUGr7S+MH4Mc3qp8kQcVjLasCFZmrsqTPGhkFcC/NMuDUuta5ZMJp6c/qFS0PbScEvGIlWaYUK6pfAPDCRFcY6Indh0sE0qbv0mUB/+x1EwDRcyMOQbFuzxyQmor5CPrfzOP8yg25sew0FoepVkKq2CmZrqiwWrjZOi2psG1OJXP80BprBtlBvD9dbOrmCrPI/MhYJsTMHPoKGNFZpYVDxVWKoAX763MJ0ZPnlDRglmzsvTLRZzqEBePjE/MN72py/o782dtQPj2m2mSrUA+E3x9kQ2fTP+qhbSDZeyjCEuK1yfjDSfR6TOvgUPWAqMDvAMaCb3Msno7YPR5va9yP60d3CjpXlLn1Cjuo9j+Omjxga5tkJxKpmoqnVLDrLXVbCmyJaLhetvUBdb0U2Y9W2+rqjk4boFPSMWIIdfGhQDMZ8Zt7oFhvZAHzBnZaon3e0ZeFhq/CnmeByGGyX57RdxnOwlzUppJQGPwhiIlLZqKolY0EgE4FDEewtcowZGQ6IlJ3eAKgRjVVBAf1hBnBi4KWmx37bYG6xk3ITp1JleCvMy8Dp5niMjeeWfeIRKuH4cE84IZ/NVgeShJo6x7Htp8NvecRQxCnXiaBwf2RLnjzRlh0npRI+5NjUWHUP6AGgZ/BUEN1A6vXwxXsJbTHkS5WcH6akDespwBRAOXM7BgwHJ21j62cmbNGrCcRYnJO0BApBp5oNIvGSX961T05Y7Y0b2QNMR7eBCCK8H64YpUNJsnd1WkwCcOYAT1CVmQUV0KLZQXNdLe1Fh2oMYH6RXC/M8G3lVtiNWRFiGMlDFPhSAndIIGI068SO+LODB6RRxZxNEL4l7cmfVPK0mHsyRuFFWh2I9kUzOLZ/fEjxR2v7Vkj1i2yEKNxB7hQlRUGejQNZZebJn3Zks299rI1c1+34ac1TV80zhIFM/nd3WEMtsVCzM6w+zFlMVQZ6da0aYQI2HIbHFXDDHCP4LXiybZ//zWV+aL1b+TsT0HYVIi0WikBdIlRRt6Qj9bPeiHK0XowWrygnDZv4J3yMkXCGEelsdxbPKyu4ouGGwsuH7Xmf37KIsOh4ELHdykkDDdjoITWdqjvTJeTpgp57TxABD7McPjpnvZnRm0OACbzTXCKHgxuytegD++v+DrRwqPO+4e1eMER1ZSwg/Qwt7cuazRCnkckhv3tY8H4e9ecUYPFmc/lnhcPna49r6w5BHzEmuNechbMiAv5nF3Xtys83Ez4G7Y6TCQDNvpMBYM1+m4aB9Zp8OZNWCnA8rR2wv1/BJN/6vsPrtXE7SUh0xVmBdjqER9bpRu12u9OYK3TT0DN1mNBYOmnjE2WZ1ZAzdZf7ckRD9ZEvrlH492SJ8zUsX+xjuqy3GckRY99jvj3QebM9IFXz9S9O96LKbdSVFicqRcwe84WJFF98SKCDzy4wvCfrzo3+NIO/BiKM9HSby8J88nU3vB+nWu4Z//AVGOr+M='),(2323,1906,'wpil_links_outbound_external_count_data','eJydUMtuwyAQ/JWIu02dNmm6+YU+jj1aGFbOKhgQYLlWlH/vYslVo56a2z5mZ2ZHwRYuBA/HD2h2ID4D2fbNG7TtK7mzgANcEjyDsNy1ZMSxYBM8ghijFVztuDzlHBJIOU1TPWE3mFr7QQ7oZIcpV/iFUVPCVPWzQ16plEmV4ye+9SmX8gXEz2npDyDIZYxOsUy3iDI6LOh3bvYglNMnHwu4YYeGMG+UM5tVblnwT8oYNG03t8GOPbmVjQWs1yqTdwXJDNqzoGP+K0FzdyD77W0gwZZ3dRpjj3Gufeyl9mlAnlUheo1mjJikJf5t1KudX8k07PQvyf8zaorpG5E707l+Ay3lvDc='),(2326,1901,'wpil_links_inbound_internal_count_data','eJztmctuqzAQhl8l8r5NuAScyQN0c25qF10i1zipe6iNbOccoSrv3jEmEVEXRWqzQd4xZvx7Zvhkw8AgyeBNwmr7G5I1kMdWNtVPXYum+iHVXwIU3iyUQBq0KlmTrfe1kAE5mIbgFU2APDvXWlgulfj/IowV3b5TgutXZp1kXCgnzC2ay/HwjetaYS+HjPgnrdRq6YVz1NXW+csM1/hEuw8FiPS2YhjZEyRBpO1FPqT3xw9Dkvr8UpzYp5bkNMVZ6OmkawTZ/goaPlYylrNQALGOuYMNTlgirnFx5YK9DiWzZwnbHPbBwJm8kfx0j/aa0mHeYcAHqs2eKckrZ9huJ/l5oqil02bww6owvqtG6x57J6b4s3ey/uGS+6Goi7tOaTLos7oWdfXUVS2GJZUv1yrE0mjOQiyXSR2xOhGSHpKiKOYESYouno3FmZSHg9kL030JljTCMsBCZwXLBsi4XotThRf2G6DJIjQ+tZSuZwfN3Riab91p8ghND01JywjNVGjWEZqw08zveLoeNEWEZjie8gjNVGjKCE2AppzVp/V1oaERmgANTSI0U6HZRGgCNHk8nqY39WLr9/QmHM+n6dTEXnBo72XpZlbUJJc/DM6F+xotsRncp5blm9WsaLniHnN8B0wDgzI='),(2328,1901,'wpil_links_outbound_internal_count_data','eJzdWU1v4zYQ/SuCCvSmtSUrsizD6MEo+oFuWqCHPQoMRVusFUolqbhqkP++M6TtOO1iu/rASvXFESVyZvjm8ZHMkMS/S555Ml//ik/uh4oX6fsyY0X6CxcHN4mTZ5UsE7eAVsozd419VbJI3FoWLjyFceLmWlcqmc0EO/7BpGLNvhGMlo9EaU4oE5rJd9Cc0VJoQvXMjINhpdL4uPAT9z+GYjdwxLEtCDh+SHxrpDJG/hX9b/g68QMMP4CBJnI/jEMYBT011wVz1/fWhm4q5l6bU0mUuEoTXStswPyr+qHgKj+1cCIQmzVwZ9FRGEWMw7JtQZRy4cOzsfnE2bEnVCzjJqw4/HITx8oj2SMXM5zTuyqvvsOHDYLw7TfzRbwG+7wUm7NtmDL7qyqlaayCPo6IZGRzxGxYi9YffgYOmQjQB2QHPFJ27mX8tsDo835f7X7aO6RRsp1kNql+0MWx+bXQkj3bmEVyzLmqmLROkVkb49lQJKVlLXRaVxnR7FNhvZhsq6LeW25BTmjBKZLr3i4B6M8xbfYFsr6UeyI4TbUkux2nl4GY11Ke+sESI3SXXhH3xXQigubYCfyuwDHNWVYXzCEOIMOcJy51TQqnlA4XHsxKlcIBG6ouYHGYKGwMJMtYlj40aQWhc4Hrc27jLUp66Xm9cl5gOXYWncj/8mRdv/ZULfdMNuMpUBRFIyrQULgNKUeAyMhyBBGMKEcn71OTIxPWiHIUoBxZ1jm6dDRAqZ1rAHpJT/A/P+/IZLn+B2Bo9aLfTVlLK+GDqfWiu1pH7SGDfkQePPjj2f6jSXawjJftJfv+szJ9MjHKwoLGvQG3FxvCzmxYttiDzmywnTzKdTMJSsRhh3vEdCmBXX42qDlbgLgXMe66y8SqPTFYtgcuw9tp0OLupmgB+fj+jG8vTkTdxaLD1nFkSsM+qJAV5oBjNaMp5WFMasS3RA0fjH94xdnZGpx7kWTZXThaXA7OJHkkIidaE+GJho5IiyhoT4vhroNDATfgfRAhGfc+iBGMdx88e5/YfdCGNeJ9EDaj92fq9dKZ+KueXHHNMuFxVRCRTWEfijrsQ4MJzvAIDqs88ejKE4+qPPE0lSceVXl8UIDfDQmdnwwJe8nP6uvejwr+N3lgOp/G/WjZ4bQz3UMw3o/O+PYrhHQvvy7n7UmRE3pgQsHvNFgR+7fECh8y8uMF4X686F4hW3Wt9IDw/1nDt6LxiDqwzIOWwvjUJMiyDBe3RBYE7hVxxyCOVY7SucDej0HdCx1RixPVGwZR2CI57uNqNJosQv+m/t0SguPtBVZnV8o3pTBHsieuwLFzqpj140z3Sk+b8/0bzlSSUy72HhcwA5g3G7NCf1PUWSEiJ1D70aJ7ySdscUgZLe+LYHVLeV/MTZ3POdV1friWi63BrgcbXj4CCJ2EaA=='),(2330,1901,'wpil_links_outbound_external_count_data','eJxtj8tuAjEMRX+l8r5khhZKzS/0sWQZhSRlrJokSjyVEOLfcZDYoO78uPf42uGIZ8Jh+43jCmFXiO1nDpHtB6VfwA2eG74hsHaWAmy7tuELwlwZtFqvESaR0tCY42nhOf5Fdil4dZBf5HowU3Qsk5EanRxjkmbGcRjen5lKbrMXyqmTXhWUm/RyuUT4H9a3GwRKEmtymmB/y6PecvN+9UgILvkp1y7uX/04eXo41scuhBjs/mQLzwdKd5biOXt3V+rzPuu5pPTL5QrAbmUE'),(2333,1668,'wpil_links_inbound_internal_count_data','eJzllz2P3CAQhv8Kokh3WeOPs5etro2Sy0opUlocxr7JceAATmRF+98zLJvVnlKksNLYnQeGd2ZeHsm24A3/BTw7fOas4vTrCLr9ZDul249gXmjc9bzmVGPUQkcPMdfzgtPJaYpPNeP0OYTR893OqJ/flPNqHmajpH0VPoCQygTl3mO4u12+Gx1IMMMdGD85YaTaRbkS1awP8bFA5X8oxrSGU4ixEdjPE2dJZDyL/DXUMS5zlsepcjx4HojldYWnMDNA0IoeHpNGmEdFb+U8v+fUBxEmn5LQGGmxuAkprpJR/irh9TSkAE9KDfLPXnPWhADWpIXYqHWDMCDb4ETfg7weVB0E6y556IqQfXtT93ROQgufYxIOhoVv/SISu/cEDHn8QC+lRNeprn2a2xE7BBOdy1Jb2kqR2no73wmN2jQl+6xZFSUZGid+wIC3bQZyNXgRIfm2CWFsTYSULFpycRUB+T6BA+WJMB3pweBqBMeOsbhfhE2xbWyyVWGzv6FmERXllqnI67JYExV5E9vygdievPk4QaMH5eZFpFRbJqUo2bo+TP4nKfdbJoVV1areNAxv5wJF+sdZhEa9aTSKfL8mNHJs64tS5EFrctTCePJOvI4HckyOLwDl9BtOhK8t'),(2335,1668,'wpil_links_outbound_internal_count_data','eJzdWU2P0zAQ/StWkLiFNulX6qriwAEJwYLEgWPkOtPWkCbBdijVav87Yztduh8CmgRc9lLFiTPz/PxmxpkyGkX0WtDh4j2NJjT4VIk8fVdmkKdvRfEloAm9VnRGgxxHqciChZmr6IgGtcwDvJpHNNhqXSk6GBSw/wxSwWFzKICXO6a0YBwKDfIFDgent8O1hK81PssPIVNfIAtxhA/KQoVoJ3SGBsbFGD2USpvLEXr7jRczLaGBMOOCIcYVjZyRyhp5sNAP5jaNYrPSGF+0i4xn4xG+hTO10DkEiytnQx8qCE7NKTqlgdJM18oMkKqqXuVCbZsRLxFIoZ2BiSNSGRSJeS17lTOlAnxwbW1+E7D/d6xCJuwKkvGfe9tXIct2ohiY5b+ottVLc7E0fD1/NhwlC8aNu+XRNrID36tS2sE87uKISWDLvdk4Z9H5M49RmRaB8YEbiR45HGdZv0lffn/afdw77rgE3AS3/1HcxrH9ddSyDSxt6O23QlUgnVMjwqX1bNWU8rIudFpXGdPwGKwbu9sqrzdOhrgnPBfc6PDKRQvOF2bb3A0TIKXcsELwVEu2Xgt++6LZ11I281CljK/TE43f2Ems4FszCRWPjndMFORWh4QVGcE3OIYnDlZlrcnrE0aIquUG5CFogLAsgyxdHdIK8YvCxPPQgc5Lzhzou5F2IzDi2+az6axl5G0ky0CFmAo2oLzlrWgyiTzmrX7Z6zE/GV785ieDwF9+Onq/sPzkYHnMT6PYRgGKzuYlg1yRck1OOeiUieLWmWgybxlLdhH+MtA4ic/PQFe/zDqNCS8KiYcOe6+qGLVWRdL2ZOhUceeWhG9CIUB/WpkPfVarv8lln7ULWfJcuxCBx9rVeL+02mVheaxdMRaI0/WSowZ7OUKP26eoYcuwamCHWcmRh4voA0TxbPKkqhka18B296sZwcADqVUnyUyeuGQkjYbTxSNRiCSoOteWF7IXekvKWpIGUydKp60pHZ+RHo1HrC0+z4xjj+eADlT1WeaRBM9lHhF4LPON90sr8xaWzxYamsqE4rVSpJKCi2LjcozeArmCPXljKbnbRHtlSemUembte2hnnKtXsC4lhGyNN/AQbdKoz+7Z1GfXvy/eeu2bTT339Q0Cn32z6SX29R0sn30zJMRJ0PbNrAzJvY8Rq8lOKSj5z08/eGAcPTww4oI+8i1kdQ7kYA6KrKpKtLGzy+5A17w1XbMzAvhB2wP2F/GpFifJ9Cl9qhni6qJikuU55JARzppoc99qQkG3/8ja/+k/PuNzzVstH8XzJyUH5PyvnfZufgDqd5pv'),(2337,1668,'wpil_links_outbound_external_count_data','eJylkEFPwzAMhf/KZKQdV9oNWtzjJE4wuHGM0iRs1rIkSjIqNO2/4xQhNIkLcLPznj/nWWKDJ8Lr/gnrG4SXQFY8em2seCC3B+zwlLBFsNwJ0tAXb8IlwjFa4KppEHY5h4RVFWQm4/IrLZQ/VEVdsehTLmXNMxeG8tghkMsmOsmwYULzSJhGNtzcIkindj4W8x3C8yfgniYif1hqbbQY3kWwxy25LwhzrVds9q44OYDyvMcx9kxY/z1t+512HMeFktGoaDTlHyNzfen4deYln/eNEuXZmkHrCTS/6pq67dNsNAMr5h+3OH8AsdGkiw=='),(2340,1666,'wpil_links_inbound_internal_count_data','eJztms2O2yAQgF/F4tw2AdsJIQ/QS/+kVurRYjHJ0iVgAckqWuXdO8RplN0eailOD5Cbxx6GYfx5GI/NGSHsRbHp8ivDNUM/O6Wbz7aVuvmkzBNilL14NmdIg9SoFi2jrmclQ1unERzNMEOPIXSeTSZGPv+Szsv9em+ksBvug+JCmiDdBxAnl6ff+61bS7efRCMV2LA+xMMS7P3DTlSjDKkoGw5ePDDcG+mORv5ayrd4mmES10Jg4HEZZUXjKNAMKmiJll96G2HfSXRpDtbIkA88bH2vBOEQFiY3oZfrPjz+bMLr7boXYKTQSvy5Ro82VVDW9Ceio9atuVGiCY6vVkqcB8pWBetOehAVLlbNxbyHoxI34jEqwbzgloNo7SCoReeskN4XK6u1fVZmXVyGsjjFHp084G0r2+Zh33TguDIxoNPeW20F7719veyDgpBnhwyhdJYSMguwHUFpt05exQJJiQUH93n5JlKwhDGemTKlOA18Zmb1PKVnhsA98VI+FcFJHjagVdguzuTfXYVGlR8aeDGlSaEB+XTDtSweAA0fCgeJVcSZRtlv6xwBwUmVaGTK0Oh12CxHLqZpcbE4lxdFsP3O8qpgvwqQeX6AlNW8TAoQSBwfx04cND8ucJ3WhoJpnziU4LoY51VukR8VZYXTqkNvUWbgDFuEuK6TSheEvAFjnJSBs2wF1mnlDJA2yih4f9X7Qpkd92onx8kcSXUHB+Ixp2l1vW6IR45NUTq7Z4+BeGTYGIXNpbrjMQyPDNuihM7JHY9heGTYHSU0rR8bbolHhr1RQqv75jIQjwxbpFCa3jeXgXhk2CvFJVmkhAcG6fvp09sPtZHg0pW/QmXYJy2rxTQ1KM7fY0eBIqkOqWMVvHb9rzx7+A3hUMK2'),(2342,1666,'wpil_links_outbound_internal_count_data','eJzdmd9v2zYQx/8VQQP2ptr6YVlWYAxdHwYMXRqsD300aOlscVFFjqTmGkH+992RTmIvAVpLHmToxRAl6u741YfHM8nycJY/8Hx684mu/C+S16s/RAn16iNv7v08yx90Ps/9GlsrXvo31Ffnce63qvbxah7lfmWM1Plk0sDuL1Aa9tt9A4X4yrThrIDGgHqHzcnx7UDBPxx2OsCXAvfWhOwlaE5oQ5dxmPvfMUndstzn1G4YBrTOQ2dEWiOvRnVHt/MwomFh5G5EUZal+Bb2NNzU4N/cOhtmL8E/NqfzNPe1YabVrhMqUwh03hjXnjml9LMJXbdb18A3i5oXT88ya5MbLhp3gwIVassaXqyMYpsNL55fhJIboQ79UBVWbFZHfh9tJ9YUFXXCLuh4VzHjGeHBNwmFDZ0csLKEcrXeryTGxRvSa+qCqUXBXDCno3rkqGhXOLJpRzh0q7ag9kEpChz4VUASRvPZ+ZBYfWS7rrmu/ivtKTCfKEZtyg8109rHBw/WJk2S/1lKosu6SH7cxU4GrPzKmwmN+Z2s5C90sSSRfv5pGmc3rCCalk+2CeJvUijbWJyRM147YgrYckdfy1l0/ugxMmgjsLRH5LGAp17Wb3Ypvy923/aOn1nBRoH76GHUxbH9ddKyLSztJNtVXEtQzimRt7SeLUKYEdrGrFpZMgNvhfU4XEaKadoI6d3Czvvdjt47Hr53gLNXmoo6p6l03nFubRUrQQc42begh8tMs1k4quULjZ/QYWXuxUbcvb45Y+qesEHqa5zEbW2C4wfDYbKYZmPD5D3J6/12pFovTJLulU7cExNRg6Y+V8PKqCriKCZWnjS+HDCz7sCcUWy9AcxalPt1y+sS1LUQE45qEYrQ8a8vIl8OmbQ7MmEvZF79+9YY4JAZZly8YBdkRHh/HpT1Prs/Xr1gmQ9Vt0gNbSmuIrNE6Ww+JlKobrl7JW8vTLLuOSXth0m72eyDhkuJS+t1LERRmo6rzMWPdUcye7dO5l6kLLonlEUvUjQ0XFxJrRIn2ajWnhA/zWer7+XKlLD7kcCi61blG3UK22DPYAd8W5mgFnq4XZY4mcdjgiae2oLlZZflPUntfbFSex9R6n78dD81SM+oc9ewEQoOmCjQbW2G3IhLR4UI5RWJ6grpyUoYoT3D7qHpx0X3bdrkjJKWXLLCDIdCkiXno3Cx06IeUl3yNAhFGPg0CCMY8DTo4P3aToNsWEOeBuHSg4GzezqgFq3yBFkDzyXzijVlvxTTfbd/0XWLBb/u3y0+q/cB0/dQBtjSFN9VnF1H82RUC1OErRfFPau496x4P3i6nwEkZ9S9g61LcbQYEwmUSo4OlU8K2g9Wux40PP4LsdRnOg=='),(2344,1666,'wpil_links_outbound_external_count_data','eJxFj01uAjEMRq9SZT+EUX+g5gqlXXYZhUkgFpk4JB6NEOLudUYt3fmznp9tCz3cENa7L+hfQX1njGZPzkfzgemsYAu3ChtQUZJBp3aNrfAMaipRSbWRqcCcK2g9z/PKVhsuKyonPVrnj1Q4YB1p9Im1Tb5y8BVt1697zdfsa0fH7r+vm/JFjFS5le+gHsKWt6AwsS/JyvLDcorQeaE/JbwJn4ZApcHtoV814/A0Ve8ebee8M4eryXE6YfpziT7SYBkpLb+BGkjWJbHf7z/bRGMp'),(2347,1563,'wpil_links_inbound_internal_count_data','eJzlmE2P2yAQhv8KotLe0gQ7dhxy6p77sbceLYInCQ0LLOBW1ir/vYOdXWXVSD0kJ/vmwcPL8PqR+RCcMf6q+GLzg7OC059O6fqbbUDXX5U5Ul7x18BXnGqMatXQTcoNPOe09ZriU8k4PcToAp/PDfz5BT5At+8MSPssQlRCgongP2M438LOepiJHTbMPIRWxzBPIkvUsCGmxxz1/qOT0ipOVYqNwCq2nA0irhf5ZypPqZmzLM0lw479NNh6UWIvzIwqaqCb74NG7BzQSzmcI6chitiGIQntkBYHN3GIi8Ge8C4RdLsfAuwptZJv76peU0VlzdCQCrV+L4ySdfRit1PyvSM0Klp/zkNXhNzVF+Oe+iRh5CEl4cTwmwwGE2Ea0ptM3MFGG+h5JNE00NTbrnZYoDLJuMVQlbZSDFV9nN4JfZokGtWY0MhXV9C4NJCE1u/BdzeBkk0RFMZGBUp5HRT7Bsg9fij5BDkpxsVJtrzCydnkm9hYTpGNrBgVGymSBwW/gXS29UQ1IPRd6CimR0e2WuajogO/icEivdAzbe1Rmf1d0CinhwYry1EdYNgaxdFd6867DBLFEcxNWKwmicXEDi/3+H9U0wMlX7JxgbLACEI8QFRSaI2HFQ0i3GuFWU+PEFYUozq2lKl2obT1JG1MhXPe4laVREsQCXQ7EEixQwZQ4uFTlbHVJpDWqJcWiAFobrxLm+I9a56txwRRhlKPw3r0IJ7dhnzpV6SnWy9GTn8BlCnBCw=='),(2349,1563,'wpil_links_outbound_internal_count_data','eJzdV8GO2jAQ/ZXIlXpjIQmBrBHqYQ+Vqna3tx4j4wzBbdaObKcpWvHv9diwhXalioCU1V5QnIzfzDy/eQmMZvRJ0MnigcYZJd8aURdfVAl18VnIH4Tm9MnQOSW1WxWiJAuMNTSlpNU1cVf5hJKNtY2h47GE7jtoA9tqK4GrR2asYBykBX3jluPj2yPT6gr0dlQqbpU2I7d5FHaPEXfqYJWxeJnGlPwH2ldCicC1ZK6wFY0DSONB/unuK96mcYLtJW6j7yxO5pnb5SKtsDWQxX3AsNsGyDGcoTNKjGW2NSHIMcSVSy5tWGeBMfMMYeq2Cgu3k9eCH57lHlNYoWS4gYUqXTEpeGE1W68Ff94IpXBc7eMcK4yvi6O8Ox/EJN9gUAhRrY72FJM9OitLKIvVtmhcUUIiWZNQSa04C5WctrRz3PRWyGzaUyGcyVKUzIIZTBHpNM7PV4Tno2lXtTCbv6k8VccD1mhseVczYwjOosf8KaC7MnUoHc/JGZBdM2Llo5Bj7PGm2TQf8GKJpLx/N0nzBeOoluUBGxX6q1HaL26TSxIxDWzZ4ekExJAPHzuN+Qq8mhPMyOEQ5fPm18r7B/fl7O5YNaw1hEOOkz6J/W+gllWw9EPUbYRpQIekqLSlz+wl48a9lbZoGzzcl8raDWc3CeY6CC9aKx257lW0N/qL3Cfp7z7zniNUaVaCGbmZrgY0oDjL4iEN6KrsXdGDkJdhPQgrGM6DDtlfmQeFsob0oMRPgRNdpNbRcecX+U/a23/mZ0jwZII04BC+iu/iJM9nb+q72JVlNyB05EYLtADJ4bKv42lvfUzP+P802EsoTW7f0vmnjvN76KJPnrno4xF10Z3n7gIx7H4DQngtsg=='),(2351,1563,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(2354,1551,'wpil_links_inbound_internal_count_data','eJzlls9u3CAQxl8FcU92/Xcd9gFySdvcerQIYO+kFCxgG1nVvnsHs0ktpVIPTi72zcDHx8z4JwbOGvYb2P74jWUVo98H0O0XK5VuH8D8oHHVswOjGkctSHqMWs8KRs9OU/yqcfEUwuDZbmfUy7NyXo39aJSwP7kPwIUyQblbHO7m0ze941L5Gx94r/wuWpXoZH2In0XG6H/coqxhFOLYcIzliWXJZJhM3iX0GKdZlseMctw4JVOUTdyFygBBK3r8mjzCOCg6t8NMGcVgw9knEeYtLB5uQhpXqUj+zcLrc58GuFNoEK9rzeQJAaxJEzFQ63puQLTB8a4D8bZRSQjWXXVYFS66dnbuZRJxI05RhImhlVe/lIMwEtuRcFIE5fJ6WjqLS6lk+zS2A4YIJpZun+LSVvBX5TzBC2BxN4pIVtXFqhDJpyixpBGQeeUW8ZFvlY+8rps18VHgn0mVJdxI8gmoFFtFJauyVXWbYo+ozOpF3nGziJNyq5zkh3JVLae8Y/R+zgnECwXVRGjuPXSgJMGaWdLZs7tStAidaqvoZHVdrwmdrPnXFbOIjXrDbKzrpfL3JRs7TkzjYx8qh82SUuR3ayIlSrABWXK/tLVc/gBu1K0I'),(2356,1551,'wpil_links_outbound_internal_count_data','eJzdV99v2jAQ/lesTOobhQRIUyO0hz5MmrZ2b3tExrkQb6nt2U4Zqvjfd3ZoR39IKwlaKl5QbJ+/O3/+uDszmtF7QUezGxpPafRdi2rxVeVQLb4I+TPyq5Ze0KjC0ULk0czbWjqmUW2qCL8uYhqVzmlLh0MJ6x9gLGxWGwlc3TLrBOMgHZhzHA73pwfaCC7kaiCkrQ2THIYeboJoyjr/OUbkfyB6s4xGwo8lw3iWNG5AdAB5cahvfprGiT9VghvDgeI0zXAXWjrhKohm1w2G22iI9uEsTWlkHXO1bYyQGK7QuXTNeNoQZR8hbFWvmgHu5JXgD2tZwBROKNlM+ECVWTEp+MIZVhSCP26EXDhldnbICuPFYs/vNhghhaU3QhO8HeR0BWZDOAZuox0+y3PIF8vNQmNYQnq6Rk0sleKsieXpobbITmtpTMdvl8a6ZG4g7ACXVX9CmMbx4UIIJOh6WQlbPufvqShufIzW5VcVszbChfuAeSdgfQy+vEwCEZMDcPSA5bdCDv3BznWpP/qPuWfi7MNonM0Y97qYP2B7Nf7WyoTBZdLFETPA5mt/JQ1i488vo5pCBEG3iffI4cEq+M2O5fcv7uve8S4NFAaam42TNo7Db0MtW8E8/F3WpbAaTOPUy2sePAed4F+7lm5R65w5eC2sbX+pJR3RaP+8RFiSQyEk5IRZou7A5HAHldI4sUSirSOrismcOGFtDZ0yUdK+SB1wb0+KlL8aO9QW6lztL/SWopJ0enFStcqDv6C3k0zGrWWStu1ldtW2zw4mPSVVJMmzNKON4pDXplsCmbRWRpZ2SyB1UWwGUmhdQajZ7yGRnFjTi6OGYOLZxopku/W90/+SRpZQKAMDVuDEAPuMunK2x/43HZ+SJlIfOxOVMkTVhjCNaYTxkjhFUBLItiXgxxo1gBBnH7IkxupKail+1UAkQN5NQ2lrDU0O6Fi8R2zT+5PNJJscLpujPZs6UHXMFxOS0POLCSPo8cW08/7eXkwhrB5fTJ4Ay0tsXrAyMYLMAEFzn+gfs0br/HLRPr+M3n4vveWVcXJ5SuVojJxfw5p8DsyRT/sN7lXgroMYtn8AsRBPig=='),(2358,1551,'wpil_links_outbound_external_count_data','eJxlj0tuwzAMRO/CfaK6v6TMFfpZdikwkmATUSjBVGAEQe5eykA37W4G5DwOCQe8MT4cvnB4QfiunP1HiSn7d5YT4B5vijuEbM5zhEPfVXxCuMwZTO0sNbVWFZ1blmU7lXpi0XOKHFjStsyjmxLlNrlQJHLjIrohiZvImkiTuvEqKZQzaWPqyGcjFm1dDm9d/yP20R6BpaVZyHoc11YWrGvw08wrAkmYyrxyHhH+nun/Uowp+uPV13wZWX5Bxs4lUO+6/ohg3VsSQ9/vPx0iZ4o='),(2361,1525,'wpil_links_inbound_internal_count_data','eJzlmD2P2zAMhv+Kof2a+COOowwdOnTp13ajoUhywlaRDElGYRzy30tZaeD2DuiQdJE3yaEo8sUT0iajeUFfgK73X2m+oeS5B9V+NkKq9hPoH4Q29MXRLSUKdy0Isg+2jpaUDFYRXNW4PHnfO7paafnzu7ROjsdRS27OzHlgXGov7TvcrjgbnHRPpnuaG6yCmwq9GOfDsswp+YenYNZQAmGvGcZxoHl00k9OXiXzLTyecnW0wINTImXVhFNo6cErSfZfog8/9pLM3WGWlDjP/OCiEQrCDV6ufdxvokDu5sKp4Rg3eJIr4L9/ayaf4MHo+CAEauyRaeCtt6zrgN8OSgHe2KsdqsJ4187uvUxGTPNTMMLEMLMocWa6bK4cuV7EhJCiPYxtj/GBDrqtY1DKcBaD+jO7C6CyC2SjqDfblNjIMaxBC2nVCPqYRbXvwqJYIhb5bl2nhEW1RucWzsyOkYlQOZgwSrog3eOKSLlQWpqUaCmaeYNhYlAPJKRaJiF5Wq8guzfqycMQ2SwRkbLalikhEoT7ONMrA5fh+my0ujIj7oKkXiIkRV0n3Gk09L2SmdSK2aM8T2fuIGS7RELyTWKd5v987DZLZKPYVmm1mOrGhj8xn1npwqsq6MdxslsiJ2WVp9Vl6hiWhcPgZebNA4dmiU1ULX6q1Pu/pwfF66FSqMbXRi2yg5V4T+bBuUHep+cip5B5WexS+sOFKeRzqMgfYnXG7wDz/g4uLr8AZ0gr5g=='),(2363,1525,'wpil_links_outbound_internal_count_data','eJzdWE2PmzAQ/SuISr2lCZAP4ijqYQ+Vqjat1EOPyLEnwa2DETabolX+e8cm2yXdaLuBlUj3EmEznhm/efNiQ8mc3AkyWnwhwYT433Mhk8+Kg0w+ieynT2Jyp8mM+BJHieD+wtpqEhG/LKSPT+OY+KkxuSbDYQb7H1BoqLZVBkztqDaCMsgMFO9wOGQqM5SZoVuHy5Q29jEKiP+PpdYMAwk7zigGXpOgdpI7J4+y/2qnSRDa9ENc6DIPxvEYV6GlEUaCv1jVPkyVg990p8mU+NpQU2o7wP3n5VoKnR5HdiOYW+1gUqOjbRaxXcZvJNXaxxd3zuetgH1HqIALl1Y8fr6LfT6gfCeyod3TuzzN39uHpQXh7ZtRFC/Qv1DZ8t43bhl+5apwg3nYJRAtgC73thq1xzqefY0cchnYGFgdjMjg3srFvQCjp+M++D0fHctYwKaAuqhB2Caw+62hpVtYuibZp0LnUNRBLbOWLrKjSMJUmZmkzDk1cC6tg6u2luW25hbWhEnBLLlWdQugvbBlqycs61WxpZlgiSnoZiPYn4W2rqo42mGLUbZJGsQ9OCOasdQaYZfMif+NpcBLCR710FKXElsAY3lGcVr5x3iUc+DJukpyTFNkthdHdW5SMVrndtolB2y91gIziS4oTErNQOgBvlb9qcwkCHpUma54vaTUIBI9Sw1m0KPUHKNfm9S4tHqUGluND439dlKWsLWyzC6oQ3N6YKHWw1xDyVXzRW+SE04ns8slZ/WkzBxd9EMQ6/wRvJ1oErWmSXyBoJ6hCeVKgrY2g6vgSjAfTV8TV8bBqZh4QuPhZbfDY4vIvAf0vbWqdCcKjdsrzbwThTRkQhXXQZ9oHLc43VwvfQIsDYdbkCr3apw9exrqRJRJe6254NB1hihrxat1KSSHK2FLMG9zFr5etoQYuAGy92J/T9PWlJkGz6fMGjaqgAHd4MQAz6N4wdM93pOm0avihh2xVKCYeJUqC09woNI7wtyJHbP//PNcQWaLv9CajhqfGxxcJ18c9sKkHvVWsPc+usBOlT287jBB8Y5sOuEZt8dz9Hw8e2usKJy/psaKEPMGEU4OezcOuw5kOPwGGrW67Q=='),(2365,1525,'wpil_links_outbound_external_count_data','eJxdkMFuwyAMhl8l4gFC0y1d5B53XbfddkQOsMQqMSiQRVXVd58TaZfdfht/fAaEBu4Eh/MHNC2or0TBXKLzwbwRXxV0cM/wAipIZcip8zab4QnUMgclqZU4lpIyaL2ua822p5rDVDON9RB/dJqsxrmQDT7rz8vrsTsdumOrN/hZ2JjLFpsTqP/s1u9AERc/M4qu3+VCpZ16l0IwZDvGeb9PjvLS5yItnyuLXAWPripRcpZO/K6GG3sbJ8yFcBfLs9E570x/MyksA/GfSNwhWiwUeZuUb7BRdmFRPx6/r8tmJQ=='),(2368,1511,'wpil_links_inbound_internal_count_data','eJztmEtvGyEQgP8K4tQeUnvZF8anniJVSdpbjyu8O17TElgBG8uK/N8L3iRykkNl2fJh2RsD82L0aRDDWVKwZ8Hmy58syRn+3QlZ3esGZHUn1F/MKHu2rGRYeqkSDV4GXctShnsjsV/lfrlxrrNsNlOw/QPGwq7dKaj1I7dO8BqUA/PNi7PthrsbYW/8sZ4F48zbauvCMk0Y/o99UKMMiyAr7qOvWDI46Q5OPl3hV9hmCQl3IN7wkD4p8jLkzbATTgJePgw+3K4DfOzOsoJh67jr7aDky1BrH1y5Qc6Hstg3F1b27SB4y1qK+vWMHnwKJ7QaNkKi2rRcibpyhq/Xon4zhEY4bV70fFV4va6O4u4PSlzVm6Bkw/Xw7VG98It73jTQVKtd1fmshArVmg+pSF3zIZX3d9oLX89oOEizMh0bB+2lOCDxcJDkJB8bBxfrB2k8HJAyG10/uBgHWTwcpFlCx8RBmr1/F5DtTQtmh4RCD7BFPw4VPYuOPB46kjxPxkRHMf9Ah7CogbVQ0CBukX4C08ATSN35jZUBr4RayVWDnLC2h7O4KeLhhtB8XF2l+MDNl0cu4ZUQA01fh7hfz+KjjIiPko7qV3oVPmhEfNBi6h+n8rGIiY88m/g4ddoV09iTlmQC5FRAIpqHEkpH9bO5DiARDUoJzaYn5mRAYpqg0mJ6Yk4GJKLRapKSxZgAIV7lDrhR6F4bQN9Xunfo1lf4PCIiGqem2WI+JiKu0DL2/wCsSw68'),(2370,1511,'wpil_links_outbound_internal_count_data','eJzdWU2PmzAQ/SuISr1lw1cIcRRV1R6qVu3u3npEBhvilsXINk3RKv+9Yzu7zX6obWBVIi4RNsObmcfzeEww8gN0x5C3vkb+ArlfG1alXzihVfqZ1d9dlKA7iZbIrWCUMuKuta1EIXJbUblwtUyQu1WqkWg+r+nuGxWSdmVX05zfYqkYzmmtqLiA4fx4eqa6hso5Jm2lZsc35ho1AlAulb4MfeT+BVibQRhMj2sMYWXItyCNAXmW242eNqlLFMCDJi9/5SXwFFgqpirqrq8shg7UPYaTKEauVFi10hoBPzkH57Wy44XlSz5AyKot7QCezCuW399LDCZTjNd2QgfKRYlrlqdK4KJg+cODlDDFxcEOWMF5kR753RsjXOdbbQQmHow0vQ6wxt0DOCaEkjTr0gZiYrXmyrOBVDzHNpDHGe2Bmt7ySKJB8sg46bKWVYSKcxGJ709JJJq4Y76cHLeSEifrHAlEcUbkIOUEvZUTnVBYtEecq/FUESXR6aow+TdtVjG5fUrdY4Vc6xilIpcVltKFG3cG8weju4FUabmcuk53zQyTW1bPdU4XzbZ5py82moS3b7wwWQM+qGFzj61V+bPhwgxWwRBHWFC82em3YRGtP30bNGQiMGoNtMec3lsZvydw9Ge/v3Ff9g6vUdBCUPtS/aCPY/NrqcUl3ZhFstsy2VBhnWplbYxnIxFY4m2t0rYhWNGXwtqPV2ICWNNAB3XARsJ2ZEqFozjB3aDSEvbflMKBPQuvqNQ257InefGU9iR/hdyPdQETnYNr4ty0GRVqmFii/g3uapBYJK0ZP5PmJYySSTUvgPQeFFAOUsaitzLiE8qIaavkjBfnoQR/ESympIQAMrMUO7xwjpkbpI24vzaWPatGKTABoQDlJVSP8fSxmFSlCL0nxxxLs9leLNWDdLIc6/NJI2lL+FmUlCBeLKckGV+DP6N3kEyS/uXE7ykT2YqSim68QhLHPXrTVzsZvxZvr3lMBkZGPiZDBCMekw/ez+2YbMIa8Zis641WHctx5TSC55S0gg6qN6v/Um8yWnBBZ7iAiRm8Tzjij9m4xOGUdqEAHFuCTa9iSHYOJA/7pN//L5/z+DIrULRaP2UL8pH5FlYOBF8CYw5uGg4QtybtIXT1/wsk8v6drtGWTRisprRsdL9/RXfOJ8Oc8+G49b803A1Qw/4Xq4DFJg=='),(2372,1511,'wpil_links_outbound_external_count_data','eJxtj71uwzAMhN9Fu6M4adKAeYEM/Rk7GoxEWEJpUbCUFkaQdy9loEvRjQTvvjsi9HCPsD2/Q38A85EjD6/iiYeXmD4NnOBe4BkM6zZEb85NW2AP5jaz0emkx1BrLmDttGwc0xcxJu/UEd1G5tEGQq7B+lgICxXbH47bfcfy3VUqVUqlWRJ1EzJ1YckySkIVTw3/pHRVtHG3A/N/wtoDTExKSqi1rmtJ9ebV+6bLEQwmF2Ru4l5Rlz9J7X30nvxwXYbMtzGmX5CyWRzWKKkp9WMnmpUU/Xj8AM+ua/A='),(2375,1482,'wpil_links_inbound_internal_count_data','eJztmM+O2yAQxl/F4t4m+E9MJq+w2/bWo8VinKV1wQLSylrl3TuYdOWqlWop3YvxzYOHj29GP2FrONACXhTsTx+BVkA+D6pvHk0r++ZB6a8EGLw4qIH0GDWqJaeQ66AAcrE9wafqCOTZ+8HBbqfljy/SOjmeRy2F+cadV1xI7aV9j+FuvvzOj4N0uyBRooJxPjwWFMg/VEIaA6JCrDl6eAIaRYZJ5I9CPoVloHmoJMeNUxE0r6vgHohXvpfk9CFqBFdkLufgAMR57i8uJmEzhMHDtY9xFZvjXiVcfznHAHeKXolf79ikqbwyOi4Eo8aeuVai8ZZ3nRKvG2WrvLG3POwKF10zO/c6JXEtnkMSFoYp835lTtrvSkhHbufwtpVt8zQ2A9pTOrRtHz31RvDo6ffirtil5LA4HNiqsNhH75npsnnf7qIiT42KoqSrogLv/Mm7u2Fh7sKhSA2HnFWrwiFnf78kMnexZ2nHu+gok6OjZvVGx0I6quToYCv7wXhLOg7p0VGVGx0L6ajTo6PONzoW0sHSo4PRjY6FdBzTo6PcviyLx17JjUPxt3T7tCzGI72xaMlWdXuExrWq66TFhGw+Cvs/E1Ka4Ij0uF8TIW94gVx/AktuDhU='),(2377,1482,'wpil_links_outbound_internal_count_data','eJzdmvGPmzYUx/8VxKT9RhMgAcIpmrpT1W1qs1P7w/2IHHCCe5yNsGnGqvvf92yHXqqeumFHA/ELF8Ozn/m+j5+NfSj1k/QLSZc3f6b+OnXva1Jl71mBq+wdoQ9uCk95GqduBaWMFO6NtOVpmLptU7nwa5WkbilEzdPFguLTJ9xw3B07inP2iLggKMdU4OYVFBc5owLlYqHqQTXGhfwZ+qn7L1WlGTgiskwRON6nvm6kVo181/s7eTv1A9n9ACqqnvurZAW1wFIQUWH3ZqfbEF2N3cvmeBqlLhdItFwW4P3rdl8RXp5L8kWgb7qBtVaHy14kslpxWyHOXXjwRbX5meCTpVS4IKpbyeq/N3GqPVQ8ErqQ7/SqLutf5I+tFOHnn5ZhcgPtE0a3fdvwyvivmjWqsAlsHKEGo+1JRkO3qP3Jx8CQ6oH0AdEBjznurZTfARr92O9zuy97hzA2+NBgHVQ/MHGsrlpadMRbNUhOJeE1brRTSdZWeVaIZDlrqcjaukACv9StJxVtXrVHzRbEJK9ILuHa6SEA9kSGTd+Q1LPmiCjJM9Ggw4HkXyvKuLLmbAdDDOWH7ALcJ2WEaF5KIzCJNNdAhdNyR7ACde7ZBSoKXGT7LquhZ4TK4bfU3alYjnR3vh0YTzDajHNKPCAWl7c9KTeHqLSV8C4fjJdxNstkeMbZ/TDLnJsYB5Jl6r6W8jpvO8qs8AiM8UhCSzxYhbm0mQwj0awYWUtGeo3tQQnNQRkwW74Ayp4V3b4lVYGbqZDi+7MiBUq/Potsj8rKHBXfCpVvbjX4M+HQwTEzyrw4gTh9OItqD8l6rHVJzXFbsElkkiBax7MiBEzueIsLZs9HZJ5EIjs+2sOh8yipa5g7pzHjBFE0r/UrvNmdlNnZKZmtQInNE8nGChSOKWETWZOEq2Recw2YfFT62meSxBiQzfJ6yxF0AEvvhMmxFF7FOB+RlTicEysBvJmExHktJXbulcTOO5DYCpuNMTbRgAmo32EEO9Q8ePDH0/bjTTZxMqtFCRR2Sly7bTTzvfl4wEdNj4M28nIiukkwkawMtuyny4Q0+UOp5tyCxHZkmO+wRgMWID0ZuDgCzXIumQQX61lxAfF40+trB4X5vmpsMHucMBd5CRfAQh1u6KzRseZhTDbm9dECjd8/6+zcKp3tKDHfVI0GnAz2lDwiWiIhEPVol4/IRRQM5+Jqx79XE+6Kh8FSknEPg2UP+i/z//8wuPc+scNg3a0RD4NhOnrfo2eXaMy35E1Wr3LQYuoRXiFaTGEmMtk+u1rGub6C1009yeipJxk19STTTD3JuP+HAhngo4LQ+V1BaJd/zE97jL6RKvI32mNRTuMbKTZY70x3HSy/kXp97aAwP+KJB2zM9lCUKH/AlMN1GlTMbMMeIvLbV4XtuDA/0VkN4GKsyPthsJlT5MOl2mB1zvtpby+kc26VdhY0PP0DvnkL2g=='),(2379,1482,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(2382,1484,'wpil_links_inbound_internal_count_data','eJzlW1tvnDgU/isu722wwQzjvDUPlapeVtpd7ePIAU/GDcUIm0ajKv99j2ESMQU1owKtbN7GE1/OfJzvXD4TzqKEfZcsvP7MMGXBf5Usdh9VLordB1neByxl3zXbsKCA0U7mwbWdq1nEgqYuAvgUpyw4GFNpdnVViocvotbieHcsRaa+cm0kz0RpRP0GhleZKg3PzFW7DpYpbezHCLPghaV2Ghwk7bjkcPAtw90mVbvJwPq/7NcME2s+gYWt5SSkCayCmUaaQgTXn7o9zLESQX87zRIWaMNNo7tJgIA1HuzpxrRDRD9voYvmrhvAyqyQ2dPf0nZPaaQquy+soaq+46XMdqbm+73MnheKXBpVn+YBKjzb73rnPraTeJkd7CQ4dwubF4JrgU7QInMQ6JN4QO9bMNG7HpropoUzONnA81zku9vjrgLTZWkhDTt7C5Xxzt7zH/4oAfQ1+EkUp9gnP6Ew5e/sIPKmEIiXSJavKwBRlUjV6JusTcML60G6KUz75JFROT9O8hTiuKfUjKTXI3zTzziifS0EYIl+juUkFCPHUbwwLqepX3F50+PbUTX1y4yb5CWx415SMzrgGrhIMBtA1HGALqMRjlPiE41w0pll65pGz5CTklW4AUnoxic3iEIWLFjSblbhFHgbepViKemVYm2KPVVjS+bZ1HFXqRmOwkFRC3bXgmcHpBroH9XSLeTWcRAv5lvqFd/SX+PbDFkbuy5OAe2SAe3sviOAzhar8DqkGrzFfkk143ntiVqq30rO5yvuizUQbweJbaR9sPntHN75QFyHVgNAe0W4MU1vYba5L9cQ8vvz2To0nCjeRD7Ri9L+1cOF9JqjaHRd6wGS0SHJIFjdKnXfXeKMXDyIb7xoZiCb66LIKHq///oGu64YXKo4Jl41u2n87CiyvANXeTli8eWv3lcinFC/GjoCj2FQCc1xv+6+KhLhQYgm9Jx5QKyqUrDH1/Z3T8FrJXoIJdQr+mzP6se5SeS+8BHFAxIl4Y+vH5zB9iDNAaDspSo4WyFdiUzyQuqJPFuHDEI2sVd9WpSe0tSyN2jEde3jwiicJF7dttoreIgP/N7qpzagKLubQLdir2px4GU+zSvWoe1gz9okq+3kUmeN1qiqZWYrtja5LNwJEfe1nRiTsdL3PGvPVvq6ruZcKp1ir+i1cOnrujQFJIqHJArtCngesxYtrisvo1D9gZfZXZcsLm3BqV8KVjp0lPl8YiWyTARBxCOfwGDWzendin81+semo1fTHMF9KYaGgyAbnb1cCX0S0uMZfRp2rmsuo9gRGL1tLzvRTb/2mcPZ1iFDRHH7VpQ3UWfh/wSIXJchgEYxHoSgpwuo6qBK0RV2uVBn0UdPwO3xf4SjqDM='),(2384,1484,'wpil_links_outbound_internal_count_data','eJzdmU2PmzAQhv+K5TubQEggznG76oe6H2or7RE5xoAb1o5s04iu9r93DMk2qx4qQNogLgnjjCczrx+NHYcSf0GeBZlv7om/JPhxL8rkVqW8TL4KucMkJs+GRASXYCUixRvna8iC4EqXGJ5WK4ILa/eGzGaSH35ybXid15Iz9USNFZRxabm+AnPGlLSUWedH9c6DN6/1n7lIIQRSxrrHhU/wf4I5t5hg4WxJIZUt8dsg+ybIP/U8uGHiB66gACY2tQRRHMEs8LTClhxv7toYtt5zfB4OCiXYWGor0zqBJq4cyKe1l61G5jWEKau8NWAmKwU7fRY3MYUVSrYDLlGlcyoFS6ymWSbY60SeCqv00Q9UoSxLzr73pXGikhXOqTHuGnHxMS5NU54m2zrZQzpCOpnmbQ6lYrTN4W0xLwKE7EtD5HenoXXymLD1KJCIw3BKSDiXL41q6BokHgRG0L9NrLuDwdMcWIbRcWCxnBQWsB43J30HMbHo3yx6bB0Hbiwr4AWoYKqSx55RK727JBrxlNDwIfjjX53RdaPzIEjC/o0j6A7JE5UFtZZKT9bsglisgilhAR3j9iTsIBiW73q8cMJy6QlTUpmOoVmsptUsYHW+NxKjz43Eg9BYve8BoxS/6ZbbYhwHjGhq7eLmpO8gJqL+7WLenYmCsh2XBl7HAUXsTwkKH1bk06vCg7CI37VVqMp6KvOsOkhvDymBh7kYFYtwPZ8SFQFQcV9ZpDL0AwRGD0eBB/Gx7s1H3KFtnA97ptI517WXKgblmzE0ED+IlpNCBYJ/0FfomzJcbrnOERw5kBsBaAo68N6r/zVo1OFnyhtmNP8l+GEUrMBms5oUKxBKc5oiW2hV5QUy6omjo+DDQOl/Q7rssPm8AcWtwuW2HD+MJ3U6dcKlIsu4BgfUaOu2n3MJhxHS/6o07LD9XAyHRbCeFA7z5o8TdLwo/3gmHbputBtAw8sf86gCoQ=='),(2386,1484,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(2389,1329,'wpil_links_inbound_internal_count_data','eJztm82OmzAQgF8l8gM02GDjOMc9VKrabW89Ii84WbcUEHa0ilZ59xrYrlL1UPuCxGhuMRn/MPomMR+gVV6qV6uy41dFuSLfB9tWX/rGtNVn2/0kSqpXp0pF2tCqbEOOU6xTuSKXsSXhU5Ep8uz94NR+35mXH2Z05nq+dqbuf2nnra5N5834ITT3c3wI752fPuZUkf90mcKkInZqdzpM+KToMsgwD/LPqr9NhxVl07JZ6DivmLKSh14h0lvfGnJ8XMbw18GQ++GcEoo4r/3FLUHhzOs+TN75pc2XTLj3IVx7OS+N0LNubf3nOzmPab3tu+XAtNB+POvO1pUf9elk6/eOprG+H9/iQlZ0faru5r3NQbqrn6egkLiQ80fzsvs0Z2738S51u4c5d+RtQt00pqmertUQ1mm7KX/Zsri2r/WyuL/P8hbSBRqGvJAUYYiGgYGGgUkpEIZoGHLQMFAucoQhGoYCNgyFZAhDNAwcNAxM8BJhiIZBgIaBHjLcM8TDUEKHQSIM0TBI4DBQvLSMh+EAHIYMYUiQTrAVZF6UeG2ZQANsB8mEwF1DAg2wJSTluG1IoQG6hWR4syqBBtgakpUF7hsSaIDtIakQqJ4SaAAuInEXmUQDbBOZFxRpSKABuIrkHK8pEmiA7SKZ5PjbkPDM01Zd5BjmF8eVkwVc1ZUSb/0n0LBVVRdKJ1+9dGCbLCbx+iSFhq2arFA6YvXSgS16woatwNKJp2GroieUzmH10oHtQZgsGZZOPA1b9SCj4mz10oGuCfDVqJS3YbarCThfu3Ry4JpAFrhhS6Bhu5qAy9VLB7wmwA1bAg3b1QSCrl46sDUBLST+6yTQsFVNEPsEwCFDGiJpuP0G1U6YLg=='),(2391,1329,'wpil_links_outbound_internal_count_data','eJzlXFGTmzYQ/iuUzmTaB3IG24C5uclcrm36kFyuSTo3ffLIIBv1OESRiOvJ3H/vCuHLXZNJg4S71PWDx4DQLp8+fZJWi0kSRMkHlkxOXyf+PHGvK1YsX/GMFsuXrLxxkzj5IJIocQs4WrLMPVVlRTJN3KYuXPg1ixM3l7ISyclJSbe/01rQ3WZX0pTfEiEZSWkpaf0UDk9SXkqSypP2PriNC6l+Tv3E/YdbVTEwxNRxScDwKvF1JVVbySfeX6nTiR8o9wO4sfXcn8UzuAtKSiYL6p5e6jrkrqLuw+pEEiaukEQ2Qh3A81fNqmAi747Ug4BvuoK5RkcoL2J1W3ZRECFcuPChrfM9o1tLqGjGWrfi2ddXsa08kt2y8kQ909Mqr56pH2cKhCffTqbxKdTPeHm2rxsemf5Z8bo9WAQ2hkhNydlWtYauUdtTl4FDrQfKBrQOWEzpvlRrtwdGX7b7sd7PW4dmrOm6prpR/cDEcPutoSUbetZ2km3OREVrbVQx66y13FJkmfKmlMumyoikn3Prrm1tUTQbzS1ok7RgqSLXpe4CUJ6pZtMnFOt5vSElS5eyJus1S+9vVO3K664cdDGSrpcPiHvXFiJlmqtCUAQAudCsc34Vzjuekd03bmeDZBnNlqvdsgLXWKn630T7U/CUaH8e94w76G7GojKf9miMnEiPCQ8uczxlmfs+orLY4jWkvAASyPICHiDKS2d9bPLSuoUoLwEUeUlJXTqveE2d8xVvpPMCOGglMYGxxIQ9ukxKGkGFx9fewwKIYhPM+4vN5RcFpqsCbeS5BlVyLlqcW1Y8s6LF1JwW0dfT4uFpb1OTDDgCaG+oQKTG3GAcGjE1oIiig/OihdeKFDNjUix8Q1KA/v/RwLVi5xFxQzMPjoRyT3hQj6crQiNLEM2mx0SWRceVn85/sWPK/D++Gq6T6PRv2Ezb+QhJc0eNu6TMHJHmNGsK6hAHPBFNIe/hMAYuNNfdHjPPR10shWdhar6DJ7rTmR8fUz8KJol7DnO033gD5LjYA2w3JEfG1Ih69KlH1FD4C5hEA7VHMnFbTAyIMtgq8WBADrl8BIiQl4/gAeLysbM+tuVj6xZmdAoqP1cEVKuD+6e2UqTYWJHiHmvHz3YkXlChyoxGlkJEWTosmsNqU4iuTSGqNoXj1KYQN7Q1Vdq0Z+FwArUwFyjT2bTuUiue7VYNKzJaj0WhUMPrB4ZzUIlCj74vUKPvi3FG3xfY0Xcw/PwjDYfTKN88cyA2jarpXvXoVE3fMwEeYs6hUBXqgFgOO4NCl6cJqjxNxilPE/zNwTcd7QbUJvMEBMtQSSVok/FRTJ2CcB4hCtPBgBxQlRREuKqkPMBTpb31kamSdgs55nT1CQHtJMk8YSEO7XpSs17vvJJVFaxTx7GqC8IQMxx+cEAHlagQOSyuPMCUqHCMYXHtFqZEgT5cKSI6l5qIdupknjcTLaw6k6Al4yMJNk1nMeZS7nBIDqhHCiNcPVIe4OnR3vrI9Ei7halHQN63LQMHXMZZJG5NhguLkDWU9LaUbXLpFVxg5ptEBnlbgwnUvwLqoFoVTbG1KppiapW2PjqtUm5hahUcqf7lXLf0c14C/eyE6gjzBoNQbRzwG5UI9iBLcJDXgyyyBU3D3aKpN7TGS7n1wxAz1WIo3IbcEgBEkLcEwAPELYHO+sjUWbuFrM5vNeucd+yWgsPUTm7MM1D7dJsVXfOadhMbaE5QTMzXQcKjyvAPoKrnLcDOE3JbnTrnCmbnKueSW47d5tmAkamoVjVLWbnxGIyrNTwkxRyWjiuDPVLLUOqcF4VzVZBSdHS50ojbMcUiLct05dQNv17GU4BhFC8P+UFk8BLicMH7w0E55OQGQEKe3IAHiJObzvrYJjetW8iTm1eUSkfm1PlBM9FKlALzNKyoB/s+yROi21GIURDHBsuqcY9fFzlNb5zXjXTe8luq35p/oyG3o4p5VkzYY2tiH6Wg2YZuiZoMj4Inc4M/ABovT6A9ftzja0cK87yEqMdIvCdFTtIbWgr4HgcrTDb8xssKH1rk53uE7XhhsSPcI71iz4stFTLN4Qvkoh2+dy0/dry+wdSMo1obqSLXH3G2o4f51pzJWMIbqf6ERfJt6VXgE5TA3IVbTI6NF+q/AfjaUQDb8cJ8J2TeY9UlaZHM534w8eEzGZ4IHZAPMIJL34HF7x2w6e2NmsNkvgPy/4Hp7i83/Aon'),(2393,1329,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNGX2pUo4KJUcagyRG+RI1Rn1qjt4CZ693pT2ohfDf3ZYY32Ymk53Z4Yyyo2TtwTOjXUY+MqmimRGgoqnUCWF9dixYwIhCFklBBrW3YD4ju1wRRLSHeGNtVjDPK8uytTZmraAVm9RLeVZ4kC5BeHvqZYrHcJdAFQ6fDvytuh/OOiZYyJdtmdDudEQ/Xx87EE3GN9/vPJh8JVcXbb8/OBiThtQ/E7xoqwzC3HCB+CxuQ9rtBe6CK1lwAe5wD3oHl52R+2By604B3Pm47nqLTU1hm9ptRv6b1kqfEakt5JrjX8vmS/RnjX+OpMcI1/HG5LXZx0nmxjkLjoUfe+3UEzmycFaocO3IVc5TaLJwWC4EiGhZRZnaraX+S8BQZWJupdG1E6/GBktozDydfgHIE4QR'),(2396,1275,'wpil_links_inbound_internal_count_data','eJztmV+v2iAYxr8K4d6j/WvFq2UmS5Z5ZnazywYpWnZ6oAEaZ0787oPiXM92MROrF4S70sILPPn5vvCIUbRAbwzNll9RlCH4vWVNuRYVbcovjL9AVKA3heYINqZVsgoubV+FEgQ72UDzVMwQrLVuFZpOOT38oFLR4/7IKRGvWGmGCeWayifTnA5fT1Qn91QeJ5UgWkg1MYMnbvTUxk1NWKG0fUwiBP8Tul8Jgsy2OTYL26LIBWn7IP/sbmNfoyi224vNwH5nSVrYUaanZrqhcPnsYuhjS+EwnEI5gkpj3SnXyShEhJmca9fOnGLqEkI13d41zEjSMPL7W9HHZJoJ7l7YhQq5x5yRUku82zFyGUgrZrQ69zOqYLIrB/Oe+k6Yk9p2MvOaUGd5AdZA1xQ80wP43AsJPg2UBB97KeF5flxVtCq3x7I1y2bcyjlza20EwW6t7zd9YkbwwBBDcVHkPjEUm+Ar+QS+CUX5lso9wLwC9s0G6xq/3IRMHJAxO4uyPPEJGdtFdBKcJb6JkCQQYpNKns19IuSxhSkNDPUM5YVPDJmDq12W6hoNxso2WSDFkjJPvapHceLqEf3ZUskoJ7QahZY80GJPL3nu1YE3sTsR7bAgDeUbhZx5IMeR41VFslclTfErELv3yPSJR9+GTOE5MtLsLl3+reifGt/rAg5M16NV+4Xnkl5rekVe/QrHvH1GwRd1nlbmFSLp3HlaG9w1A2Nrvbp4Wx+2EtcmkzuPy3y5DaNgjbp7ReGVi3FXazQK3qhLPX6dER+eeoKB6jCaxz5hdN/UEwxTx0ya+sTMw1NPcFPPFcyr1PNwjILN2ptlSbzwCaPItNaUuj//VmPc1YOp2nOSFl5VrfuedHx3Va+1ABezwMxVzJx+AQ9EoGU='),(2398,1275,'wpil_links_outbound_internal_count_data','eJzdlE9P4zAQxb9K5Hu3zZ+WMD3uYSW0W7hxjIwzbWc3OJHHpapQvzvjGFCAA6v0UKk3j/Pmeebpp2go4JlgtryFdA7qvqOm+tPW2FS/yf5TUMIzwxWoRqqKarUMWoYc1M41Sk5XGait9x3DdGpx/xcd42FzsGjaR82etEHr0f2Qcjq8njh8ItzzRJomsWsa/Aqxa9mHY56C+sYyyEpQFGqrZaAHSKNJ15t82eouXEOahbVk8rhRVpYL6RKlJ9+gWq6ihz90qIZ2DAtQ7LXfcRRJMqaVx62P9Twmxe8W3Ow2sZBO05B5+1b2nuSptfEiDNq6jbZkKu/0ek3mvRFr8q171Ukq2qyrwbvHXqSt2QaRSMow1mOnmcVee0yMdv0m4RFd11hXD4eqk9nIhsxmcaCmNToO9HGzI0mqYwGZX48EJKTPZ2MiLcrskpjIRDLMK2F0T2SQT8IiG//fSEdi0TkyZDcTsrxzsh+eD5HForwoRIpPiBiZnhOyyermJEry0ZQUs/+n5GwY5Nn1JWGQS+Yr3Cc3fXLJryERP/vsToDh+AKwksdf'),(2400,1275,'wpil_links_outbound_external_count_data','eJzdl99vmzAQx/8Vi0l9KqRA2iTOU9tVqrSlm5ZO1Z4iA16wamxkmzJU9X/vOQltfqBWQJ72hnNf7nwf7LsLwX6Inxk+m/7A/jl2HnLGFzOZUL74zsSjg8f4WeMRdjisFixxplarcYidQnEHnoIAO6kxucaDQVmWXpFTITyaFANrHYJRamMfJ/BKbbPrMXaYMFQJAn6ilVdQ5yv1HSwusENEnEq1igKr34I9UaWZqZD8i36CK13xJyIYsQq7e5IkNFlE1SLnxZKJ2i1E4jImhklhlZBNLCGygEAvDPvdUx+9py50kXpCKpOWlPOm/H3YxqGqNYnhGXburAc0h1+oe0dL9EeqR7SF51bqnBnCe3EJOnMZTXaPhKhyT6rloA6mB4KWFezZzRXVUQWpMyLckjLO3VgqAWzcjCYsJrCmFs0eS4i+cdqNX82sBuVer6Oi2Toqun6L2plfeLQrlenHOF4RPLxSb7bWIEJQz2gmgT1Hcy6JQN+osd9CLNE16Kg6BoZhZwyhv4sh50QbFutCLamqmnjYK3aoak8GVpcZgIiByVzGjG5Kzto1mlvfcIx7cTnvziXc5UKiz8kEcOqbdO3ZhFtsriRRyQEZVfUCc9EZjL9VjxOiaBMIiF2bWucO4q/epffLu/F6ZTjqXhn2K+u6lWibQWPPgf3va9r33nDTcTZOtjpNLwzjzhiGewUyUmyZkoyIpJQZFXr14UkkC+NGZdpwFZpeaM3lArZ4S9STvQN135iDUXJ08mUc+P4UXa3joBOS5VP0YGOtTKOpPk6TnhytuhZGA68PDxNs5VDVvoIE+6PcPf1HNBTad8f9Broew+z4HUpGqflspLMN+FDWHgn4mRGREmOgqt5U9BTdEHWK4Hyi+1RJYo5zWvzus+5/3nT87tOu/WuyS+ajCSW0SPqwCM6bWPRn8PIKbu2Zhg=='),(2418,2264,'yoast-structured-data-blocks-images-cache','a:0:{}'),(2536,2295,'yoast-structured-data-blocks-images-cache','a:0:{}'),(2952,2396,'wpil_links_inbound_internal_count_data','eJxLtDKwqq4FAAZPAf4='),(2954,2396,'wpil_links_outbound_internal_count_data','eJyFj8FOAjEQhl/FzEkOultxlfy8gsjRY1PaCVRru9mWkA3h3ZmBeLan+dN/vi/jYHCO6NdbmAH0NcZkNyVwsh8x/xBWOFe8g5IkGwOttVuxBB2nRDINr6BDa2NF12U+ffNUed7PmX35dbVF5zk3np4ldo0ThsG89EZer9u6XGrTcWlA/wC0tgJFzdmJfgdzh4w3yKeEN5DL/lAmLRv5ehTj4kGcT39SPdSFwMHuZjum4z5mRfV3eiretViyNuVwX8SWBX65XAESP2A4'),(2956,2396,'wpil_links_outbound_external_count_data','eJylkV+LGyEUxb/KMIWlfZhx/scYwhIK7UvbhFLo42DUZGSNV9TZEpb97r3jsrulfWr7IHrx3Ps7Hjlr2INm1WbP6p7l350242eQyoyftL3LGWUPga1YbrAatcw3izawluWzNzme6oqyfIrRBUZImJ0DH8szwNmoUsCFcBkcGC2uhNvwQ3kyVBVdd83tZLbK3vCL29zroCMO3w4t7fqBroauXq+aoaPrgtJ+aBvatEnp5bZeoB0iIcTER/yf2OUGL7SNyluORo/JNva51PcFi4Hl3IoJ/CJuKpZ/TO3ZToYsWdYqlAmBwXAplRyP19GZ+azt80BkGBA8arCLEoMSgEyLiEfN6n9Pta1fU8WRYb4oL7gpwZ8JP8IcC3ESBFeh5PxkoDjBbGU6EpTqE3ireQEWKapwXt9zccUdohJJzwVO4Qac40VL3oQ48TCV1Qf59fitr0vp5tPvYffpgb+6+euke0z6/Yu9bJ/sZYcne7g/28t2ImZvUbk/HHbv/uMfHn8CNPvy9g=='),(2958,2396,'_wp_page_template','default'),(2960,2396,'_yoast_wpseo_focuskw','Privacy Policy'),(2961,2396,'_yoast_wpseo_title','Privacy Policy | Atlanta Gynecomastia Center'),(2962,2396,'_yoast_wpseo_metadesc','The privacy policy of the Atlanta Gynecomastia Center.'),(2963,2396,'_yoast_wpseo_linkdex','69'),(2964,2396,'_yoast_wpseo_content_score','30'),(2965,2396,'_yoast_wpseo_estimated-reading-time-minutes','6'),(2966,2396,'_yoast_wpseo_wordproof_timestamp',''),(2969,2396,'wpil_links_inbound_internal_count_data','eJxLtDKwqq4FAAZPAf4='),(2971,2396,'wpil_links_outbound_internal_count_data','eJyFj8FOAjEQhl/FzEkOultxlfy8gsjRY1PaCVRru9mWkA3h3ZmBeLan+dN/vi/jYHCO6NdbmAH0NcZkNyVwsh8x/xBWOFe8g5IkGwOttVuxBB2nRDINr6BDa2NF12U+ffNUed7PmX35dbVF5zk3np4ldo0ThsG89EZer9u6XGrTcWlA/wC0tgJFzdmJfgdzh4w3yKeEN5DL/lAmLRv5ehTj4kGcT39SPdSFwMHuZjum4z5mRfV3eiretViyNuVwX8SWBX65XAESP2A4'),(2973,2396,'wpil_links_outbound_external_count_data','eJylkV+LGyEUxb/KMIWlfZhx/scYwhIK7UvbhFLo42DUZGSNV9TZEpb97r3jsrulfWr7IHrx3Ps7Hjlr2INm1WbP6p7l350242eQyoyftL3LGWUPga1YbrAatcw3izawluWzNzme6oqyfIrRBUZImJ0DH8szwNmoUsCFcBkcGC2uhNvwQ3kyVBVdd83tZLbK3vCL29zroCMO3w4t7fqBroauXq+aoaPrgtJ+aBvatEnp5bZeoB0iIcTER/yf2OUGL7SNyluORo/JNva51PcFi4Hl3IoJ/CJuKpZ/TO3ZToYsWdYqlAmBwXAplRyP19GZ+azt80BkGBA8arCLEoMSgEyLiEfN6n9Pta1fU8WRYb4oL7gpwZ8JP8IcC3ESBFeh5PxkoDjBbGU6EpTqE3ireQEWKapwXt9zccUdohJJzwVO4Qac40VL3oQ48TCV1Qf59fitr0vp5tPvYffpgb+6+euke0z6/Yu9bJ/sZYcne7g/28t2ImZvUbk/HHbv/uMfHn8CNPvy9g=='),(2975,2396,'_dp_original','2056'),(2976,2396,'_edit_lock','1711843073:1'),(2977,2396,'_edit_last','1'),(2982,2396,'wpil_sync_report3','1'),(2983,2396,'wpil_links_inbound_internal_count','0'),(2984,2396,'wpil_links_outbound_internal_count','1'),(2985,2396,'wpil_links_outbound_external_count','2'),(2986,2396,'wpil_sync_report2_time','2024-03-10T17:14:29+00:00'),(3564,2575,'yoast-structured-data-blocks-images-cache','a:0:{}'),(3645,2657,'kt_blocks_editor_width',''),(3646,2657,'_kad_post_transparent',''),(3647,2657,'_kad_post_title','default'),(3648,2657,'_kad_post_layout','default'),(3649,2657,'_kad_post_sidebar_id',''),(3650,2657,'_kad_post_content_style','default'),(3651,2657,'_kad_post_vertical_padding','default'),(3652,2657,'_kad_post_feature','default'),(3653,2657,'_kad_post_feature_position',''),(3654,2657,'_kad_post_header',''),(3655,2657,'_kad_post_footer',''),(3656,2657,'_has_fluentform','a:0:{}'),(3657,2657,'_wp_page_template','default'),(3659,2657,'_kadence_starter_templates_imported_post','1'),(3660,2657,'_yoast_wpseo_estimated-reading-time-minutes','9'),(3661,2657,'_yoast_wpseo_wordproof_timestamp',''),(3663,2657,'footnotes',''),(3664,2657,'_kad_blocks_custom_css',''),(3665,2657,'_kad_blocks_head_custom_js',''),(3666,2657,'_kad_blocks_body_custom_js',''),(3667,2657,'_kad_blocks_footer_custom_js',''),(3668,2657,'_dp_original','1559'),(3669,2657,'_edit_lock','1711845510:1'),(3671,2657,'_edit_last','1'),(3672,2657,'_yoast_wpseo_focuskw','Pseudogynecomastia'),(3673,2657,'_yoast_wpseo_title','Gynecomastia vs. Pseudogynecomastia (Atlanta Gyno Surgeon)'),(3674,2657,'_yoast_wpseo_metadesc','Just because you have enlarged male breasts doesn\'t mean you have gynecomastia. Learn more about pseudogynecomastia treatment near Atlanta.'),(3675,2657,'_yoast_wpseo_linkdex','70'),(3676,2657,'_yoast_wpseo_content_score','90'),(3677,2657,'_thumbnail_id','4303'),(3682,2657,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(3688,2667,'_menu_item_type','post_type'),(3689,2667,'_menu_item_menu_item_parent','1491'),(3690,2667,'_menu_item_object_id','2657'),(3691,2667,'_menu_item_object','page'),(3692,2667,'_menu_item_target',''),(3693,2667,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3694,2667,'_menu_item_xfn',''),(3695,2667,'_menu_item_url',''),(3697,2055,'_wp_old_date','2024-02-14'),(3698,1975,'_wp_old_date','2024-02-14'),(3699,1974,'_wp_old_date','2024-02-14'),(3700,1973,'_wp_old_date','2024-02-14'),(3701,1491,'_wp_old_date','2024-02-14'),(3702,1950,'_wp_old_date','2024-02-14'),(3703,1951,'_wp_old_date','2024-02-14'),(3704,1949,'_wp_old_date','2024-02-14'),(3705,1952,'_wp_old_date','2024-02-14'),(3706,1671,'_wp_old_date','2024-02-14'),(3707,1670,'_wp_old_date','2024-02-14'),(3708,1665,'_wp_old_date','2024-02-14'),(3709,1756,'_wp_old_date','2024-02-14'),(3710,1492,'_wp_old_date','2024-02-14'),(3711,2668,'kt_blocks_editor_width',''),(3712,2668,'_kad_post_transparent',''),(3713,2668,'_kad_post_title','default'),(3714,2668,'_kad_post_layout','default'),(3715,2668,'_kad_post_sidebar_id',''),(3716,2668,'_kad_post_content_style','default'),(3717,2668,'_kad_post_vertical_padding','default'),(3718,2668,'_kad_post_feature','default'),(3719,2668,'_kad_post_feature_position',''),(3720,2668,'_kad_post_header',''),(3721,2668,'_kad_post_footer',''),(3722,2668,'_has_fluentform','a:0:{}'),(3723,2668,'_wp_page_template','default'),(3725,2668,'_kadence_starter_templates_imported_post','1'),(3726,2668,'_yoast_wpseo_estimated-reading-time-minutes','7'),(3727,2668,'_yoast_wpseo_wordproof_timestamp',''),(3729,2668,'footnotes',''),(3730,2668,'_kad_blocks_custom_css',''),(3731,2668,'_kad_blocks_head_custom_js',''),(3732,2668,'_kad_blocks_body_custom_js',''),(3733,2668,'_kad_blocks_footer_custom_js',''),(3734,2668,'_yoast_wpseo_content_score','90'),(3735,2668,'_dp_original','1559'),(3736,2668,'_edit_lock','1711846038:1'),(3741,2668,'_edit_last','1'),(3742,2668,'_yoast_wpseo_focuskw','puffy nipples'),(3743,2668,'_yoast_wpseo_title','Puffy Nipples Syndrome (Causes, Treatment, and Consultation)'),(3744,2668,'_yoast_wpseo_metadesc','Are you looking to learn more about puffy nipples? Check out this overview that talks through causes, treatments, and more.'),(3745,2668,'_yoast_wpseo_linkdex','80'),(3746,2668,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(3748,2672,'_menu_item_type','post_type'),(3749,2672,'_menu_item_menu_item_parent','1491'),(3750,2672,'_menu_item_object_id','2668'),(3751,2672,'_menu_item_object','page'),(3752,2672,'_menu_item_target',''),(3753,2672,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3754,2672,'_menu_item_xfn',''),(3755,2672,'_menu_item_url',''),(3811,2720,'yoast-structured-data-blocks-images-cache','a:0:{}'),(3814,2722,'yoast-structured-data-blocks-images-cache','a:0:{}'),(3824,2657,'wpil_links_inbound_internal_count_data','eJztmU1v3CAQhv9KxL314u+d/QG99GOlHnq0CGY3pC5YBquyqv3vHUwSuYq0tZTsxZqbgZfxMHoE+LUAXsMfDbvDN+AFsB+97povtlVd81mbnwxw1EEFrMNWo1t2CFoHGbBx6Bg+VTWwB+97B0li1O9HNTg1nSejpP0lnNdCKuPV8BGbybL7g5965ZLeqbG1y4EkRM0xqHU+PGYc2H8CBxmmoUPbCEzrHngM0s9BXq3tGLqBp2FxKU6c18XzOsVZqPTad4odvsYYIVG2DOegBOa88KOLIqyPtPhy42O7iPVyLyFcN55jA2fKTsvnsXqOqb22JnaERO1wFkbLxg/idNLyZaJqtbfDkw6rIuSpWbz3MouEkQ9BFCVHN6rW3n2ajGVP0UXbqra5n5oek9ImFGsXM+msFDGTf5d0wdoQH8D3u3JTfITgr8r7JkxSwiRgUhMmVzHJCBPUcE6YXMUkJ0xQkxaEyVVMCsIE0irPtobJ8X0xKQkT4GW5uSvsO2NSESaoKehuch2TmjCBtC429aWTls+GybJqd9/H4ayG6U247AkXvKPUFeGyzm4jPzZsLyVtLyt5IX92Po5y4mUdL2TUBl6qTf3vuSUv5NgGXupNfRXdkheybgMvOZ1HK3khD3e+79J5tJIXMnPDoZzut8TLDcxcTm6uhizf77bEyc32lctf2+P8NA=='),(3826,2657,'wpil_links_outbound_internal_count_data','eJzdWl2PqzYQ/SuISn0qN4EkQLyK+rCq+qHebaU+3MfIMU5wQ2yETVO62v/esZ3szVVXbTFERvsSARlmhjPHx2MwRnGKnhmaP/yC4hUKP9Ws2n4UBa22PzN+DFGOniXKUFjB2ZYV4YO2lWiBwrapQjjK5ygslaolms04Pf9OG0m7Q8cpEScsFcOEckWbD3A6u70cybY50KaLCkGUaGQEN0f27pn2uwS3Qip9uIhR+B+uTSYoZPqcY0hsh2LrpDZO/vF0v+rLKE704yVwo3myOMlWcBdYKqYqGj48WR+qq2l4606iFIVSYdVKfQL41O2uYrK8nBEBiXBlHawselJnkevbiscKSxnCH8/G5x+Mnu8MJS2YSTtf/v8Q5zrCxYnxmX7mD3VZf6sPNhqkr7+aL/IHTBQTfHP1DZDQP2vRmJN1MiQQbijenHW1rEcbT/8NHDQZ6BhQPYhI6NXKxM3HivvZ79vRocwN3TfUFj1OXAKbXwstPtCNGWTnksmaNjaoZt7GRDYU2hLRcrVt6wIr+lZaL6basmoPlntQE1Ixosn3ZIcI2DNdNntBjwrRHDBnZKsavN8z8nqjrqtoLnYwBDHZb2+I/WKMMCelNoK44OpCwACrQJU0eKLn4CcDRPD9DRLBo4EivMTHRUGL7a7b1pA243rszm2ulSDY5vrlqHqBoeosWKtFj0KVWEVMRvC38KdKqzj2qEpD8RpTegAJz9IDGXiUnkv0qUmPScuj9Ohq3ArMIGVJnJUljYfN3/4UJk1TjwozFm5jKg0g4llpIAOPSnOJPjWlMWl5VJoERruk9BgoAFGdwCoQtY4kvxkkOgt30ekxPRPcSiojsY9uDTw2NonDcuvpX6Xm4sLPNARptbygTdUxfggs2oNosXRflvfQwC80VYMvZztRdLuWVfAwE+HK2msTfGc4x5y51t575LXXHnk9zR557btHzvQZ3gmIF0h4VMGKYeK0chenHnPWG6MJF6KiUttMRZvmPtvn+6I5qjTNfTfVkIFPaZpPsqk2aXl+cwiHJ8FpQErMD1QGRdvoHorxPdh1gWiCV54SOki2UmfZWvYolI4ILPenSct86VGTBkA1puAACJ4FBzLwKDiX6FMTHJOWR8FZzFF4x28TmftiPu0/bMAON8cpfD5NsjzrrznTXc+nhiUA7iA25M5syHq8F72ywRpFhKluEpTIlw7T0HQpoU0uqvEIEA8ixtpdJtb9iUGLA3AZrk6DFqt3RQuox3dXfAdxInbfiJM5zB1nKhUpqX4dEJn52opGJ5qjT27k74kbMTj/9Bnn4NHgPIwl7rsf0h7N7pUlJ8xLrBTmEe+IR16kSX9ejPeRcizgRlzfaEj8rm90Bv7WN9foE1vf2LQ8rm9gOvp4pd4woXHfDOHSvOpBS3nEZIV5MYWZKHWYiUZTnPERHFd6cu/Sk3uVnnya0pP7/cwECvCbIWHwoyHhMP0ZsC/CZY1Usb/wjqpyGmukzKHfmW4frNdIV3yHkcJ9V0TWY4f9lRQlJkfKJfxOgxW5wz6I6bIihor88IrwMF64f5Be9uCFty86i2T9nip/15fwL38DAyjtSQ=='),(3828,2657,'wpil_links_outbound_external_count_data','eJxVkN1OwzAMhV8F5b4NBTYm7xX4ueSyShN3swhJZKet0LR3xy2aBHe2dXzOZzvo4EJwf3yHbgfmo1DsX3PA2L9Q+jRwgIvAM5ioXU/BHFetwCOYiaPRqnvQ+lxrEbB2WZZ28gHTjNximGzIXmykgR0TSuE8U0De76xXQ/IuNoI8k0exUjJXab4wkKeEtrJTSTo1Y+bGOw6UZyd+io6bkWpCkbaEcWV4UoIs9RdHyf4QrLMDGEoVOTklHjZ+3Sjbxps2ezAu+XPmVbye8z/t7kay+euTXAgY+uG7L3E6Ubp5akzM3lXKaVXq03zW2KQp1+sP57x7eQ=='),(3832,2668,'wpil_links_inbound_internal_count_data','eJztms2O2yAQx1/F4p46/nbIA+yl3a7UQ48WwdihS7FlsLbWKu/ewWQTtj1UVrI9WNwMGYaZf34a8CQERzl+5Xi7/4qjDKPvPRfVl65movrM5TPCJX5VuMBIwKjiNdobW4UTjMZBIHgqc4yOWvcKh6FkLz/YoNjUTpLR7idRmhPKpGbDJxiG7vRGTz1TYT82zbSRvO8FUxvXIDTeU3DeKW0ekwijf2wwx4MRN2NJILwDjqyTfnbyV45PZhpHsUkyhoVzfklamlVgqbkWDO0frQ8TMHLdKQy5K030qKwR6EQ72FxqO86sburiQomxtQNYSQWnb5+Vs0+ueSfthAm0G1oiOa30QJqG08tCVnPdDWc7UIXQpnL2Pc1GRNKjMbLCsV/gJNBcqZEFZOhGWQf6yIKz8Oi8I6lrVleHqeohUC6NgFsbnegosdG9T/PEQWLPzhs7UVrGa2IH0kNPRubgcZb5JlBiD8oVlN02XxUo8GXNMt+lpCSelAspcZEmayIlBufqhQkIpQ0OTDKij3c7i1IPzrXE5PnqSox7Ft1GSuZJuZKSZau68cI7DbICB0ZtLpm6DZbcw3I9j8qsXBMsyR9lJXhwxAu+jUPLhukmegpPj3ObKQtPzxJ6Sk+PU3tyX3sW0bPz9LgnV+rpWdTa831hF59iVb29/4CPbw27+KzsZ4WPx8c3jF18Un94LcPHd5Hf3Zz94bUMH99LdjqESbxbEz737SVHvpns/n1it10TKh9daU6/AQftz1A='),(3834,2668,'wpil_links_outbound_internal_count_data','eJzdWt+PozYQ/lcsKvWNSyCEEFZRH1ZVf6i3PakP9xg5xgF3iUG22ZSu9n/v2E52c+rpWkxWRnmJAtgz4/E338xgcB6l+TPL53e/59EyDz63rN5+bApab39j/DHIs/xZ5qs8qOFqy4rgTo+V+SIPOlEH8G+V5UGlVCvz2YzT459USNqXPaekOWCpGCaUKyo+wOXs8nao+pbKGS66WoWXD2ZaagJCG6n030WUB/8hWA8DM5i+5hjM2uWRFdIaIf9a2yd9O49ivbgYJpp1Ret5BrNgpGKqpsHdg5WhDQ0uxck8zQOpsOqk8QDc73Y1k9XpijRgCFdWwNL6TmorMj2tuK+xlAE8eDYynxg9vqsjacGM0Vny/xUc2xAXB8ZnesUf2qr9Qf/ZaBd9/918kd1holjDN2fZ4BD6V9sIc7GOxyjCguLNUe+VlWj16ceAP2OB1gF7BxoJPY8yegd48Nt63+R+XTtssqB7Qe2WR7GLYvNrXYtLujEBdqyYbKmwSvW+boxmA6AtaTqutl1bYEW/ZtaL2W1Zd6VFHuwJqRnR0HuwAQLjmd42e0PHRCNKzBnZKoH3e0ZeJ+p9bcRpHAQgJvvtBaxfzCDMSaUHQQzpMBG4MNJxjS7XHpxU4aKgxXbXb1uwkHEdpHNrVt0QbM36MnxeICadeSlbjAynpqZSj5kMOaUeyel9vXldhkq9M1TqlaHSaTJU6pWhEgBwi4VipKuxqHtUdILxEjG+h0E9wrxArygldBRpxc6kla4cw6wE8qUyhLgvIdy8kdRyGQ0nqYdvEtNJhBfQLGBnrGcNPqx3UbO/Xn5buENlAFd+ARUCS2E6Qv3hZJFEDpX2dHGyBFGyEyUjUPsY3zzBSNAk0QH3aEcRTJasoIIWaN8I9LYHo9CTOKMnGZAPtEZIpv5YJckSj6XPCFdds64BJ3iua8ACj3XNSfvU6hpjlse6RkNLkopC96/LGYyemFAd0BCwDOMhLEk23NBPVyvDIwgrpCqKHugR/Wr8hX66cBi6Nx4bxUtL96w2oM8guJNQ8zT7iXRoy3h5S0lNh5Z1sa54OGvbmiLKoXou6cHMGYGQ1L2vnzvWPTpBU9GHRUPADTKEyaGd7Q8y8coBMtdr6t/PldfMfOAkz5kPLPCY+U7ap5b5jFkeM1+0NrjXeQ01nUAnMI6ipZV74kqHV4kwDovHKRBRvMpWt5S74OLBOHcUGjL3Q7FoOBrsoJAw1U8CElni0HVNFxJ6yKncvQcXjwLG2p0m1sOBQYsSsAx3pwGL5U3BAvbjx7N/x51UjThCd8gdRyoVtH1Sw8IkaUsafSMefWLjpl7rRSD885uf0b3x8ziUuB9opgMq3DNKDphXWCnMQ94Tj7hI4+G4uFqbczXHXbGp0S7x29RoC/w1NWftE2tqrFkemxpIRx/P0BtHNO6HkC7Fqw5aykMma8yLKWSi1OunXFf34HWpx/M3XNoCr9QzxW+4rFk+36cAA/xhQIh+MSAcxz8jTrZdeqSa/Y13VFXT6JFWDvXOdOtg3SOd/TsOFO4H1qsB76rPoKgweaRcwu80UJHd1McxEezIz68eHocL9wPDZAAuvB3zLOL1Le38Ym5er77P6fHLP5H4aqo='),(3836,2668,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(3877,2743,'wpil_links_inbound_internal_count_data','eJztlk2P2yAQhv+Kxd1NbCeOPTn10r3089SjRTDJ0mXBBazKWuW/dzDbrJOs1K521YPFjYH54tWjAQo1PAhYbr9AtgbyvROy+aRbLpuPQt0RqODBwgaIRKsRLdl6XwsFkN5Igqs6A3LrXGdhsVD81w9uLB8Og+JM31PrBGVcOW7eobmYbqd7w3/2eCaHlNo73qZo4YFWNsU8aUi08CVWWEFb55cFVvtLFe9WARHeVhR73EEWknRjkquLfvXbkOX+pjkGjpcsVpWPQk8nnORk+znkcEPHyTSdhRKIddT1NjihWExjceWCvQ7i2VMKK/tDMDCSScH+nFVjTuE1CBu+UW0OVAnWOEP3e8FOgbwVTptHP1SFsn0zqXscnahit94JhauBPCmejIonUwGTk/zksTJtW942u6HpsGGhvJDL0KXUjIYuz697FCh1BOkMpLyqygjSy0HKI0jnIGX1clYg5eUzIL0NO0Vk55KdbF6vWfb8ENJvBNAqAnQ1fCJALwBoHQG6/E9vilkB9J++QWUE6WISlWX8Bv0bO5vIzhU71ZzYWWPheyrUEy8JVW2CEQxlQmOne5fcTKeS7c2Bm+FVXFWRqwuuiryeE1f4tt34v9CH999eM4GOvwG3gc6r'),(3879,2743,'wpil_links_outbound_internal_count_data','eJzdWl2P2ygU/SvIK/XNTfwZx6NoH/qw0mq37ds+RgRjh5YBC3DTaDT/fS+QSZM20m7sSER5GQUb7r0cDvcew+A6yeoXVs+fPtVJUUf/9Iyv/5YN5eu/mPga1VX9outFHXForVkTPdm+us7qaFA8gl/VvI62xvS6ns0E3X2hStN9txeUyGesDcOECkPVe2jOTh/HelAdVfu4kcRIpWMYHPvRM2s3B7NSG/szS+roP0y7SOqI2bbAENimTryR3hn5ZXaf7eM6Se30UhjoZpakiwJGQU/DDKfR00dvw+x7Gp2a03VZR9pgM2jfCRAiEpwL49uFR0wfTWg+dL4BIwln5O1d5Wwyw6TwD2ygUnVYMLI2CrctI8eBtGGA1aEfoIJJuz7x++o6YUG2thNMDJZJDgrR7z1VjApCG3SAOzp4wk1Dm/Vmv+4hQCYscHMfFZcE+6jOp/cKOI1mS5H9f7bsttjETMfwWoajRJEk11PCgdAPG8709mf8zunxycaoTfOBY60jePHibH5jdHcLvCxhHBD5FXb6GDfPTMzsxN732/53+2NlkXj32zyrnjCxvFi92ba8/N5L5RrLdIojrChe7eySeIven30NbHIRON6m1iOhb72c3+pWfn/Yvewd1lLRVlG/skk6xrH766HFHV257bLbMg3b1Du19Fo5z44nsMkHYdZD32BDL4X1Gi7J2NX442S+kzJLOr4OlSPrkIVaz/qhbfexYH3PqdtCxw7BUk9altVDVSOb6XaUQygd2lBBsdkis6XogPok4mTjiXNFir1AHNxIiN32uQ/WJMt5+UisSWzriDF6xlOZko9mSnkFUwgeNCQS2d4JK4p0hLK9mYy5HXI3FTRpEVrQpEVIQeO9352gsWEFFDQZOPYkhOqEDQJkBm4QE6i7lcwpxlerK3h/oVptZLPfDIw3VN1JYlqO+b6633JlgTvFC+FnaeXOD9ynVa9yNHMWy0nM0VQweSekyfLqoUiT2/IoFTAFc9TygZjBrb9GUE0lYZAjG7RjIJcxEKWbRKDFeAJdURgufWFpOjTyLviTlsXikfiTgPHPv8A7iSbVeJW8GEmTTuEGhB/A3QFdwinlIuSB323Ru6laLoIf/xVBj/+K+zz+K8Ie/+XL8+M/xDSSLfRGxDKctQxqF+xJiVp7FeFpOik1LcdXsGTk5uoVI1B4Yyb0oGDuNFx6esBDQQIBA2fOPq/Q4Xpw2j3V+GvN8gqqbGgrFY0xsF7F/msxZP0qs4ciCKyJgCAV5jGX8qs9PD5gPI0b4y8x8ytyvnUJBTMcHfIqDyhnJkB1S+0CIATWLhBBQO1y8H5v2sWFFfKkD4wDHBT0SQzxaymQVOgbU/D9zREMtGnmmEDGp5rxt5r5Ff9dEyzFZOnykSpOBph/pDv0p0MOnYnbDw67CWx4/Reog6CB'),(3881,2743,'wpil_links_outbound_external_count_data','eJxdUMtuwzAM+xffXS/oHoXyC3scdwzcWGuEJbJhqwmyov8+OWgP200kSJq0hwYuBA/tBzRPYD4Tjd1bDDh2r8TfBg5wKfACZlTUUTBt1RbYgznn0ejV7NU2iKQCzi3LskvIPGGgnhh3MZ/cV8w2eSFkKdZzsDMVkpiLu7GWWDWTgsiujxyoXsVKRi8YrLcS7Y8b1oRZhjVHClQmG2fMvhea0d7Y2udR28QiW7VnMP/bVP4Ahlgws9cFx22PutLmelegNs/9EPMWUuf9fflO+xAwdMe1S+P5RHzP0vgx9tuaqtTP002iO017vf4C5EF/gA=='),(3883,2743,'kt_blocks_editor_width',''),(3884,2743,'_kad_post_transparent',''),(3885,2743,'_kad_post_title','default'),(3886,2743,'_kad_post_layout','default'),(3887,2743,'_kad_post_sidebar_id',''),(3888,2743,'_kad_post_content_style','default'),(3889,2743,'_kad_post_vertical_padding','default'),(3890,2743,'_kad_post_feature','default'),(3891,2743,'_kad_post_feature_position',''),(3892,2743,'_kad_post_header',''),(3893,2743,'_kad_post_footer',''),(3894,2743,'_has_fluentform','a:0:{}'),(3895,2743,'_wp_page_template','default'),(3897,2743,'_kadence_starter_templates_imported_post','1'),(3898,2743,'_yoast_wpseo_estimated-reading-time-minutes','7'),(3899,2743,'_yoast_wpseo_wordproof_timestamp',''),(3901,2743,'footnotes',''),(3902,2743,'_kad_blocks_custom_css',''),(3903,2743,'_kad_blocks_head_custom_js',''),(3904,2743,'_kad_blocks_body_custom_js',''),(3905,2743,'_kad_blocks_footer_custom_js',''),(3906,2743,'_yoast_wpseo_content_score','90'),(3907,2743,'_dp_original','1559'),(3908,2743,'_edit_lock','1711842529:1'),(3910,2743,'_edit_last','1'),(3911,2743,'_yoast_wpseo_focuskw','frequently asked questions'),(3912,2743,'_yoast_wpseo_title','Frequently Asked Questions for Gynecomastia in Atlanta, Georgia'),(3913,2743,'_yoast_wpseo_metadesc','Check out some of the most frequently asked questions when it comes to having gynecomastia surgery and our gyno specialists in Atlanta.'),(3914,2743,'_yoast_wpseo_linkdex','77'),(3915,2743,'_yoast_wpseo_schema_page_type','FAQPage'),(3924,2750,'_menu_item_type','post_type'),(3925,2750,'_menu_item_menu_item_parent','1975'),(3926,2750,'_menu_item_object_id','2743'),(3927,2750,'_menu_item_object','page'),(3928,2750,'_menu_item_target',''),(3929,2750,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3930,2750,'_menu_item_xfn',''),(3931,2750,'_menu_item_url',''),(3933,2055,'_wp_old_date','2024-03-02'),(3934,1975,'_wp_old_date','2024-03-02'),(3935,1974,'_wp_old_date','2024-03-02'),(3936,1973,'_wp_old_date','2024-03-02'),(3937,1491,'_wp_old_date','2024-03-02'),(3938,1950,'_wp_old_date','2024-03-02'),(3939,1951,'_wp_old_date','2024-03-02'),(3940,1949,'_wp_old_date','2024-03-02'),(3941,1952,'_wp_old_date','2024-03-02'),(3942,2667,'_wp_old_date','2024-03-02'),(3943,2672,'_wp_old_date','2024-03-02'),(3944,1671,'_wp_old_date','2024-03-02'),(3945,1670,'_wp_old_date','2024-03-02'),(3946,1665,'_wp_old_date','2024-03-02'),(3947,1756,'_wp_old_date','2024-03-02'),(3948,1492,'_wp_old_date','2024-03-02'),(4059,2787,'wpil_links_inbound_internal_count_data','eJztmE1uwyAQhe/CPrUh/iHkCm3aXZcWwSSlcbFliCoryt07mDRKzaIHgJUZ+/EyM/pknOEMl+yiWL59dSv0Pqiueelb2TXPSp8Qo+xiWM1QB1GjWrR1WsPWDJ3HDsGqqhj6sHYwLMu0/P6Uo5HTcdJS9F/cWMWF1FaOTxBmoteWC+t0fDyt4LLy+sw5FWDUG+uWa8zQP2ZORhlSLtYcUtkz7E2G2SSo583dZpi4gghsnGvBBSWwC5RW2U6i7c572GmQ6NEOCmXIWG7PxougJ64cyMfHpe+RuVuY7nz0AewUnRK/z+jsqazqtb/hEu3HI9dKNHbkh4MS942yVbYfbzroCheH5uF3r7OIa/HhRHOwm5uLbr68bWXb7KdmgHSUdm3KfQ5dL7jP4W8xV+hKpDSQqqwTDUsaSKQ04E1eJRqWNKzjpYEmGpY0FNHSgHGiYUlDGS0NeaIhoKGKlAZSVemkCGioY6WBlomGgAYaLQ3p3RDSsImWhrJINATTp1iHkYTWaRgZ4hDtNJLS9K8ixCHWcSShRTosQhxinUfCl2Q6LEIcoh1IFjS9HRY4XH8Asske8A=='),(4061,2787,'wpil_links_outbound_internal_count_data','eJzdmstu2zgUhl9F0Gq6UGNJ1sXMKpMWMy3aNGgGyNKgKdpmI5OGSMXQFHn3Hkp2ak8DdEQmkcCNYcqHF/36fEj+FEZRjL4zNDn/gsIE+bdbVs4/i4KW80+M3/koR98lypBfQmnOCv9cx0oUI7+uSh++TSfIXyu1lejsjNPdN1pJ2qwaTonYYKkYJpQrWr2F4lkbD+FCKv01DpH/myo6LEc+02WOocMFCrtGtm0jv4z6Wl9GYaSHHUHFdsRhHM2gFkQqpkrqn191bahmS/3j5iRKkS8VVrXsguDOiYDOuerKSaeEfGxClvWqK0BNUjJy+C1v22SKCd5d0AMV1QpzRuaqwsslI48VacGUqPZxoAomy/lRvw9tEOZkrYNAOND8iu68j61y3l9H0nmXrXb+vkNcFLSYL5r5FsbJuNZv0g2uFAR3gzu9yweQyxiGvAcMx5cDWVcrWjVBIQgIIQOoHHS1h4MmyhKXoImg8XfVW++rkJQvaLXyMC88feUaqzW+s0ImMkYmiwyRqeg9o7tRoBLleeoUKvA3PtbL22tthUhsjEjaAxHdIybqbIP5GiuFecAbMiAYaeQSGDPkfz4IawXD1Dxf9JhiDjCsMbmjXMLnSLJF6BIUITyRvx8VtsIiMcci7Y/FjkpF1vBBq4CImqumxaMR1d2AcCS5U3BA47c/dfYuW52tIEnNIQn7Q9IFBYTt6Rg8eUynTvEBIfttzCWzBCN7VTC0tpQHTJawjh5D4kjdShzwdG5aib0PrcRWaOTmi89ZfzRosaI7rKeVUWSMxKmMAc/j/UFfKyZmr8tEyf7FC6rW42Aic21f8v6gr531ZW6EmkAhahWIZaDEjgdbGBNEyMGgiKeziUtQaBfjS608sfT+AYG1zdUKbAeIuTmaxP8fkB3ssWFpEcDPYjgHNAmd2qjG6X9srT82uKTeoqJQ9Cpa1ET3+8YOEHMrNOmRQU6sUP1Ahssb4TR3ajLRRrkeu04cJ7jsDyns8DC3QbPcCg9c1KUKjn8YjpjZxKm9SgSlCy3v6VHczXPwYu6U5j3mmyd5ESWVOmY00Dh1yKKFu3jU+AXIMTdT86kVOQtRNIualQVsgEeCjmMLGbizP3+K/ALsmHuseQ8r7Ql2fjnilTDCIXOOU+BEsMI8geXrXuHnocbCgLVb22wlrQsxilwTpUnmFDJQupY1PZX3eXgxd2XzHsd9T/FSL5dNwNl2C9PvOOaoKHXLv4/hYV1rmb2rVuYXmKTMDdzMbqctKWdiJGubeOrY2wTwaG5afU+IsSIlMnd1Z6ZvND6xnMFLfSS0o2y1VkEp5JBWbxa7BI1+IfYkv1xoqb3bVmrvE0htx4+56ZuaLof3ZtNwS980dWq7rdcxG8bZBpdl4zF+jyW7p8/i6UXmlu+wb89XKDt/zVfLH34AzrEAZQ=='),(4063,2787,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4065,2787,'kt_blocks_editor_width',''),(4066,2787,'_kad_post_transparent',''),(4067,2787,'_kad_post_title','default'),(4068,2787,'_kad_post_layout','default'),(4069,2787,'_kad_post_sidebar_id',''),(4070,2787,'_kad_post_content_style','default'),(4071,2787,'_kad_post_vertical_padding','default'),(4072,2787,'_kad_post_feature','default'),(4073,2787,'_kad_post_feature_position',''),(4074,2787,'_kad_post_header',''),(4075,2787,'_kad_post_footer',''),(4076,2787,'_has_fluentform','a:0:{}'),(4077,2787,'_wp_page_template','default'),(4079,2787,'footnotes',''),(4080,2787,'_kadence_starter_templates_imported_post','1'),(4082,2787,'_yoast_wpseo_content_score','90'),(4083,2787,'_yoast_wpseo_estimated-reading-time-minutes','4'),(4084,2787,'_yoast_wpseo_wordproof_timestamp',''),(4085,2787,'_yoast_wpseo_focuskw','near Athens'),(4086,2787,'_yoast_wpseo_title','Gynecomastia Surgeon Near Athens, GA (Male Breast Reduction)'),(4087,2787,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Athens, Georgia, reach out to the Atlanta Gynecomastia Center.'),(4088,2787,'_yoast_wpseo_linkdex','72'),(4090,2787,'_kad_blocks_custom_css',''),(4091,2787,'_kad_blocks_head_custom_js',''),(4092,2787,'_kad_blocks_body_custom_js',''),(4093,2787,'_kad_blocks_footer_custom_js',''),(4094,2787,'wpil_links_inbound_internal_count_data','eJztmE1uwyAQhe/CPrUh/iHkCm3aXZcWwSSlcbFliCoryt07mDRKzaIHgJUZ+/EyM/pknOEMl+yiWL59dSv0Pqiueelb2TXPSp8Qo+xiWM1QB1GjWrR1WsPWDJ3HDsGqqhj6sHYwLMu0/P6Uo5HTcdJS9F/cWMWF1FaOTxBmoteWC+t0fDyt4LLy+sw5FWDUG+uWa8zQP2ZORhlSLtYcUtkz7E2G2SSo583dZpi4gghsnGvBBSWwC5RW2U6i7c572GmQ6NEOCmXIWG7PxougJ64cyMfHpe+RuVuY7nz0AewUnRK/z+jsqazqtb/hEu3HI9dKNHbkh4MS942yVbYfbzroCheH5uF3r7OIa/HhRHOwm5uLbr68bWXb7KdmgHSUdm3KfQ5dL7jP4W8xV+hKpDSQqqwTDUsaSKQ04E1eJRqWNKzjpYEmGpY0FNHSgHGiYUlDGS0NeaIhoKGKlAZSVemkCGioY6WBlomGgAYaLQ3p3RDSsImWhrJINATTp1iHkYTWaRgZ4hDtNJLS9K8ixCHWcSShRTosQhxinUfCl2Q6LEIcoh1IFjS9HRY4XH8Asske8A=='),(4095,2787,'wpil_links_outbound_internal_count_data','eJzdmstu2zgUhl9F0Gq6UGNJ1sXMKpMWMy3aNGgGyNKgKdpmI5OGSMXQFHn3Hkp2ak8DdEQmkcCNYcqHF/36fEj+FEZRjL4zNDn/gsIE+bdbVs4/i4KW80+M3/koR98lypBfQmnOCv9cx0oUI7+uSh++TSfIXyu1lejsjNPdN1pJ2qwaTonYYKkYJpQrWr2F4lkbD+FCKv01DpH/myo6LEc+02WOocMFCrtGtm0jv4z6Wl9GYaSHHUHFdsRhHM2gFkQqpkrqn191bahmS/3j5iRKkS8VVrXsguDOiYDOuerKSaeEfGxClvWqK0BNUjJy+C1v22SKCd5d0AMV1QpzRuaqwsslI48VacGUqPZxoAomy/lRvw9tEOZkrYNAOND8iu68j61y3l9H0nmXrXb+vkNcFLSYL5r5FsbJuNZv0g2uFAR3gzu9yweQyxiGvAcMx5cDWVcrWjVBIQgIIQOoHHS1h4MmyhKXoImg8XfVW++rkJQvaLXyMC88feUaqzW+s0ImMkYmiwyRqeg9o7tRoBLleeoUKvA3PtbL22tthUhsjEjaAxHdIybqbIP5GiuFecAbMiAYaeQSGDPkfz4IawXD1Dxf9JhiDjCsMbmjXMLnSLJF6BIUITyRvx8VtsIiMcci7Y/FjkpF1vBBq4CImqumxaMR1d2AcCS5U3BA47c/dfYuW52tIEnNIQn7Q9IFBYTt6Rg8eUynTvEBIfttzCWzBCN7VTC0tpQHTJawjh5D4kjdShzwdG5aib0PrcRWaOTmi89ZfzRosaI7rKeVUWSMxKmMAc/j/UFfKyZmr8tEyf7FC6rW42Aic21f8v6gr531ZW6EmkAhahWIZaDEjgdbGBNEyMGgiKeziUtQaBfjS608sfT+AYG1zdUKbAeIuTmaxP8fkB3ssWFpEcDPYjgHNAmd2qjG6X9srT82uKTeoqJQ9Cpa1ET3+8YOEHMrNOmRQU6sUP1Ahssb4TR3ajLRRrkeu04cJ7jsDyns8DC3QbPcCg9c1KUKjn8YjpjZxKm9SgSlCy3v6VHczXPwYu6U5j3mmyd5ESWVOmY00Dh1yKKFu3jU+AXIMTdT86kVOQtRNIualQVsgEeCjmMLGbizP3+K/ALsmHuseQ8r7Ql2fjnilTDCIXOOU+BEsMI8geXrXuHnocbCgLVb22wlrQsxilwTpUnmFDJQupY1PZX3eXgxd2XzHsd9T/FSL5dNwNl2C9PvOOaoKHXLv4/hYV1rmb2rVuYXmKTMDdzMbqctKWdiJGubeOrY2wTwaG5afU+IsSIlMnd1Z6ZvND6xnMFLfSS0o2y1VkEp5JBWbxa7BI1+IfYkv1xoqb3bVmrvE0htx4+56ZuaLof3ZtNwS980dWq7rdcxG8bZBpdl4zF+jyW7p8/i6UXmlu+wb89XKDt/zVfLH34AzrEAZQ=='),(4096,2787,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4102,2787,'_dp_original','1484'),(4103,2787,'_edit_lock','1711750662:1'),(4106,2787,'_edit_last','1'),(4107,2790,'_menu_item_type','post_type'),(4108,2790,'_menu_item_menu_item_parent','1492'),(4109,2790,'_menu_item_object_id','2787'),(4110,2790,'_menu_item_object','page'),(4111,2790,'_menu_item_target',''),(4112,2790,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4113,2790,'_menu_item_xfn',''),(4114,2790,'_menu_item_url',''),(4116,2055,'_wp_old_date','2024-03-04'),(4117,1975,'_wp_old_date','2024-03-04'),(4118,1974,'_wp_old_date','2024-03-04'),(4119,1973,'_wp_old_date','2024-03-04'),(4120,2750,'_wp_old_date','2024-03-04'),(4121,1491,'_wp_old_date','2024-03-04'),(4122,1950,'_wp_old_date','2024-03-04'),(4123,1951,'_wp_old_date','2024-03-04'),(4124,1949,'_wp_old_date','2024-03-04'),(4125,1952,'_wp_old_date','2024-03-04'),(4126,2667,'_wp_old_date','2024-03-04'),(4127,2672,'_wp_old_date','2024-03-04'),(4128,1671,'_wp_old_date','2024-03-04'),(4129,1670,'_wp_old_date','2024-03-04'),(4130,1665,'_wp_old_date','2024-03-04'),(4131,1756,'_wp_old_date','2024-03-04'),(4132,1492,'_wp_old_date','2024-03-04'),(4385,2844,'wpil_links_inbound_internal_count_data','eJztmM1uwyAMx19l4t6lpPlg9LjbtK/bjhEltGVjJApUU1T13WdCV3Va0B4AbpjY/9jWTyGYUVzSo6TL9Ytbobdequapa4VqHqX+QJTQo6E1RQqsRrZo7XwNXVF0GBSCVY0p2lvbG5plWny9i8GIcTdqwbtPZqxkXGgrhlswM95py7jNvNOCSzsuIGbh7czJFaDWGeuWK1D+R9G5EYqkszWDfDYUe5F+EvlT1Kvbpjh3VeUQOBWEC5JDFHhaaZVA62evYcdeoGs5QyuKjGX2YLwTNMbVBPl4u/SNMhcJow47b0AkV5L/PCOTprSy037DJdoNO6Ylb+zAtlvJL4GilbYbzn7QFca3zdV7T5MT03zvnLzLw9S1m3toMTqrs7YVbbMZmx6Skto1a+kzUR1nPpPfJZ2gNzGDkVdlncCYByOPGQx8t6wSGPNgrCIHgyQw5sEo4gYD4wTGPBhl3GAsExgBMKqYwcirKh0lATDqqMEgZQIjAAaJGoyapOtqAIy7qMEg6SgJDriiHn3CWVIkMgJkxD37JHUaiofIiHr4mROSbqwhMqKefsJ/RvpmhMiIe/xZkPSfMUvG6RukEFjL'),(4387,2844,'wpil_links_outbound_internal_count_data','eJzdm21vqzYUx78KYtK0vaANkBDiqpq63qs96PZBt5P6MnLACV6JjWxzs6zqd9+xSdrkNtKKSQviTRTHxufw949j+5hgFITokaLB2Q3yR8i9L2g+veIpyadfKHtwUYweJRojN4fSlKbumW4rUYjcUuQufBsOkJspVUh0esrI6m8iJFkv1owkfImlojghTBFxAsVT0x6ac6n019BH7v9copvFyKW6zDAYnCG/6qQwnbzy+lb/jPxAux3AhcZjPwwmcBW0VFTlxD27rvpQ64K4u91JFCFXKqxKWTWCO084GGeqKo8qJeRzFzIvF1UBrkxymmzrYtMnVZSz6gftKBcLzGgyVQLP5zR5vpCkVHGxaQeq4GQ+3bH7ZBphlmS6EQgHml+TlfOnUc75bUc659Jo524M4jQl6XS2nhbgJ2Vav0HlXM4TXDm3f5dPIJc1DOPg7TDs/uwJ8o2SlfTgIq+6qjVYgjiO+gRLALDs6uVstG6ESGCNSBS9HRFtESdKt8PioRNwjONxfTiMIkU5y6nMvhdzH5Qb7aNU6WWOpXSh4tH0qQfs6OJpjowqw7d3uio8nC4pO9V3eVJkxS/6y7mW5ccfBmF8BhaBmPNt3xrXfwouTGFSIzq8NoQFwecrPT5Vj5U9XQ2cGQ8M0YG2mJBtK2M3Ppbdl34PW4eBFWQuSDXMfmBj2HxW0uIFOTcP0iqjsiCiMqpZOzeWDTTw7JdMTcsixYoccuupvdgTmXkK8GsUbEL7+ajG4mT7vGQ4eSBMwmcnAk4c+32ajXwYkd+fFW6ExdAeC4swuiJSJRl8EOGZJ25t8Fhz8dAiHKO4V3BA5/cvOjuXRudGkIzsFyo1ZqstJEvMMqwUZh5bJy1iEQV9wmKC3KutsI1giOwjhl8fBi0sYR6VOWZpF4JF1K9gAaNzZyR2/jASN0JjbB8nJvXRIOkClkV6KunEEmM07BMYMB6ft/o2YiL+WCZy+i+eEZV1g4lx36aQz1t9GzEx+VAmeKk8PvcUXzGvAJeghWyNiXA4GfSJCZ0YuymVw+fOXyCwc7sRuFnu1D6TPgprZAtgNQQrCw+qeXtp9ZHfq71pGH2XKf1piXPizASBoiNIWprk1s/NALHPro9qRJC97LoekPbihj+MezWX6Kye9l0Hjj1cZCkWRDTbr/r2mfW4RrJrD4+N317KE9ChE4cwfjAe9YmZIbj1SZzAHFPmzlcuCZsRsXCuPjmwcXF0zcVM4Awv9SyU4QeoaYZRg5xpjaT1gSiD0zJX3m5FexBNBr3a8QZQutDy7p/43h0j7NgnU+May5aDvPCcSN2mM9D06vhXC3fxrPE7kGOfYa1z8HiAnBlP17OS5ikRXUGnZ+thuLNfX0R+B3bsE7JxjYTsAXZevXwiwcM2Y06vwAlgo7IHy9eNwsehxj5X23BtU0hSprwTsSaIRhYvonQYGSjdypLsy3scXuzzuHGNg+JDvJTz+dpjtChg+u3GHBVE/ToFCmGwbrXMzrWR+R0mKfuU77hZwgZ2iZR3ZG0TDnv2HgoMzZ3Rd4+YRqQE9rnfiW3u5sByBs/1weKK0EWmvJzLNk8MxmGfoNHvXe/FlwsttXNvpHa+gNTN+LFPDUe2y+FN7q+9pW8U9Wq7rdcxS8roEuf52qHsG5b0GzlKajiwTw23+ycNgcZnH/kPhqf/ADU32wQ='),(4389,2844,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4391,2844,'wpil_links_inbound_internal_count_data','eJztmM1uwyAMx19l4t6lpPlg9LjbtK/bjhEltGVjJApUU1T13WdCV3Va0B4AbpjY/9jWTyGYUVzSo6TL9Ytbobdequapa4VqHqX+QJTQo6E1RQqsRrZo7XwNXVF0GBSCVY0p2lvbG5plWny9i8GIcTdqwbtPZqxkXGgrhlswM95py7jNvNOCSzsuIGbh7czJFaDWGeuWK1D+R9G5EYqkszWDfDYUe5F+EvlT1Kvbpjh3VeUQOBWEC5JDFHhaaZVA62evYcdeoGs5QyuKjGX2YLwTNMbVBPl4u/SNMhcJow47b0AkV5L/PCOTprSy037DJdoNO6Ylb+zAtlvJL4GilbYbzn7QFca3zdV7T5MT03zvnLzLw9S1m3toMTqrs7YVbbMZmx6Skto1a+kzUR1nPpPfJZ2gNzGDkVdlncCYByOPGQx8t6wSGPNgrCIHgyQw5sEo4gYD4wTGPBhl3GAsExgBMKqYwcirKh0lATDqqMEgZQIjAAaJGoyapOtqAIy7qMEg6SgJDriiHn3CWVIkMgJkxD37JHUaiofIiHr4mROSbqwhMqKefsJ/RvpmhMiIe/xZkPSfMUvG6RukEFjL'),(4392,2844,'wpil_links_inbound_internal_count_data','eJztmM1uwyAMx19l4t6lpPlg9LjbtK/bjhEltGVjJApUU1T13WdCV3Va0B4AbpjY/9jWTyGYUVzSo6TL9Ytbobdequapa4VqHqX+QJTQo6E1RQqsRrZo7XwNXVF0GBSCVY0p2lvbG5plWny9i8GIcTdqwbtPZqxkXGgrhlswM95py7jNvNOCSzsuIGbh7czJFaDWGeuWK1D+R9G5EYqkszWDfDYUe5F+EvlT1Kvbpjh3VeUQOBWEC5JDFHhaaZVA62evYcdeoGs5QyuKjGX2YLwTNMbVBPl4u/SNMhcJow47b0AkV5L/PCOTprSy037DJdoNO6Ylb+zAtlvJL4GilbYbzn7QFca3zdV7T5MT03zvnLzLw9S1m3toMTqrs7YVbbMZmx6Skto1a+kzUR1nPpPfJZ2gNzGDkVdlncCYByOPGQx8t6wSGPNgrCIHgyQw5sEo4gYD4wTGPBhl3GAsExgBMKqYwcirKh0lATDqqMEgZQIjAAaJGoyapOtqAIy7qMEg6SgJDriiHn3CWVIkMgJkxD37JHUaiofIiHr4mROSbqwhMqKefsJ/RvpmhMiIe/xZkPSfMUvG6RukEFjL'),(4393,2844,'wpil_links_outbound_internal_count_data','eJzdm21vqzYUx78KYtK0vaANkBDiqpq63qs96PZBt5P6MnLACV6JjWxzs6zqd9+xSdrkNtKKSQviTRTHxufw949j+5hgFITokaLB2Q3yR8i9L2g+veIpyadfKHtwUYweJRojN4fSlKbumW4rUYjcUuQufBsOkJspVUh0esrI6m8iJFkv1owkfImlojghTBFxAsVT0x6ac6n019BH7v9copvFyKW6zDAYnCG/6qQwnbzy+lb/jPxAux3AhcZjPwwmcBW0VFTlxD27rvpQ64K4u91JFCFXKqxKWTWCO084GGeqKo8qJeRzFzIvF1UBrkxymmzrYtMnVZSz6gftKBcLzGgyVQLP5zR5vpCkVHGxaQeq4GQ+3bH7ZBphlmS6EQgHml+TlfOnUc75bUc659Jo524M4jQl6XS2nhbgJ2Vav0HlXM4TXDm3f5dPIJc1DOPg7TDs/uwJ8o2SlfTgIq+6qjVYgjiO+gRLALDs6uVstG6ESGCNSBS9HRFtESdKt8PioRNwjONxfTiMIkU5y6nMvhdzH5Qb7aNU6WWOpXSh4tH0qQfs6OJpjowqw7d3uio8nC4pO9V3eVJkxS/6y7mW5ccfBmF8BhaBmPNt3xrXfwouTGFSIzq8NoQFwecrPT5Vj5U9XQ2cGQ8M0YG2mJBtK2M3Ppbdl34PW4eBFWQuSDXMfmBj2HxW0uIFOTcP0iqjsiCiMqpZOzeWDTTw7JdMTcsixYoccuupvdgTmXkK8GsUbEL7+ajG4mT7vGQ4eSBMwmcnAk4c+32ajXwYkd+fFW6ExdAeC4swuiJSJRl8EOGZJ25t8Fhz8dAiHKO4V3BA5/cvOjuXRudGkIzsFyo1ZqstJEvMMqwUZh5bJy1iEQV9wmKC3KutsI1giOwjhl8fBi0sYR6VOWZpF4JF1K9gAaNzZyR2/jASN0JjbB8nJvXRIOkClkV6KunEEmM07BMYMB6ft/o2YiL+WCZy+i+eEZV1g4lx36aQz1t9GzEx+VAmeKk8PvcUXzGvAJeghWyNiXA4GfSJCZ0YuymVw+fOXyCwc7sRuFnu1D6TPgprZAtgNQQrCw+qeXtp9ZHfq71pGH2XKf1piXPizASBoiNIWprk1s/NALHPro9qRJC97LoekPbihj+MezWX6Kye9l0Hjj1cZCkWRDTbr/r2mfW4RrJrD4+N317KE9ChE4cwfjAe9YmZIbj1SZzAHFPmzlcuCZsRsXCuPjmwcXF0zcVM4Awv9SyU4QeoaYZRg5xpjaT1gSiD0zJX3m5FexBNBr3a8QZQutDy7p/43h0j7NgnU+May5aDvPCcSN2mM9D06vhXC3fxrPE7kGOfYa1z8HiAnBlP17OS5ikRXUGnZ+thuLNfX0R+B3bsE7JxjYTsAXZevXwiwcM2Y06vwAlgo7IHy9eNwsehxj5X23BtU0hSprwTsSaIRhYvonQYGSjdypLsy3scXuzzuHGNg+JDvJTz+dpjtChg+u3GHBVE/ToFCmGwbrXMzrWR+R0mKfuU77hZwgZ2iZR3ZG0TDnv2HgoMzZ3Rd4+YRqQE9rnfiW3u5sByBs/1weKK0EWmvJzLNk8MxmGfoNHvXe/FlwsttXNvpHa+gNTN+LFPDUe2y+FN7q+9pW8U9Wq7rdcxS8roEuf52qHsG5b0GzlKajiwTw23+ycNgcZnH/kPhqf/ADU32wQ='),(4394,2844,'wpil_links_outbound_internal_count_data','eJzdm21vqzYUx78KYtK0vaANkBDiqpq63qs96PZBt5P6MnLACV6JjWxzs6zqd9+xSdrkNtKKSQviTRTHxufw949j+5hgFITokaLB2Q3yR8i9L2g+veIpyadfKHtwUYweJRojN4fSlKbumW4rUYjcUuQufBsOkJspVUh0esrI6m8iJFkv1owkfImlojghTBFxAsVT0x6ac6n019BH7v9copvFyKW6zDAYnCG/6qQwnbzy+lb/jPxAux3AhcZjPwwmcBW0VFTlxD27rvpQ64K4u91JFCFXKqxKWTWCO084GGeqKo8qJeRzFzIvF1UBrkxymmzrYtMnVZSz6gftKBcLzGgyVQLP5zR5vpCkVHGxaQeq4GQ+3bH7ZBphlmS6EQgHml+TlfOnUc75bUc659Jo524M4jQl6XS2nhbgJ2Vav0HlXM4TXDm3f5dPIJc1DOPg7TDs/uwJ8o2SlfTgIq+6qjVYgjiO+gRLALDs6uVstG6ESGCNSBS9HRFtESdKt8PioRNwjONxfTiMIkU5y6nMvhdzH5Qb7aNU6WWOpXSh4tH0qQfs6OJpjowqw7d3uio8nC4pO9V3eVJkxS/6y7mW5ccfBmF8BhaBmPNt3xrXfwouTGFSIzq8NoQFwecrPT5Vj5U9XQ2cGQ8M0YG2mJBtK2M3Ppbdl34PW4eBFWQuSDXMfmBj2HxW0uIFOTcP0iqjsiCiMqpZOzeWDTTw7JdMTcsixYoccuupvdgTmXkK8GsUbEL7+ajG4mT7vGQ4eSBMwmcnAk4c+32ajXwYkd+fFW6ExdAeC4swuiJSJRl8EOGZJ25t8Fhz8dAiHKO4V3BA5/cvOjuXRudGkIzsFyo1ZqstJEvMMqwUZh5bJy1iEQV9wmKC3KutsI1giOwjhl8fBi0sYR6VOWZpF4JF1K9gAaNzZyR2/jASN0JjbB8nJvXRIOkClkV6KunEEmM07BMYMB6ft/o2YiL+WCZy+i+eEZV1g4lx36aQz1t9GzEx+VAmeKk8PvcUXzGvAJeghWyNiXA4GfSJCZ0YuymVw+fOXyCwc7sRuFnu1D6TPgprZAtgNQQrCw+qeXtp9ZHfq71pGH2XKf1piXPizASBoiNIWprk1s/NALHPro9qRJC97LoekPbihj+MezWX6Kye9l0Hjj1cZCkWRDTbr/r2mfW4RrJrD4+N317KE9ChE4cwfjAe9YmZIbj1SZzAHFPmzlcuCZsRsXCuPjmwcXF0zcVM4Awv9SyU4QeoaYZRg5xpjaT1gSiD0zJX3m5FexBNBr3a8QZQutDy7p/43h0j7NgnU+May5aDvPCcSN2mM9D06vhXC3fxrPE7kGOfYa1z8HiAnBlP17OS5ikRXUGnZ+thuLNfX0R+B3bsE7JxjYTsAXZevXwiwcM2Y06vwAlgo7IHy9eNwsehxj5X23BtU0hSprwTsSaIRhYvonQYGSjdypLsy3scXuzzuHGNg+JDvJTz+dpjtChg+u3GHBVE/ToFCmGwbrXMzrWR+R0mKfuU77hZwgZ2iZR3ZG0TDnv2HgoMzZ3Rd4+YRqQE9rnfiW3u5sByBs/1weKK0EWmvJzLNk8MxmGfoNHvXe/FlwsttXNvpHa+gNTN+LFPDUe2y+FN7q+9pW8U9Wq7rdcxS8roEuf52qHsG5b0GzlKajiwTw23+ycNgcZnH/kPhqf/ADU32wQ='),(4395,2844,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4396,2844,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4397,2844,'kt_blocks_editor_width',''),(4398,2844,'_kad_post_transparent',''),(4399,2844,'_kad_post_title','default'),(4400,2844,'_kad_post_layout','default'),(4401,2844,'_kad_post_sidebar_id',''),(4402,2844,'_kad_post_content_style','default'),(4403,2844,'_kad_post_vertical_padding','default'),(4404,2844,'_kad_post_feature','default'),(4405,2844,'_kad_post_feature_position',''),(4406,2844,'_kad_post_header',''),(4407,2844,'_kad_post_footer',''),(4408,2844,'_has_fluentform','a:0:{}'),(4409,2844,'_wp_page_template','default'),(4411,2844,'footnotes',''),(4412,2844,'_kadence_starter_templates_imported_post','1'),(4413,2844,'_yoast_wpseo_content_score','90'),(4414,2844,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4415,2844,'_yoast_wpseo_wordproof_timestamp',''),(4416,2844,'_yoast_wpseo_focuskw','near clearwater'),(4417,2844,'_yoast_wpseo_title','Gynecomastia Surgeon Near Alpharetta, GA (Male Breast Reduction)'),(4418,2844,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Alpharetta, Georgia, reach out to the Atlanta Gynecomastia Center.'),(4419,2844,'_yoast_wpseo_linkdex','54'),(4421,2844,'_kad_blocks_custom_css',''),(4422,2844,'_kad_blocks_head_custom_js',''),(4423,2844,'_kad_blocks_body_custom_js',''),(4424,2844,'_kad_blocks_footer_custom_js',''),(4431,2844,'_dp_original','2787'),(4432,2844,'_edit_lock','1711750467:1'),(4434,2844,'_edit_last','1'),(4435,2846,'_menu_item_type','post_type'),(4436,2846,'_menu_item_menu_item_parent','1492'),(4437,2846,'_menu_item_object_id','2844'),(4438,2846,'_menu_item_object','page'),(4439,2846,'_menu_item_target',''),(4440,2846,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4441,2846,'_menu_item_xfn',''),(4442,2846,'_menu_item_url',''),(4478,2854,'wpil_links_inbound_internal_count_data','eJztmM1uwyAMx9+F+5ZAvqh73m1ftx0jRmjHlpEoUE3R1HefKWu1aUh7ALhhYv9jOz+JYAG0hU8N5fYBaAPkadZjfzcNauxvtXkjwOHTQgdkRKvXA9l6XwsVkMMyEly1GyAvzs0WisKoj1e1WLXuV6Pk9C6s00Iq49RyjWYhJ+OEdIUa9upD4O4VRlyFkMKL1ag1WeeXFQXyj55340C0t43AbJ6BBpH5JPKnpEe/DZT5mhgGnsqhNWcYhZ5Ou1GR7X3QcOusyE85rBWIdcIdbHDCtviKMJ9gN6FN9iJhx8M+GBgpRy3Pz/hJUzs9mbDhE52WvTBa9m4Ru52Wl0A1aDct337YFSF3/Y/3Hk9OwsgX72QBv8fNub/kW1oMgxr657WfMSNtfKfKkMY4SRHS+F3PERuTLhOsbbrMRIQJli4TdFO2mYkIE1XSTPDMRISJOmUmKM1MRJhoUmaizEzEmGjTZYK1bT47Ykx0CTPBm8xEjAmeMBMdz3fRGBObhJng+eyIz6wSHmQy3uVBZhSKlCeZnOebRxSKhEeZjNd1hiIGRcKzTPynyMdHFIqUh5kV22QoYlCkPM2seT4+/kJx/AJEJ/IA'),(4480,2854,'wpil_links_outbound_internal_count_data','eJzdm21vqzYUx78KYtK0veA2QEKIo2rqqmkPuret1kl9GTngBK/ERrZpblb1u+/YJG1yG+kWkxbEmygOxufw94/jwzHBKAjQI0WD6TXyR8i9K2g++8JTks8+U3bvohg9SjRGbg6tGU3dqe4rUYjcUuQufBsOkJspVUh0dsbI+l8iJNksN4wkfIWlojghTBHxCZpnpj9051Lpr6GP3O+corvFyKW6zTAYnCO/GqQwg7zy+kb/jPxAux3AicZjPwwmcBb0VFTlxJ1eVWOoTUHc/eEkipArFValrDrBlSccjDNVtUeVEvJ5CJmXy6oBZyY5TXbHYjMmVZSz6gftKBdLzGgyUwIvFjR5PpGkVHGx7Qeq4GQx27P7ZDphlmS6EwgHml+RtfOXUc75fU8659Jo524N4jQl6Wy+mRXgJ2Vav0HlXM4TXDl3eJVPIJc1DOPg7TDs/+wJ8kDJWnpwkled1RosQRxHfYIlAFj29XK2WjdCJLBGJIrejoi2iBOl+2Fx3wk4xvG4PhxGkaKc51Rm34p5CMq19lGq9DLHUrpw4NGMqSfs5OJpjowqw7cPui48nK4oO9NX+anIil/0l3Mty48/DMJ4ChaBmPPd2BrXrwUXpjGpER1eG8KC4PO1np9qxMqePgycGQ8M0YG2mJBdL2M3PpXdl3GPW4eJFWQhSDXNfmBj2HxW0uIlOTc30jqjsiCiMqpZOzeWDTRw75dMzcoixYocc+upvdgTmXUK8GsUbEL79civf79UnbyEqk0nIk48HLYYcU6v4CnDDmjTctgBD1oMO1vrXQs7xq0Ww47uss2NLwHCRsFnaB98LBbrNZEqyeCDCM8IXN1BGy7uW4xAo7hPCbEPg9+96OxcGp0bQTKyT4drBKcdJCvMMqwUZh7bJC1iEQV9wmKC3C87YRvBEH1ouqKFJcyjMscs7UKwiPoVLGB2bo3Ezp9G4kZojO3jxKQ+GiSn/+E5UVk38thx38LFbzt9GzER24eLGqXXHRMZTu4Jk/DZDShiv09Q+DAjfzwr3AiLyYeGCl4qjy88xdfMK8Al6CFboyIcTgZ9okJXYK9L5fCF8w8I7NxsBW5WpLffshmFNZ4PISGC5MKDw7y9/ZuR36swEUbflOR/WuGcOHN45JfKESQtTTnj52aA2G/jjGpEkINtHD0h7cUNfxj3KsXQdRztuw4cB7jIUiyJaPbI6ttv4Yxr1JeO4IHTMlfe/oH2iJkMevW0EkDrQst7uCd8ewpe7KvwcY315igvPCdS9+kMNL3aINbCXTxr/A7k2JdQ6+wRHCFnztPNvKR5SkRX0OlZIgNX9uuLyO/Ajn1lNa5RTDvCzqvXUyR42GbM6RU4AWSYB7D8vVX4NNQ0KME2y20KScqUdyLWBNHI4lWVDiMDrRtZkkN5T8OLfV02rrHJd4yXcrHYeIwWBSy/3VijgqhfFfwQJutGy+xcGZnfYZFqUMJt9qQtCaO8I7lNOOxZLRem5tboe0BMM1Lsq7qTGsX+76UzeKHfL1gTusyUl3PZZql3HPYJGv1m9kF8udBSO3dGauczSN2In8C+6BvZpsPbYlN7qW8U9epxW+cxK8roCuf5xqHsAUv6QE5S0wvsS77t/o1DoPH0I//j8PQ/MDr3SA=='),(4482,2854,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4488,2854,'wpil_links_inbound_internal_count_data','eJztmM1uwyAMx9+F+5ZAvqh73m1ftx0jRmjHlpEoUE3R1HefKWu1aUh7ALhhYv9jOz+JYAG0hU8N5fYBaAPkadZjfzcNauxvtXkjwOHTQgdkRKvXA9l6XwsVkMMyEly1GyAvzs0WisKoj1e1WLXuV6Pk9C6s00Iq49RyjWYhJ+OEdIUa9upD4O4VRlyFkMKL1ag1WeeXFQXyj55340C0t43AbJ6BBpH5JPKnpEe/DZT5mhgGnsqhNWcYhZ5Ou1GR7X3QcOusyE85rBWIdcIdbHDCtviKMJ9gN6FN9iJhx8M+GBgpRy3Pz/hJUzs9mbDhE52WvTBa9m4Ru52Wl0A1aDct337YFSF3/Y/3Hk9OwsgX72QBv8fNub/kW1oMgxr657WfMSNtfKfKkMY4SRHS+F3PERuTLhOsbbrMRIQJli4TdFO2mYkIE1XSTPDMRISJOmUmKM1MRJhoUmaizEzEmGjTZYK1bT47Ykx0CTPBm8xEjAmeMBMdz3fRGBObhJng+eyIz6wSHmQy3uVBZhSKlCeZnOebRxSKhEeZjNd1hiIGRcKzTPynyMdHFIqUh5kV22QoYlCkPM2seT4+/kJx/AJEJ/IA'),(4489,2854,'wpil_links_inbound_internal_count_data','eJztmM1uwyAMx9+F+5ZAvqh73m1ftx0jRmjHlpEoUE3R1HefKWu1aUh7ALhhYv9jOz+JYAG0hU8N5fYBaAPkadZjfzcNauxvtXkjwOHTQgdkRKvXA9l6XwsVkMMyEly1GyAvzs0WisKoj1e1WLXuV6Pk9C6s00Iq49RyjWYhJ+OEdIUa9upD4O4VRlyFkMKL1ag1WeeXFQXyj55340C0t43AbJ6BBpH5JPKnpEe/DZT5mhgGnsqhNWcYhZ5Ou1GR7X3QcOusyE85rBWIdcIdbHDCtviKMJ9gN6FN9iJhx8M+GBgpRy3Pz/hJUzs9mbDhE52WvTBa9m4Ru52Wl0A1aDct337YFSF3/Y/3Hk9OwsgX72QBv8fNub/kW1oMgxr657WfMSNtfKfKkMY4SRHS+F3PERuTLhOsbbrMRIQJli4TdFO2mYkIE1XSTPDMRISJOmUmKM1MRJhoUmaizEzEmGjTZYK1bT47Ykx0CTPBm8xEjAmeMBMdz3fRGBObhJng+eyIz6wSHmQy3uVBZhSKlCeZnOebRxSKhEeZjNd1hiIGRcKzTPynyMdHFIqUh5kV22QoYlCkPM2seT4+/kJx/AJEJ/IA'),(4490,2854,'wpil_links_inbound_internal_count_data','eJztmM1uwyAMx9+F+5ZAvqh73m1ftx0jRmjHlpEoUE3R1HefKWu1aUh7ALhhYv9jOz+JYAG0hU8N5fYBaAPkadZjfzcNauxvtXkjwOHTQgdkRKvXA9l6XwsVkMMyEly1GyAvzs0WisKoj1e1WLXuV6Pk9C6s00Iq49RyjWYhJ+OEdIUa9upD4O4VRlyFkMKL1ag1WeeXFQXyj55340C0t43AbJ6BBpH5JPKnpEe/DZT5mhgGnsqhNWcYhZ5Ou1GR7X3QcOusyE85rBWIdcIdbHDCtviKMJ9gN6FN9iJhx8M+GBgpRy3Pz/hJUzs9mbDhE52WvTBa9m4Ru52Wl0A1aDct337YFSF3/Y/3Hk9OwsgX72QBv8fNub/kW1oMgxr657WfMSNtfKfKkMY4SRHS+F3PERuTLhOsbbrMRIQJli4TdFO2mYkIE1XSTPDMRISJOmUmKM1MRJhoUmaizEzEmGjTZYK1bT47Ykx0CTPBm8xEjAmeMBMdz3fRGBObhJng+eyIz6wSHmQy3uVBZhSKlCeZnOebRxSKhEeZjNd1hiIGRcKzTPynyMdHFIqUh5kV22QoYlCkPM2seT4+/kJx/AJEJ/IA'),(4493,2854,'wpil_links_outbound_internal_count_data','eJzdm21vqzYUx78KYtK0veA2QEKIo2rqqmkPuret1kl9GTngBK/ERrZpblb1u+/YJG1yG+kWkxbEmygOxufw94/jwzHBKAjQI0WD6TXyR8i9K2g++8JTks8+U3bvohg9SjRGbg6tGU3dqe4rUYjcUuQufBsOkJspVUh0dsbI+l8iJNksN4wkfIWlojghTBHxCZpnpj9051Lpr6GP3O+corvFyKW6zTAYnCO/GqQwg7zy+kb/jPxAux3AicZjPwwmcBb0VFTlxJ1eVWOoTUHc/eEkipArFValrDrBlSccjDNVtUeVEvJ5CJmXy6oBZyY5TXbHYjMmVZSz6gftKBdLzGgyUwIvFjR5PpGkVHGx7Qeq4GQx27P7ZDphlmS6EwgHml+RtfOXUc75fU8659Jo524N4jQl6Wy+mRXgJ2Vav0HlXM4TXDl3eJVPIJc1DOPg7TDs/+wJ8kDJWnpwkled1RosQRxHfYIlAFj29XK2WjdCJLBGJIrejoi2iBOl+2Fx3wk4xvG4PhxGkaKc51Rm34p5CMq19lGq9DLHUrpw4NGMqSfs5OJpjowqw7cPui48nK4oO9NX+anIil/0l3Mty48/DMJ4ChaBmPPd2BrXrwUXpjGpER1eG8KC4PO1np9qxMqePgycGQ8M0YG2mJBdL2M3PpXdl3GPW4eJFWQhSDXNfmBj2HxW0uIlOTc30jqjsiCiMqpZOzeWDTRw75dMzcoixYocc+upvdgTmXUK8GsUbEL79civf79UnbyEqk0nIk48HLYYcU6v4CnDDmjTctgBD1oMO1vrXQs7xq0Ww47uss2NLwHCRsFnaB98LBbrNZEqyeCDCM8IXN1BGy7uW4xAo7hPCbEPg9+96OxcGp0bQTKyT4drBKcdJCvMMqwUZh7bJC1iEQV9wmKC3C87YRvBEH1ouqKFJcyjMscs7UKwiPoVLGB2bo3Ezp9G4kZojO3jxKQ+GiSn/+E5UVk38thx38LFbzt9GzER24eLGqXXHRMZTu4Jk/DZDShiv09Q+DAjfzwr3AiLyYeGCl4qjy88xdfMK8Al6CFboyIcTgZ9okJXYK9L5fCF8w8I7NxsBW5WpLffshmFNZ4PISGC5MKDw7y9/ZuR36swEUbflOR/WuGcOHN45JfKESQtTTnj52aA2G/jjGpEkINtHD0h7cUNfxj3KsXQdRztuw4cB7jIUiyJaPbI6ttv4Yxr1JeO4IHTMlfe/oH2iJkMevW0EkDrQst7uCd8ewpe7KvwcY315igvPCdS9+kMNL3aINbCXTxr/A7k2JdQ6+wRHCFnztPNvKR5SkRX0OlZIgNX9uuLyO/Ajn1lNa5RTDvCzqvXUyR42GbM6RU4AWSYB7D8vVX4NNQ0KME2y20KScqUdyLWBNHI4lWVDiMDrRtZkkN5T8OLfV02rrHJd4yXcrHYeIwWBSy/3VijgqhfFfwQJutGy+xcGZnfYZFqUMJt9qQtCaO8I7lNOOxZLRem5tboe0BMM1Lsq7qTGsX+76UzeKHfL1gTusyUl3PZZql3HPYJGv1m9kF8udBSO3dGauczSN2In8C+6BvZpsPbYlN7qW8U9epxW+cxK8roCuf5xqHsAUv6QE5S0wvsS77t/o1DoPH0I//j8PQ/MDr3SA=='),(4494,2854,'wpil_links_outbound_internal_count_data','eJzdm21vqzYUx78KYtK0veA2QEKIo2rqqmkPuret1kl9GTngBK/ERrZpblb1u+/YJG1yG+kWkxbEmygOxufw94/jwzHBKAjQI0WD6TXyR8i9K2g++8JTks8+U3bvohg9SjRGbg6tGU3dqe4rUYjcUuQufBsOkJspVUh0dsbI+l8iJNksN4wkfIWlojghTBHxCZpnpj9051Lpr6GP3O+corvFyKW6zTAYnCO/GqQwg7zy+kb/jPxAux3AicZjPwwmcBb0VFTlxJ1eVWOoTUHc/eEkipArFValrDrBlSccjDNVtUeVEvJ5CJmXy6oBZyY5TXbHYjMmVZSz6gftKBdLzGgyUwIvFjR5PpGkVHGx7Qeq4GQx27P7ZDphlmS6EwgHml+RtfOXUc75fU8659Jo524N4jQl6Wy+mRXgJ2Vav0HlXM4TXDl3eJVPIJc1DOPg7TDs/+wJ8kDJWnpwkled1RosQRxHfYIlAFj29XK2WjdCJLBGJIrejoi2iBOl+2Fx3wk4xvG4PhxGkaKc51Rm34p5CMq19lGq9DLHUrpw4NGMqSfs5OJpjowqw7cPui48nK4oO9NX+anIil/0l3Mty48/DMJ4ChaBmPPd2BrXrwUXpjGpER1eG8KC4PO1np9qxMqePgycGQ8M0YG2mJBdL2M3PpXdl3GPW4eJFWQhSDXNfmBj2HxW0uIlOTc30jqjsiCiMqpZOzeWDTRw75dMzcoixYocc+upvdgTmXUK8GsUbEL79civf79UnbyEqk0nIk48HLYYcU6v4CnDDmjTctgBD1oMO1vrXQs7xq0Ww47uss2NLwHCRsFnaB98LBbrNZEqyeCDCM8IXN1BGy7uW4xAo7hPCbEPg9+96OxcGp0bQTKyT4drBKcdJCvMMqwUZh7bJC1iEQV9wmKC3C87YRvBEH1ouqKFJcyjMscs7UKwiPoVLGB2bo3Ezp9G4kZojO3jxKQ+GiSn/+E5UVk38thx38LFbzt9GzER24eLGqXXHRMZTu4Jk/DZDShiv09Q+DAjfzwr3AiLyYeGCl4qjy88xdfMK8Al6CFboyIcTgZ9okJXYK9L5fCF8w8I7NxsBW5WpLffshmFNZ4PISGC5MKDw7y9/ZuR36swEUbflOR/WuGcOHN45JfKESQtTTnj52aA2G/jjGpEkINtHD0h7cUNfxj3KsXQdRztuw4cB7jIUiyJaPbI6ttv4Yxr1JeO4IHTMlfe/oH2iJkMevW0EkDrQst7uCd8ewpe7KvwcY315igvPCdS9+kMNL3aINbCXTxr/A7k2JdQ6+wRHCFnztPNvKR5SkRX0OlZIgNX9uuLyO/Ajn1lNa5RTDvCzqvXUyR42GbM6RU4AWSYB7D8vVX4NNQ0KME2y20KScqUdyLWBNHI4lWVDiMDrRtZkkN5T8OLfV02rrHJd4yXcrHYeIwWBSy/3VijgqhfFfwQJutGy+xcGZnfYZFqUMJt9qQtCaO8I7lNOOxZLRem5tboe0BMM1Lsq7qTGsX+76UzeKHfL1gTusyUl3PZZql3HPYJGv1m9kF8udBSO3dGauczSN2In8C+6BvZpsPbYlN7qW8U9epxW+cxK8roCuf5xqHsAUv6QE5S0wvsS77t/o1DoPH0I//j8PQ/MDr3SA=='),(4495,2854,'wpil_links_outbound_internal_count_data','eJzdm21vqzYUx78KYtK0veA2QEKIo2rqqmkPuret1kl9GTngBK/ERrZpblb1u+/YJG1yG+kWkxbEmygOxufw94/jwzHBKAjQI0WD6TXyR8i9K2g++8JTks8+U3bvohg9SjRGbg6tGU3dqe4rUYjcUuQufBsOkJspVUh0dsbI+l8iJNksN4wkfIWlojghTBHxCZpnpj9051Lpr6GP3O+corvFyKW6zTAYnCO/GqQwg7zy+kb/jPxAux3AicZjPwwmcBb0VFTlxJ1eVWOoTUHc/eEkipArFValrDrBlSccjDNVtUeVEvJ5CJmXy6oBZyY5TXbHYjMmVZSz6gftKBdLzGgyUwIvFjR5PpGkVHGx7Qeq4GQx27P7ZDphlmS6EwgHml+RtfOXUc75fU8659Jo524N4jQl6Wy+mRXgJ2Vav0HlXM4TXDl3eJVPIJc1DOPg7TDs/+wJ8kDJWnpwkled1RosQRxHfYIlAFj29XK2WjdCJLBGJIrejoi2iBOl+2Fx3wk4xvG4PhxGkaKc51Rm34p5CMq19lGq9DLHUrpw4NGMqSfs5OJpjowqw7cPui48nK4oO9NX+anIil/0l3Mty48/DMJ4ChaBmPPd2BrXrwUXpjGpER1eG8KC4PO1np9qxMqePgycGQ8M0YG2mJBdL2M3PpXdl3GPW4eJFWQhSDXNfmBj2HxW0uIlOTc30jqjsiCiMqpZOzeWDTRw75dMzcoixYocc+upvdgTmXUK8GsUbEL79civf79UnbyEqk0nIk48HLYYcU6v4CnDDmjTctgBD1oMO1vrXQs7xq0Ww47uss2NLwHCRsFnaB98LBbrNZEqyeCDCM8IXN1BGy7uW4xAo7hPCbEPg9+96OxcGp0bQTKyT4drBKcdJCvMMqwUZh7bJC1iEQV9wmKC3C87YRvBEH1ouqKFJcyjMscs7UKwiPoVLGB2bo3Ezp9G4kZojO3jxKQ+GiSn/+E5UVk38thx38LFbzt9GzER24eLGqXXHRMZTu4Jk/DZDShiv09Q+DAjfzwr3AiLyYeGCl4qjy88xdfMK8Al6CFboyIcTgZ9okJXYK9L5fCF8w8I7NxsBW5WpLffshmFNZ4PISGC5MKDw7y9/ZuR36swEUbflOR/WuGcOHN45JfKESQtTTnj52aA2G/jjGpEkINtHD0h7cUNfxj3KsXQdRztuw4cB7jIUiyJaPbI6ttv4Yxr1JeO4IHTMlfe/oH2iJkMevW0EkDrQst7uCd8ewpe7KvwcY315igvPCdS9+kMNL3aINbCXTxr/A7k2JdQ6+wRHCFnztPNvKR5SkRX0OlZIgNX9uuLyO/Ajn1lNa5RTDvCzqvXUyR42GbM6RU4AWSYB7D8vVX4NNQ0KME2y20KScqUdyLWBNHI4lWVDiMDrRtZkkN5T8OLfV02rrHJd4yXcrHYeIwWBSy/3VijgqhfFfwQJutGy+xcGZnfYZFqUMJt9qQtCaO8I7lNOOxZLRem5tboe0BMM1Lsq7qTGsX+76UzeKHfL1gTusyUl3PZZql3HPYJGv1m9kF8udBSO3dGauczSN2In8C+6BvZpsPbYlN7qW8U9epxW+cxK8roCuf5xqHsAUv6QE5S0wvsS77t/o1DoPH0I//j8PQ/MDr3SA=='),(4498,2854,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4499,2854,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4500,2854,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4503,2854,'kt_blocks_editor_width',''),(4504,2854,'_kad_post_transparent',''),(4505,2854,'_kad_post_title','default'),(4506,2854,'_kad_post_layout','default'),(4507,2854,'_kad_post_sidebar_id',''),(4508,2854,'_kad_post_content_style','default'),(4509,2854,'_kad_post_vertical_padding','default'),(4510,2854,'_kad_post_feature','default'),(4511,2854,'_kad_post_feature_position',''),(4512,2854,'_kad_post_header',''),(4513,2854,'_kad_post_footer',''),(4514,2854,'_has_fluentform','a:0:{}'),(4515,2854,'_wp_page_template','default'),(4517,2854,'footnotes',''),(4518,2854,'_kadence_starter_templates_imported_post','1'),(4519,2854,'_yoast_wpseo_content_score','90'),(4520,2854,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4521,2854,'_yoast_wpseo_wordproof_timestamp',''),(4522,2854,'_yoast_wpseo_focuskw','near decatur'),(4523,2854,'_yoast_wpseo_title','Gynecomastia Surgeon Near Decatur, GA (Male Breast Reduction)'),(4524,2854,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Decatur, Georgia, reach out to the Atlanta Gynecomastia Center.'),(4525,2854,'_yoast_wpseo_linkdex','60'),(4527,2854,'_kad_blocks_custom_css',''),(4528,2854,'_kad_blocks_head_custom_js',''),(4529,2854,'_kad_blocks_body_custom_js',''),(4530,2854,'_kad_blocks_footer_custom_js',''),(4532,2854,'_dp_original','2844'),(4533,2854,'_edit_lock','1711846712:1'),(4535,2854,'_edit_last','1'),(4536,2856,'_menu_item_type','post_type'),(4537,2856,'_menu_item_menu_item_parent','1492'),(4538,2856,'_menu_item_object_id','2854'),(4539,2856,'_menu_item_object','page'),(4540,2856,'_menu_item_target',''),(4541,2856,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4542,2856,'_menu_item_xfn',''),(4543,2856,'_menu_item_url',''),(4553,2858,'wpil_links_inbound_internal_count_data','eJztmE1v3CAQhv9KxX1rw/oDs8de049bjhbB7C6NA5ZhFVnR/vcOJk0TVcKH3rpzsRh75vXM6JExIwVtxIsR5eG7oLUg95MZ+69u0GN/Z+wjEVy8eNEKMoLVm4Ecoq8Xe0Eu80hg1TaCnEOYvCgKq59/6tnr5bRYrdyT9MFIpW3Q82cwC+VskCoUz9oHdYaLnnfKXWxYdhC6W9z8WETNCiSdD3G5p4JsyEY3LoiJtpWQ1IOgSWRaRf6q7Ee8LSiLpTEIXKuiFWcQBZ7BhFGTw7ekEZZJk/dyXkDFPshw8ckJuhMLg3ySXadu+TcJP15OyYBINRr1+xlfNU0wzqYbMVE3n6Q1qg+zPB6NegvUgwlufvWDrkh17N+997o6SavO0QlcQPz+T58/fVn7TF5fIodBD/3D0k+Qm7GxZ2VKaHRKpoQ+VnaFFt08JKypW4QkCwm7eUhoVzYISRaSPULSlRwhyUJSISQdpQhJFpIaIelKhCQPSXPzkLCmwe0mD0mLkLQcTzd5SDhCwvFLsgFJh5DwukJI8sM0HLky3uLIdYMSnLkyzvF8s0EJDl0Zr3DH2aAEp67w84o7zgYlOHale9b9V5TQD5T8Gx44cKUVx60mR8n1F1SdW6I='),(4555,2858,'wpil_links_outbound_internal_count_data','eJzdW21vozgQ/iuIk053H2gDCYQQVaded3Uv2r5oe9J+jBxwgq/ERrZplqv6329skm7SRrrDsAXxJYph8AyPH2bGM4AibxI9kWg0v41cP7K/5CRbXLMEZ4tPhD7YURg9iWga2RmMFiSx50pWROPILnhmw7/JKLJTKXMRnZ9TvP0bc4HLdUlxzDZISIJiTCXmZzA81/IgzoRUf8duZP/HJUosjGyixhSBwmXkVpPkepI3Vt+pw5HrKbM9uFBb7I69GVwFkpLIDNvzm2oOWebYPpxOREFkC4lkISohuPOYgXIqq7FfISFephBZsa4GcGWckXh/LtRzEkkYrQ4oQxlfI0riheRotSLxy4U4IZLxnRygguLV4kDvsxZCNE6VEAAHmN/grfWnRs767QA660pjZ+8UoiTByWJZLnKwk1CF36gyLmMxqow7vstngMuYDMHk/5Ph8LATI5qQBEksOiPJeOKGQyKJB3d2iJe1wzguG5HDMybH1DMkB8ePBG+FAxc51VWdkcQLw2BQJBm9IskO60YUGZv7jxoUURpRLM83iKZISkQdWsYdEiPwhkSMWWRf74FtRIaJub+okVnsyZCi+AFTAb898RbukEjhwor8/oJwI1r45j4iqE8LkEO8H5SYhtP6lNCI5MUyIyJ9DeYxPW6VjUImVxkSwoYTT3pO5dRbB0+xR6NSI+vb5g5KNoSeq7s8y9P8F/XnQsHy4w+jcTgHjcCYi/3ciqRfc8b1YFYjPLxVhDhGF1u1PtWMlT51GnimLdCM9pTGGO+ltN6wLb3f5j2tHRaW4xXH1TK7noli/VtBi9b4Qj9I25SIHPNKqeLahdasSQNPfEHloshV/n3KrOfuPE6gNzpAv0bOJjCPQW7956UScmIiy154nHAy6dDjtI9gm24HsOnY7YAFHbqdnfa+uR1tVoduR4nsiitXQMJGzmf6rs5HPb+YOkRksNvXD0/J+EOX26JBFVVcWJ17DbH1h4a4ETVC8yR4Vp8aOFlDKIWj/YhKfpdRqW38Wo1Jfucxye80Jvn9jEl+tzEJGPtxz8BGXmf2vl4nI/+gJZZpP7zOdGhVuo97fJu1fMwbgCakYIV02MqRbEudHGwCiS4bP7PRkEihavq3hbTYyvoLALbudgA3I4h5U9Af1/DcKZKQvDpwmnXXLvbdQZVtx8GrJs9PG5RhawnBWEiL46TQicbPzQhi3hj0a3iQo8agWpDu/IY7CQcVTFSGpWxXjuOILqLga8yb7YJd86ZgWKMPdESPnd1OwmLAoRf9Y9eb+kPizATM+sDPIMYUmfWZCUyXmK+t6w8W7I0tdeZyyVGKNioKpegBzjSjUYN2Yo0NxAkvg5Iik87hie5INBsNqqjiwehSwXv8JtN9G27HvM8Y1khbTvKFZVgomd6QZlBvrijgLl8w/g7MMW8a1SkCnWDOkiXlsiBZgnlfqDOwfBju7NdvIH8H7pjX/MMaNf8T3Hnz3pwAC7v0OYMijgcblSOyfN4h3A5rzNsBDXObXOAiYb3wNV7gG7wf02PKwOhOFPgY3nb4Yl7IDWu8BnSKL8VqVTqU5DmE337EKC8YVqNxDIt1p2C2bjTM7Qcpz7zkO21WsIFdImE9yW3Gk4G9oglLc6/xPWJMM6aY135nprWbE+kMWqne6xaTdSqdjIkuOwbT8ZBIo74nOvIvlwpq64uG2voEUDfjj3lpODBNh3e1v+5S3yAY1HZb5TEbQskGZVlpEfqIBHnErZSGPfPScLcfH/JoOn/PL/Oe/wW8izyR'),(4557,2858,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4565,2858,'wpil_links_inbound_internal_count_data','eJztmE1v3CAQhv9KxX1rw/oDs8de049bjhbB7C6NA5ZhFVnR/vcOJk0TVcKH3rpzsRh75vXM6JExIwVtxIsR5eG7oLUg95MZ+69u0GN/Z+wjEVy8eNEKMoLVm4Ecoq8Xe0Eu80hg1TaCnEOYvCgKq59/6tnr5bRYrdyT9MFIpW3Q82cwC+VskCoUz9oHdYaLnnfKXWxYdhC6W9z8WETNCiSdD3G5p4JsyEY3LoiJtpWQ1IOgSWRaRf6q7Ee8LSiLpTEIXKuiFWcQBZ7BhFGTw7ekEZZJk/dyXkDFPshw8ckJuhMLg3ySXadu+TcJP15OyYBINRr1+xlfNU0wzqYbMVE3n6Q1qg+zPB6NegvUgwlufvWDrkh17N+997o6SavO0QlcQPz+T58/fVn7TF5fIodBD/3D0k+Qm7GxZ2VKaHRKpoQ+VnaFFt08JKypW4QkCwm7eUhoVzYISRaSPULSlRwhyUJSISQdpQhJFpIaIelKhCQPSXPzkLCmwe0mD0mLkLQcTzd5SDhCwvFLsgFJh5DwukJI8sM0HLky3uLIdYMSnLkyzvF8s0EJDl0Zr3DH2aAEp67w84o7zgYlOHale9b9V5TQD5T8Gx44cKUVx60mR8n1F1SdW6I='),(4566,2858,'wpil_links_inbound_internal_count_data','eJztmE1v3CAQhv9KxX1rw/oDs8de049bjhbB7C6NA5ZhFVnR/vcOJk0TVcKH3rpzsRh75vXM6JExIwVtxIsR5eG7oLUg95MZ+69u0GN/Z+wjEVy8eNEKMoLVm4Ecoq8Xe0Eu80hg1TaCnEOYvCgKq59/6tnr5bRYrdyT9MFIpW3Q82cwC+VskCoUz9oHdYaLnnfKXWxYdhC6W9z8WETNCiSdD3G5p4JsyEY3LoiJtpWQ1IOgSWRaRf6q7Ee8LSiLpTEIXKuiFWcQBZ7BhFGTw7ekEZZJk/dyXkDFPshw8ckJuhMLg3ySXadu+TcJP15OyYBINRr1+xlfNU0wzqYbMVE3n6Q1qg+zPB6NegvUgwlufvWDrkh17N+997o6SavO0QlcQPz+T58/fVn7TF5fIodBD/3D0k+Qm7GxZ2VKaHRKpoQ+VnaFFt08JKypW4QkCwm7eUhoVzYISRaSPULSlRwhyUJSISQdpQhJFpIaIelKhCQPSXPzkLCmwe0mD0mLkLQcTzd5SDhCwvFLsgFJh5DwukJI8sM0HLky3uLIdYMSnLkyzvF8s0EJDl0Zr3DH2aAEp67w84o7zgYlOHale9b9V5TQD5T8Gx44cKUVx60mR8n1F1SdW6I='),(4567,2858,'wpil_links_inbound_internal_count_data','eJztmE1v3CAQhv9KxX1rw/oDs8de049bjhbB7C6NA5ZhFVnR/vcOJk0TVcKH3rpzsRh75vXM6JExIwVtxIsR5eG7oLUg95MZ+69u0GN/Z+wjEVy8eNEKMoLVm4Ecoq8Xe0Eu80hg1TaCnEOYvCgKq59/6tnr5bRYrdyT9MFIpW3Q82cwC+VskCoUz9oHdYaLnnfKXWxYdhC6W9z8WETNCiSdD3G5p4JsyEY3LoiJtpWQ1IOgSWRaRf6q7Ee8LSiLpTEIXKuiFWcQBZ7BhFGTw7ekEZZJk/dyXkDFPshw8ckJuhMLg3ySXadu+TcJP15OyYBINRr1+xlfNU0wzqYbMVE3n6Q1qg+zPB6NegvUgwlufvWDrkh17N+997o6SavO0QlcQPz+T58/fVn7TF5fIodBD/3D0k+Qm7GxZ2VKaHRKpoQ+VnaFFt08JKypW4QkCwm7eUhoVzYISRaSPULSlRwhyUJSISQdpQhJFpIaIelKhCQPSXPzkLCmwe0mD0mLkLQcTzd5SDhCwvFLsgFJh5DwukJI8sM0HLky3uLIdYMSnLkyzvF8s0EJDl0Zr3DH2aAEp67w84o7zgYlOHale9b9V5TQD5T8Gx44cKUVx60mR8n1F1SdW6I='),(4568,2858,'wpil_links_inbound_internal_count_data','eJztmE1v3CAQhv9KxX1rw/oDs8de049bjhbB7C6NA5ZhFVnR/vcOJk0TVcKH3rpzsRh75vXM6JExIwVtxIsR5eG7oLUg95MZ+69u0GN/Z+wjEVy8eNEKMoLVm4Ecoq8Xe0Eu80hg1TaCnEOYvCgKq59/6tnr5bRYrdyT9MFIpW3Q82cwC+VskCoUz9oHdYaLnnfKXWxYdhC6W9z8WETNCiSdD3G5p4JsyEY3LoiJtpWQ1IOgSWRaRf6q7Ee8LSiLpTEIXKuiFWcQBZ7BhFGTw7ekEZZJk/dyXkDFPshw8ckJuhMLg3ySXadu+TcJP15OyYBINRr1+xlfNU0wzqYbMVE3n6Q1qg+zPB6NegvUgwlufvWDrkh17N+997o6SavO0QlcQPz+T58/fVn7TF5fIodBD/3D0k+Qm7GxZ2VKaHRKpoQ+VnaFFt08JKypW4QkCwm7eUhoVzYISRaSPULSlRwhyUJSISQdpQhJFpIaIelKhCQPSXPzkLCmwe0mD0mLkLQcTzd5SDhCwvFLsgFJh5DwukJI8sM0HLky3uLIdYMSnLkyzvF8s0EJDl0Zr3DH2aAEp67w84o7zgYlOHale9b9V5TQD5T8Gx44cKUVx60mR8n1F1SdW6I='),(4572,2858,'wpil_links_outbound_internal_count_data','eJzdW21vozgQ/iuIk053H2gDCYQQVaded3Uv2r5oe9J+jBxwgq/ERrZplqv6329skm7SRrrDsAXxJYph8AyPH2bGM4AibxI9kWg0v41cP7K/5CRbXLMEZ4tPhD7YURg9iWga2RmMFiSx50pWROPILnhmw7/JKLJTKXMRnZ9TvP0bc4HLdUlxzDZISIJiTCXmZzA81/IgzoRUf8duZP/HJUosjGyixhSBwmXkVpPkepI3Vt+pw5HrKbM9uFBb7I69GVwFkpLIDNvzm2oOWebYPpxOREFkC4lkISohuPOYgXIqq7FfISFephBZsa4GcGWckXh/LtRzEkkYrQ4oQxlfI0riheRotSLxy4U4IZLxnRygguLV4kDvsxZCNE6VEAAHmN/grfWnRs767QA660pjZ+8UoiTByWJZLnKwk1CF36gyLmMxqow7vstngMuYDMHk/5Ph8LATI5qQBEksOiPJeOKGQyKJB3d2iJe1wzguG5HDMybH1DMkB8ePBG+FAxc51VWdkcQLw2BQJBm9IskO60YUGZv7jxoUURpRLM83iKZISkQdWsYdEiPwhkSMWWRf74FtRIaJub+okVnsyZCi+AFTAb898RbukEjhwor8/oJwI1r45j4iqE8LkEO8H5SYhtP6lNCI5MUyIyJ9DeYxPW6VjUImVxkSwoYTT3pO5dRbB0+xR6NSI+vb5g5KNoSeq7s8y9P8F/XnQsHy4w+jcTgHjcCYi/3ciqRfc8b1YFYjPLxVhDhGF1u1PtWMlT51GnimLdCM9pTGGO+ltN6wLb3f5j2tHRaW4xXH1TK7noli/VtBi9b4Qj9I25SIHPNKqeLahdasSQNPfEHloshV/n3KrOfuPE6gNzpAv0bOJjCPQW7956UScmIiy154nHAy6dDjtI9gm24HsOnY7YAFHbqdnfa+uR1tVoduR4nsiitXQMJGzmf6rs5HPb+YOkRksNvXD0/J+EOX26JBFVVcWJ17DbH1h4a4ETVC8yR4Vp8aOFlDKIWj/YhKfpdRqW38Wo1Jfucxye80Jvn9jEl+tzEJGPtxz8BGXmf2vl4nI/+gJZZpP7zOdGhVuo97fJu1fMwbgCakYIV02MqRbEudHGwCiS4bP7PRkEihavq3hbTYyvoLALbudgA3I4h5U9Af1/DcKZKQvDpwmnXXLvbdQZVtx8GrJs9PG5RhawnBWEiL46TQicbPzQhi3hj0a3iQo8agWpDu/IY7CQcVTFSGpWxXjuOILqLga8yb7YJd86ZgWKMPdESPnd1OwmLAoRf9Y9eb+kPizATM+sDPIMYUmfWZCUyXmK+t6w8W7I0tdeZyyVGKNioKpegBzjSjUYN2Yo0NxAkvg5Iik87hie5INBsNqqjiwehSwXv8JtN9G27HvM8Y1khbTvKFZVgomd6QZlBvrijgLl8w/g7MMW8a1SkCnWDOkiXlsiBZgnlfqDOwfBju7NdvIH8H7pjX/MMaNf8T3Hnz3pwAC7v0OYMijgcblSOyfN4h3A5rzNsBDXObXOAiYb3wNV7gG7wf02PKwOhOFPgY3nb4Yl7IDWu8BnSKL8VqVTqU5DmE337EKC8YVqNxDIt1p2C2bjTM7Qcpz7zkO21WsIFdImE9yW3Gk4G9oglLc6/xPWJMM6aY135nprWbE+kMWqne6xaTdSqdjIkuOwbT8ZBIo74nOvIvlwpq64uG2voEUDfjj3lpODBNh3e1v+5S3yAY1HZb5TEbQskGZVlpEfqIBHnErZSGPfPScLcfH/JoOn/PL/Oe/wW8izyR'),(4573,2858,'wpil_links_outbound_internal_count_data','eJzdW21vozgQ/iuIk053H2gDCYQQVaded3Uv2r5oe9J+jBxwgq/ERrZplqv6329skm7SRrrDsAXxJYph8AyPH2bGM4AibxI9kWg0v41cP7K/5CRbXLMEZ4tPhD7YURg9iWga2RmMFiSx50pWROPILnhmw7/JKLJTKXMRnZ9TvP0bc4HLdUlxzDZISIJiTCXmZzA81/IgzoRUf8duZP/HJUosjGyixhSBwmXkVpPkepI3Vt+pw5HrKbM9uFBb7I69GVwFkpLIDNvzm2oOWebYPpxOREFkC4lkISohuPOYgXIqq7FfISFephBZsa4GcGWckXh/LtRzEkkYrQ4oQxlfI0riheRotSLxy4U4IZLxnRygguLV4kDvsxZCNE6VEAAHmN/grfWnRs767QA660pjZ+8UoiTByWJZLnKwk1CF36gyLmMxqow7vstngMuYDMHk/5Ph8LATI5qQBEksOiPJeOKGQyKJB3d2iJe1wzguG5HDMybH1DMkB8ePBG+FAxc51VWdkcQLw2BQJBm9IskO60YUGZv7jxoUURpRLM83iKZISkQdWsYdEiPwhkSMWWRf74FtRIaJub+okVnsyZCi+AFTAb898RbukEjhwor8/oJwI1r45j4iqE8LkEO8H5SYhtP6lNCI5MUyIyJ9DeYxPW6VjUImVxkSwoYTT3pO5dRbB0+xR6NSI+vb5g5KNoSeq7s8y9P8F/XnQsHy4w+jcTgHjcCYi/3ciqRfc8b1YFYjPLxVhDhGF1u1PtWMlT51GnimLdCM9pTGGO+ltN6wLb3f5j2tHRaW4xXH1TK7noli/VtBi9b4Qj9I25SIHPNKqeLahdasSQNPfEHloshV/n3KrOfuPE6gNzpAv0bOJjCPQW7956UScmIiy154nHAy6dDjtI9gm24HsOnY7YAFHbqdnfa+uR1tVoduR4nsiitXQMJGzmf6rs5HPb+YOkRksNvXD0/J+EOX26JBFVVcWJ17DbH1h4a4ETVC8yR4Vp8aOFlDKIWj/YhKfpdRqW38Wo1Jfucxye80Jvn9jEl+tzEJGPtxz8BGXmf2vl4nI/+gJZZpP7zOdGhVuo97fJu1fMwbgCakYIV02MqRbEudHGwCiS4bP7PRkEihavq3hbTYyvoLALbudgA3I4h5U9Af1/DcKZKQvDpwmnXXLvbdQZVtx8GrJs9PG5RhawnBWEiL46TQicbPzQhi3hj0a3iQo8agWpDu/IY7CQcVTFSGpWxXjuOILqLga8yb7YJd86ZgWKMPdESPnd1OwmLAoRf9Y9eb+kPizATM+sDPIMYUmfWZCUyXmK+t6w8W7I0tdeZyyVGKNioKpegBzjSjUYN2Yo0NxAkvg5Iik87hie5INBsNqqjiwehSwXv8JtN9G27HvM8Y1khbTvKFZVgomd6QZlBvrijgLl8w/g7MMW8a1SkCnWDOkiXlsiBZgnlfqDOwfBju7NdvIH8H7pjX/MMaNf8T3Hnz3pwAC7v0OYMijgcblSOyfN4h3A5rzNsBDXObXOAiYb3wNV7gG7wf02PKwOhOFPgY3nb4Yl7IDWu8BnSKL8VqVTqU5DmE337EKC8YVqNxDIt1p2C2bjTM7Qcpz7zkO21WsIFdImE9yW3Gk4G9oglLc6/xPWJMM6aY135nprWbE+kMWqne6xaTdSqdjIkuOwbT8ZBIo74nOvIvlwpq64uG2voEUDfjj3lpODBNh3e1v+5S3yAY1HZb5TEbQskGZVlpEfqIBHnErZSGPfPScLcfH/JoOn/PL/Oe/wW8izyR'),(4574,2858,'wpil_links_outbound_internal_count_data','eJzdW21vozgQ/iuIk053H2gDCYQQVaded3Uv2r5oe9J+jBxwgq/ERrZplqv6329skm7SRrrDsAXxJYph8AyPH2bGM4AibxI9kWg0v41cP7K/5CRbXLMEZ4tPhD7YURg9iWga2RmMFiSx50pWROPILnhmw7/JKLJTKXMRnZ9TvP0bc4HLdUlxzDZISIJiTCXmZzA81/IgzoRUf8duZP/HJUosjGyixhSBwmXkVpPkepI3Vt+pw5HrKbM9uFBb7I69GVwFkpLIDNvzm2oOWebYPpxOREFkC4lkISohuPOYgXIqq7FfISFephBZsa4GcGWckXh/LtRzEkkYrQ4oQxlfI0riheRotSLxy4U4IZLxnRygguLV4kDvsxZCNE6VEAAHmN/grfWnRs767QA660pjZ+8UoiTByWJZLnKwk1CF36gyLmMxqow7vstngMuYDMHk/5Ph8LATI5qQBEksOiPJeOKGQyKJB3d2iJe1wzguG5HDMybH1DMkB8ePBG+FAxc51VWdkcQLw2BQJBm9IskO60YUGZv7jxoUURpRLM83iKZISkQdWsYdEiPwhkSMWWRf74FtRIaJub+okVnsyZCi+AFTAb898RbukEjhwor8/oJwI1r45j4iqE8LkEO8H5SYhtP6lNCI5MUyIyJ9DeYxPW6VjUImVxkSwoYTT3pO5dRbB0+xR6NSI+vb5g5KNoSeq7s8y9P8F/XnQsHy4w+jcTgHjcCYi/3ciqRfc8b1YFYjPLxVhDhGF1u1PtWMlT51GnimLdCM9pTGGO+ltN6wLb3f5j2tHRaW4xXH1TK7noli/VtBi9b4Qj9I25SIHPNKqeLahdasSQNPfEHloshV/n3KrOfuPE6gNzpAv0bOJjCPQW7956UScmIiy154nHAy6dDjtI9gm24HsOnY7YAFHbqdnfa+uR1tVoduR4nsiitXQMJGzmf6rs5HPb+YOkRksNvXD0/J+EOX26JBFVVcWJ17DbH1h4a4ETVC8yR4Vp8aOFlDKIWj/YhKfpdRqW38Wo1Jfucxye80Jvn9jEl+tzEJGPtxz8BGXmf2vl4nI/+gJZZpP7zOdGhVuo97fJu1fMwbgCakYIV02MqRbEudHGwCiS4bP7PRkEihavq3hbTYyvoLALbudgA3I4h5U9Af1/DcKZKQvDpwmnXXLvbdQZVtx8GrJs9PG5RhawnBWEiL46TQicbPzQhi3hj0a3iQo8agWpDu/IY7CQcVTFSGpWxXjuOILqLga8yb7YJd86ZgWKMPdESPnd1OwmLAoRf9Y9eb+kPizATM+sDPIMYUmfWZCUyXmK+t6w8W7I0tdeZyyVGKNioKpegBzjSjUYN2Yo0NxAkvg5Iik87hie5INBsNqqjiwehSwXv8JtN9G27HvM8Y1khbTvKFZVgomd6QZlBvrijgLl8w/g7MMW8a1SkCnWDOkiXlsiBZgnlfqDOwfBju7NdvIH8H7pjX/MMaNf8T3Hnz3pwAC7v0OYMijgcblSOyfN4h3A5rzNsBDXObXOAiYb3wNV7gG7wf02PKwOhOFPgY3nb4Yl7IDWu8BnSKL8VqVTqU5DmE337EKC8YVqNxDIt1p2C2bjTM7Qcpz7zkO21WsIFdImE9yW3Gk4G9oglLc6/xPWJMM6aY135nprWbE+kMWqne6xaTdSqdjIkuOwbT8ZBIo74nOvIvlwpq64uG2voEUDfjj3lpODBNh3e1v+5S3yAY1HZb5TEbQskGZVlpEfqIBHnErZSGPfPScLcfH/JoOn/PL/Oe/wW8izyR'),(4575,2858,'wpil_links_outbound_internal_count_data','eJzdW21vozgQ/iuIk053H2gDCYQQVaded3Uv2r5oe9J+jBxwgq/ERrZplqv6329skm7SRrrDsAXxJYph8AyPH2bGM4AibxI9kWg0v41cP7K/5CRbXLMEZ4tPhD7YURg9iWga2RmMFiSx50pWROPILnhmw7/JKLJTKXMRnZ9TvP0bc4HLdUlxzDZISIJiTCXmZzA81/IgzoRUf8duZP/HJUosjGyixhSBwmXkVpPkepI3Vt+pw5HrKbM9uFBb7I69GVwFkpLIDNvzm2oOWebYPpxOREFkC4lkISohuPOYgXIqq7FfISFephBZsa4GcGWckXh/LtRzEkkYrQ4oQxlfI0riheRotSLxy4U4IZLxnRygguLV4kDvsxZCNE6VEAAHmN/grfWnRs767QA660pjZ+8UoiTByWJZLnKwk1CF36gyLmMxqow7vstngMuYDMHk/5Ph8LATI5qQBEksOiPJeOKGQyKJB3d2iJe1wzguG5HDMybH1DMkB8ePBG+FAxc51VWdkcQLw2BQJBm9IskO60YUGZv7jxoUURpRLM83iKZISkQdWsYdEiPwhkSMWWRf74FtRIaJub+okVnsyZCi+AFTAb898RbukEjhwor8/oJwI1r45j4iqE8LkEO8H5SYhtP6lNCI5MUyIyJ9DeYxPW6VjUImVxkSwoYTT3pO5dRbB0+xR6NSI+vb5g5KNoSeq7s8y9P8F/XnQsHy4w+jcTgHjcCYi/3ciqRfc8b1YFYjPLxVhDhGF1u1PtWMlT51GnimLdCM9pTGGO+ltN6wLb3f5j2tHRaW4xXH1TK7noli/VtBi9b4Qj9I25SIHPNKqeLahdasSQNPfEHloshV/n3KrOfuPE6gNzpAv0bOJjCPQW7956UScmIiy154nHAy6dDjtI9gm24HsOnY7YAFHbqdnfa+uR1tVoduR4nsiitXQMJGzmf6rs5HPb+YOkRksNvXD0/J+EOX26JBFVVcWJ17DbH1h4a4ETVC8yR4Vp8aOFlDKIWj/YhKfpdRqW38Wo1Jfucxye80Jvn9jEl+tzEJGPtxz8BGXmf2vl4nI/+gJZZpP7zOdGhVuo97fJu1fMwbgCakYIV02MqRbEudHGwCiS4bP7PRkEihavq3hbTYyvoLALbudgA3I4h5U9Af1/DcKZKQvDpwmnXXLvbdQZVtx8GrJs9PG5RhawnBWEiL46TQicbPzQhi3hj0a3iQo8agWpDu/IY7CQcVTFSGpWxXjuOILqLga8yb7YJd86ZgWKMPdESPnd1OwmLAoRf9Y9eb+kPizATM+sDPIMYUmfWZCUyXmK+t6w8W7I0tdeZyyVGKNioKpegBzjSjUYN2Yo0NxAkvg5Iik87hie5INBsNqqjiwehSwXv8JtN9G27HvM8Y1khbTvKFZVgomd6QZlBvrijgLl8w/g7MMW8a1SkCnWDOkiXlsiBZgnlfqDOwfBju7NdvIH8H7pjX/MMaNf8T3Hnz3pwAC7v0OYMijgcblSOyfN4h3A5rzNsBDXObXOAiYb3wNV7gG7wf02PKwOhOFPgY3nb4Yl7IDWu8BnSKL8VqVTqU5DmE337EKC8YVqNxDIt1p2C2bjTM7Qcpz7zkO21WsIFdImE9yW3Gk4G9oglLc6/xPWJMM6aY135nprWbE+kMWqne6xaTdSqdjIkuOwbT8ZBIo74nOvIvlwpq64uG2voEUDfjj3lpODBNh3e1v+5S3yAY1HZb5TEbQskGZVlpEfqIBHnErZSGPfPScLcfH/JoOn/PL/Oe/wW8izyR'),(4579,2858,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4580,2858,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4581,2858,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4582,2858,'wpil_links_outbound_external_count_data','eJylUU1PwkAQ/SvNmnipUhbE4hBi0IuK38aop2ZpB1jYdkp3AdH4350WP6Lxot7mzbx9s++NggY8a6h3LkC2QNzl2kRnlKCJTnU2FdCGZwshCMMo0onolFwLTRDzwoiyaoAYO5dbCILlclmbkM5cTGmqrdWU1agYBSVvh2lkXVnKPRA/0MpRGwT3scgUiw+qVfwwrx6eM9gFobJ4TEWlw+ik1PEOP4SqPhtRSYJJNFhFuZmPdPYuxvqGYuXemGwsJt6XsfyLBvnnFGQr/BrDiGhksMYOg1TlNsB0gEmwkEFuVIz7U1x1e8dP6mZ10DtrUHipr2bLqWydHsr766MGRv2T7cmtCvsP082NerPdeSJKu1KuASu6VY7dglTC9bo568rWbujnymirEvTVArM5+kMqnG8Qv9+gDuLzj7+Ovsl2z8lbNzyHj27LK8PxtPV4Iw88PSxUiv+4x8srBVHZZg=='),(4586,2858,'kt_blocks_editor_width',''),(4587,2858,'_kad_post_transparent',''),(4588,2858,'_kad_post_title','default'),(4589,2858,'_kad_post_layout','default'),(4590,2858,'_kad_post_sidebar_id',''),(4591,2858,'_kad_post_content_style','default'),(4592,2858,'_kad_post_vertical_padding','default'),(4593,2858,'_kad_post_feature','default'),(4594,2858,'_kad_post_feature_position',''),(4595,2858,'_kad_post_header',''),(4596,2858,'_kad_post_footer',''),(4597,2858,'_has_fluentform','a:0:{}'),(4598,2858,'_wp_page_template','default'),(4600,2858,'footnotes',''),(4601,2858,'_kadence_starter_templates_imported_post','1'),(4602,2858,'_yoast_wpseo_content_score','90'),(4603,2858,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4604,2858,'_yoast_wpseo_wordproof_timestamp',''),(4605,2858,'_yoast_wpseo_focuskw','near Columbus'),(4606,2858,'_yoast_wpseo_title','Gynecomastia Surgeon Near Columbus, GA (Male Breast Reduction)'),(4607,2858,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Columbus, Georgia, reach out to the Atlanta Gynecomastia Center.'),(4608,2858,'_yoast_wpseo_linkdex','69'),(4610,2858,'_kad_blocks_custom_css',''),(4611,2858,'_kad_blocks_head_custom_js',''),(4612,2858,'_kad_blocks_body_custom_js',''),(4613,2858,'_kad_blocks_footer_custom_js',''),(4615,2858,'_dp_original','2854'),(4616,2858,'_edit_lock','1711979726:1'),(4618,2858,'_edit_last','1'),(4619,2860,'_menu_item_type','post_type'),(4620,2860,'_menu_item_menu_item_parent','1492'),(4621,2860,'_menu_item_object_id','2858'),(4622,2860,'_menu_item_object','page'),(4623,2860,'_menu_item_target',''),(4624,2860,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4625,2860,'_menu_item_xfn',''),(4626,2860,'_menu_item_url',''),(4636,2862,'wpil_links_inbound_internal_count_data','eJztmM9u4yAQxl8l4t618V8yeYVtu7c9WhSThF0HW0C0sqq8+w6hrVIVqZeeCjcGD59nRj8J8XGgHTwrKHePQFsgvxc1DffzKKfhp9J/CTB4ttADmTAa1Eh2PtdCDeRsJoKrrgJydG6xUBRa/vsjjZXrYdVSzCduneJCaifNDwwLMWvHhStOXB+5c1zf6VUUXqVBkdk6v6wpkE+EfBoDonysOZbxBDSILFeRD7388ttAK98M1hv6oA2r8BRmOuUmSXYPQcOtiyS3ctgkEOu4O9uQhPPwrWA9IW7DfOybhJ3OhxDgSTEp8fqNXTWVU7MOG77Q2Ry4VmJwhu/3SrwdlKNys3nJw6lwsR9u/nu5JnEtjj7JwhbI/etgyYs0H0c5Dk/rsGBFSvtJlaGMaRY8lPG+nwsOJkEYqq7tMwwRGKoEYaDbssswRGCo04SBZRgiMDRJwkBphiECQ5skDGWGIQZDlyAMVdflayIGQ58iDKzNMMRgYCnC0LP8tIzBsE0RBpavibjplKIFifdEk2mI0ZCkB8n6bEhHaUjRhKwYy6/LKA0pupAVa/JNEaUhSRuyYZmGKA0p+pB1sy2/Ew01St3Oa2PP5iDNutGSm81XgHL5D7KI0Gw='),(4638,2862,'wpil_links_outbound_internal_count_data','eJzdml1v2zYUhv8Koav1Qo0lWR9mrtJ02Fq0adAMyKVBS7TNWSYNkorhFfnvO5Sc1F4DLCaTSOCNYUqHFPXqweHhKxEcJ/gHw6PzbzhKcXC7YfX0q6hoPf3C+CrABf6hcI6DGlpTVgXnJlbhBAeNrAP4Nx7hYKn1RuGzM063f1Op6G6x47QUa6I0IyXlmsr30Dxr4yFcKG3+JhEO/qeLCStwwEybE7jgDEfdIJt2kF9mfW0O4yg2046hYzvjKIkn0AsiNdM1Dc6vujH0bkODw+EUznCgNNGN6oLgzksBF+e6a6edEupxCFU3i64BPcualQ/ninZMppng3QEzUSEXhLNyqiWZz1n52JFWTAu5jwNVSDmfHlz3vg0ivFyaIBAONL+iW/S5VQ79cSAdumy1C/YXJFVFq+lsN93APBk3+o26ydWiJN3kju/yHuSyhiGPnw/D4eFQ0jtGtyqETmHXqzdY4qLIfIIlBlgO9UJ7rZ0Qia0RybLnI2KuSEpt4ohcDQKOvMh9giNrEwmI60RDYp8wTlg9HmhYknJFuYLfQRBRFJFPRETwRP58VNgJi7E9FhZJYkuVLpfwQ2VYiobrXYvHTshVj3CkhVdwwOC3P3VGl63OTpCk9pBEp0PSBYUl29PRe/IYj73iA0L2ReklcwQje1MwjLaUh0zVhFdDSByZX4kDns5NKzH61ErshEZuX31OTkeDVgsokcyyMoiMkXqVMeB5/P6grxMTxdsyUbN/yIzq5TCYyGPfmHjQ14mJyZsyIRodinmoxZaHG5gSRKjemEjGk5FPTBgX41ujkZijv0BgdL0X2M3osrc90+T5gGyXRENlEcJp0Z8HmkZe7VOT7D+21m9rUlM0kxSaSNKqKc1137kBYm+FpidkkCMr1DyQ/vJGNC68Wkviopu7SRxHuKhGLqh026JE9jZocYLxdYTHft5hJUrQYRCOeRTnqU/MjGFaH+V7WGOaGn0XivIZlQv09SOCjQsyZy5mkizJ2qxCS7KCM24YOfinhVOWIVVT6/DwRH8QTUZe7XhjaF0YeY9fz928RNqxN1aLE8qWJ3kRNVUmZjDQePWuzgh38ajxK5Bj77YWYydyZqLazRpWV1QOBR3P6mG4sw8/RX4FduwN2eIEQ/YJdn75UkDBDPvMOV6BE8NG5QiW73uFX4Yae6/WsbbZKNpUYhC5Js5Sr74aMLXNtWrosbwvw4u9j1uc8NL4KV6a+XwXcrbZwPI7jDUqzvx6C5TAw7o2MqOrVuZXWKTsLd/czbCBXSITA6ltkrFn36TAo7lp9T0ixomU2N77ndh6N0+UM2RuXixuKVssdVgL1ecbgzzxCRrzkexRfrkwUqPbVmr0BaR248feGs5sy+G999df6ZtlXm23TR2zZpytSV3vEON3RLE7+iLWcGxvDff7Rb3E+flbfm5+/y+PIQak'),(4640,2862,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4648,2862,'wpil_links_inbound_internal_count_data','eJztmM9u4yAQxl8l4t618V8yeYVtu7c9WhSThF0HW0C0sqq8+w6hrVIVqZeeCjcGD59nRj8J8XGgHTwrKHePQFsgvxc1DffzKKfhp9J/CTB4ttADmTAa1Eh2PtdCDeRsJoKrrgJydG6xUBRa/vsjjZXrYdVSzCduneJCaifNDwwLMWvHhStOXB+5c1zf6VUUXqVBkdk6v6wpkE+EfBoDonysOZbxBDSILFeRD7388ttAK98M1hv6oA2r8BRmOuUmSXYPQcOtiyS3ctgkEOu4O9uQhPPwrWA9IW7DfOybhJ3OhxDgSTEp8fqNXTWVU7MOG77Q2Ry4VmJwhu/3SrwdlKNys3nJw6lwsR9u/nu5JnEtjj7JwhbI/etgyYs0H0c5Dk/rsGBFSvtJlaGMaRY8lPG+nwsOJkEYqq7tMwwRGKoEYaDbssswRGCo04SBZRgiMDRJwkBphiECQ5skDGWGIQZDlyAMVdflayIGQ58iDKzNMMRgYCnC0LP8tIzBsE0RBpavibjplKIFifdEk2mI0ZCkB8n6bEhHaUjRhKwYy6/LKA0pupAVa/JNEaUhSRuyYZmGKA0p+pB1sy2/Ew01St3Oa2PP5iDNutGSm81XgHL5D7KI0Gw='),(4649,2862,'wpil_links_inbound_internal_count_data','eJztmM9u4yAQxl8l4t618V8yeYVtu7c9WhSThF0HW0C0sqq8+w6hrVIVqZeeCjcGD59nRj8J8XGgHTwrKHePQFsgvxc1DffzKKfhp9J/CTB4ttADmTAa1Eh2PtdCDeRsJoKrrgJydG6xUBRa/vsjjZXrYdVSzCduneJCaifNDwwLMWvHhStOXB+5c1zf6VUUXqVBkdk6v6wpkE+EfBoDonysOZbxBDSILFeRD7388ttAK98M1hv6oA2r8BRmOuUmSXYPQcOtiyS3ctgkEOu4O9uQhPPwrWA9IW7DfOybhJ3OhxDgSTEp8fqNXTWVU7MOG77Q2Ry4VmJwhu/3SrwdlKNys3nJw6lwsR9u/nu5JnEtjj7JwhbI/etgyYs0H0c5Dk/rsGBFSvtJlaGMaRY8lPG+nwsOJkEYqq7tMwwRGKoEYaDbssswRGCo04SBZRgiMDRJwkBphiECQ5skDGWGIQZDlyAMVdflayIGQ58iDKzNMMRgYCnC0LP8tIzBsE0RBpavibjplKIFifdEk2mI0ZCkB8n6bEhHaUjRhKwYy6/LKA0pupAVa/JNEaUhSRuyYZmGKA0p+pB1sy2/Ew01St3Oa2PP5iDNutGSm81XgHL5D7KI0Gw='),(4650,2862,'wpil_links_inbound_internal_count_data','eJztmM9u4yAQxl8l4t618V8yeYVtu7c9WhSThF0HW0C0sqq8+w6hrVIVqZeeCjcGD59nRj8J8XGgHTwrKHePQFsgvxc1DffzKKfhp9J/CTB4ttADmTAa1Eh2PtdCDeRsJoKrrgJydG6xUBRa/vsjjZXrYdVSzCduneJCaifNDwwLMWvHhStOXB+5c1zf6VUUXqVBkdk6v6wpkE+EfBoDonysOZbxBDSILFeRD7388ttAK98M1hv6oA2r8BRmOuUmSXYPQcOtiyS3ctgkEOu4O9uQhPPwrWA9IW7DfOybhJ3OhxDgSTEp8fqNXTWVU7MOG77Q2Ry4VmJwhu/3SrwdlKNys3nJw6lwsR9u/nu5JnEtjj7JwhbI/etgyYs0H0c5Dk/rsGBFSvtJlaGMaRY8lPG+nwsOJkEYqq7tMwwRGKoEYaDbssswRGCo04SBZRgiMDRJwkBphiECQ5skDGWGIQZDlyAMVdflayIGQ58iDKzNMMRgYCnC0LP8tIzBsE0RBpavibjplKIFifdEk2mI0ZCkB8n6bEhHaUjRhKwYy6/LKA0pupAVa/JNEaUhSRuyYZmGKA0p+pB1sy2/Ew01St3Oa2PP5iDNutGSm81XgHL5D7KI0Gw='),(4651,2862,'wpil_links_inbound_internal_count_data','eJztmM9u4yAQxl8l4t618V8yeYVtu7c9WhSThF0HW0C0sqq8+w6hrVIVqZeeCjcGD59nRj8J8XGgHTwrKHePQFsgvxc1DffzKKfhp9J/CTB4ttADmTAa1Eh2PtdCDeRsJoKrrgJydG6xUBRa/vsjjZXrYdVSzCduneJCaifNDwwLMWvHhStOXB+5c1zf6VUUXqVBkdk6v6wpkE+EfBoDonysOZbxBDSILFeRD7388ttAK98M1hv6oA2r8BRmOuUmSXYPQcOtiyS3ctgkEOu4O9uQhPPwrWA9IW7DfOybhJ3OhxDgSTEp8fqNXTWVU7MOG77Q2Ry4VmJwhu/3SrwdlKNys3nJw6lwsR9u/nu5JnEtjj7JwhbI/etgyYs0H0c5Dk/rsGBFSvtJlaGMaRY8lPG+nwsOJkEYqq7tMwwRGKoEYaDbssswRGCo04SBZRgiMDRJwkBphiECQ5skDGWGIQZDlyAMVdflayIGQ58iDKzNMMRgYCnC0LP8tIzBsE0RBpavibjplKIFifdEk2mI0ZCkB8n6bEhHaUjRhKwYy6/LKA0pupAVa/JNEaUhSRuyYZmGKA0p+pB1sy2/Ew01St3Oa2PP5iDNutGSm81XgHL5D7KI0Gw='),(4655,2862,'wpil_links_outbound_internal_count_data','eJzdml1v2zYUhv8Koav1Qo0lWR9mrtJ02Fq0adAMyKVBS7TNWSYNkorhFfnvO5Sc1F4DLCaTSOCNYUqHFPXqweHhKxEcJ/gHw6PzbzhKcXC7YfX0q6hoPf3C+CrABf6hcI6DGlpTVgXnJlbhBAeNrAP4Nx7hYKn1RuGzM063f1Op6G6x47QUa6I0IyXlmsr30Dxr4yFcKG3+JhEO/qeLCStwwEybE7jgDEfdIJt2kF9mfW0O4yg2046hYzvjKIkn0AsiNdM1Dc6vujH0bkODw+EUznCgNNGN6oLgzksBF+e6a6edEupxCFU3i64BPcualQ/ninZMppng3QEzUSEXhLNyqiWZz1n52JFWTAu5jwNVSDmfHlz3vg0ivFyaIBAONL+iW/S5VQ79cSAdumy1C/YXJFVFq+lsN93APBk3+o26ydWiJN3kju/yHuSyhiGPnw/D4eFQ0jtGtyqETmHXqzdY4qLIfIIlBlgO9UJ7rZ0Qia0RybLnI2KuSEpt4ohcDQKOvMh9giNrEwmI60RDYp8wTlg9HmhYknJFuYLfQRBRFJFPRETwRP58VNgJi7E9FhZJYkuVLpfwQ2VYiobrXYvHTshVj3CkhVdwwOC3P3VGl63OTpCk9pBEp0PSBYUl29PRe/IYj73iA0L2ReklcwQje1MwjLaUh0zVhFdDSByZX4kDns5NKzH61ErshEZuX31OTkeDVgsokcyyMoiMkXqVMeB5/P6grxMTxdsyUbN/yIzq5TCYyGPfmHjQ14mJyZsyIRodinmoxZaHG5gSRKjemEjGk5FPTBgX41ujkZijv0BgdL0X2M3osrc90+T5gGyXRENlEcJp0Z8HmkZe7VOT7D+21m9rUlM0kxSaSNKqKc1137kBYm+FpidkkCMr1DyQ/vJGNC68Wkviopu7SRxHuKhGLqh026JE9jZocYLxdYTHft5hJUrQYRCOeRTnqU/MjGFaH+V7WGOaGn0XivIZlQv09SOCjQsyZy5mkizJ2qxCS7KCM24YOfinhVOWIVVT6/DwRH8QTUZe7XhjaF0YeY9fz928RNqxN1aLE8qWJ3kRNVUmZjDQePWuzgh38ajxK5Bj77YWYydyZqLazRpWV1QOBR3P6mG4sw8/RX4FduwN2eIEQ/YJdn75UkDBDPvMOV6BE8NG5QiW73uFX4Yae6/WsbbZKNpUYhC5Js5Sr74aMLXNtWrosbwvw4u9j1uc8NL4KV6a+XwXcrbZwPI7jDUqzvx6C5TAw7o2MqOrVuZXWKTsLd/czbCBXSITA6ltkrFn36TAo7lp9T0ixomU2N77ndh6N0+UM2RuXixuKVssdVgL1ecbgzzxCRrzkexRfrkwUqPbVmr0BaR248feGs5sy+G999df6ZtlXm23TR2zZpytSV3vEON3RLE7+iLWcGxvDff7Rb3E+flbfm5+/y+PIQak'),(4656,2862,'wpil_links_outbound_internal_count_data','eJzdml1v2zYUhv8Koav1Qo0lWR9mrtJ02Fq0adAMyKVBS7TNWSYNkorhFfnvO5Sc1F4DLCaTSOCNYUqHFPXqweHhKxEcJ/gHw6PzbzhKcXC7YfX0q6hoPf3C+CrABf6hcI6DGlpTVgXnJlbhBAeNrAP4Nx7hYKn1RuGzM063f1Op6G6x47QUa6I0IyXlmsr30Dxr4yFcKG3+JhEO/qeLCStwwEybE7jgDEfdIJt2kF9mfW0O4yg2046hYzvjKIkn0AsiNdM1Dc6vujH0bkODw+EUznCgNNGN6oLgzksBF+e6a6edEupxCFU3i64BPcualQ/ninZMppng3QEzUSEXhLNyqiWZz1n52JFWTAu5jwNVSDmfHlz3vg0ivFyaIBAONL+iW/S5VQ79cSAdumy1C/YXJFVFq+lsN93APBk3+o26ydWiJN3kju/yHuSyhiGPnw/D4eFQ0jtGtyqETmHXqzdY4qLIfIIlBlgO9UJ7rZ0Qia0RybLnI2KuSEpt4ohcDQKOvMh9giNrEwmI60RDYp8wTlg9HmhYknJFuYLfQRBRFJFPRETwRP58VNgJi7E9FhZJYkuVLpfwQ2VYiobrXYvHTshVj3CkhVdwwOC3P3VGl63OTpCk9pBEp0PSBYUl29PRe/IYj73iA0L2ReklcwQje1MwjLaUh0zVhFdDSByZX4kDns5NKzH61ErshEZuX31OTkeDVgsokcyyMoiMkXqVMeB5/P6grxMTxdsyUbN/yIzq5TCYyGPfmHjQ14mJyZsyIRodinmoxZaHG5gSRKjemEjGk5FPTBgX41ujkZijv0BgdL0X2M3osrc90+T5gGyXRENlEcJp0Z8HmkZe7VOT7D+21m9rUlM0kxSaSNKqKc1137kBYm+FpidkkCMr1DyQ/vJGNC68Wkviopu7SRxHuKhGLqh026JE9jZocYLxdYTHft5hJUrQYRCOeRTnqU/MjGFaH+V7WGOaGn0XivIZlQv09SOCjQsyZy5mkizJ2qxCS7KCM24YOfinhVOWIVVT6/DwRH8QTUZe7XhjaF0YeY9fz928RNqxN1aLE8qWJ3kRNVUmZjDQePWuzgh38ajxK5Bj77YWYydyZqLazRpWV1QOBR3P6mG4sw8/RX4FduwN2eIEQ/YJdn75UkDBDPvMOV6BE8NG5QiW73uFX4Yae6/WsbbZKNpUYhC5Js5Sr74aMLXNtWrosbwvw4u9j1uc8NL4KV6a+XwXcrbZwPI7jDUqzvx6C5TAw7o2MqOrVuZXWKTsLd/czbCBXSITA6ltkrFn36TAo7lp9T0ixomU2N77ndh6N0+UM2RuXixuKVssdVgL1ecbgzzxCRrzkexRfrkwUqPbVmr0BaR248feGs5sy+G999df6ZtlXm23TR2zZpytSV3vEON3RLE7+iLWcGxvDff7Rb3E+flbfm5+/y+PIQak'),(4657,2862,'wpil_links_outbound_internal_count_data','eJzdml1v2zYUhv8Koav1Qo0lWR9mrtJ02Fq0adAMyKVBS7TNWSYNkorhFfnvO5Sc1F4DLCaTSOCNYUqHFPXqweHhKxEcJ/gHw6PzbzhKcXC7YfX0q6hoPf3C+CrABf6hcI6DGlpTVgXnJlbhBAeNrAP4Nx7hYKn1RuGzM063f1Op6G6x47QUa6I0IyXlmsr30Dxr4yFcKG3+JhEO/qeLCStwwEybE7jgDEfdIJt2kF9mfW0O4yg2046hYzvjKIkn0AsiNdM1Dc6vujH0bkODw+EUznCgNNGN6oLgzksBF+e6a6edEupxCFU3i64BPcualQ/ninZMppng3QEzUSEXhLNyqiWZz1n52JFWTAu5jwNVSDmfHlz3vg0ivFyaIBAONL+iW/S5VQ79cSAdumy1C/YXJFVFq+lsN93APBk3+o26ydWiJN3kju/yHuSyhiGPnw/D4eFQ0jtGtyqETmHXqzdY4qLIfIIlBlgO9UJ7rZ0Qia0RybLnI2KuSEpt4ohcDQKOvMh9giNrEwmI60RDYp8wTlg9HmhYknJFuYLfQRBRFJFPRETwRP58VNgJi7E9FhZJYkuVLpfwQ2VYiobrXYvHTshVj3CkhVdwwOC3P3VGl63OTpCk9pBEp0PSBYUl29PRe/IYj73iA0L2ReklcwQje1MwjLaUh0zVhFdDSByZX4kDns5NKzH61ErshEZuX31OTkeDVgsokcyyMoiMkXqVMeB5/P6grxMTxdsyUbN/yIzq5TCYyGPfmHjQ14mJyZsyIRodinmoxZaHG5gSRKjemEjGk5FPTBgX41ujkZijv0BgdL0X2M3osrc90+T5gGyXRENlEcJp0Z8HmkZe7VOT7D+21m9rUlM0kxSaSNKqKc1137kBYm+FpidkkCMr1DyQ/vJGNC68Wkviopu7SRxHuKhGLqh026JE9jZocYLxdYTHft5hJUrQYRCOeRTnqU/MjGFaH+V7WGOaGn0XivIZlQv09SOCjQsyZy5mkizJ2qxCS7KCM24YOfinhVOWIVVT6/DwRH8QTUZe7XhjaF0YeY9fz928RNqxN1aLE8qWJ3kRNVUmZjDQePWuzgh38ajxK5Bj77YWYydyZqLazRpWV1QOBR3P6mG4sw8/RX4FduwN2eIEQ/YJdn75UkDBDPvMOV6BE8NG5QiW73uFX4Yae6/WsbbZKNpUYhC5Js5Sr74aMLXNtWrosbwvw4u9j1uc8NL4KV6a+XwXcrbZwPI7jDUqzvx6C5TAw7o2MqOrVuZXWKTsLd/czbCBXSITA6ltkrFn36TAo7lp9T0ixomU2N77ndh6N0+UM2RuXixuKVssdVgL1ecbgzzxCRrzkexRfrkwUqPbVmr0BaR248feGs5sy+G999df6ZtlXm23TR2zZpytSV3vEON3RLE7+iLWcGxvDff7Rb3E+flbfm5+/y+PIQak'),(4658,2862,'wpil_links_outbound_internal_count_data','eJzdml1v2zYUhv8Koav1Qo0lWR9mrtJ02Fq0adAMyKVBS7TNWSYNkorhFfnvO5Sc1F4DLCaTSOCNYUqHFPXqweHhKxEcJ/gHw6PzbzhKcXC7YfX0q6hoPf3C+CrABf6hcI6DGlpTVgXnJlbhBAeNrAP4Nx7hYKn1RuGzM063f1Op6G6x47QUa6I0IyXlmsr30Dxr4yFcKG3+JhEO/qeLCStwwEybE7jgDEfdIJt2kF9mfW0O4yg2046hYzvjKIkn0AsiNdM1Dc6vujH0bkODw+EUznCgNNGN6oLgzksBF+e6a6edEupxCFU3i64BPcualQ/ninZMppng3QEzUSEXhLNyqiWZz1n52JFWTAu5jwNVSDmfHlz3vg0ivFyaIBAONL+iW/S5VQ79cSAdumy1C/YXJFVFq+lsN93APBk3+o26ydWiJN3kju/yHuSyhiGPnw/D4eFQ0jtGtyqETmHXqzdY4qLIfIIlBlgO9UJ7rZ0Qia0RybLnI2KuSEpt4ohcDQKOvMh9giNrEwmI60RDYp8wTlg9HmhYknJFuYLfQRBRFJFPRETwRP58VNgJi7E9FhZJYkuVLpfwQ2VYiobrXYvHTshVj3CkhVdwwOC3P3VGl63OTpCk9pBEp0PSBYUl29PRe/IYj73iA0L2ReklcwQje1MwjLaUh0zVhFdDSByZX4kDns5NKzH61ErshEZuX31OTkeDVgsokcyyMoiMkXqVMeB5/P6grxMTxdsyUbN/yIzq5TCYyGPfmHjQ14mJyZsyIRodinmoxZaHG5gSRKjemEjGk5FPTBgX41ujkZijv0BgdL0X2M3osrc90+T5gGyXRENlEcJp0Z8HmkZe7VOT7D+21m9rUlM0kxSaSNKqKc1137kBYm+FpidkkCMr1DyQ/vJGNC68Wkviopu7SRxHuKhGLqh026JE9jZocYLxdYTHft5hJUrQYRCOeRTnqU/MjGFaH+V7WGOaGn0XivIZlQv09SOCjQsyZy5mkizJ2qxCS7KCM24YOfinhVOWIVVT6/DwRH8QTUZe7XhjaF0YeY9fz928RNqxN1aLE8qWJ3kRNVUmZjDQePWuzgh38ajxK5Bj77YWYydyZqLazRpWV1QOBR3P6mG4sw8/RX4FduwN2eIEQ/YJdn75UkDBDPvMOV6BE8NG5QiW73uFX4Yae6/WsbbZKNpUYhC5Js5Sr74aMLXNtWrosbwvw4u9j1uc8NL4KV6a+XwXcrbZwPI7jDUqzvx6C5TAw7o2MqOrVuZXWKTsLd/czbCBXSITA6ltkrFn36TAo7lp9T0ixomU2N77ndh6N0+UM2RuXixuKVssdVgL1ecbgzzxCRrzkexRfrkwUqPbVmr0BaR248feGs5sy+G999df6ZtlXm23TR2zZpytSV3vEON3RLE7+iLWcGxvDff7Rb3E+flbfm5+/y+PIQak'),(4662,2862,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4663,2862,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4664,2862,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4665,2862,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4669,2862,'kt_blocks_editor_width',''),(4670,2862,'_kad_post_transparent',''),(4671,2862,'_kad_post_title','default'),(4672,2862,'_kad_post_layout','default'),(4673,2862,'_kad_post_sidebar_id',''),(4674,2862,'_kad_post_content_style','default'),(4675,2862,'_kad_post_vertical_padding','default'),(4676,2862,'_kad_post_feature','default'),(4677,2862,'_kad_post_feature_position',''),(4678,2862,'_kad_post_header',''),(4679,2862,'_kad_post_footer',''),(4680,2862,'_has_fluentform','a:0:{}'),(4681,2862,'_wp_page_template','default'),(4683,2862,'footnotes',''),(4684,2862,'_kadence_starter_templates_imported_post','1'),(4685,2862,'_yoast_wpseo_content_score','90'),(4686,2862,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4687,2862,'_yoast_wpseo_wordproof_timestamp',''),(4688,2862,'_yoast_wpseo_focuskw','near Roswell'),(4689,2862,'_yoast_wpseo_title','Gynecomastia Surgeon Near Roswell, GA (Male Breast Reduction)'),(4690,2862,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Roswell, Georgia, reach out to the Atlanta Gynecomastia Center.'),(4691,2862,'_yoast_wpseo_linkdex','60'),(4693,2862,'_kad_blocks_custom_css',''),(4694,2862,'_kad_blocks_head_custom_js',''),(4695,2862,'_kad_blocks_body_custom_js',''),(4696,2862,'_kad_blocks_footer_custom_js',''),(4698,2862,'_dp_original','2854'),(4706,2862,'_edit_lock','1711750410:1'),(4708,2862,'_edit_last','1'),(4709,2866,'_menu_item_type','post_type'),(4710,2866,'_menu_item_menu_item_parent','1492'),(4711,2866,'_menu_item_object_id','2862'),(4712,2866,'_menu_item_object','page'),(4713,2866,'_menu_item_target',''),(4714,2866,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4715,2866,'_menu_item_xfn',''),(4716,2866,'_menu_item_url',''),(4726,2868,'wpil_links_inbound_internal_count_data','eJztmM1u3CAQx19lxX1rw/qDZZ8gUr+kHnq0CGY3NAQsYFVZ0b57B5NGqSrUS06FG4Nn/p4Z/2TEcIYH9qxYe/rCcM/Q90Xp6ZOdpZ4+KvOIGGXPno0MabAmNaNT9PXswNDVaQSrETP0EMLiWdMY+fOHdF6ul9VIYZ+4D4oLaYJ0H8BshDWBi9D4wIM0e+U1N/MeovardY9NlOtAzfoQlwdQ/odidKMMqWgbDvncM5xElk3kr6K+xm2GSayKQOBWEO4ogSjwDCpoiU6fk0ZYF4neynk2MBSTv/rkBI2JNUE+ye5To/yrhNfXSzIgUmglfj+jm6YKypq0ERO17sKNElNw/HxW4jVQzipY9+IHXeHiPL15721z4kY8RCdwga/zbWvx7m5rMXrR5/Ms5+l+nRZIS5nYrjbloq3gKZc/i7pBd0pGgwz9WNHIoUFKRgMf26GikUPjUDgatKKRQ6MrGw2MKxo5NPqy0WgrGlk0hpLRIMNQD5QsGmPRaNC+opFFgxaNxkjr5TWLxrFoNGjfVTSyI6+ix6GEjnUcmmej7HkopfWOkmej6IEooV09U/JsFD0RJXSoZ0qejbJHoh2t/408G0XPRA/dsf2f2CAxy6u7SLfujORu916g3H4BsowZhg=='),(4728,2868,'wpil_links_outbound_internal_count_data','eJzdm21v6jYUx79KlEnT9iItSSAEo2rqeqdN0+2D7p3Ul8gkhngNdmQ7Zazqd9+xAy3cIu3GoU2UNwiTE5+Tv38c28eAURCiJ4oG01vkj5B7X9B8ds1Tks8+U/bgohg9STRGbg6tGU3dqbaVKERuKXIX3g0HyM2UKiQ6P2dk/TcRkmyWG0YSvsJSUZwQpog4g+a5sQdzLpV+G/rI/Z9btFmMXKrbDIPDOfKrTgrTyZuo7/THyA902AHcaCL2w2ACd4Gloion7vSm6kNtCuLudydRhFypsCplZQRPnnBwzlTVHlVKyJcuZF4uqwbcmeQ02V2LTZ9UUc6qD3SgXCwxo8lMCbxY0OTlRpJSxcXWDlTByWK25/fZGGGWZNoIhAPNb8ja+dMo5/y+J51zZbRztw5xmpJ0Nt/MCoiTMq3foAou5wmugjt8ymeQyxqGcfD9MOx/7AnySMlaenCTV93VGixBHEd9giUAWPb1crZaN0IksEYkqoGI9ogTdb7CLMNKYeaxTdIiGFFQHwyjRlHOcyqzb4U8hORWxyhVepVjKV248GT61IN1UuE0P0aR4fd3uC48nK4oO9dPeFZkxS/6zYWW5McfBmE8BW9AysWub43pPwUXpjGpEflbR1gQfLHWY1P1WPnTl4EvE4EhOdAeE7KzMn7jU/l97fe4dxhUQRaCVEPsBzaOzWslLV6SC/MFWmdUFkRUTjVnF8azAQa+8yVTs7JIsSLHwnpuL+dMkHu9Q69Rngntp6Ia65Ld1yXDyQNhEl47MhH5fZqIfBiRP14UboTF0H76iepjAXZYdAOJcTzuExKRWceCuI1oGNknCb8+DZWRl1C16QQS8XDYJyS0yXZfcwUSNwIjsgfDIk2siVRJBi9EeGZurvjYcPHQIh2juFd0QOf3rzo7V0bnRpCM7eeSSX1ISLqEhKcR6UTuGPUqd8B4/LbTtxET8ccykdN/8ZyorBtMjC12ud1mYqdvIyYmH8oEL5XHF57ia+YVEBJYyNaYCIeTQZ+Y0CWx21I5fOH8BQI7d1uBm1VN7Wvoo7BGvQB21R6VHlzm7RXUR36vtqZh9E2N9KcVzokzFwSajiBpacpbPzcDxL6uPqqRQQ7q6npA2ssb/jDu1Vyi63o6dp04DnCRpVgS0Wwd6tvX1OMata4DPLZxeylPQIdOHL/4wXjUJ2aGENYncQZzTJk7X7gkbE7E0rn+5GCWOvrK5VzgDK/0LJThB7jSDKMGJdMaZesjWQanZa68/QvtQTQZ9GrbG0DrUst7eNb79RRpx76WGtdYthzlhedEapvOQNOrg18t3OWLxu9Ajn3dtc7R4xFy5jzdzEuap0R0BZ2erYfhyX59Ffkd2LEvzcY1avZH2HnzsxMJEbaZc3oFTgAblQNYvmwVPg019rXahmubQpIy5Z3INUE06tUZoF7b3MmSHMp7Gl7s67hxjQOgY7yUi8XGY7QoYPrtxhwVRFGv1sQhDNadltm5MTK/wyRlX/IdNyvYwC6R8o6sbcJhz36GAkPz1eh7QEwjUgL72u/EtnZzZDmDF/pgcU3oMlNezmWbJwbjsE/Q6F9cH+SXSy21c2+kdj6D1M34sS8NR7bL4W3tr72lbxT1arut1zEryugK5/nGoewRS/pITlIaDuxLw+3+PUOg8fQj/7vw/B+y3tik'),(4730,2868,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4738,2868,'wpil_links_inbound_internal_count_data','eJztmM1u3CAQx19lxX1rw/qDZZ8gUr+kHnq0CGY3NAQsYFVZ0b57B5NGqSrUS06FG4Nn/p4Z/2TEcIYH9qxYe/rCcM/Q90Xp6ZOdpZ4+KvOIGGXPno0MabAmNaNT9PXswNDVaQSrETP0EMLiWdMY+fOHdF6ul9VIYZ+4D4oLaYJ0H8BshDWBi9D4wIM0e+U1N/MeovardY9NlOtAzfoQlwdQ/odidKMMqWgbDvncM5xElk3kr6K+xm2GSayKQOBWEO4ogSjwDCpoiU6fk0ZYF4neynk2MBSTv/rkBI2JNUE+ye5To/yrhNfXSzIgUmglfj+jm6YKypq0ERO17sKNElNw/HxW4jVQzipY9+IHXeHiPL15721z4kY8RCdwga/zbWvx7m5rMXrR5/Ms5+l+nRZIS5nYrjbloq3gKZc/i7pBd0pGgwz9WNHIoUFKRgMf26GikUPjUDgatKKRQ6MrGw2MKxo5NPqy0WgrGlk0hpLRIMNQD5QsGmPRaNC+opFFgxaNxkjr5TWLxrFoNGjfVTSyI6+ix6GEjnUcmmej7HkopfWOkmej6IEooV09U/JsFD0RJXSoZ0qejbJHoh2t/408G0XPRA/dsf2f2CAxy6u7SLfujORu916g3H4BsowZhg=='),(4739,2868,'wpil_links_inbound_internal_count_data','eJztmM1u3CAQx19lxX1rw/qDZZ8gUr+kHnq0CGY3NAQsYFVZ0b57B5NGqSrUS06FG4Nn/p4Z/2TEcIYH9qxYe/rCcM/Q90Xp6ZOdpZ4+KvOIGGXPno0MabAmNaNT9PXswNDVaQSrETP0EMLiWdMY+fOHdF6ul9VIYZ+4D4oLaYJ0H8BshDWBi9D4wIM0e+U1N/MeovardY9NlOtAzfoQlwdQ/odidKMMqWgbDvncM5xElk3kr6K+xm2GSayKQOBWEO4ogSjwDCpoiU6fk0ZYF4neynk2MBSTv/rkBI2JNUE+ye5To/yrhNfXSzIgUmglfj+jm6YKypq0ERO17sKNElNw/HxW4jVQzipY9+IHXeHiPL15721z4kY8RCdwga/zbWvx7m5rMXrR5/Ms5+l+nRZIS5nYrjbloq3gKZc/i7pBd0pGgwz9WNHIoUFKRgMf26GikUPjUDgatKKRQ6MrGw2MKxo5NPqy0WgrGlk0hpLRIMNQD5QsGmPRaNC+opFFgxaNxkjr5TWLxrFoNGjfVTSyI6+ix6GEjnUcmmej7HkopfWOkmej6IEooV09U/JsFD0RJXSoZ0qejbJHoh2t/408G0XPRA/dsf2f2CAxy6u7SLfujORu916g3H4BsowZhg=='),(4740,2868,'wpil_links_inbound_internal_count_data','eJztmM1u3CAQx19lxX1rw/qDZZ8gUr+kHnq0CGY3NAQsYFVZ0b57B5NGqSrUS06FG4Nn/p4Z/2TEcIYH9qxYe/rCcM/Q90Xp6ZOdpZ4+KvOIGGXPno0MabAmNaNT9PXswNDVaQSrETP0EMLiWdMY+fOHdF6ul9VIYZ+4D4oLaYJ0H8BshDWBi9D4wIM0e+U1N/MeovardY9NlOtAzfoQlwdQ/odidKMMqWgbDvncM5xElk3kr6K+xm2GSayKQOBWEO4ogSjwDCpoiU6fk0ZYF4neynk2MBSTv/rkBI2JNUE+ye5To/yrhNfXSzIgUmglfj+jm6YKypq0ERO17sKNElNw/HxW4jVQzipY9+IHXeHiPL15721z4kY8RCdwga/zbWvx7m5rMXrR5/Ms5+l+nRZIS5nYrjbloq3gKZc/i7pBd0pGgwz9WNHIoUFKRgMf26GikUPjUDgatKKRQ6MrGw2MKxo5NPqy0WgrGlk0hpLRIMNQD5QsGmPRaNC+opFFgxaNxkjr5TWLxrFoNGjfVTSyI6+ix6GEjnUcmmej7HkopfWOkmej6IEooV09U/JsFD0RJXSoZ0qejbJHoh2t/408G0XPRA/dsf2f2CAxy6u7SLfujORu916g3H4BsowZhg=='),(4741,2868,'wpil_links_inbound_internal_count_data','eJztmM1u3CAQx19lxX1rw/qDZZ8gUr+kHnq0CGY3NAQsYFVZ0b57B5NGqSrUS06FG4Nn/p4Z/2TEcIYH9qxYe/rCcM/Q90Xp6ZOdpZ4+KvOIGGXPno0MabAmNaNT9PXswNDVaQSrETP0EMLiWdMY+fOHdF6ul9VIYZ+4D4oLaYJ0H8BshDWBi9D4wIM0e+U1N/MeovardY9NlOtAzfoQlwdQ/odidKMMqWgbDvncM5xElk3kr6K+xm2GSayKQOBWEO4ogSjwDCpoiU6fk0ZYF4neynk2MBSTv/rkBI2JNUE+ye5To/yrhNfXSzIgUmglfj+jm6YKypq0ERO17sKNElNw/HxW4jVQzipY9+IHXeHiPL15721z4kY8RCdwga/zbWvx7m5rMXrR5/Ms5+l+nRZIS5nYrjbloq3gKZc/i7pBd0pGgwz9WNHIoUFKRgMf26GikUPjUDgatKKRQ6MrGw2MKxo5NPqy0WgrGlk0hpLRIMNQD5QsGmPRaNC+opFFgxaNxkjr5TWLxrFoNGjfVTSyI6+ix6GEjnUcmmej7HkopfWOkmej6IEooV09U/JsFD0RJXSoZ0qejbJHoh2t/408G0XPRA/dsf2f2CAxy6u7SLfujORu916g3H4BsowZhg=='),(4745,2868,'wpil_links_outbound_internal_count_data','eJzdm21v6jYUx79KlEnT9iItSSAEo2rqeqdN0+2D7p3Ul8gkhngNdmQ7Zazqd9+xAy3cIu3GoU2UNwiTE5+Tv38c28eAURCiJ4oG01vkj5B7X9B8ds1Tks8+U/bgohg9STRGbg6tGU3dqbaVKERuKXIX3g0HyM2UKiQ6P2dk/TcRkmyWG0YSvsJSUZwQpog4g+a5sQdzLpV+G/rI/Z9btFmMXKrbDIPDOfKrTgrTyZuo7/THyA902AHcaCL2w2ACd4Gloion7vSm6kNtCuLudydRhFypsCplZQRPnnBwzlTVHlVKyJcuZF4uqwbcmeQ02V2LTZ9UUc6qD3SgXCwxo8lMCbxY0OTlRpJSxcXWDlTByWK25/fZGGGWZNoIhAPNb8ja+dMo5/y+J51zZbRztw5xmpJ0Nt/MCoiTMq3foAou5wmugjt8ymeQyxqGcfD9MOx/7AnySMlaenCTV93VGixBHEd9giUAWPb1crZaN0IksEYkqoGI9ogTdb7CLMNKYeaxTdIiGFFQHwyjRlHOcyqzb4U8hORWxyhVepVjKV248GT61IN1UuE0P0aR4fd3uC48nK4oO9dPeFZkxS/6zYWW5McfBmE8BW9AysWub43pPwUXpjGpEflbR1gQfLHWY1P1WPnTl4EvE4EhOdAeE7KzMn7jU/l97fe4dxhUQRaCVEPsBzaOzWslLV6SC/MFWmdUFkRUTjVnF8azAQa+8yVTs7JIsSLHwnpuL+dMkHu9Q69Rngntp6Ia65Ld1yXDyQNhEl47MhH5fZqIfBiRP14UboTF0H76iepjAXZYdAOJcTzuExKRWceCuI1oGNknCb8+DZWRl1C16QQS8XDYJyS0yXZfcwUSNwIjsgfDIk2siVRJBi9EeGZurvjYcPHQIh2juFd0QOf3rzo7V0bnRpCM7eeSSX1ISLqEhKcR6UTuGPUqd8B4/LbTtxET8ccykdN/8ZyorBtMjC12ud1mYqdvIyYmH8oEL5XHF57ia+YVEBJYyNaYCIeTQZ+Y0CWx21I5fOH8BQI7d1uBm1VN7Wvoo7BGvQB21R6VHlzm7RXUR36vtqZh9E2N9KcVzokzFwSajiBpacpbPzcDxL6uPqqRQQ7q6npA2ssb/jDu1Vyi63o6dp04DnCRpVgS0Wwd6tvX1OMata4DPLZxeylPQIdOHL/4wXjUJ2aGENYncQZzTJk7X7gkbE7E0rn+5GCWOvrK5VzgDK/0LJThB7jSDKMGJdMaZesjWQanZa68/QvtQTQZ9GrbG0DrUst7eNb79RRpx76WGtdYthzlhedEapvOQNOrg18t3OWLxu9Ajn3dtc7R4xFy5jzdzEuap0R0BZ2erYfhyX59Ffkd2LEvzcY1avZH2HnzsxMJEbaZc3oFTgAblQNYvmwVPg019rXahmubQpIy5Z3INUE06tUZoF7b3MmSHMp7Gl7s67hxjQOgY7yUi8XGY7QoYPrtxhwVRFGv1sQhDNadltm5MTK/wyRlX/IdNyvYwC6R8o6sbcJhz36GAkPz1eh7QEwjUgL72u/EtnZzZDmDF/pgcU3oMlNezmWbJwbjsE/Q6F9cH+SXSy21c2+kdj6D1M34sS8NR7bL4W3tr72lbxT1arut1zEryugK5/nGoewRS/pITlIaDuxLw+3+PUOg8fQj/7vw/B+y3tik'),(4746,2868,'wpil_links_outbound_internal_count_data','eJzdm21v6jYUx79KlEnT9iItSSAEo2rqeqdN0+2D7p3Ul8gkhngNdmQ7Zazqd9+xAy3cIu3GoU2UNwiTE5+Tv38c28eAURCiJ4oG01vkj5B7X9B8ds1Tks8+U/bgohg9STRGbg6tGU3dqbaVKERuKXIX3g0HyM2UKiQ6P2dk/TcRkmyWG0YSvsJSUZwQpog4g+a5sQdzLpV+G/rI/Z9btFmMXKrbDIPDOfKrTgrTyZuo7/THyA902AHcaCL2w2ACd4Gloion7vSm6kNtCuLudydRhFypsCplZQRPnnBwzlTVHlVKyJcuZF4uqwbcmeQ02V2LTZ9UUc6qD3SgXCwxo8lMCbxY0OTlRpJSxcXWDlTByWK25/fZGGGWZNoIhAPNb8ja+dMo5/y+J51zZbRztw5xmpJ0Nt/MCoiTMq3foAou5wmugjt8ymeQyxqGcfD9MOx/7AnySMlaenCTV93VGixBHEd9giUAWPb1crZaN0IksEYkqoGI9ogTdb7CLMNKYeaxTdIiGFFQHwyjRlHOcyqzb4U8hORWxyhVepVjKV248GT61IN1UuE0P0aR4fd3uC48nK4oO9dPeFZkxS/6zYWW5McfBmE8BW9AysWub43pPwUXpjGpEflbR1gQfLHWY1P1WPnTl4EvE4EhOdAeE7KzMn7jU/l97fe4dxhUQRaCVEPsBzaOzWslLV6SC/MFWmdUFkRUTjVnF8azAQa+8yVTs7JIsSLHwnpuL+dMkHu9Q69Rngntp6Ia65Ld1yXDyQNhEl47MhH5fZqIfBiRP14UboTF0H76iepjAXZYdAOJcTzuExKRWceCuI1oGNknCb8+DZWRl1C16QQS8XDYJyS0yXZfcwUSNwIjsgfDIk2siVRJBi9EeGZurvjYcPHQIh2juFd0QOf3rzo7V0bnRpCM7eeSSX1ISLqEhKcR6UTuGPUqd8B4/LbTtxET8ccykdN/8ZyorBtMjC12ud1mYqdvIyYmH8oEL5XHF57ia+YVEBJYyNaYCIeTQZ+Y0CWx21I5fOH8BQI7d1uBm1VN7Wvoo7BGvQB21R6VHlzm7RXUR36vtqZh9E2N9KcVzokzFwSajiBpacpbPzcDxL6uPqqRQQ7q6npA2ssb/jDu1Vyi63o6dp04DnCRpVgS0Wwd6tvX1OMata4DPLZxeylPQIdOHL/4wXjUJ2aGENYncQZzTJk7X7gkbE7E0rn+5GCWOvrK5VzgDK/0LJThB7jSDKMGJdMaZesjWQanZa68/QvtQTQZ9GrbG0DrUst7eNb79RRpx76WGtdYthzlhedEapvOQNOrg18t3OWLxu9Ajn3dtc7R4xFy5jzdzEuap0R0BZ2erYfhyX59Ffkd2LEvzcY1avZH2HnzsxMJEbaZc3oFTgAblQNYvmwVPg019rXahmubQpIy5Z3INUE06tUZoF7b3MmSHMp7Gl7s67hxjQOgY7yUi8XGY7QoYPrtxhwVRFGv1sQhDNadltm5MTK/wyRlX/IdNyvYwC6R8o6sbcJhz36GAkPz1eh7QEwjUgL72u/EtnZzZDmDF/pgcU3oMlNezmWbJwbjsE/Q6F9cH+SXSy21c2+kdj6D1M34sS8NR7bL4W3tr72lbxT1arut1zEryugK5/nGoewRS/pITlIaDuxLw+3+PUOg8fQj/7vw/B+y3tik'),(4747,2868,'wpil_links_outbound_internal_count_data','eJzdm21v6jYUx79KlEnT9iItSSAEo2rqeqdN0+2D7p3Ul8gkhngNdmQ7Zazqd9+xAy3cIu3GoU2UNwiTE5+Tv38c28eAURCiJ4oG01vkj5B7X9B8ds1Tks8+U/bgohg9STRGbg6tGU3dqbaVKERuKXIX3g0HyM2UKiQ6P2dk/TcRkmyWG0YSvsJSUZwQpog4g+a5sQdzLpV+G/rI/Z9btFmMXKrbDIPDOfKrTgrTyZuo7/THyA902AHcaCL2w2ACd4Gloion7vSm6kNtCuLudydRhFypsCplZQRPnnBwzlTVHlVKyJcuZF4uqwbcmeQ02V2LTZ9UUc6qD3SgXCwxo8lMCbxY0OTlRpJSxcXWDlTByWK25/fZGGGWZNoIhAPNb8ja+dMo5/y+J51zZbRztw5xmpJ0Nt/MCoiTMq3foAou5wmugjt8ymeQyxqGcfD9MOx/7AnySMlaenCTV93VGixBHEd9giUAWPb1crZaN0IksEYkqoGI9ogTdb7CLMNKYeaxTdIiGFFQHwyjRlHOcyqzb4U8hORWxyhVepVjKV248GT61IN1UuE0P0aR4fd3uC48nK4oO9dPeFZkxS/6zYWW5McfBmE8BW9AysWub43pPwUXpjGpEflbR1gQfLHWY1P1WPnTl4EvE4EhOdAeE7KzMn7jU/l97fe4dxhUQRaCVEPsBzaOzWslLV6SC/MFWmdUFkRUTjVnF8azAQa+8yVTs7JIsSLHwnpuL+dMkHu9Q69Rngntp6Ia65Ld1yXDyQNhEl47MhH5fZqIfBiRP14UboTF0H76iepjAXZYdAOJcTzuExKRWceCuI1oGNknCb8+DZWRl1C16QQS8XDYJyS0yXZfcwUSNwIjsgfDIk2siVRJBi9EeGZurvjYcPHQIh2juFd0QOf3rzo7V0bnRpCM7eeSSX1ISLqEhKcR6UTuGPUqd8B4/LbTtxET8ccykdN/8ZyorBtMjC12ud1mYqdvIyYmH8oEL5XHF57ia+YVEBJYyNaYCIeTQZ+Y0CWx21I5fOH8BQI7d1uBm1VN7Wvoo7BGvQB21R6VHlzm7RXUR36vtqZh9E2N9KcVzokzFwSajiBpacpbPzcDxL6uPqqRQQ7q6npA2ssb/jDu1Vyi63o6dp04DnCRpVgS0Wwd6tvX1OMata4DPLZxeylPQIdOHL/4wXjUJ2aGENYncQZzTJk7X7gkbE7E0rn+5GCWOvrK5VzgDK/0LJThB7jSDKMGJdMaZesjWQanZa68/QvtQTQZ9GrbG0DrUst7eNb79RRpx76WGtdYthzlhedEapvOQNOrg18t3OWLxu9Ajn3dtc7R4xFy5jzdzEuap0R0BZ2erYfhyX59Ffkd2LEvzcY1avZH2HnzsxMJEbaZc3oFTgAblQNYvmwVPg019rXahmubQpIy5Z3INUE06tUZoF7b3MmSHMp7Gl7s67hxjQOgY7yUi8XGY7QoYPrtxhwVRFGv1sQhDNadltm5MTK/wyRlX/IdNyvYwC6R8o6sbcJhz36GAkPz1eh7QEwjUgL72u/EtnZzZDmDF/pgcU3oMlNezmWbJwbjsE/Q6F9cH+SXSy21c2+kdj6D1M34sS8NR7bL4W3tr72lbxT1arut1zEryugK5/nGoewRS/pITlIaDuxLw+3+PUOg8fQj/7vw/B+y3tik'),(4748,2868,'wpil_links_outbound_internal_count_data','eJzdm21v6jYUx79KlEnT9iItSSAEo2rqeqdN0+2D7p3Ul8gkhngNdmQ7Zazqd9+xAy3cIu3GoU2UNwiTE5+Tv38c28eAURCiJ4oG01vkj5B7X9B8ds1Tks8+U/bgohg9STRGbg6tGU3dqbaVKERuKXIX3g0HyM2UKiQ6P2dk/TcRkmyWG0YSvsJSUZwQpog4g+a5sQdzLpV+G/rI/Z9btFmMXKrbDIPDOfKrTgrTyZuo7/THyA902AHcaCL2w2ACd4Gloion7vSm6kNtCuLudydRhFypsCplZQRPnnBwzlTVHlVKyJcuZF4uqwbcmeQ02V2LTZ9UUc6qD3SgXCwxo8lMCbxY0OTlRpJSxcXWDlTByWK25/fZGGGWZNoIhAPNb8ja+dMo5/y+J51zZbRztw5xmpJ0Nt/MCoiTMq3foAou5wmugjt8ymeQyxqGcfD9MOx/7AnySMlaenCTV93VGixBHEd9giUAWPb1crZaN0IksEYkqoGI9ogTdb7CLMNKYeaxTdIiGFFQHwyjRlHOcyqzb4U8hORWxyhVepVjKV248GT61IN1UuE0P0aR4fd3uC48nK4oO9dPeFZkxS/6zYWW5McfBmE8BW9AysWub43pPwUXpjGpEflbR1gQfLHWY1P1WPnTl4EvE4EhOdAeE7KzMn7jU/l97fe4dxhUQRaCVEPsBzaOzWslLV6SC/MFWmdUFkRUTjVnF8azAQa+8yVTs7JIsSLHwnpuL+dMkHu9Q69Rngntp6Ia65Ld1yXDyQNhEl47MhH5fZqIfBiRP14UboTF0H76iepjAXZYdAOJcTzuExKRWceCuI1oGNknCb8+DZWRl1C16QQS8XDYJyS0yXZfcwUSNwIjsgfDIk2siVRJBi9EeGZurvjYcPHQIh2juFd0QOf3rzo7V0bnRpCM7eeSSX1ISLqEhKcR6UTuGPUqd8B4/LbTtxET8ccykdN/8ZyorBtMjC12ud1mYqdvIyYmH8oEL5XHF57ia+YVEBJYyNaYCIeTQZ+Y0CWx21I5fOH8BQI7d1uBm1VN7Wvoo7BGvQB21R6VHlzm7RXUR36vtqZh9E2N9KcVzokzFwSajiBpacpbPzcDxL6uPqqRQQ7q6npA2ssb/jDu1Vyi63o6dp04DnCRpVgS0Wwd6tvX1OMata4DPLZxeylPQIdOHL/4wXjUJ2aGENYncQZzTJk7X7gkbE7E0rn+5GCWOvrK5VzgDK/0LJThB7jSDKMGJdMaZesjWQanZa68/QvtQTQZ9GrbG0DrUst7eNb79RRpx76WGtdYthzlhedEapvOQNOrg18t3OWLxu9Ajn3dtc7R4xFy5jzdzEuap0R0BZ2erYfhyX59Ffkd2LEvzcY1avZH2HnzsxMJEbaZc3oFTgAblQNYvmwVPg019rXahmubQpIy5Z3INUE06tUZoF7b3MmSHMp7Gl7s67hxjQOgY7yUi8XGY7QoYPrtxhwVRFGv1sQhDNadltm5MTK/wyRlX/IdNyvYwC6R8o6sbcJhz36GAkPz1eh7QEwjUgL72u/EtnZzZDmDF/pgcU3oMlNezmWbJwbjsE/Q6F9cH+SXSy21c2+kdj6D1M34sS8NR7bL4W3tr72lbxT1arut1zEryugK5/nGoewRS/pITlIaDuxLw+3+PUOg8fQj/7vw/B+y3tik'),(4752,2868,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4753,2868,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4754,2868,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4755,2868,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4759,2868,'kt_blocks_editor_width',''),(4760,2868,'_kad_post_transparent',''),(4761,2868,'_kad_post_title','default'),(4762,2868,'_kad_post_layout','default'),(4763,2868,'_kad_post_sidebar_id',''),(4764,2868,'_kad_post_content_style','default'),(4765,2868,'_kad_post_vertical_padding','default'),(4766,2868,'_kad_post_feature','default'),(4767,2868,'_kad_post_feature_position',''),(4768,2868,'_kad_post_header',''),(4769,2868,'_kad_post_footer',''),(4770,2868,'_has_fluentform','a:0:{}'),(4771,2868,'_wp_page_template','default'),(4773,2868,'footnotes',''),(4774,2868,'_kadence_starter_templates_imported_post','1'),(4776,2868,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4777,2868,'_yoast_wpseo_wordproof_timestamp',''),(4778,2868,'_yoast_wpseo_focuskw','near Fulton County'),(4779,2868,'_yoast_wpseo_title','Gynecomastia Surgeon in Fulton County, GA (Male Breast Reduction)'),(4780,2868,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Fulton County, Georgia, reach out to the Atlanta Gynecomastia Center.'),(4781,2868,'_yoast_wpseo_linkdex','57'),(4783,2868,'_kad_blocks_custom_css',''),(4784,2868,'_kad_blocks_head_custom_js',''),(4785,2868,'_kad_blocks_body_custom_js',''),(4786,2868,'_kad_blocks_footer_custom_js',''),(4788,2868,'_dp_original','2854'),(4789,2868,'_edit_lock','1711895088:1'),(4791,2868,'_edit_last','1'),(4792,2870,'_menu_item_type','post_type'),(4793,2870,'_menu_item_menu_item_parent','1492'),(4794,2870,'_menu_item_object_id','2868'),(4795,2870,'_menu_item_object','page'),(4796,2870,'_menu_item_target',''),(4797,2870,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4798,2870,'_menu_item_xfn',''),(4799,2870,'_menu_item_url',''),(4809,2872,'wpil_links_inbound_internal_count_data','eJztmc1ugzAMx98l945C+Ujd8277uu2I0pC22bKASKqpq/ruc0hbdWqkPUByi8H+Y5ufCBgGeQVHCfPVq1uR90Gq9rnvhGqfpP4kQOFooAGi0GplR1bO18ACyH5UBFf1EsjO2sFAlmnx/SFGIw7bgxa8/2LGSsaFtmJ8QDPjvbaM20wo+cPWwu5mGDHzIZkTK1GrN9YtFzmQf/ScGwUina0ZZrOG3IsMk8hdSW/uMOSFq6nAwKmcvKQFRqGnlVYJsnrxGvYwCHIrh7UCMZbZvfFO2BZXEebj7cq3yVwljNpvvYGRXEl+OUcnTWllr/0Bl2g/bpmWvLUj22wkvwaKTtp+PPthVxjftDfXPU1OTPOdczKA9+Px0l9ylmZdJ7p2fWgHzEhq16m5T0P1nPk0/tZzwsbEy0RRV01iIsBEES8T+XJeJyYCTCyiZoImJgJMlDEzkeeJiQATVcxMzBMTISbqeJko6jrtHSEmmoiZoFViIsQEjZiJhqZv0RATy4iZoGnvCM+sIh5k4uZRJihCUMQ8yaQ0fXkEoYh4lFnQMj0pglBEPMvEd4r0HywIRczDzJKmJ8U9FKdfvwVC7w=='),(4811,2872,'wpil_links_outbound_internal_count_data','eJzdW11vozgU/SuIlVa7D7QBAiFU1arbXe2HZtpqulIfIwecxFtiI9tMBlX973ttkjaZRtrB0DHKSxSD8b0cHx9fXxuUBmH6RNLRxW3qR6n7UJJi9pHluJh9IPTRTZP0SaST1C2gNCO5e6HqijRM3YoXLvwbj1J3JWUp0vNzijf/Yi5wvawpztgaCUlQhqnE/AyK57o+VGdCqr+hn7r/84iqlqQuUWWKwOA89ZtGSt3IG6/v1OXUD5TbATyoPfbDYApPQU1JZIHdi5umDVmX2N1vTqRx6gqJZCWaSvDmGQPjVDblqEFCvDQhimrZFODJrCDZ7l6i2ySSMNpcUI4yvkSUZDPJ0WJBspcHcU4k49t6gArKFrM9u8+6EqLZSlUC4ADzG7xx/tbIOX/sQedca+zcrUGU5zifzetZCX4SqvAbNc4VLEONc4dv+QxwGZMhaUGG/cueqPgS89rLWQZACA8e9pqn7ZEmmESnRJoAGv+NnzmfmMB0jvnSQTR31JU7JFfosRNlAmPKTAJDynD8meDNIKgSJEl8UlSBYbyPl7PFuhNFQmOKxPG3U0RZRJlU9RB/HAQ5JsmkPTk0ImU1L4hYfQ3mIVFulY9C5tcFEsKFG0+6TdVhvYOneKRRGX97o5vSQ/ma0HP1lmflqvxF/blUsPz4wyhMLsAiMOZy17ai65eScV2YtlCHt4YQx+hyo/qnabGxp24Dz7QHmtGBspjhXS1tN+nL7mu7x61Dx3K84LjpZj8wMax/G2jREl/qgbRZEVFi3hhVXLvUljVpYOxXVM6qMkcSH3Pr2Z72xDq0Afp1Epux+Xzktx8vTSUvI7IehOIk47FFxekfwT5lB7CxLDvggUXZ2VofmuxotyzKjqqyXU5dAwk7iU9kLj4Gk/UGC5mt4AdzTwPcjKCa8UeLChQlNhXofWDsVYaixLYMRYlNGWqsD06GlFs2ZQgaf3hlonOtmdhJjWLzdVcL+u2G0RrRFZISUY/WmUX9iQOba66+gOtVceLAtuLEgU3FaawPTnGUWxYVZ5q6H3fU66Qzk++65FJjFlOPiALRfAgBT2w14OkdwX6Vx3qsE1uNdeJhxjqx5VgHFOBek9D5S5Owk/wk5mHOtP3gwfkSb5BaKwwi3xPZzPf0jV+/yyzr2Z7IarYnGma2J7Kb7QHG/r5jYCfVmZoHPS22ynejZoWyR0wF/A5DdhK/vewMd9fThx758wXhTrTwzc/TmKgpq6THFp5kG+qV4BPUENZoEY6no1OihdoMv62kwxbOPwCwOi2hAe5GEPMzNlHYQrxhXQcRvge3mb2DNJF/UjoRxl+djvhpjQrszGE+FtLhOK90rPFzN4KYn6iJWijIwYka1SH2dMMfJwY5u+HSRAVZynclHAd02Z5160YP89M0kxbB3xF6oLwqpLd/wx5jpiODpMuAGQOlKwXv4YnO+z74Yn4gImkx3xzlCyuwUHUGQ5qTOqungLt6wfgdmGO+m91mAX+EOXOW1/OKFDnmQ6HOiQUy8Ga/voL8Dtwx33tMWmS0j3DnzUlhAR7a1JyTIk4AEeYBWT5tEe6HNR12krrFNqXAVc4GoTVBHBmcGh4wZaB0Jyp8CG8/fDFP/SctDgod40u1WNQeJWUJ0+8w5qggNtmIHC5vQuisOwWzc6NhfodJqkMOt9tKW2BK2EBim3B8Yslc6Jp7je8BYzoxJTDP6k5NP4w7Es6ghdo322CyXEmvYMJmqncSnhJp1HeVB/pypaB2HjTUzgeAuht/zJO+sWk4vE022Qt94/ikltsqjlkTStaoKGqH0M9IkM+4l5xeYJ7ytfsRNk8nF9/zC+Xn/wBErRkT'),(4813,2872,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4821,2872,'wpil_links_inbound_internal_count_data','eJztmc1ugzAMx98l945C+Ujd8277uu2I0pC22bKASKqpq/ruc0hbdWqkPUByi8H+Y5ufCBgGeQVHCfPVq1uR90Gq9rnvhGqfpP4kQOFooAGi0GplR1bO18ACyH5UBFf1EsjO2sFAlmnx/SFGIw7bgxa8/2LGSsaFtmJ8QDPjvbaM20wo+cPWwu5mGDHzIZkTK1GrN9YtFzmQf/ScGwUina0ZZrOG3IsMk8hdSW/uMOSFq6nAwKmcvKQFRqGnlVYJsnrxGvYwCHIrh7UCMZbZvfFO2BZXEebj7cq3yVwljNpvvYGRXEl+OUcnTWllr/0Bl2g/bpmWvLUj22wkvwaKTtp+PPthVxjftDfXPU1OTPOdczKA9+Px0l9ylmZdJ7p2fWgHzEhq16m5T0P1nPk0/tZzwsbEy0RRV01iIsBEES8T+XJeJyYCTCyiZoImJgJMlDEzkeeJiQATVcxMzBMTISbqeJko6jrtHSEmmoiZoFViIsQEjZiJhqZv0RATy4iZoGnvCM+sIh5k4uZRJihCUMQ8yaQ0fXkEoYh4lFnQMj0pglBEPMvEd4r0HywIRczDzJKmJ8U9FKdfvwVC7w=='),(4822,2872,'wpil_links_inbound_internal_count_data','eJztmc1ugzAMx98l945C+Ujd8277uu2I0pC22bKASKqpq/ruc0hbdWqkPUByi8H+Y5ufCBgGeQVHCfPVq1uR90Gq9rnvhGqfpP4kQOFooAGi0GplR1bO18ACyH5UBFf1EsjO2sFAlmnx/SFGIw7bgxa8/2LGSsaFtmJ8QDPjvbaM20wo+cPWwu5mGDHzIZkTK1GrN9YtFzmQf/ScGwUina0ZZrOG3IsMk8hdSW/uMOSFq6nAwKmcvKQFRqGnlVYJsnrxGvYwCHIrh7UCMZbZvfFO2BZXEebj7cq3yVwljNpvvYGRXEl+OUcnTWllr/0Bl2g/bpmWvLUj22wkvwaKTtp+PPthVxjftDfXPU1OTPOdczKA9+Px0l9ylmZdJ7p2fWgHzEhq16m5T0P1nPk0/tZzwsbEy0RRV01iIsBEES8T+XJeJyYCTCyiZoImJgJMlDEzkeeJiQATVcxMzBMTISbqeJko6jrtHSEmmoiZoFViIsQEjZiJhqZv0RATy4iZoGnvCM+sIh5k4uZRJihCUMQ8yaQ0fXkEoYh4lFnQMj0pglBEPMvEd4r0HywIRczDzJKmJ8U9FKdfvwVC7w=='),(4823,2872,'wpil_links_inbound_internal_count_data','eJztmc1ugzAMx98l945C+Ujd8277uu2I0pC22bKASKqpq/ruc0hbdWqkPUByi8H+Y5ufCBgGeQVHCfPVq1uR90Gq9rnvhGqfpP4kQOFooAGi0GplR1bO18ACyH5UBFf1EsjO2sFAlmnx/SFGIw7bgxa8/2LGSsaFtmJ8QDPjvbaM20wo+cPWwu5mGDHzIZkTK1GrN9YtFzmQf/ScGwUina0ZZrOG3IsMk8hdSW/uMOSFq6nAwKmcvKQFRqGnlVYJsnrxGvYwCHIrh7UCMZbZvfFO2BZXEebj7cq3yVwljNpvvYGRXEl+OUcnTWllr/0Bl2g/bpmWvLUj22wkvwaKTtp+PPthVxjftDfXPU1OTPOdczKA9+Px0l9ylmZdJ7p2fWgHzEhq16m5T0P1nPk0/tZzwsbEy0RRV01iIsBEES8T+XJeJyYCTCyiZoImJgJMlDEzkeeJiQATVcxMzBMTISbqeJko6jrtHSEmmoiZoFViIsQEjZiJhqZv0RATy4iZoGnvCM+sIh5k4uZRJihCUMQ8yaQ0fXkEoYh4lFnQMj0pglBEPMvEd4r0HywIRczDzJKmJ8U9FKdfvwVC7w=='),(4824,2872,'wpil_links_inbound_internal_count_data','eJztmc1ugzAMx98l945C+Ujd8277uu2I0pC22bKASKqpq/ruc0hbdWqkPUByi8H+Y5ufCBgGeQVHCfPVq1uR90Gq9rnvhGqfpP4kQOFooAGi0GplR1bO18ACyH5UBFf1EsjO2sFAlmnx/SFGIw7bgxa8/2LGSsaFtmJ8QDPjvbaM20wo+cPWwu5mGDHzIZkTK1GrN9YtFzmQf/ScGwUina0ZZrOG3IsMk8hdSW/uMOSFq6nAwKmcvKQFRqGnlVYJsnrxGvYwCHIrh7UCMZbZvfFO2BZXEebj7cq3yVwljNpvvYGRXEl+OUcnTWllr/0Bl2g/bpmWvLUj22wkvwaKTtp+PPthVxjftDfXPU1OTPOdczKA9+Px0l9ylmZdJ7p2fWgHzEhq16m5T0P1nPk0/tZzwsbEy0RRV01iIsBEES8T+XJeJyYCTCyiZoImJgJMlDEzkeeJiQATVcxMzBMTISbqeJko6jrtHSEmmoiZoFViIsQEjZiJhqZv0RATy4iZoGnvCM+sIh5k4uZRJihCUMQ8yaQ0fXkEoYh4lFnQMj0pglBEPMvEd4r0HywIRczDzJKmJ8U9FKdfvwVC7w=='),(4828,2872,'wpil_links_outbound_internal_count_data','eJzdW11vozgU/SuIlVa7D7QBAiFU1arbXe2HZtpqulIfIwecxFtiI9tMBlX973ttkjaZRtrB0DHKSxSD8b0cHx9fXxuUBmH6RNLRxW3qR6n7UJJi9pHluJh9IPTRTZP0SaST1C2gNCO5e6HqijRM3YoXLvwbj1J3JWUp0vNzijf/Yi5wvawpztgaCUlQhqnE/AyK57o+VGdCqr+hn7r/84iqlqQuUWWKwOA89ZtGSt3IG6/v1OXUD5TbATyoPfbDYApPQU1JZIHdi5umDVmX2N1vTqRx6gqJZCWaSvDmGQPjVDblqEFCvDQhimrZFODJrCDZ7l6i2ySSMNpcUI4yvkSUZDPJ0WJBspcHcU4k49t6gArKFrM9u8+6EqLZSlUC4ADzG7xx/tbIOX/sQedca+zcrUGU5zifzetZCX4SqvAbNc4VLEONc4dv+QxwGZMhaUGG/cueqPgS89rLWQZACA8e9pqn7ZEmmESnRJoAGv+NnzmfmMB0jvnSQTR31JU7JFfosRNlAmPKTAJDynD8meDNIKgSJEl8UlSBYbyPl7PFuhNFQmOKxPG3U0RZRJlU9RB/HAQ5JsmkPTk0ImU1L4hYfQ3mIVFulY9C5tcFEsKFG0+6TdVhvYOneKRRGX97o5vSQ/ma0HP1lmflqvxF/blUsPz4wyhMLsAiMOZy17ai65eScV2YtlCHt4YQx+hyo/qnabGxp24Dz7QHmtGBspjhXS1tN+nL7mu7x61Dx3K84LjpZj8wMax/G2jREl/qgbRZEVFi3hhVXLvUljVpYOxXVM6qMkcSH3Pr2Z72xDq0Afp1Epux+Xzktx8vTSUvI7IehOIk47FFxekfwT5lB7CxLDvggUXZ2VofmuxotyzKjqqyXU5dAwk7iU9kLj4Gk/UGC5mt4AdzTwPcjKCa8UeLChQlNhXofWDsVYaixLYMRYlNGWqsD06GlFs2ZQgaf3hlonOtmdhJjWLzdVcL+u2G0RrRFZISUY/WmUX9iQOba66+gOtVceLAtuLEgU3FaawPTnGUWxYVZ5q6H3fU66Qzk++65FJjFlOPiALRfAgBT2w14OkdwX6Vx3qsE1uNdeJhxjqx5VgHFOBek9D5S5Owk/wk5mHOtP3gwfkSb5BaKwwi3xPZzPf0jV+/yyzr2Z7IarYnGma2J7Kb7QHG/r5jYCfVmZoHPS22ynejZoWyR0wF/A5DdhK/vewMd9fThx758wXhTrTwzc/TmKgpq6THFp5kG+qV4BPUENZoEY6no1OihdoMv62kwxbOPwCwOi2hAe5GEPMzNlHYQrxhXQcRvge3mb2DNJF/UjoRxl+djvhpjQrszGE+FtLhOK90rPFzN4KYn6iJWijIwYka1SH2dMMfJwY5u+HSRAVZynclHAd02Z5160YP89M0kxbB3xF6oLwqpLd/wx5jpiODpMuAGQOlKwXv4YnO+z74Yn4gImkx3xzlCyuwUHUGQ5qTOqungLt6wfgdmGO+m91mAX+EOXOW1/OKFDnmQ6HOiQUy8Ga/voL8Dtwx33tMWmS0j3DnzUlhAR7a1JyTIk4AEeYBWT5tEe6HNR12krrFNqXAVc4GoTVBHBmcGh4wZaB0Jyp8CG8/fDFP/SctDgod40u1WNQeJWUJ0+8w5qggNtmIHC5vQuisOwWzc6NhfodJqkMOt9tKW2BK2EBim3B8Yslc6Jp7je8BYzoxJTDP6k5NP4w7Es6ghdo322CyXEmvYMJmqncSnhJp1HeVB/pypaB2HjTUzgeAuht/zJO+sWk4vE022Qt94/ikltsqjlkTStaoKGqH0M9IkM+4l5xeYJ7ytfsRNk8nF9/zC+Xn/wBErRkT'),(4829,2872,'wpil_links_outbound_internal_count_data','eJzdW11vozgU/SuIlVa7D7QBAiFU1arbXe2HZtpqulIfIwecxFtiI9tMBlX973ttkjaZRtrB0DHKSxSD8b0cHx9fXxuUBmH6RNLRxW3qR6n7UJJi9pHluJh9IPTRTZP0SaST1C2gNCO5e6HqijRM3YoXLvwbj1J3JWUp0vNzijf/Yi5wvawpztgaCUlQhqnE/AyK57o+VGdCqr+hn7r/84iqlqQuUWWKwOA89ZtGSt3IG6/v1OXUD5TbATyoPfbDYApPQU1JZIHdi5umDVmX2N1vTqRx6gqJZCWaSvDmGQPjVDblqEFCvDQhimrZFODJrCDZ7l6i2ySSMNpcUI4yvkSUZDPJ0WJBspcHcU4k49t6gArKFrM9u8+6EqLZSlUC4ADzG7xx/tbIOX/sQedca+zcrUGU5zifzetZCX4SqvAbNc4VLEONc4dv+QxwGZMhaUGG/cueqPgS89rLWQZACA8e9pqn7ZEmmESnRJoAGv+NnzmfmMB0jvnSQTR31JU7JFfosRNlAmPKTAJDynD8meDNIKgSJEl8UlSBYbyPl7PFuhNFQmOKxPG3U0RZRJlU9RB/HAQ5JsmkPTk0ImU1L4hYfQ3mIVFulY9C5tcFEsKFG0+6TdVhvYOneKRRGX97o5vSQ/ma0HP1lmflqvxF/blUsPz4wyhMLsAiMOZy17ai65eScV2YtlCHt4YQx+hyo/qnabGxp24Dz7QHmtGBspjhXS1tN+nL7mu7x61Dx3K84LjpZj8wMax/G2jREl/qgbRZEVFi3hhVXLvUljVpYOxXVM6qMkcSH3Pr2Z72xDq0Afp1Epux+Xzktx8vTSUvI7IehOIk47FFxekfwT5lB7CxLDvggUXZ2VofmuxotyzKjqqyXU5dAwk7iU9kLj4Gk/UGC5mt4AdzTwPcjKCa8UeLChQlNhXofWDsVYaixLYMRYlNGWqsD06GlFs2ZQgaf3hlonOtmdhJjWLzdVcL+u2G0RrRFZISUY/WmUX9iQOba66+gOtVceLAtuLEgU3FaawPTnGUWxYVZ5q6H3fU66Qzk++65FJjFlOPiALRfAgBT2w14OkdwX6Vx3qsE1uNdeJhxjqx5VgHFOBek9D5S5Owk/wk5mHOtP3gwfkSb5BaKwwi3xPZzPf0jV+/yyzr2Z7IarYnGma2J7Kb7QHG/r5jYCfVmZoHPS22ynejZoWyR0wF/A5DdhK/vewMd9fThx758wXhTrTwzc/TmKgpq6THFp5kG+qV4BPUENZoEY6no1OihdoMv62kwxbOPwCwOi2hAe5GEPMzNlHYQrxhXQcRvge3mb2DNJF/UjoRxl+djvhpjQrszGE+FtLhOK90rPFzN4KYn6iJWijIwYka1SH2dMMfJwY5u+HSRAVZynclHAd02Z5160YP89M0kxbB3xF6oLwqpLd/wx5jpiODpMuAGQOlKwXv4YnO+z74Yn4gImkx3xzlCyuwUHUGQ5qTOqungLt6wfgdmGO+m91mAX+EOXOW1/OKFDnmQ6HOiQUy8Ga/voL8Dtwx33tMWmS0j3DnzUlhAR7a1JyTIk4AEeYBWT5tEe6HNR12krrFNqXAVc4GoTVBHBmcGh4wZaB0Jyp8CG8/fDFP/SctDgod40u1WNQeJWUJ0+8w5qggNtmIHC5vQuisOwWzc6NhfodJqkMOt9tKW2BK2EBim3B8Yslc6Jp7je8BYzoxJTDP6k5NP4w7Es6ghdo322CyXEmvYMJmqncSnhJp1HeVB/pypaB2HjTUzgeAuht/zJO+sWk4vE022Qt94/ikltsqjlkTStaoKGqH0M9IkM+4l5xeYJ7ytfsRNk8nF9/zC+Xn/wBErRkT'),(4830,2872,'wpil_links_outbound_internal_count_data','eJzdW11vozgU/SuIlVa7D7QBAiFU1arbXe2HZtpqulIfIwecxFtiI9tMBlX973ttkjaZRtrB0DHKSxSD8b0cHx9fXxuUBmH6RNLRxW3qR6n7UJJi9pHluJh9IPTRTZP0SaST1C2gNCO5e6HqijRM3YoXLvwbj1J3JWUp0vNzijf/Yi5wvawpztgaCUlQhqnE/AyK57o+VGdCqr+hn7r/84iqlqQuUWWKwOA89ZtGSt3IG6/v1OXUD5TbATyoPfbDYApPQU1JZIHdi5umDVmX2N1vTqRx6gqJZCWaSvDmGQPjVDblqEFCvDQhimrZFODJrCDZ7l6i2ySSMNpcUI4yvkSUZDPJ0WJBspcHcU4k49t6gArKFrM9u8+6EqLZSlUC4ADzG7xx/tbIOX/sQedca+zcrUGU5zifzetZCX4SqvAbNc4VLEONc4dv+QxwGZMhaUGG/cueqPgS89rLWQZACA8e9pqn7ZEmmESnRJoAGv+NnzmfmMB0jvnSQTR31JU7JFfosRNlAmPKTAJDynD8meDNIKgSJEl8UlSBYbyPl7PFuhNFQmOKxPG3U0RZRJlU9RB/HAQ5JsmkPTk0ImU1L4hYfQ3mIVFulY9C5tcFEsKFG0+6TdVhvYOneKRRGX97o5vSQ/ma0HP1lmflqvxF/blUsPz4wyhMLsAiMOZy17ai65eScV2YtlCHt4YQx+hyo/qnabGxp24Dz7QHmtGBspjhXS1tN+nL7mu7x61Dx3K84LjpZj8wMax/G2jREl/qgbRZEVFi3hhVXLvUljVpYOxXVM6qMkcSH3Pr2Z72xDq0Afp1Epux+Xzktx8vTSUvI7IehOIk47FFxekfwT5lB7CxLDvggUXZ2VofmuxotyzKjqqyXU5dAwk7iU9kLj4Gk/UGC5mt4AdzTwPcjKCa8UeLChQlNhXofWDsVYaixLYMRYlNGWqsD06GlFs2ZQgaf3hlonOtmdhJjWLzdVcL+u2G0RrRFZISUY/WmUX9iQOba66+gOtVceLAtuLEgU3FaawPTnGUWxYVZ5q6H3fU66Qzk++65FJjFlOPiALRfAgBT2w14OkdwX6Vx3qsE1uNdeJhxjqx5VgHFOBek9D5S5Owk/wk5mHOtP3gwfkSb5BaKwwi3xPZzPf0jV+/yyzr2Z7IarYnGma2J7Kb7QHG/r5jYCfVmZoHPS22ynejZoWyR0wF/A5DdhK/vewMd9fThx758wXhTrTwzc/TmKgpq6THFp5kG+qV4BPUENZoEY6no1OihdoMv62kwxbOPwCwOi2hAe5GEPMzNlHYQrxhXQcRvge3mb2DNJF/UjoRxl+djvhpjQrszGE+FtLhOK90rPFzN4KYn6iJWijIwYka1SH2dMMfJwY5u+HSRAVZynclHAd02Z5160YP89M0kxbB3xF6oLwqpLd/wx5jpiODpMuAGQOlKwXv4YnO+z74Yn4gImkx3xzlCyuwUHUGQ5qTOqungLt6wfgdmGO+m91mAX+EOXOW1/OKFDnmQ6HOiQUy8Ga/voL8Dtwx33tMWmS0j3DnzUlhAR7a1JyTIk4AEeYBWT5tEe6HNR12krrFNqXAVc4GoTVBHBmcGh4wZaB0Jyp8CG8/fDFP/SctDgod40u1WNQeJWUJ0+8w5qggNtmIHC5vQuisOwWzc6NhfodJqkMOt9tKW2BK2EBim3B8Yslc6Jp7je8BYzoxJTDP6k5NP4w7Es6ghdo322CyXEmvYMJmqncSnhJp1HeVB/pypaB2HjTUzgeAuht/zJO+sWk4vE022Qt94/ikltsqjlkTStaoKGqH0M9IkM+4l5xeYJ7ytfsRNk8nF9/zC+Xn/wBErRkT'),(4831,2872,'wpil_links_outbound_internal_count_data','eJzdW11vozgU/SuIlVa7D7QBAiFU1arbXe2HZtpqulIfIwecxFtiI9tMBlX973ttkjaZRtrB0DHKSxSD8b0cHx9fXxuUBmH6RNLRxW3qR6n7UJJi9pHluJh9IPTRTZP0SaST1C2gNCO5e6HqijRM3YoXLvwbj1J3JWUp0vNzijf/Yi5wvawpztgaCUlQhqnE/AyK57o+VGdCqr+hn7r/84iqlqQuUWWKwOA89ZtGSt3IG6/v1OXUD5TbATyoPfbDYApPQU1JZIHdi5umDVmX2N1vTqRx6gqJZCWaSvDmGQPjVDblqEFCvDQhimrZFODJrCDZ7l6i2ySSMNpcUI4yvkSUZDPJ0WJBspcHcU4k49t6gArKFrM9u8+6EqLZSlUC4ADzG7xx/tbIOX/sQedca+zcrUGU5zifzetZCX4SqvAbNc4VLEONc4dv+QxwGZMhaUGG/cueqPgS89rLWQZACA8e9pqn7ZEmmESnRJoAGv+NnzmfmMB0jvnSQTR31JU7JFfosRNlAmPKTAJDynD8meDNIKgSJEl8UlSBYbyPl7PFuhNFQmOKxPG3U0RZRJlU9RB/HAQ5JsmkPTk0ImU1L4hYfQ3mIVFulY9C5tcFEsKFG0+6TdVhvYOneKRRGX97o5vSQ/ma0HP1lmflqvxF/blUsPz4wyhMLsAiMOZy17ai65eScV2YtlCHt4YQx+hyo/qnabGxp24Dz7QHmtGBspjhXS1tN+nL7mu7x61Dx3K84LjpZj8wMax/G2jREl/qgbRZEVFi3hhVXLvUljVpYOxXVM6qMkcSH3Pr2Z72xDq0Afp1Epux+Xzktx8vTSUvI7IehOIk47FFxekfwT5lB7CxLDvggUXZ2VofmuxotyzKjqqyXU5dAwk7iU9kLj4Gk/UGC5mt4AdzTwPcjKCa8UeLChQlNhXofWDsVYaixLYMRYlNGWqsD06GlFs2ZQgaf3hlonOtmdhJjWLzdVcL+u2G0RrRFZISUY/WmUX9iQOba66+gOtVceLAtuLEgU3FaawPTnGUWxYVZ5q6H3fU66Qzk++65FJjFlOPiALRfAgBT2w14OkdwX6Vx3qsE1uNdeJhxjqx5VgHFOBek9D5S5Owk/wk5mHOtP3gwfkSb5BaKwwi3xPZzPf0jV+/yyzr2Z7IarYnGma2J7Kb7QHG/r5jYCfVmZoHPS22ynejZoWyR0wF/A5DdhK/vewMd9fThx758wXhTrTwzc/TmKgpq6THFp5kG+qV4BPUENZoEY6no1OihdoMv62kwxbOPwCwOi2hAe5GEPMzNlHYQrxhXQcRvge3mb2DNJF/UjoRxl+djvhpjQrszGE+FtLhOK90rPFzN4KYn6iJWijIwYka1SH2dMMfJwY5u+HSRAVZynclHAd02Z5160YP89M0kxbB3xF6oLwqpLd/wx5jpiODpMuAGQOlKwXv4YnO+z74Yn4gImkx3xzlCyuwUHUGQ5qTOqungLt6wfgdmGO+m91mAX+EOXOW1/OKFDnmQ6HOiQUy8Ga/voL8Dtwx33tMWmS0j3DnzUlhAR7a1JyTIk4AEeYBWT5tEe6HNR12krrFNqXAVc4GoTVBHBmcGh4wZaB0Jyp8CG8/fDFP/SctDgod40u1WNQeJWUJ0+8w5qggNtmIHC5vQuisOwWzc6NhfodJqkMOt9tKW2BK2EBim3B8Yslc6Jp7je8BYzoxJTDP6k5NP4w7Es6ghdo322CyXEmvYMJmqncSnhJp1HeVB/pypaB2HjTUzgeAuht/zJO+sWk4vE022Qt94/ikltsqjlkTStaoKGqH0M9IkM+4l5xeYJ7ytfsRNk8nF9/zC+Xn/wBErRkT'),(4835,2872,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4836,2872,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4837,2872,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4838,2872,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4842,2872,'kt_blocks_editor_width',''),(4843,2872,'_kad_post_transparent',''),(4844,2872,'_kad_post_title','default'),(4845,2872,'_kad_post_layout','default'),(4846,2872,'_kad_post_sidebar_id',''),(4847,2872,'_kad_post_content_style','default'),(4848,2872,'_kad_post_vertical_padding','default'),(4849,2872,'_kad_post_feature','default'),(4850,2872,'_kad_post_feature_position',''),(4851,2872,'_kad_post_header',''),(4852,2872,'_kad_post_footer',''),(4853,2872,'_has_fluentform','a:0:{}'),(4854,2872,'_wp_page_template','default'),(4856,2872,'footnotes',''),(4857,2872,'_kadence_starter_templates_imported_post','1'),(4858,2872,'_yoast_wpseo_content_score','90'),(4859,2872,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4860,2872,'_yoast_wpseo_wordproof_timestamp',''),(4861,2872,'_yoast_wpseo_focuskw','near Sandy Springs'),(4862,2872,'_yoast_wpseo_title','Gynecomastia Surgeon Near Sandy Springs, GA (Male Breast Reduction)'),(4863,2872,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Sandy Springs, Georgia, reach out to the Atlanta Gynecomastia Center.'),(4864,2872,'_yoast_wpseo_linkdex','57'),(4866,2872,'_kad_blocks_custom_css',''),(4867,2872,'_kad_blocks_head_custom_js',''),(4868,2872,'_kad_blocks_body_custom_js',''),(4869,2872,'_kad_blocks_footer_custom_js',''),(4871,2872,'_dp_original','2854'),(4872,2872,'_edit_lock','1711750380:1'),(4874,2872,'_edit_last','1'),(4875,2874,'_menu_item_type','post_type'),(4876,2874,'_menu_item_menu_item_parent','1492'),(4877,2874,'_menu_item_object_id','2872'),(4878,2874,'_menu_item_object','page'),(4879,2874,'_menu_item_target',''),(4880,2874,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4881,2874,'_menu_item_xfn',''),(4882,2874,'_menu_item_url',''),(4884,2055,'_wp_old_date','2024-03-05'),(4885,1975,'_wp_old_date','2024-03-05'),(4886,1974,'_wp_old_date','2024-03-05'),(4887,1973,'_wp_old_date','2024-03-05'),(4888,2750,'_wp_old_date','2024-03-05'),(4889,1491,'_wp_old_date','2024-03-05'),(4890,1950,'_wp_old_date','2024-03-05'),(4891,1951,'_wp_old_date','2024-03-05'),(4892,1949,'_wp_old_date','2024-03-05'),(4893,1952,'_wp_old_date','2024-03-05'),(4894,2667,'_wp_old_date','2024-03-05'),(4895,2672,'_wp_old_date','2024-03-05'),(4896,1671,'_wp_old_date','2024-03-05'),(4897,1670,'_wp_old_date','2024-03-05'),(4898,1665,'_wp_old_date','2024-03-05'),(4899,1756,'_wp_old_date','2024-03-05'),(4900,1492,'_wp_old_date','2024-03-05'),(4901,2790,'_wp_old_date','2024-03-05'),(4902,2846,'_wp_old_date','2024-03-05'),(4903,2856,'_wp_old_date','2024-03-05'),(4904,2860,'_wp_old_date','2024-03-05'),(4905,2866,'_wp_old_date','2024-03-05'),(4906,2870,'_wp_old_date','2024-03-05'),(4925,2881,'wpil_links_inbound_internal_count_data','eJztmM1ugzAMx98l9w5C+UjdF9hhX7cdURrSNisLiKSaqqrvPqfpqk5LtQdILggH+49tfiJgDrSGo4J8+Qq0AvI+qr59HjrZt09K7wgwOBpogPRotaojS+drYA5kP/UEz5ocyNba0UCWafn1IScjD5uDlmL45MYqLqS2cnpAMxODtlzYbMvFTmqDxxmGzHxM5tRKFBuMdadzCuQfQefGgChna47prIB6kfEs8qemN7cMtHBFFRh4roeWrMAo9LTK9pIsX7yGPYyS3MoZqIEYy+3eeCfsiysJ8/F25ftkrhKm32+8gZGiV+LnGjtrKqsG7RdcosO04VqJ1k58vVbiGig7ZYfp4odd4WLd3tz3dHbiWmydE7rgE3m8dphcxHnXya5dHdoRc1La9Sr3ifSD4D6R3xWdsDURY1HUVZOwCGJRRIwFXeR1wiKIxTxuLFjCIohFGTUWlCYsglhUUWORJyzCWNQRY1HUddpEwlg0MWPBqoRFGAsWMxYNSz+oYSwWMWPB0iZyb5wV85gTd5EycRHmIuo5J2vS+PsOFzEPOgtWpvfFHS5innTi90V6X9zhIupR57xYJC7CXEQ96yxZ2kdCXJy+ASfo/oA='),(4927,2881,'wpil_links_outbound_internal_count_data','eJzdW21vqzYU/iuISdP2gdsA4SVE1dRVV9Ome9tqndSPkQNO4pUYhE0zbtX/vmOTtMltpFsMra18iWI4+BweP358/AJKPC95JMloep24QWLflSSffS0ynM++EHpvJ3HyyJIosXMozUhmT4UtS/zErqvchn/jUWKvOC9ZcnZG8eZfXDHcLBuK02KNGCcoxZTj6hMUz6Q9mBeMi7++m9g/eESYxYlNRJkicDhP3LaSUlbyKuobcTlxPRG2Bw/KiF3fm8BTYMkJz7E9vWrr4E2J7f3qWBImNuOI16w1gjdPC3BOeVsOWiTYcxUsr5dtAZ5Mc5Lu7sWyTsJJQdsLItCiWiJK0hmv0GJB0ucHcUZ4UW3tABWULmZ7fp+kEaLpShgBcID5Fd5Yf0nkrD/2oLMuJXb21iHKMpzN5s2shDgJFfiN2uDyIkVtcIdv+QRwKZMh8t5Ohv3LToUfCN4wBx5y2qe0kcWL4/CUyOIBWfbxsrZY96KIp0yRMHw7RYRHlHJhh6p7I8gRxVF3ckhEynqeE7b6HsxDolyLGBnPLnPEmA03HmWdosEGB0/wSKIyfnulm9JB2ZrQM/GWn8pV+Zv4cy5g+fmnkR9PwSMw5nxXt6Drf2VRycKkgzq8doQqjM43on3aGlt/4jbwTEYgGe0JjyneWUm/8VB+X+o97h0atsKLCrfN7HoqjuVvCy1a4nPZkTYrwkpctU4F186lZ0ka6Ps15bO6zBDHx8J60qc9oRyngH69xMZXH4/c7v2lNXJSwhsjFCcejzUqzvAIDik7gI1m2YEINMrO1rtpsiPD0ig7wmSbG18CCXuJz1hdfBQG6w1mPF3BD64cCXDbg5qiuteoQEGsU4HeB8ZBZSiIdctQEOuUoda7cTIkwtIpQ1D53QsTrUvJxF5qFKjPuzrQb9eN1oiuEOeIOrRJNepP6Omccw0F3KCKE3q6FSf0dCpO6904xRFhaVScSWJ/3VGvl86EHzrlEn0WU4ewHNHMhIQn1JrwDI7gsMqjPdcJteY6oZm5Tqg51wEFuJUktP6UJOwlP5F6mjPp3nlwtsQbJOYKRqz3BDrXe4bGb9hplvbVnkDrak9g5mpPoHe1Bxj7ecfAXqoTf6zq5OQbmmO+MkN1Iq1zrIHxG1R1Iu1TrUjrVCsyc6oVaZ9qfd4xsJfqTD5UdYqaO8XC4cWGOiWEBBZMm+r448mou+qYfdTiuuZWsbD+AYCtmy3Avfjhqp/NCvwOnXSFOMwfHbhd6DuoFbjuKRHCD787e/PLGuXYmoPuMm5VOKvlmPJrP4Kon9cKOijIwXkt0SD6dMMdxwrZirk0EYOpiF0IxwFdWF0tcdVvy8BVP6sVdRjkj9ADZXXOnf0b+hgzGSks6RnMGChdCHgPD3/eDsEX9eM2cYfx5ihfihwzYWMMaU7qJKgA7uIZ43dgjvpZiS4TtSPMmRdZM69JnuHKFOqcWCIDb/b7C8jvwB31ne24w37JEe68OofOIEKdmnNSxPEgwzwgy99bhIdhTY99yn65TclwnRVGaI0XBgpn0g2mDJRuWI0P4R2GL+obS3GHY2jH+FIvFo1DSVnC8GvGGOWFKtvc5vLGh8a6ETBbVxLmdxik1HcIon4zbYYpKQzJbfxxfFJDlAtNcyvxPWBMP6aor+pOOnxQ+aN0Bi3EruwGk+WKO3nBdC71Rv4pkUZ8gnmgLxcCautOQm19Aah78cdTX/QNVdPh7WKTvtQ3DE9qui3ymDWhZI3yvLEIfUCMPOBB1vQ89SVfvd9rV0k0/ciPmZ/+B/sDOEc='),(4929,2881,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4939,2881,'wpil_links_inbound_internal_count_data','eJztmM1ugzAMx98l9w5C+UjdF9hhX7cdURrSNisLiKSaqqrvPqfpqk5LtQdILggH+49tfiJgDrSGo4J8+Qq0AvI+qr59HjrZt09K7wgwOBpogPRotaojS+drYA5kP/UEz5ocyNba0UCWafn1IScjD5uDlmL45MYqLqS2cnpAMxODtlzYbMvFTmqDxxmGzHxM5tRKFBuMdadzCuQfQefGgChna47prIB6kfEs8qemN7cMtHBFFRh4roeWrMAo9LTK9pIsX7yGPYyS3MoZqIEYy+3eeCfsiysJ8/F25ftkrhKm32+8gZGiV+LnGjtrKqsG7RdcosO04VqJ1k58vVbiGig7ZYfp4odd4WLd3tz3dHbiWmydE7rgE3m8dphcxHnXya5dHdoRc1La9Sr3ifSD4D6R3xWdsDURY1HUVZOwCGJRRIwFXeR1wiKIxTxuLFjCIohFGTUWlCYsglhUUWORJyzCWNQRY1HUddpEwlg0MWPBqoRFGAsWMxYNSz+oYSwWMWPB0iZyb5wV85gTd5EycRHmIuo5J2vS+PsOFzEPOgtWpvfFHS5innTi90V6X9zhIupR57xYJC7CXEQ96yxZ2kdCXJy+ASfo/oA='),(4940,2881,'wpil_links_inbound_internal_count_data','eJztmM1ugzAMx98l9w5C+UjdF9hhX7cdURrSNisLiKSaqqrvPqfpqk5LtQdILggH+49tfiJgDrSGo4J8+Qq0AvI+qr59HjrZt09K7wgwOBpogPRotaojS+drYA5kP/UEz5ocyNba0UCWafn1IScjD5uDlmL45MYqLqS2cnpAMxODtlzYbMvFTmqDxxmGzHxM5tRKFBuMdadzCuQfQefGgChna47prIB6kfEs8qemN7cMtHBFFRh4roeWrMAo9LTK9pIsX7yGPYyS3MoZqIEYy+3eeCfsiysJ8/F25ftkrhKm32+8gZGiV+LnGjtrKqsG7RdcosO04VqJ1k58vVbiGig7ZYfp4odd4WLd3tz3dHbiWmydE7rgE3m8dphcxHnXya5dHdoRc1La9Sr3ifSD4D6R3xWdsDURY1HUVZOwCGJRRIwFXeR1wiKIxTxuLFjCIohFGTUWlCYsglhUUWORJyzCWNQRY1HUddpEwlg0MWPBqoRFGAsWMxYNSz+oYSwWMWPB0iZyb5wV85gTd5EycRHmIuo5J2vS+PsOFzEPOgtWpvfFHS5innTi90V6X9zhIupR57xYJC7CXEQ96yxZ2kdCXJy+ASfo/oA='),(4941,2881,'wpil_links_inbound_internal_count_data','eJztmM1ugzAMx98l9w5C+UjdF9hhX7cdURrSNisLiKSaqqrvPqfpqk5LtQdILggH+49tfiJgDrSGo4J8+Qq0AvI+qr59HjrZt09K7wgwOBpogPRotaojS+drYA5kP/UEz5ocyNba0UCWafn1IScjD5uDlmL45MYqLqS2cnpAMxODtlzYbMvFTmqDxxmGzHxM5tRKFBuMdadzCuQfQefGgChna47prIB6kfEs8qemN7cMtHBFFRh4roeWrMAo9LTK9pIsX7yGPYyS3MoZqIEYy+3eeCfsiysJ8/F25ftkrhKm32+8gZGiV+LnGjtrKqsG7RdcosO04VqJ1k58vVbiGig7ZYfp4odd4WLd3tz3dHbiWmydE7rgE3m8dphcxHnXya5dHdoRc1La9Sr3ifSD4D6R3xWdsDURY1HUVZOwCGJRRIwFXeR1wiKIxTxuLFjCIohFGTUWlCYsglhUUWORJyzCWNQRY1HUddpEwlg0MWPBqoRFGAsWMxYNSz+oYSwWMWPB0iZyb5wV85gTd5EycRHmIuo5J2vS+PsOFzEPOgtWpvfFHS5innTi90V6X9zhIupR57xYJC7CXEQ96yxZ2kdCXJy+ASfo/oA='),(4942,2881,'wpil_links_inbound_internal_count_data','eJztmM1ugzAMx98l9w5C+UjdF9hhX7cdURrSNisLiKSaqqrvPqfpqk5LtQdILggH+49tfiJgDrSGo4J8+Qq0AvI+qr59HjrZt09K7wgwOBpogPRotaojS+drYA5kP/UEz5ocyNba0UCWafn1IScjD5uDlmL45MYqLqS2cnpAMxODtlzYbMvFTmqDxxmGzHxM5tRKFBuMdadzCuQfQefGgChna47prIB6kfEs8qemN7cMtHBFFRh4roeWrMAo9LTK9pIsX7yGPYyS3MoZqIEYy+3eeCfsiysJ8/F25ftkrhKm32+8gZGiV+LnGjtrKqsG7RdcosO04VqJ1k58vVbiGig7ZYfp4odd4WLd3tz3dHbiWmydE7rgE3m8dphcxHnXya5dHdoRc1La9Sr3ifSD4D6R3xWdsDURY1HUVZOwCGJRRIwFXeR1wiKIxTxuLFjCIohFGTUWlCYsglhUUWORJyzCWNQRY1HUddpEwlg0MWPBqoRFGAsWMxYNSz+oYSwWMWPB0iZyb5wV85gTd5EycRHmIuo5J2vS+PsOFzEPOgtWpvfFHS5innTi90V6X9zhIupR57xYJC7CXEQ96yxZ2kdCXJy+ASfo/oA='),(4943,2881,'wpil_links_inbound_internal_count_data','eJztmM1ugzAMx98l9w5C+UjdF9hhX7cdURrSNisLiKSaqqrvPqfpqk5LtQdILggH+49tfiJgDrSGo4J8+Qq0AvI+qr59HjrZt09K7wgwOBpogPRotaojS+drYA5kP/UEz5ocyNba0UCWafn1IScjD5uDlmL45MYqLqS2cnpAMxODtlzYbMvFTmqDxxmGzHxM5tRKFBuMdadzCuQfQefGgChna47prIB6kfEs8qemN7cMtHBFFRh4roeWrMAo9LTK9pIsX7yGPYyS3MoZqIEYy+3eeCfsiysJ8/F25ftkrhKm32+8gZGiV+LnGjtrKqsG7RdcosO04VqJ1k58vVbiGig7ZYfp4odd4WLd3tz3dHbiWmydE7rgE3m8dphcxHnXya5dHdoRc1La9Sr3ifSD4D6R3xWdsDURY1HUVZOwCGJRRIwFXeR1wiKIxTxuLFjCIohFGTUWlCYsglhUUWORJyzCWNQRY1HUddpEwlg0MWPBqoRFGAsWMxYNSz+oYSwWMWPB0iZyb5wV85gTd5EycRHmIuo5J2vS+PsOFzEPOgtWpvfFHS5innTi90V6X9zhIupR57xYJC7CXEQ96yxZ2kdCXJy+ASfo/oA='),(4948,2881,'wpil_links_outbound_internal_count_data','eJzdW21vqzYU/iuISdP2gdsA4SVE1dRVV9Ome9tqndSPkQNO4pUYhE0zbtX/vmOTtMltpFsMra18iWI4+BweP358/AJKPC95JMloep24QWLflSSffS0ynM++EHpvJ3HyyJIosXMozUhmT4UtS/zErqvchn/jUWKvOC9ZcnZG8eZfXDHcLBuK02KNGCcoxZTj6hMUz6Q9mBeMi7++m9g/eESYxYlNRJkicDhP3LaSUlbyKuobcTlxPRG2Bw/KiF3fm8BTYMkJz7E9vWrr4E2J7f3qWBImNuOI16w1gjdPC3BOeVsOWiTYcxUsr5dtAZ5Mc5Lu7sWyTsJJQdsLItCiWiJK0hmv0GJB0ucHcUZ4UW3tABWULmZ7fp+kEaLpShgBcID5Fd5Yf0nkrD/2oLMuJXb21iHKMpzN5s2shDgJFfiN2uDyIkVtcIdv+QRwKZMh8t5Ohv3LToUfCN4wBx5y2qe0kcWL4/CUyOIBWfbxsrZY96KIp0yRMHw7RYRHlHJhh6p7I8gRxVF3ckhEynqeE7b6HsxDolyLGBnPLnPEmA03HmWdosEGB0/wSKIyfnulm9JB2ZrQM/GWn8pV+Zv4cy5g+fmnkR9PwSMw5nxXt6Drf2VRycKkgzq8doQqjM43on3aGlt/4jbwTEYgGe0JjyneWUm/8VB+X+o97h0atsKLCrfN7HoqjuVvCy1a4nPZkTYrwkpctU4F186lZ0ka6Ps15bO6zBDHx8J60qc9oRyngH69xMZXH4/c7v2lNXJSwhsjFCcejzUqzvAIDik7gI1m2YEINMrO1rtpsiPD0ig7wmSbG18CCXuJz1hdfBQG6w1mPF3BD64cCXDbg5qiuteoQEGsU4HeB8ZBZSiIdctQEOuUoda7cTIkwtIpQ1D53QsTrUvJxF5qFKjPuzrQb9eN1oiuEOeIOrRJNepP6Omccw0F3KCKE3q6FSf0dCpO6904xRFhaVScSWJ/3VGvl86EHzrlEn0WU4ewHNHMhIQn1JrwDI7gsMqjPdcJteY6oZm5Tqg51wEFuJUktP6UJOwlP5F6mjPp3nlwtsQbJOYKRqz3BDrXe4bGb9hplvbVnkDrak9g5mpPoHe1Bxj7ecfAXqoTf6zq5OQbmmO+MkN1Iq1zrIHxG1R1Iu1TrUjrVCsyc6oVaZ9qfd4xsJfqTD5UdYqaO8XC4cWGOiWEBBZMm+r448mou+qYfdTiuuZWsbD+AYCtmy3Avfjhqp/NCvwOnXSFOMwfHbhd6DuoFbjuKRHCD787e/PLGuXYmoPuMm5VOKvlmPJrP4Kon9cKOijIwXkt0SD6dMMdxwrZirk0EYOpiF0IxwFdWF0tcdVvy8BVP6sVdRjkj9ADZXXOnf0b+hgzGSks6RnMGChdCHgPD3/eDsEX9eM2cYfx5ihfihwzYWMMaU7qJKgA7uIZ43dgjvpZiS4TtSPMmRdZM69JnuHKFOqcWCIDb/b7C8jvwB31ne24w37JEe68OofOIEKdmnNSxPEgwzwgy99bhIdhTY99yn65TclwnRVGaI0XBgpn0g2mDJRuWI0P4R2GL+obS3GHY2jH+FIvFo1DSVnC8GvGGOWFKtvc5vLGh8a6ETBbVxLmdxik1HcIon4zbYYpKQzJbfxxfFJDlAtNcyvxPWBMP6aor+pOOnxQ+aN0Bi3EruwGk+WKO3nBdC71Rv4pkUZ8gnmgLxcCautOQm19Aah78cdTX/QNVdPh7WKTvtQ3DE9qui3ymDWhZI3yvLEIfUCMPOBB1vQ89SVfvd9rV0k0/ciPmZ/+B/sDOEc='),(4949,2881,'wpil_links_outbound_internal_count_data','eJzdW21vqzYU/iuISdP2gdsA4SVE1dRVV9Ome9tqndSPkQNO4pUYhE0zbtX/vmOTtMltpFsMra18iWI4+BweP358/AJKPC95JMloep24QWLflSSffS0ynM++EHpvJ3HyyJIosXMozUhmT4UtS/zErqvchn/jUWKvOC9ZcnZG8eZfXDHcLBuK02KNGCcoxZTj6hMUz6Q9mBeMi7++m9g/eESYxYlNRJkicDhP3LaSUlbyKuobcTlxPRG2Bw/KiF3fm8BTYMkJz7E9vWrr4E2J7f3qWBImNuOI16w1gjdPC3BOeVsOWiTYcxUsr5dtAZ5Mc5Lu7sWyTsJJQdsLItCiWiJK0hmv0GJB0ucHcUZ4UW3tABWULmZ7fp+kEaLpShgBcID5Fd5Yf0nkrD/2oLMuJXb21iHKMpzN5s2shDgJFfiN2uDyIkVtcIdv+QRwKZMh8t5Ohv3LToUfCN4wBx5y2qe0kcWL4/CUyOIBWfbxsrZY96KIp0yRMHw7RYRHlHJhh6p7I8gRxVF3ckhEynqeE7b6HsxDolyLGBnPLnPEmA03HmWdosEGB0/wSKIyfnulm9JB2ZrQM/GWn8pV+Zv4cy5g+fmnkR9PwSMw5nxXt6Drf2VRycKkgzq8doQqjM43on3aGlt/4jbwTEYgGe0JjyneWUm/8VB+X+o97h0atsKLCrfN7HoqjuVvCy1a4nPZkTYrwkpctU4F186lZ0ka6Ps15bO6zBDHx8J60qc9oRyngH69xMZXH4/c7v2lNXJSwhsjFCcejzUqzvAIDik7gI1m2YEINMrO1rtpsiPD0ig7wmSbG18CCXuJz1hdfBQG6w1mPF3BD64cCXDbg5qiuteoQEGsU4HeB8ZBZSiIdctQEOuUoda7cTIkwtIpQ1D53QsTrUvJxF5qFKjPuzrQb9eN1oiuEOeIOrRJNepP6Omccw0F3KCKE3q6FSf0dCpO6904xRFhaVScSWJ/3VGvl86EHzrlEn0WU4ewHNHMhIQn1JrwDI7gsMqjPdcJteY6oZm5Tqg51wEFuJUktP6UJOwlP5F6mjPp3nlwtsQbJOYKRqz3BDrXe4bGb9hplvbVnkDrak9g5mpPoHe1Bxj7ecfAXqoTf6zq5OQbmmO+MkN1Iq1zrIHxG1R1Iu1TrUjrVCsyc6oVaZ9qfd4xsJfqTD5UdYqaO8XC4cWGOiWEBBZMm+r448mou+qYfdTiuuZWsbD+AYCtmy3Avfjhqp/NCvwOnXSFOMwfHbhd6DuoFbjuKRHCD787e/PLGuXYmoPuMm5VOKvlmPJrP4Kon9cKOijIwXkt0SD6dMMdxwrZirk0EYOpiF0IxwFdWF0tcdVvy8BVP6sVdRjkj9ADZXXOnf0b+hgzGSks6RnMGChdCHgPD3/eDsEX9eM2cYfx5ihfihwzYWMMaU7qJKgA7uIZ43dgjvpZiS4TtSPMmRdZM69JnuHKFOqcWCIDb/b7C8jvwB31ne24w37JEe68OofOIEKdmnNSxPEgwzwgy99bhIdhTY99yn65TclwnRVGaI0XBgpn0g2mDJRuWI0P4R2GL+obS3GHY2jH+FIvFo1DSVnC8GvGGOWFKtvc5vLGh8a6ETBbVxLmdxik1HcIon4zbYYpKQzJbfxxfFJDlAtNcyvxPWBMP6aor+pOOnxQ+aN0Bi3EruwGk+WKO3nBdC71Rv4pkUZ8gnmgLxcCautOQm19Aah78cdTX/QNVdPh7WKTvtQ3DE9qui3ymDWhZI3yvLEIfUCMPOBB1vQ89SVfvd9rV0k0/ciPmZ/+B/sDOEc='),(4950,2881,'wpil_links_outbound_internal_count_data','eJzdW21vqzYU/iuISdP2gdsA4SVE1dRVV9Ome9tqndSPkQNO4pUYhE0zbtX/vmOTtMltpFsMra18iWI4+BweP358/AJKPC95JMloep24QWLflSSffS0ynM++EHpvJ3HyyJIosXMozUhmT4UtS/zErqvchn/jUWKvOC9ZcnZG8eZfXDHcLBuK02KNGCcoxZTj6hMUz6Q9mBeMi7++m9g/eESYxYlNRJkicDhP3LaSUlbyKuobcTlxPRG2Bw/KiF3fm8BTYMkJz7E9vWrr4E2J7f3qWBImNuOI16w1gjdPC3BOeVsOWiTYcxUsr5dtAZ5Mc5Lu7sWyTsJJQdsLItCiWiJK0hmv0GJB0ucHcUZ4UW3tABWULmZ7fp+kEaLpShgBcID5Fd5Yf0nkrD/2oLMuJXb21iHKMpzN5s2shDgJFfiN2uDyIkVtcIdv+QRwKZMh8t5Ohv3LToUfCN4wBx5y2qe0kcWL4/CUyOIBWfbxsrZY96KIp0yRMHw7RYRHlHJhh6p7I8gRxVF3ckhEynqeE7b6HsxDolyLGBnPLnPEmA03HmWdosEGB0/wSKIyfnulm9JB2ZrQM/GWn8pV+Zv4cy5g+fmnkR9PwSMw5nxXt6Drf2VRycKkgzq8doQqjM43on3aGlt/4jbwTEYgGe0JjyneWUm/8VB+X+o97h0atsKLCrfN7HoqjuVvCy1a4nPZkTYrwkpctU4F186lZ0ka6Ps15bO6zBDHx8J60qc9oRyngH69xMZXH4/c7v2lNXJSwhsjFCcejzUqzvAIDik7gI1m2YEINMrO1rtpsiPD0ig7wmSbG18CCXuJz1hdfBQG6w1mPF3BD64cCXDbg5qiuteoQEGsU4HeB8ZBZSiIdctQEOuUoda7cTIkwtIpQ1D53QsTrUvJxF5qFKjPuzrQb9eN1oiuEOeIOrRJNepP6Omccw0F3KCKE3q6FSf0dCpO6904xRFhaVScSWJ/3VGvl86EHzrlEn0WU4ewHNHMhIQn1JrwDI7gsMqjPdcJteY6oZm5Tqg51wEFuJUktP6UJOwlP5F6mjPp3nlwtsQbJOYKRqz3BDrXe4bGb9hplvbVnkDrak9g5mpPoHe1Bxj7ecfAXqoTf6zq5OQbmmO+MkN1Iq1zrIHxG1R1Iu1TrUjrVCsyc6oVaZ9qfd4xsJfqTD5UdYqaO8XC4cWGOiWEBBZMm+r448mou+qYfdTiuuZWsbD+AYCtmy3Avfjhqp/NCvwOnXSFOMwfHbhd6DuoFbjuKRHCD787e/PLGuXYmoPuMm5VOKvlmPJrP4Kon9cKOijIwXkt0SD6dMMdxwrZirk0EYOpiF0IxwFdWF0tcdVvy8BVP6sVdRjkj9ADZXXOnf0b+hgzGSks6RnMGChdCHgPD3/eDsEX9eM2cYfx5ihfihwzYWMMaU7qJKgA7uIZ43dgjvpZiS4TtSPMmRdZM69JnuHKFOqcWCIDb/b7C8jvwB31ne24w37JEe68OofOIEKdmnNSxPEgwzwgy99bhIdhTY99yn65TclwnRVGaI0XBgpn0g2mDJRuWI0P4R2GL+obS3GHY2jH+FIvFo1DSVnC8GvGGOWFKtvc5vLGh8a6ETBbVxLmdxik1HcIon4zbYYpKQzJbfxxfFJDlAtNcyvxPWBMP6aor+pOOnxQ+aN0Bi3EruwGk+WKO3nBdC71Rv4pkUZ8gnmgLxcCautOQm19Aah78cdTX/QNVdPh7WKTvtQ3DE9qui3ymDWhZI3yvLEIfUCMPOBB1vQ89SVfvd9rV0k0/ciPmZ/+B/sDOEc='),(4951,2881,'wpil_links_outbound_internal_count_data','eJzdW21vqzYU/iuISdP2gdsA4SVE1dRVV9Ome9tqndSPkQNO4pUYhE0zbtX/vmOTtMltpFsMra18iWI4+BweP358/AJKPC95JMloep24QWLflSSffS0ynM++EHpvJ3HyyJIosXMozUhmT4UtS/zErqvchn/jUWKvOC9ZcnZG8eZfXDHcLBuK02KNGCcoxZTj6hMUz6Q9mBeMi7++m9g/eESYxYlNRJkicDhP3LaSUlbyKuobcTlxPRG2Bw/KiF3fm8BTYMkJz7E9vWrr4E2J7f3qWBImNuOI16w1gjdPC3BOeVsOWiTYcxUsr5dtAZ5Mc5Lu7sWyTsJJQdsLItCiWiJK0hmv0GJB0ucHcUZ4UW3tABWULmZ7fp+kEaLpShgBcID5Fd5Yf0nkrD/2oLMuJXb21iHKMpzN5s2shDgJFfiN2uDyIkVtcIdv+QRwKZMh8t5Ohv3LToUfCN4wBx5y2qe0kcWL4/CUyOIBWfbxsrZY96KIp0yRMHw7RYRHlHJhh6p7I8gRxVF3ckhEynqeE7b6HsxDolyLGBnPLnPEmA03HmWdosEGB0/wSKIyfnulm9JB2ZrQM/GWn8pV+Zv4cy5g+fmnkR9PwSMw5nxXt6Drf2VRycKkgzq8doQqjM43on3aGlt/4jbwTEYgGe0JjyneWUm/8VB+X+o97h0atsKLCrfN7HoqjuVvCy1a4nPZkTYrwkpctU4F186lZ0ka6Ps15bO6zBDHx8J60qc9oRyngH69xMZXH4/c7v2lNXJSwhsjFCcejzUqzvAIDik7gI1m2YEINMrO1rtpsiPD0ig7wmSbG18CCXuJz1hdfBQG6w1mPF3BD64cCXDbg5qiuteoQEGsU4HeB8ZBZSiIdctQEOuUoda7cTIkwtIpQ1D53QsTrUvJxF5qFKjPuzrQb9eN1oiuEOeIOrRJNepP6Omccw0F3KCKE3q6FSf0dCpO6904xRFhaVScSWJ/3VGvl86EHzrlEn0WU4ewHNHMhIQn1JrwDI7gsMqjPdcJteY6oZm5Tqg51wEFuJUktP6UJOwlP5F6mjPp3nlwtsQbJOYKRqz3BDrXe4bGb9hplvbVnkDrak9g5mpPoHe1Bxj7ecfAXqoTf6zq5OQbmmO+MkN1Iq1zrIHxG1R1Iu1TrUjrVCsyc6oVaZ9qfd4xsJfqTD5UdYqaO8XC4cWGOiWEBBZMm+r448mou+qYfdTiuuZWsbD+AYCtmy3Avfjhqp/NCvwOnXSFOMwfHbhd6DuoFbjuKRHCD787e/PLGuXYmoPuMm5VOKvlmPJrP4Kon9cKOijIwXkt0SD6dMMdxwrZirk0EYOpiF0IxwFdWF0tcdVvy8BVP6sVdRjkj9ADZXXOnf0b+hgzGSks6RnMGChdCHgPD3/eDsEX9eM2cYfx5ihfihwzYWMMaU7qJKgA7uIZ43dgjvpZiS4TtSPMmRdZM69JnuHKFOqcWCIDb/b7C8jvwB31ne24w37JEe68OofOIEKdmnNSxPEgwzwgy99bhIdhTY99yn65TclwnRVGaI0XBgpn0g2mDJRuWI0P4R2GL+obS3GHY2jH+FIvFo1DSVnC8GvGGOWFKtvc5vLGh8a6ETBbVxLmdxik1HcIon4zbYYpKQzJbfxxfFJDlAtNcyvxPWBMP6aor+pOOnxQ+aN0Bi3EruwGk+WKO3nBdC71Rv4pkUZ8gnmgLxcCautOQm19Aah78cdTX/QNVdPh7WKTvtQ3DE9qui3ymDWhZI3yvLEIfUCMPOBB1vQ89SVfvd9rV0k0/ciPmZ/+B/sDOEc='),(4952,2881,'wpil_links_outbound_internal_count_data','eJzdW21vqzYU/iuISdP2gdsA4SVE1dRVV9Ome9tqndSPkQNO4pUYhE0zbtX/vmOTtMltpFsMra18iWI4+BweP358/AJKPC95JMloep24QWLflSSffS0ynM++EHpvJ3HyyJIosXMozUhmT4UtS/zErqvchn/jUWKvOC9ZcnZG8eZfXDHcLBuK02KNGCcoxZTj6hMUz6Q9mBeMi7++m9g/eESYxYlNRJkicDhP3LaSUlbyKuobcTlxPRG2Bw/KiF3fm8BTYMkJz7E9vWrr4E2J7f3qWBImNuOI16w1gjdPC3BOeVsOWiTYcxUsr5dtAZ5Mc5Lu7sWyTsJJQdsLItCiWiJK0hmv0GJB0ucHcUZ4UW3tABWULmZ7fp+kEaLpShgBcID5Fd5Yf0nkrD/2oLMuJXb21iHKMpzN5s2shDgJFfiN2uDyIkVtcIdv+QRwKZMh8t5Ohv3LToUfCN4wBx5y2qe0kcWL4/CUyOIBWfbxsrZY96KIp0yRMHw7RYRHlHJhh6p7I8gRxVF3ckhEynqeE7b6HsxDolyLGBnPLnPEmA03HmWdosEGB0/wSKIyfnulm9JB2ZrQM/GWn8pV+Zv4cy5g+fmnkR9PwSMw5nxXt6Drf2VRycKkgzq8doQqjM43on3aGlt/4jbwTEYgGe0JjyneWUm/8VB+X+o97h0atsKLCrfN7HoqjuVvCy1a4nPZkTYrwkpctU4F186lZ0ka6Ps15bO6zBDHx8J60qc9oRyngH69xMZXH4/c7v2lNXJSwhsjFCcejzUqzvAIDik7gI1m2YEINMrO1rtpsiPD0ig7wmSbG18CCXuJz1hdfBQG6w1mPF3BD64cCXDbg5qiuteoQEGsU4HeB8ZBZSiIdctQEOuUoda7cTIkwtIpQ1D53QsTrUvJxF5qFKjPuzrQb9eN1oiuEOeIOrRJNepP6Omccw0F3KCKE3q6FSf0dCpO6904xRFhaVScSWJ/3VGvl86EHzrlEn0WU4ewHNHMhIQn1JrwDI7gsMqjPdcJteY6oZm5Tqg51wEFuJUktP6UJOwlP5F6mjPp3nlwtsQbJOYKRqz3BDrXe4bGb9hplvbVnkDrak9g5mpPoHe1Bxj7ecfAXqoTf6zq5OQbmmO+MkN1Iq1zrIHxG1R1Iu1TrUjrVCsyc6oVaZ9qfd4xsJfqTD5UdYqaO8XC4cWGOiWEBBZMm+r448mou+qYfdTiuuZWsbD+AYCtmy3Avfjhqp/NCvwOnXSFOMwfHbhd6DuoFbjuKRHCD787e/PLGuXYmoPuMm5VOKvlmPJrP4Kon9cKOijIwXkt0SD6dMMdxwrZirk0EYOpiF0IxwFdWF0tcdVvy8BVP6sVdRjkj9ADZXXOnf0b+hgzGSks6RnMGChdCHgPD3/eDsEX9eM2cYfx5ihfihwzYWMMaU7qJKgA7uIZ43dgjvpZiS4TtSPMmRdZM69JnuHKFOqcWCIDb/b7C8jvwB31ne24w37JEe68OofOIEKdmnNSxPEgwzwgy99bhIdhTY99yn65TclwnRVGaI0XBgpn0g2mDJRuWI0P4R2GL+obS3GHY2jH+FIvFo1DSVnC8GvGGOWFKtvc5vLGh8a6ETBbVxLmdxik1HcIon4zbYYpKQzJbfxxfFJDlAtNcyvxPWBMP6aor+pOOnxQ+aN0Bi3EruwGk+WKO3nBdC71Rv4pkUZ8gnmgLxcCautOQm19Aah78cdTX/QNVdPh7WKTvtQ3DE9qui3ymDWhZI3yvLEIfUCMPOBB1vQ89SVfvd9rV0k0/ciPmZ/+B/sDOEc='),(4957,2881,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4958,2881,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4959,2881,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4960,2881,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4961,2881,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(4966,2881,'kt_blocks_editor_width',''),(4967,2881,'_kad_post_transparent',''),(4968,2881,'_kad_post_title','default'),(4969,2881,'_kad_post_layout','default'),(4970,2881,'_kad_post_sidebar_id',''),(4971,2881,'_kad_post_content_style','default'),(4972,2881,'_kad_post_vertical_padding','default'),(4973,2881,'_kad_post_feature','default'),(4974,2881,'_kad_post_feature_position',''),(4975,2881,'_kad_post_header',''),(4976,2881,'_kad_post_footer',''),(4977,2881,'_has_fluentform','a:0:{}'),(4978,2881,'_wp_page_template','default'),(4980,2881,'footnotes',''),(4981,2881,'_kadence_starter_templates_imported_post','1'),(4983,2881,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4984,2881,'_yoast_wpseo_wordproof_timestamp',''),(4985,2881,'_yoast_wpseo_focuskw','near Marietta'),(4986,2881,'_yoast_wpseo_title','Gynecomastia Surgeon Near Marietta, GA (Male Breast Reduction)'),(4987,2881,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Marietta, Georgia, reach out to the Atlanta Gynecomastia Center.'),(4988,2881,'_yoast_wpseo_linkdex','60'),(4990,2881,'_kad_blocks_custom_css',''),(4991,2881,'_kad_blocks_head_custom_js',''),(4992,2881,'_kad_blocks_body_custom_js',''),(4993,2881,'_kad_blocks_footer_custom_js',''),(4995,2881,'_dp_original','2872'),(4996,2881,'_edit_lock','1711750662:1'),(4998,2881,'_edit_last','1'),(4999,2883,'_menu_item_type','post_type'),(5000,2883,'_menu_item_menu_item_parent','1492'),(5001,2883,'_menu_item_object_id','2881'),(5002,2883,'_menu_item_object','page'),(5003,2883,'_menu_item_target',''),(5004,2883,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5005,2883,'_menu_item_xfn',''),(5006,2883,'_menu_item_url',''),(5017,2886,'wpil_links_inbound_internal_count_data','eJztmE1v2zAMhv+KoHua2PGHqhx3bddhO+xoqDITa1UkQ5KXBUX++ySrKzL04EO2i+WbKZOvSOKBaZDRrKCvgm52TzQrKf7eC9k86hZk8yDUC6aEvlpaUyy91YgW74KvpVuKByOxf6pzijvnekvXawWnH2AsnA9nBVwfmXWCcVAOzJ0319fHKwM/BZzsygetYtQ66BVeTlsXHrcZxROSwY1QLIKtmE/omWZRpB9FPlT1JRzTLA9l+cxjRVlelz7KezrhJODd56jhzj3gazlLK4qtY26w0cl3hmt/uXLRLmOn7LuElcMhGj6SS8H/vCOjpnBCq3gQEtXmwJTgjTNsvxf8PRBa4bR58/NdYXzfXN17GZ2Y4l1w8i4kpHXsmbVenjlAnJmxknAJa1tom+dz0/vchAo928SEpOYsJvR3ZRfforQBKavtrADxabkOhEHwqwcjQHGwN/GRp81HVVWz4sNffOqYQ06PhHB3Exzb1OEgc4IjNG5QPTNMSpDQjsMFMdXGj4kT9rZRUyRNS07KWdGSbyi+7hd66/VNiJRpI1KTekFkApEqbUTIvGbOf0GkThyRslgQmUCEJI5InS+ITCBynzgiJFsQmVqepb1ezUmxTJpJRtLesPof1mXUTDKS+JZ1m9/PihGf1qcO+At6Ghz6po+AHrUB9PVfoJL4zrUg8xo5XsoAa5HrjB4OHbKBltu/KZffYqjq/w=='),(5019,2886,'wpil_links_outbound_internal_count_data','eJzdV11v0zAU/StWkHjL2nw0TV1VPAwJCcE2wQOPkeu4jVlmB9tZiab+d67trStjApqACn2JYvv6nuOT42uH4BzfcTyeX+JogoNPDa+L97JkdfGOi+vAjmo8xUENrYKXwdzGapzgoFV1AG9pjoPKmEbj0UiwzWemNOvWnWBU3hBtOKFMGKbOoDmiUhhCzcjNg2lSG/uaRDj4xVQbBkDctgUB4CWOfJLGJfmB/ZXtxlFs6ccw0TGP0jyFWRBpuKlZML/wOUzXsGA/ncYZDrQhptU+CBSw5IGPb0+8InqXQtft2jdgJq05fRjLXU5uuBS+wxKVak0Ep4VRZLXidDeRldxIdR8HqhC6KvZwty6ICFrZIMAFWh9pxcq2ZqiTrUJchA3IKAWSCt1yZVpSI8ig2xpW4zh4BqQsWVksu6IB4lxYQceebS3pLnJ/2VvQr7dLZtHvu2S/O1wp9qWFsboLib5mZQgtbenpEPKEPtHRDBVP0+SUDJXMcPCoOHKKo30B0U7+QUaKexspS3saiRJR8pIYpo/mliSN8lNySwy0+MoWHkQUQ8Q6RaKd0IMckvR2SD7u6RDdqjVTXVhKCir8E/UliqeTwx3j9GnaZc119VTa791zaTlqU57XROsABu5czlvONn9ZSms1B3HAft40ISlvuBjZNZ81VfPKviysSC9fjJN8DncLcNPiIbd19NdGKteYxUOAwN9ksbFfy2f0eHYYPOgYOLfHFpGyhyiHe8D96Oe4j3mfR4fPrBhUb//Ro7gPsHt6acmaLdwm21Rcw6XCg1rnLRyysxCUh1aYom3shn+O1vaI5QmSv1Zn6IPUTCyZWiOoTMj2XBFTketB9Sntf4L1vQrdb6rjFaMsy07p+IK7TqMkhduzGnZWTU7JCwrPsvkTpWAJ94CDdMr+859MhadPlbEV/4/9Xk3763PAQX208pHEs1MqHwlofsE26K1TDr3Z/0s6d9oNMMP2GwcN5EI='),(5021,2886,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(5029,2886,'wpil_links_inbound_internal_count_data','eJztmE1v2zAMhv+KoHua2PGHqhx3bddhO+xoqDITa1UkQ5KXBUX++ySrKzL04EO2i+WbKZOvSOKBaZDRrKCvgm52TzQrKf7eC9k86hZk8yDUC6aEvlpaUyy91YgW74KvpVuKByOxf6pzijvnekvXawWnH2AsnA9nBVwfmXWCcVAOzJ0319fHKwM/BZzsygetYtQ66BVeTlsXHrcZxROSwY1QLIKtmE/omWZRpB9FPlT1JRzTLA9l+cxjRVlelz7KezrhJODd56jhzj3gazlLK4qtY26w0cl3hmt/uXLRLmOn7LuElcMhGj6SS8H/vCOjpnBCq3gQEtXmwJTgjTNsvxf8PRBa4bR58/NdYXzfXN17GZ2Y4l1w8i4kpHXsmbVenjlAnJmxknAJa1tom+dz0/vchAo928SEpOYsJvR3ZRfforQBKavtrADxabkOhEHwqwcjQHGwN/GRp81HVVWz4sNffOqYQ06PhHB3Exzb1OEgc4IjNG5QPTNMSpDQjsMFMdXGj4kT9rZRUyRNS07KWdGSbyi+7hd66/VNiJRpI1KTekFkApEqbUTIvGbOf0GkThyRslgQmUCEJI5InS+ITCBynzgiJFsQmVqepb1ezUmxTJpJRtLesPof1mXUTDKS+JZ1m9/PihGf1qcO+At6Ghz6po+AHrUB9PVfoJL4zrUg8xo5XsoAa5HrjB4OHbKBltu/KZffYqjq/w=='),(5030,2886,'wpil_links_inbound_internal_count_data','eJztmE1v2zAMhv+KoHua2PGHqhx3bddhO+xoqDITa1UkQ5KXBUX++ySrKzL04EO2i+WbKZOvSOKBaZDRrKCvgm52TzQrKf7eC9k86hZk8yDUC6aEvlpaUyy91YgW74KvpVuKByOxf6pzijvnekvXawWnH2AsnA9nBVwfmXWCcVAOzJ0319fHKwM/BZzsygetYtQ66BVeTlsXHrcZxROSwY1QLIKtmE/omWZRpB9FPlT1JRzTLA9l+cxjRVlelz7KezrhJODd56jhzj3gazlLK4qtY26w0cl3hmt/uXLRLmOn7LuElcMhGj6SS8H/vCOjpnBCq3gQEtXmwJTgjTNsvxf8PRBa4bR58/NdYXzfXN17GZ2Y4l1w8i4kpHXsmbVenjlAnJmxknAJa1tom+dz0/vchAo928SEpOYsJvR3ZRfforQBKavtrADxabkOhEHwqwcjQHGwN/GRp81HVVWz4sNffOqYQ06PhHB3Exzb1OEgc4IjNG5QPTNMSpDQjsMFMdXGj4kT9rZRUyRNS07KWdGSbyi+7hd66/VNiJRpI1KTekFkApEqbUTIvGbOf0GkThyRslgQmUCEJI5InS+ITCBynzgiJFsQmVqepb1ezUmxTJpJRtLesPof1mXUTDKS+JZ1m9/PihGf1qcO+At6Ghz6po+AHrUB9PVfoJL4zrUg8xo5XsoAa5HrjB4OHbKBltu/KZffYqjq/w=='),(5031,2886,'wpil_links_inbound_internal_count_data','eJztmE1v2zAMhv+KoHua2PGHqhx3bddhO+xoqDITa1UkQ5KXBUX++ySrKzL04EO2i+WbKZOvSOKBaZDRrKCvgm52TzQrKf7eC9k86hZk8yDUC6aEvlpaUyy91YgW74KvpVuKByOxf6pzijvnekvXawWnH2AsnA9nBVwfmXWCcVAOzJ0319fHKwM/BZzsygetYtQ66BVeTlsXHrcZxROSwY1QLIKtmE/omWZRpB9FPlT1JRzTLA9l+cxjRVlelz7KezrhJODd56jhzj3gazlLK4qtY26w0cl3hmt/uXLRLmOn7LuElcMhGj6SS8H/vCOjpnBCq3gQEtXmwJTgjTNsvxf8PRBa4bR58/NdYXzfXN17GZ2Y4l1w8i4kpHXsmbVenjlAnJmxknAJa1tom+dz0/vchAo928SEpOYsJvR3ZRfforQBKavtrADxabkOhEHwqwcjQHGwN/GRp81HVVWz4sNffOqYQ06PhHB3Exzb1OEgc4IjNG5QPTNMSpDQjsMFMdXGj4kT9rZRUyRNS07KWdGSbyi+7hd66/VNiJRpI1KTekFkApEqbUTIvGbOf0GkThyRslgQmUCEJI5InS+ITCBynzgiJFsQmVqepb1ezUmxTJpJRtLesPof1mXUTDKS+JZ1m9/PihGf1qcO+At6Ghz6po+AHrUB9PVfoJL4zrUg8xo5XsoAa5HrjB4OHbKBltu/KZffYqjq/w=='),(5032,2886,'wpil_links_inbound_internal_count_data','eJztmE1v2zAMhv+KoHua2PGHqhx3bddhO+xoqDITa1UkQ5KXBUX++ySrKzL04EO2i+WbKZOvSOKBaZDRrKCvgm52TzQrKf7eC9k86hZk8yDUC6aEvlpaUyy91YgW74KvpVuKByOxf6pzijvnekvXawWnH2AsnA9nBVwfmXWCcVAOzJ0319fHKwM/BZzsygetYtQ66BVeTlsXHrcZxROSwY1QLIKtmE/omWZRpB9FPlT1JRzTLA9l+cxjRVlelz7KezrhJODd56jhzj3gazlLK4qtY26w0cl3hmt/uXLRLmOn7LuElcMhGj6SS8H/vCOjpnBCq3gQEtXmwJTgjTNsvxf8PRBa4bR58/NdYXzfXN17GZ2Y4l1w8i4kpHXsmbVenjlAnJmxknAJa1tom+dz0/vchAo928SEpOYsJvR3ZRfforQBKavtrADxabkOhEHwqwcjQHGwN/GRp81HVVWz4sNffOqYQ06PhHB3Exzb1OEgc4IjNG5QPTNMSpDQjsMFMdXGj4kT9rZRUyRNS07KWdGSbyi+7hd66/VNiJRpI1KTekFkApEqbUTIvGbOf0GkThyRslgQmUCEJI5InS+ITCBynzgiJFsQmVqepb1ezUmxTJpJRtLesPof1mXUTDKS+JZ1m9/PihGf1qcO+At6Ghz6po+AHrUB9PVfoJL4zrUg8xo5XsoAa5HrjB4OHbKBltu/KZffYqjq/w=='),(5036,2886,'wpil_links_outbound_internal_count_data','eJzdV11v0zAU/StWkHjL2nw0TV1VPAwJCcE2wQOPkeu4jVlmB9tZiab+d67trStjApqACn2JYvv6nuOT42uH4BzfcTyeX+JogoNPDa+L97JkdfGOi+vAjmo8xUENrYKXwdzGapzgoFV1AG9pjoPKmEbj0UiwzWemNOvWnWBU3hBtOKFMGKbOoDmiUhhCzcjNg2lSG/uaRDj4xVQbBkDctgUB4CWOfJLGJfmB/ZXtxlFs6ccw0TGP0jyFWRBpuKlZML/wOUzXsGA/ncYZDrQhptU+CBSw5IGPb0+8InqXQtft2jdgJq05fRjLXU5uuBS+wxKVak0Ep4VRZLXidDeRldxIdR8HqhC6KvZwty6ICFrZIMAFWh9pxcq2ZqiTrUJchA3IKAWSCt1yZVpSI8ig2xpW4zh4BqQsWVksu6IB4lxYQceebS3pLnJ/2VvQr7dLZtHvu2S/O1wp9qWFsboLib5mZQgtbenpEPKEPtHRDBVP0+SUDJXMcPCoOHKKo30B0U7+QUaKexspS3saiRJR8pIYpo/mliSN8lNySwy0+MoWHkQUQ8Q6RaKd0IMckvR2SD7u6RDdqjVTXVhKCir8E/UliqeTwx3j9GnaZc119VTa791zaTlqU57XROsABu5czlvONn9ZSms1B3HAft40ISlvuBjZNZ81VfPKviysSC9fjJN8DncLcNPiIbd19NdGKteYxUOAwN9ksbFfy2f0eHYYPOgYOLfHFpGyhyiHe8D96Oe4j3mfR4fPrBhUb//Ro7gPsHt6acmaLdwm21Rcw6XCg1rnLRyysxCUh1aYom3shn+O1vaI5QmSv1Zn6IPUTCyZWiOoTMj2XBFTketB9Sntf4L1vQrdb6rjFaMsy07p+IK7TqMkhduzGnZWTU7JCwrPsvkTpWAJ94CDdMr+859MhadPlbEV/4/9Xk3763PAQX208pHEs1MqHwlofsE26K1TDr3Z/0s6d9oNMMP2GwcN5EI='),(5037,2886,'wpil_links_outbound_internal_count_data','eJzdV11v0zAU/StWkHjL2nw0TV1VPAwJCcE2wQOPkeu4jVlmB9tZiab+d67trStjApqACn2JYvv6nuOT42uH4BzfcTyeX+JogoNPDa+L97JkdfGOi+vAjmo8xUENrYKXwdzGapzgoFV1AG9pjoPKmEbj0UiwzWemNOvWnWBU3hBtOKFMGKbOoDmiUhhCzcjNg2lSG/uaRDj4xVQbBkDctgUB4CWOfJLGJfmB/ZXtxlFs6ccw0TGP0jyFWRBpuKlZML/wOUzXsGA/ncYZDrQhptU+CBSw5IGPb0+8InqXQtft2jdgJq05fRjLXU5uuBS+wxKVak0Ep4VRZLXidDeRldxIdR8HqhC6KvZwty6ICFrZIMAFWh9pxcq2ZqiTrUJchA3IKAWSCt1yZVpSI8ig2xpW4zh4BqQsWVksu6IB4lxYQceebS3pLnJ/2VvQr7dLZtHvu2S/O1wp9qWFsboLib5mZQgtbenpEPKEPtHRDBVP0+SUDJXMcPCoOHKKo30B0U7+QUaKexspS3saiRJR8pIYpo/mliSN8lNySwy0+MoWHkQUQ8Q6RaKd0IMckvR2SD7u6RDdqjVTXVhKCir8E/UliqeTwx3j9GnaZc119VTa791zaTlqU57XROsABu5czlvONn9ZSms1B3HAft40ISlvuBjZNZ81VfPKviysSC9fjJN8DncLcNPiIbd19NdGKteYxUOAwN9ksbFfy2f0eHYYPOgYOLfHFpGyhyiHe8D96Oe4j3mfR4fPrBhUb//Ro7gPsHt6acmaLdwm21Rcw6XCg1rnLRyysxCUh1aYom3shn+O1vaI5QmSv1Zn6IPUTCyZWiOoTMj2XBFTketB9Sntf4L1vQrdb6rjFaMsy07p+IK7TqMkhduzGnZWTU7JCwrPsvkTpWAJ94CDdMr+859MhadPlbEV/4/9Xk3763PAQX208pHEs1MqHwlofsE26K1TDr3Z/0s6d9oNMMP2GwcN5EI='),(5038,2886,'wpil_links_outbound_internal_count_data','eJzdV11v0zAU/StWkHjL2nw0TV1VPAwJCcE2wQOPkeu4jVlmB9tZiab+d67trStjApqACn2JYvv6nuOT42uH4BzfcTyeX+JogoNPDa+L97JkdfGOi+vAjmo8xUENrYKXwdzGapzgoFV1AG9pjoPKmEbj0UiwzWemNOvWnWBU3hBtOKFMGKbOoDmiUhhCzcjNg2lSG/uaRDj4xVQbBkDctgUB4CWOfJLGJfmB/ZXtxlFs6ccw0TGP0jyFWRBpuKlZML/wOUzXsGA/ncYZDrQhptU+CBSw5IGPb0+8InqXQtft2jdgJq05fRjLXU5uuBS+wxKVak0Ep4VRZLXidDeRldxIdR8HqhC6KvZwty6ICFrZIMAFWh9pxcq2ZqiTrUJchA3IKAWSCt1yZVpSI8ig2xpW4zh4BqQsWVksu6IB4lxYQceebS3pLnJ/2VvQr7dLZtHvu2S/O1wp9qWFsboLib5mZQgtbenpEPKEPtHRDBVP0+SUDJXMcPCoOHKKo30B0U7+QUaKexspS3saiRJR8pIYpo/mliSN8lNySwy0+MoWHkQUQ8Q6RaKd0IMckvR2SD7u6RDdqjVTXVhKCir8E/UliqeTwx3j9GnaZc119VTa791zaTlqU57XROsABu5czlvONn9ZSms1B3HAft40ISlvuBjZNZ81VfPKviysSC9fjJN8DncLcNPiIbd19NdGKteYxUOAwN9ksbFfy2f0eHYYPOgYOLfHFpGyhyiHe8D96Oe4j3mfR4fPrBhUb//Ro7gPsHt6acmaLdwm21Rcw6XCg1rnLRyysxCUh1aYom3shn+O1vaI5QmSv1Zn6IPUTCyZWiOoTMj2XBFTketB9Sntf4L1vQrdb6rjFaMsy07p+IK7TqMkhduzGnZWTU7JCwrPsvkTpWAJ94CDdMr+859MhadPlbEV/4/9Xk3763PAQX208pHEs1MqHwlofsE26K1TDr3Z/0s6d9oNMMP2GwcN5EI='),(5039,2886,'wpil_links_outbound_internal_count_data','eJzdV11v0zAU/StWkHjL2nw0TV1VPAwJCcE2wQOPkeu4jVlmB9tZiab+d67trStjApqACn2JYvv6nuOT42uH4BzfcTyeX+JogoNPDa+L97JkdfGOi+vAjmo8xUENrYKXwdzGapzgoFV1AG9pjoPKmEbj0UiwzWemNOvWnWBU3hBtOKFMGKbOoDmiUhhCzcjNg2lSG/uaRDj4xVQbBkDctgUB4CWOfJLGJfmB/ZXtxlFs6ccw0TGP0jyFWRBpuKlZML/wOUzXsGA/ncYZDrQhptU+CBSw5IGPb0+8InqXQtft2jdgJq05fRjLXU5uuBS+wxKVak0Ep4VRZLXidDeRldxIdR8HqhC6KvZwty6ICFrZIMAFWh9pxcq2ZqiTrUJchA3IKAWSCt1yZVpSI8ig2xpW4zh4BqQsWVksu6IB4lxYQceebS3pLnJ/2VvQr7dLZtHvu2S/O1wp9qWFsboLib5mZQgtbenpEPKEPtHRDBVP0+SUDJXMcPCoOHKKo30B0U7+QUaKexspS3saiRJR8pIYpo/mliSN8lNySwy0+MoWHkQUQ8Q6RaKd0IMckvR2SD7u6RDdqjVTXVhKCir8E/UliqeTwx3j9GnaZc119VTa791zaTlqU57XROsABu5czlvONn9ZSms1B3HAft40ISlvuBjZNZ81VfPKviysSC9fjJN8DncLcNPiIbd19NdGKteYxUOAwN9ksbFfy2f0eHYYPOgYOLfHFpGyhyiHe8D96Oe4j3mfR4fPrBhUb//Ro7gPsHt6acmaLdwm21Rcw6XCg1rnLRyysxCUh1aYom3shn+O1vaI5QmSv1Zn6IPUTCyZWiOoTMj2XBFTketB9Sntf4L1vQrdb6rjFaMsy07p+IK7TqMkhduzGnZWTU7JCwrPsvkTpWAJ94CDdMr+859MhadPlbEV/4/9Xk3763PAQX208pHEs1MqHwlofsE26K1TDr3Z/0s6d9oNMMP2GwcN5EI='),(5043,2886,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(5044,2886,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(5045,2886,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(5046,2886,'wpil_links_outbound_external_count_data','eJxLtDKwqq4FAAZPAf4='),(5050,2886,'kt_blocks_editor_width',''),(5051,2886,'_kad_post_transparent',''),(5052,2886,'_kad_post_title','default'),(5053,2886,'_kad_post_layout','default'),(5054,2886,'_kad_post_sidebar_id',''),(5055,2886,'_kad_post_content_style','default'),(5056,2886,'_kad_post_vertical_padding','default'),(5057,2886,'_kad_post_feature','default'),(5058,2886,'_kad_post_feature_position',''),(5059,2886,'_kad_post_header',''),(5060,2886,'_kad_post_footer',''),(5061,2886,'_has_fluentform','a:0:{}'),(5062,2886,'_wp_page_template','default'),(5064,2886,'footnotes',''),(5065,2886,'_kadence_starter_templates_imported_post','1'),(5066,2886,'_yoast_wpseo_content_score','30'),(5067,2886,'_yoast_wpseo_estimated-reading-time-minutes','2'),(5068,2886,'_yoast_wpseo_wordproof_timestamp',''),(5069,2886,'_yoast_wpseo_focuskw','reviews'),(5070,2886,'_yoast_wpseo_title','Gynecomastia Reviews for Best Rated Atlanta Plastic Surgeon'),(5071,2886,'_yoast_wpseo_metadesc','Check out some gynecomastia reviews for the best rated plastic surgeons at the Atlanta Gynecomastia Center.'),(5072,2886,'_yoast_wpseo_linkdex','65'),(5074,2886,'_kad_blocks_custom_css',''),(5075,2886,'_kad_blocks_head_custom_js',''),(5076,2886,'_kad_blocks_body_custom_js',''),(5077,2886,'_kad_blocks_footer_custom_js',''),(5079,2886,'_dp_original','2854'),(5080,2886,'_edit_lock','1711837422:1'),(5082,2886,'_edit_last','1'),(5083,2888,'_menu_item_type','post_type'),(5084,2888,'_menu_item_menu_item_parent','0'),(5085,2888,'_menu_item_object_id','2886'),(5086,2888,'_menu_item_object','page'),(5087,2888,'_menu_item_target',''),(5088,2888,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5089,2888,'_menu_item_xfn',''),(5090,2888,'_menu_item_url',''),(5119,2868,'_yoast_wpseo_content_score','90'),(5774,2743,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5776,3043,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5847,3066,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5882,1906,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5883,3079,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5893,2881,'_yoast_wpseo_content_score','90'),(5896,1908,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5903,3088,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5921,1911,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5928,3096,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5936,1901,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5943,3099,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5945,2657,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5947,3101,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5949,2668,'yoast-structured-data-blocks-images-cache','a:0:{}'),(5951,3103,'yoast-structured-data-blocks-images-cache','a:0:{}'),(6257,3178,'footnotes',''),(6268,3179,'footnotes',''),(6270,3181,'footnotes',''),(6281,1275,'wpil_links_inbound_internal_count','19'),(6282,1275,'wpil_links_outbound_internal_count','4'),(6283,1275,'wpil_links_outbound_external_count','13'),(6284,1275,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(6285,1275,'wpil_sync_report3','1'),(6299,3183,'yoast-structured-data-blocks-images-cache','a:0:{}'),(6301,3185,'yoast-structured-data-blocks-images-cache','a:0:{}'),(6303,3186,'yoast-structured-data-blocks-images-cache','a:0:{}'),(7121,3346,'footnotes',''),(7220,3363,'footnotes',''),(7236,3369,'footnotes',''),(7290,3383,'yoast-structured-data-blocks-images-cache','a:0:{}'),(7386,3398,'yoast-structured-data-blocks-images-cache','a:0:{}'),(7429,3405,'yoast-structured-data-blocks-images-cache','a:0:{}'),(7443,3408,'yoast-structured-data-blocks-images-cache','a:0:{}'),(7459,3412,'yoast-structured-data-blocks-images-cache','a:0:{}'),(7478,3415,'yoast-structured-data-blocks-images-cache','a:0:{}'),(7483,3418,'wpil_links_inbound_internal_count_data','eJzlWE2P2yAQ/SuISr21sfFHHHKoql77dat6sggmCa0XLIZsZa32v3ewN062XamVnBO+GTzzZub5AWMETxl/0DzZfuFpwem3Trf1J9uotv6ozU/KK/4AfM1pi6NaN3QbbIFnnJ5cS/GpzDk9et8BX62M+vVDOVD9oTdK2jsBXgupjFfuLQ5X19NvpDCNboRXsAo4AcaCD49Zyuk/oIJZxakOYyMwkR1PR5BuAPmrmq9heigWOEPHoZIsr4IXWnrtW0W3n0cM33eKXsNhmZyCF/4EoxEyIi0GN34cFyNDMEFAezqMA/SUrZbnd9WAqb22ZpwIiVp3EEbL2jux32s5OapGe+ue7JAVIff1VdzHwUgYeQxGaIKBkS9LJm7pUwDRNKqpd33dYV7aBL6SMZnWSjEm87yqR42MLlEUrKrKmETBMC29J709EeEUEeSGCmGLVEhalFlUCgmxzrSSvXWjRODkDsr1swSSLVMgmySuLSTBc0XfKxN2EXfeO+Q8aeRLlUYVlTSyoeWY+LocLDBLHcVC1ZFG1ZCyYAKgAG65c5QL1UYSlTZyDPxhovXcdlw2EqfuNWDgm/Qh60VKJsvXUTWqOZp0+Inx9etXFUvXWyB3iCFFS44aEKonyDo5WNHOO36qyPTisJp8+wedWf5C339ZgLdYd5vIePzPK4SyjKrJKxAqqGFYaAM3+C8QIuHyEz3ZKYLOoBvlVDPo6EZNYLrMa0lWFVHJh7GX/xFmtoHpMu8n04xtolJHwul7p8j3cEFJpo7w3QxtPP4GWMI0OA=='),(7485,3418,'wpil_links_outbound_internal_count_data','eJzdWlGPozYQ/isWle6N2wAhAUdRVd1DpardVurDPUYOTMCt10a22TRa7X/vGHPd7F10vcBKcHlZxTD2jGe++TweltFoTZ84XWx+p1FKg48NF7vfVAli9yuXfwc0o0+GrmkgcLTjZbBxsoYmNGi1CPDXMqNBbW1j6N2dhONfoA2cqpOEQj0wYzkrQFrQ73F4VyhpWWHvunk4TRnrfiYRDf5nqhNDRdyNJUPFexr5RZpukS+s/8M9plHszI9xYmd5tMyWOAslLbcCgs29X8OeGgjOlzN0RQNjmW2NG+D+m3YvuKn7kdsI2uYXSL13jLMic9PKD4IZE+CLp27NRw7Hka6CkndmZctvX+LYhKx84PLO7el9Uzc/uh9b54R3PyySbIPrcyW3n9bGLcM/jdLdII/HKGIa2PboouFX9Prca8RQZ4HTgdFBjQV8kur0XuGjr+t9WfeydgyjhoMGH9QoHqK4++tdyyrYdklyrLlpQHulDlnbTnMHkV2hWml3bVMyC5fMeu6ibURbeWxhTArBCweue58CKM9d2PwDh3qlKyZ5sbOaHQ68+G+ii6vSvRymGCsOuzPgPndCTBa1E8IsyWnwZ1FD2QogjKCkaQWmAOoiVpXsFPT6WFlCudufdg2ayaXLxYW3TaiCedteZ8kzpt5ggkmTKwJTMxtyE+JrNR3LpFE0IcuM9ddbUg16YmKqQQsmpJpe+9yopjNrQqpJUPH5folpdQX6RLgk93Akv3QeGcU38XC+yb89OuePQxcAM2VtE1/POvdfZZp+iUkwEiXedkPUgTh+GgWHZDAc1lck6wU4MDxObXj+YjqE5IvslhCSOyygd8kDyFHgWA4Gx+qKs7ZgrQETqsNM0JDG6YRVytt57k3rlTidul6J0ynrFa99dvWKM2vKq9HKw1zzfWsBb0PkfPejuCcdzD3ZFRl08WBSAoyTmQkf5YvVLZ1O8fqzGhdr2xefm1GgWQ2vZsYVtwYkV3oegEmW2YBr9nwBs8w7wCiydy7DupfLAjnbcFmJE2k0PDKBUwl7ULIiPhLjYLQezj1XnLUXYLRX5WnfclHCTLAU5UNaNvPFUrygwU+S7RXqIwZdo3hJsIgaBZdsMFzyxSi4vHrEDigZHoFXtQ2FMtPduJPlOrkl0KxQpGHa8qIVTCPnWHQpkGOtSM0egbQS87VSEojhleSoiSEd+UgQF4lR6Mpv6xKmabSINp9TPGKn86I4IauTzhjX3gCJDq+gJHtH+JZYbkw7Llmj7/2Lnsbj6QKrcYngZ+LV54lxjhr+ZWIdDaS1RvMCARBy3IPG/cF0B99qdVM9IXdVLdDgvmn4RYd5HFSGN5VXV0BlDweloT/o8BKOMJ+wrZyubuqQS5BDGBhbA55zTLjKWvgim/SuHgeR4Y3mayDyik16aE/JIbd1c19c/jo1DhjDm8zZ0Oq5tzssVYH7NyFODv3s6bASrwd0neeLFSeiWk16F4+DyPBe4GxLNtfUMC//VHLQAK4R1qAWJYnS5JFr275pPTe8Oba8ItEmS6Akzm8pgdx5/PLJn/x8zrsfOt+NQMPzvwpUuTg='),(7487,3418,'wpil_links_outbound_external_count_data','eJxtj8FuAjEMRH+lyr1ss7AFmV+g5dhjZBKLtRqcKAmgCvHvdVbqrbexPM8zRrDwYHjbH8FOYL4yR/eRAkV3YPk2sINHhS2YqJPjYPbdW2EN5lqiUTUpNbeWKwwDXSiwZ6GViuox08qny4ClsY802HFrp836Nd2o3JjuHd8onWrrchzB/H+hb3dgWBoVQY09LSWUzQv7qcM7GBQ/p9LNVt1nEioYX1Cotpkq47LRuhgCBXf6cTlezyx/55SJyWPjJN2pT/ukiaIBz+cvirtg4g=='),(7489,2657,'wpil_links_inbound_internal_count','18'),(7490,2657,'wpil_links_outbound_internal_count','16'),(7491,2657,'wpil_links_outbound_external_count','1'),(7492,2657,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(7493,2657,'wpil_sync_report3','1'),(7494,3418,'kt_blocks_editor_width',''),(7495,3418,'_kad_post_transparent',''),(7496,3418,'_kad_post_title','default'),(7497,3418,'_kad_post_layout','default'),(7498,3418,'_kad_post_sidebar_id',''),(7499,3418,'_kad_post_content_style','default'),(7500,3418,'_kad_post_vertical_padding','default'),(7501,3418,'_kad_post_feature','default'),(7502,3418,'_kad_post_feature_position',''),(7503,3418,'_kad_post_header',''),(7504,3418,'_kad_post_footer',''),(7505,3418,'_has_fluentform','a:0:{}'),(7506,3418,'_wp_page_template','default'),(7508,3418,'_kadence_starter_templates_imported_post','1'),(7509,3418,'_yoast_wpseo_estimated-reading-time-minutes','8'),(7510,3418,'_yoast_wpseo_wordproof_timestamp',''),(7511,3418,'_yoast_wpseo_content_score','30'),(7513,3418,'footnotes',''),(7514,3418,'_yoast_wpseo_focuskw','candidate'),(7515,3418,'_yoast_wpseo_title','Am I A Candidate for Gynecomastia Surgery (Atlanta Gyno Surgeons)'),(7516,3418,'_yoast_wpseo_metadesc','Are you asking yourself, if you are a candidate for gynecomastia surgery in Atlanta? Schedule your free consultation today to get started.'),(7517,3418,'_yoast_wpseo_linkdex','71'),(7518,3418,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(7519,3418,'_kad_blocks_custom_css',''),(7520,3418,'_kad_blocks_head_custom_js',''),(7521,3418,'_kad_blocks_body_custom_js',''),(7522,3418,'_kad_blocks_footer_custom_js',''),(7523,3418,'wpil_links_inbound_internal_count_data','eJzlWE2P2yAQ/SuISr21sfFHHHKoql77dat6sggmCa0XLIZsZa32v3ewN062XamVnBO+GTzzZub5AWMETxl/0DzZfuFpwem3Trf1J9uotv6ozU/KK/4AfM1pi6NaN3QbbIFnnJ5cS/GpzDk9et8BX62M+vVDOVD9oTdK2jsBXgupjFfuLQ5X19NvpDCNboRXsAo4AcaCD49Zyuk/oIJZxakOYyMwkR1PR5BuAPmrmq9heigWOEPHoZIsr4IXWnrtW0W3n0cM33eKXsNhmZyCF/4EoxEyIi0GN34cFyNDMEFAezqMA/SUrZbnd9WAqb22ZpwIiVp3EEbL2jux32s5OapGe+ue7JAVIff1VdzHwUgYeQxGaIKBkS9LJm7pUwDRNKqpd33dYV7aBL6SMZnWSjEm87yqR42MLlEUrKrKmETBMC29J709EeEUEeSGCmGLVEhalFlUCgmxzrSSvXWjRODkDsr1swSSLVMgmySuLSTBc0XfKxN2EXfeO+Q8aeRLlUYVlTSyoeWY+LocLDBLHcVC1ZFG1ZCyYAKgAG65c5QL1UYSlTZyDPxhovXcdlw2EqfuNWDgm/Qh60VKJsvXUTWqOZp0+Inx9etXFUvXWyB3iCFFS44aEKonyDo5WNHOO36qyPTisJp8+wedWf5C339ZgLdYd5vIePzPK4SyjKrJKxAqqGFYaAM3+C8QIuHyEz3ZKYLOoBvlVDPo6EZNYLrMa0lWFVHJh7GX/xFmtoHpMu8n04xtolJHwul7p8j3cEFJpo7w3QxtPP4GWMI0OA=='),(7524,3418,'wpil_links_outbound_internal_count_data','eJzdWlGPozYQ/isWle6N2wAhAUdRVd1DpardVurDPUYOTMCt10a22TRa7X/vGHPd7F10vcBKcHlZxTD2jGe++TweltFoTZ84XWx+p1FKg48NF7vfVAli9yuXfwc0o0+GrmkgcLTjZbBxsoYmNGi1CPDXMqNBbW1j6N2dhONfoA2cqpOEQj0wYzkrQFrQ73F4VyhpWWHvunk4TRnrfiYRDf5nqhNDRdyNJUPFexr5RZpukS+s/8M9plHszI9xYmd5tMyWOAslLbcCgs29X8OeGgjOlzN0RQNjmW2NG+D+m3YvuKn7kdsI2uYXSL13jLMic9PKD4IZE+CLp27NRw7Hka6CkndmZctvX+LYhKx84PLO7el9Uzc/uh9b54R3PyySbIPrcyW3n9bGLcM/jdLdII/HKGIa2PboouFX9Prca8RQZ4HTgdFBjQV8kur0XuGjr+t9WfeydgyjhoMGH9QoHqK4++tdyyrYdklyrLlpQHulDlnbTnMHkV2hWml3bVMyC5fMeu6ibURbeWxhTArBCweue58CKM9d2PwDh3qlKyZ5sbOaHQ68+G+ii6vSvRymGCsOuzPgPndCTBa1E8IsyWnwZ1FD2QogjKCkaQWmAOoiVpXsFPT6WFlCudufdg2ayaXLxYW3TaiCedteZ8kzpt5ggkmTKwJTMxtyE+JrNR3LpFE0IcuM9ddbUg16YmKqQQsmpJpe+9yopjNrQqpJUPH5folpdQX6RLgk93Akv3QeGcU38XC+yb89OuePQxcAM2VtE1/POvdfZZp+iUkwEiXedkPUgTh+GgWHZDAc1lck6wU4MDxObXj+YjqE5IvslhCSOyygd8kDyFHgWA4Gx+qKs7ZgrQETqsNM0JDG6YRVytt57k3rlTidul6J0ynrFa99dvWKM2vKq9HKw1zzfWsBb0PkfPejuCcdzD3ZFRl08WBSAoyTmQkf5YvVLZ1O8fqzGhdr2xefm1GgWQ2vZsYVtwYkV3oegEmW2YBr9nwBs8w7wCiydy7DupfLAjnbcFmJE2k0PDKBUwl7ULIiPhLjYLQezj1XnLUXYLRX5WnfclHCTLAU5UNaNvPFUrygwU+S7RXqIwZdo3hJsIgaBZdsMFzyxSi4vHrEDigZHoFXtQ2FMtPduJPlOrkl0KxQpGHa8qIVTCPnWHQpkGOtSM0egbQS87VSEojhleSoiSEd+UgQF4lR6Mpv6xKmabSINp9TPGKn86I4IauTzhjX3gCJDq+gJHtH+JZYbkw7Llmj7/2Lnsbj6QKrcYngZ+LV54lxjhr+ZWIdDaS1RvMCARBy3IPG/cF0B99qdVM9IXdVLdDgvmn4RYd5HFSGN5VXV0BlDweloT/o8BKOMJ+wrZyubuqQS5BDGBhbA55zTLjKWvgim/SuHgeR4Y3mayDyik16aE/JIbd1c19c/jo1DhjDm8zZ0Oq5tzssVYH7NyFODv3s6bASrwd0neeLFSeiWk16F4+DyPBe4GxLNtfUMC//VHLQAK4R1qAWJYnS5JFr275pPTe8Oba8ItEmS6Akzm8pgdx5/PLJn/x8zrsfOt+NQMPzvwpUuTg='),(7525,3418,'wpil_links_outbound_external_count_data','eJxtj8FuAjEMRH+lyr1ss7AFmV+g5dhjZBKLtRqcKAmgCvHvdVbqrbexPM8zRrDwYHjbH8FOYL4yR/eRAkV3YPk2sINHhS2YqJPjYPbdW2EN5lqiUTUpNbeWKwwDXSiwZ6GViuox08qny4ClsY802HFrp836Nd2o3JjuHd8onWrrchzB/H+hb3dgWBoVQY09LSWUzQv7qcM7GBQ/p9LNVt1nEioYX1Cotpkq47LRuhgCBXf6cTlezyx/55SJyWPjJN2pT/ukiaIBz+cvirtg4g=='),(7531,3418,'_dp_original','1525'),(7532,3418,'_edit_lock','1711837270:1'),(7542,3418,'_edit_last','1'),(7546,3426,'_menu_item_type','post_type'),(7547,3426,'_menu_item_menu_item_parent','0'),(7548,3426,'_menu_item_object_id','1511'),(7549,3426,'_menu_item_object','page'),(7550,3426,'_menu_item_target',''),(7551,3426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7552,3426,'_menu_item_xfn',''),(7553,3426,'_menu_item_url',''),(7554,3427,'_menu_item_type','post_type'),(7555,3427,'_menu_item_menu_item_parent','0'),(7556,3427,'_menu_item_object_id','1525'),(7557,3427,'_menu_item_object','page'),(7558,3427,'_menu_item_target',''),(7559,3427,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7560,3427,'_menu_item_xfn',''),(7561,3427,'_menu_item_url',''),(7562,3428,'_menu_item_type','post_type'),(7563,3428,'_menu_item_menu_item_parent','0'),(7564,3428,'_menu_item_object_id','1551'),(7565,3428,'_menu_item_object','page'),(7566,3428,'_menu_item_target',''),(7567,3428,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7568,3428,'_menu_item_xfn',''),(7569,3428,'_menu_item_url',''),(7570,3429,'_menu_item_type','post_type'),(7571,3429,'_menu_item_menu_item_parent','0'),(7572,3429,'_menu_item_object_id','2743'),(7573,3429,'_menu_item_object','page'),(7574,3429,'_menu_item_target',''),(7575,3429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7576,3429,'_menu_item_xfn',''),(7577,3429,'_menu_item_url',''),(7578,3430,'_menu_item_type','post_type'),(7579,3430,'_menu_item_menu_item_parent','0'),(7580,3430,'_menu_item_object_id','1482'),(7581,3430,'_menu_item_object','page'),(7582,3430,'_menu_item_target',''),(7583,3430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7584,3430,'_menu_item_xfn',''),(7585,3430,'_menu_item_url',''),(7586,3431,'_menu_item_type','post_type'),(7587,3431,'_menu_item_menu_item_parent','3430'),(7588,3431,'_menu_item_object_id','1908'),(7589,3431,'_menu_item_object','page'),(7590,3431,'_menu_item_target',''),(7591,3431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7592,3431,'_menu_item_xfn',''),(7593,3431,'_menu_item_url',''),(7594,3432,'_menu_item_type','post_type'),(7595,3432,'_menu_item_menu_item_parent','3430'),(7596,3432,'_menu_item_object_id','1906'),(7597,3432,'_menu_item_object','page'),(7598,3432,'_menu_item_target',''),(7599,3432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7600,3432,'_menu_item_xfn',''),(7601,3432,'_menu_item_url',''),(7602,3433,'_menu_item_type','post_type'),(7603,3433,'_menu_item_menu_item_parent','3430'),(7604,3433,'_menu_item_object_id','1911'),(7605,3433,'_menu_item_object','page'),(7606,3433,'_menu_item_target',''),(7607,3433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7608,3433,'_menu_item_xfn',''),(7609,3433,'_menu_item_url',''),(7610,3434,'_menu_item_type','post_type'),(7611,3434,'_menu_item_menu_item_parent','3430'),(7612,3434,'_menu_item_object_id','1901'),(7613,3434,'_menu_item_object','page'),(7614,3434,'_menu_item_target',''),(7615,3434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7616,3434,'_menu_item_xfn',''),(7617,3434,'_menu_item_url',''),(7618,3435,'_menu_item_type','post_type'),(7619,3435,'_menu_item_menu_item_parent','3430'),(7620,3435,'_menu_item_object_id','2657'),(7621,3435,'_menu_item_object','page'),(7622,3435,'_menu_item_target',''),(7623,3435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7624,3435,'_menu_item_xfn',''),(7625,3435,'_menu_item_url',''),(7626,3436,'_menu_item_type','post_type'),(7627,3436,'_menu_item_menu_item_parent','3430'),(7628,3436,'_menu_item_object_id','2668'),(7629,3436,'_menu_item_object','page'),(7630,3436,'_menu_item_target',''),(7631,3436,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7632,3436,'_menu_item_xfn',''),(7633,3436,'_menu_item_url',''),(7638,3439,'_menu_item_type','post_type'),(7639,3439,'_menu_item_menu_item_parent','0'),(7640,3439,'_menu_item_object_id','1484'),(7641,3439,'_menu_item_object','page'),(7642,3439,'_menu_item_target',''),(7643,3439,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7644,3439,'_menu_item_xfn',''),(7645,3439,'_menu_item_url',''),(7646,3440,'_menu_item_type','post_type'),(7647,3440,'_menu_item_menu_item_parent','3439'),(7648,3440,'_menu_item_object_id','2881'),(7649,3440,'_menu_item_object','page'),(7650,3440,'_menu_item_target',''),(7651,3440,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7652,3440,'_menu_item_xfn',''),(7653,3440,'_menu_item_url',''),(7654,3441,'_menu_item_type','post_type'),(7655,3441,'_menu_item_menu_item_parent','3439'),(7656,3441,'_menu_item_object_id','2872'),(7657,3441,'_menu_item_object','page'),(7658,3441,'_menu_item_target',''),(7659,3441,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7660,3441,'_menu_item_xfn',''),(7661,3441,'_menu_item_url',''),(7662,3442,'_menu_item_type','post_type'),(7663,3442,'_menu_item_menu_item_parent','3439'),(7664,3442,'_menu_item_object_id','2868'),(7665,3442,'_menu_item_object','page'),(7666,3442,'_menu_item_target',''),(7667,3442,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7668,3442,'_menu_item_xfn',''),(7669,3442,'_menu_item_url',''),(7670,3443,'_menu_item_type','post_type'),(7671,3443,'_menu_item_menu_item_parent','3439'),(7672,3443,'_menu_item_object_id','2862'),(7673,3443,'_menu_item_object','page'),(7674,3443,'_menu_item_target',''),(7675,3443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7676,3443,'_menu_item_xfn',''),(7677,3443,'_menu_item_url',''),(7678,3444,'_menu_item_type','post_type'),(7679,3444,'_menu_item_menu_item_parent','3439'),(7680,3444,'_menu_item_object_id','2858'),(7681,3444,'_menu_item_object','page'),(7682,3444,'_menu_item_target',''),(7683,3444,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7684,3444,'_menu_item_xfn',''),(7685,3444,'_menu_item_url',''),(7686,3445,'_menu_item_type','post_type'),(7687,3445,'_menu_item_menu_item_parent','3439'),(7688,3445,'_menu_item_object_id','2854'),(7689,3445,'_menu_item_object','page'),(7690,3445,'_menu_item_target',''),(7691,3445,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7692,3445,'_menu_item_xfn',''),(7693,3445,'_menu_item_url',''),(7694,3446,'_menu_item_type','post_type'),(7695,3446,'_menu_item_menu_item_parent','3439'),(7696,3446,'_menu_item_object_id','2844'),(7697,3446,'_menu_item_object','page'),(7698,3446,'_menu_item_target',''),(7699,3446,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7700,3446,'_menu_item_xfn',''),(7701,3446,'_menu_item_url',''),(7702,3447,'_menu_item_type','post_type'),(7703,3447,'_menu_item_menu_item_parent','3439'),(7704,3447,'_menu_item_object_id','2787'),(7705,3447,'_menu_item_object','page'),(7706,3447,'_menu_item_target',''),(7707,3447,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7708,3447,'_menu_item_xfn',''),(7709,3447,'_menu_item_url',''),(7720,3450,'_menu_item_type','post_type'),(7721,3450,'_menu_item_menu_item_parent','0'),(7722,3450,'_menu_item_object_id','1563'),(7723,3450,'_menu_item_object','page'),(7724,3450,'_menu_item_target',''),(7725,3450,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7726,3450,'_menu_item_xfn',''),(7727,3450,'_menu_item_url',''),(7728,3451,'_menu_item_type','post_type'),(7729,3451,'_menu_item_menu_item_parent','0'),(7730,3451,'_menu_item_object_id','1666'),(7731,3451,'_menu_item_object','page'),(7732,3451,'_menu_item_target',''),(7733,3451,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7734,3451,'_menu_item_xfn',''),(7735,3451,'_menu_item_url',''),(7736,3452,'_menu_item_type','post_type'),(7737,3452,'_menu_item_menu_item_parent','0'),(7738,3452,'_menu_item_object_id','1668'),(7739,3452,'_menu_item_object','page'),(7740,3452,'_menu_item_target',''),(7741,3452,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7742,3452,'_menu_item_xfn',''),(7743,3452,'_menu_item_url',''),(7744,3453,'_menu_item_type','post_type'),(7745,3453,'_menu_item_menu_item_parent','0'),(7746,3453,'_menu_item_object_id','1275'),(7747,3453,'_menu_item_object','page'),(7748,3453,'_menu_item_target',''),(7749,3453,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7750,3453,'_menu_item_xfn',''),(7751,3453,'_menu_item_url',''),(7752,3454,'_menu_item_type','post_type'),(7753,3454,'_menu_item_menu_item_parent','0'),(7754,3454,'_menu_item_object_id','2886'),(7755,3454,'_menu_item_object','page'),(7756,3454,'_menu_item_target',''),(7757,3454,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7758,3454,'_menu_item_xfn',''),(7759,3454,'_menu_item_url',''),(7765,3457,'_menu_item_type','post_type'),(7766,3457,'_menu_item_menu_item_parent','0'),(7767,3457,'_menu_item_object_id','2056'),(7768,3457,'_menu_item_object','page'),(7769,3457,'_menu_item_target',''),(7770,3457,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7771,3457,'_menu_item_xfn',''),(7772,3457,'_menu_item_url',''),(7773,3458,'_menu_item_type','post_type'),(7774,3458,'_menu_item_menu_item_parent','0'),(7775,3458,'_menu_item_object_id','2396'),(7776,3458,'_menu_item_object','page'),(7777,3458,'_menu_item_target',''),(7778,3458,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7779,3458,'_menu_item_xfn',''),(7780,3458,'_menu_item_url',''),(7783,3459,'_menu_item_type','post_type'),(7784,3459,'_menu_item_menu_item_parent','1975'),(7785,3459,'_menu_item_object_id','3418'),(7786,3459,'_menu_item_object','page'),(7787,3459,'_menu_item_target',''),(7788,3459,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7789,3459,'_menu_item_xfn',''),(7790,3459,'_menu_item_url',''),(7794,2055,'_wp_old_date','2024-03-06'),(7795,1975,'_wp_old_date','2024-03-06'),(7796,1974,'_wp_old_date','2024-03-06'),(7797,1973,'_wp_old_date','2024-03-06'),(7798,2750,'_wp_old_date','2024-03-06'),(7799,1491,'_wp_old_date','2024-03-06'),(7800,1950,'_wp_old_date','2024-03-06'),(7801,1951,'_wp_old_date','2024-03-06'),(7802,1949,'_wp_old_date','2024-03-06'),(7803,1952,'_wp_old_date','2024-03-06'),(7804,2667,'_wp_old_date','2024-03-06'),(7805,2672,'_wp_old_date','2024-03-06'),(7806,1671,'_wp_old_date','2024-03-06'),(7807,1670,'_wp_old_date','2024-03-06'),(7808,1665,'_wp_old_date','2024-03-06'),(7809,1756,'_wp_old_date','2024-03-06'),(7810,2888,'_wp_old_date','2024-03-06'),(7811,1492,'_wp_old_date','2024-03-06'),(7812,2790,'_wp_old_date','2024-03-06'),(7813,2846,'_wp_old_date','2024-03-06'),(7814,2856,'_wp_old_date','2024-03-06'),(7815,2860,'_wp_old_date','2024-03-06'),(7816,2866,'_wp_old_date','2024-03-06'),(7817,2870,'_wp_old_date','2024-03-06'),(7818,2874,'_wp_old_date','2024-03-06'),(7819,2883,'_wp_old_date','2024-03-06'),(7838,3469,'_menu_item_type','post_type'),(7839,3469,'_menu_item_menu_item_parent','0'),(7840,3469,'_menu_item_object_id','3418'),(7841,3469,'_menu_item_object','page'),(7842,3469,'_menu_item_target',''),(7843,3469,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7844,3469,'_menu_item_xfn',''),(7845,3469,'_menu_item_url',''),(7855,3473,'wpil_links_inbound_internal_count_data','eJztmEuP2yAQx78K4p7Gr9gOOfXUy/Zx26PFYmLTUrAMbmSt8t07mG0Uew+bVTcXi5sHD/P4+ydIhpI4Jc+CRIfvJN4R/NgJWX3VNZfVg1C/MCnJsyEFwRKsStT44HwNSQkeeonhaR8R3FrbGbLdKn76yXvDx2ZUnOnf1FhBGVeW95/A3F4vb+zYcTNfokfw3Jy4aFq7kdqYrcuQQQJtrHtMY4LfSOLcSoKFsxWFEp9I7IN0U5BXff5wyyROXKMJbJx6jLMygV3gaYWVHB+++RiuaHwdzpCcYGOpHYx3Aq2YhuTKenvntTOXEEYOjTdgJ5OC/XtXTjGFFVr5BVeo7huqBKtsT49HwS4beS2s7l/8QBXKjtVV3vPkRBVrnRM0Bp19GZVGn53E6HGSGD2AxPglEa1rXldPY9VBfUI53SJflNSM+qLm3Z1BpoDNHJs8z9eETRpN2Fz0+mB8koDPDJ80i8s14ZODS0d7K9ggaS9HZEFSjk6tRi39w9Ggat43WnFkRKMEZKLKIv8lkPxfutJA14yupNytiq47H05ZwGeOT1EWAZ+b8dkFfBanTx5On9vxyQM+y8srC/jcjE8R8FngU6zq//yd8SkDPgt8yjjgczM++4DPAp8sXF7vmCqGafSr387h9noHP2EsvRhLp8l+TfzEYLlGP46YMIleTqL30ZqIueuJc/4LJN27vA=='),(7857,3473,'wpil_links_outbound_internal_count_data','eJzdWU2P2zYQ/SuEAuSm2PqwV6Zh9JBDgaLdFuihR4Er0jKzNKmS1LrCYv97h5TieDeLNJZc0NmLIUrDmeHjmzcSTXCS4EeO5+vfcbLA0V8NF+VvijJR/srlfYQL/GjwDY4EjEpOo7WzNTjDUatFBFd5gaOdtY3Bs5lkh09MG9bVnWSV2hNjOamYtEx/gOGsUtKSys78PJimjHWXWYKj/5jqzCAQd2NJIPAdTnonjXfyVfZ/uNs4SV36KUz0mSd5kcMssLTcChatb3sftmtYdOrO4CWOjCW2NW4A62/aO8HNbhi5hUBuvYNFj45xWRRuGv0oiDERPHj0Ph84O0yEilHu0yry73dxaGJC91zO3Jo+NLvmJ3excSC8fzfPijX450puPvuGJbN/GqX9YJVOCUQ0I5uD243eYx/PPQYO+QxcDNgdiFixz1Y+7hkYfTvuF7+vR4dt1GyrWb+pSTomsP/toSU12/giOey4aZjugzpmbXxkT5GyUq20ZdtQYtlraT353TairXtuwZ5UgleOXLd9CYA9d9vW33CsV7omklel1WS75dVxottXpQc7KDFSbcsT4j55IyKrnTMCGoOrP6sdo61giCBAhqEHrm1LBFIacRnDqoySCHyYVkBxQBbIKkq6aMiEUMpoedeVDSyAS1el8z5roSrSZ/28fp6gKEdLzzI7o55Ia5iJ1TY+NQinRIt0cb4S3X5TfQYXQcjjgPv5BC/EDfBkv1dSdMhjTyeRJB1NkuIMkpzejt1WGKhwJZhxNldCnNV8GbCF/b9oXrLLAU6BuxxkELDLDdGvrcv5tAJ2uQyc01ZzWSOoB6Zth2jLoI0hMAC5gmZX7YismZmkV9lovVqcUWGHHbExN66WVMBWliQBFWkqXpfUHEAisOZABgE1Z4h+bZrj0wqoOW43Ttc7SVny8a/LycjebVpdM92FU5jlMuQ7z6Vwu6TSACKBlQYyCKg0Q/RrUxqfVkClSecvPsMGCk5SnMUPfjao8c365VvgCkd3St0jIhGXaDjYUPp44MEeiGiPgIyGbjlerM8QiWeiUxFJuaOmCabXWZ4U5+v19R5u5GDSwBbD4/fvijQBOqE9+KiAKCAU4KoDIlFUKyKmfTbcjObLamyTAvX8u4VnoouJuWc0hpFx6ZkY/MS9o2BUSm/y7C1RyQnPF8SRRxydAoiO8E8iUvHGhEfjJE++UnF4fIyKtiDf9aV73+rt9b4cKGhenPO/2gNPz/mnnfBP+Hdx/v0oBvs8ydLVm9IowPyWHdAvHjn07H3yo8duAhue/gV35Vbd'),(7859,3473,'wpil_links_outbound_external_count_data','eJxVj9FuwjAMRX9lynvpqrEVmV+A8bjHKG3Mai04VeOqqhD/PifApL35xjfnXjto4Erwuj9B8w7ma6Rgj9FjsAfiHwM7uCZowQRVlrzZZ2+CNzDzFIxO7Q7MIDImqOtlWTYDuiCD2nHTx0t9l/WZhDGlimeZSCjyY7FWgc6YZA1YdciovpSpW4XGJHls8vwPml81lVhwYqctutJJfWP586niA4zjfohTQbRPxPryl1cWerLzHr3tVjuG+Zv4SdOAEHuXu5YzwfRRA1n5t9svQ1hogg=='),(7865,3473,'wpil_links_inbound_internal_count_data','eJztmEuP2yAQx78K4p7Gr9gOOfXUy/Zx26PFYmLTUrAMbmSt8t07mG0Uew+bVTcXi5sHD/P4+ydIhpI4Jc+CRIfvJN4R/NgJWX3VNZfVg1C/MCnJsyEFwRKsStT44HwNSQkeeonhaR8R3FrbGbLdKn76yXvDx2ZUnOnf1FhBGVeW95/A3F4vb+zYcTNfokfw3Jy4aFq7kdqYrcuQQQJtrHtMY4LfSOLcSoKFsxWFEp9I7IN0U5BXff5wyyROXKMJbJx6jLMygV3gaYWVHB+++RiuaHwdzpCcYGOpHYx3Aq2YhuTKenvntTOXEEYOjTdgJ5OC/XtXTjGFFVr5BVeo7huqBKtsT49HwS4beS2s7l/8QBXKjtVV3vPkRBVrnRM0Bp19GZVGn53E6HGSGD2AxPglEa1rXldPY9VBfUI53SJflNSM+qLm3Z1BpoDNHJs8z9eETRpN2Fz0+mB8koDPDJ80i8s14ZODS0d7K9ggaS9HZEFSjk6tRi39w9Ggat43WnFkRKMEZKLKIv8lkPxfutJA14yupNytiq47H05ZwGeOT1EWAZ+b8dkFfBanTx5On9vxyQM+y8srC/jcjE8R8FngU6zq//yd8SkDPgt8yjjgczM++4DPAp8sXF7vmCqGafSr387h9noHP2EsvRhLp8l+TfzEYLlGP46YMIleTqL30ZqIueuJc/4LJN27vA=='),(7866,3473,'wpil_links_inbound_internal_count_data','eJztmEuP2yAQx78K4p7Gr9gOOfXUy/Zx26PFYmLTUrAMbmSt8t07mG0Uew+bVTcXi5sHD/P4+ydIhpI4Jc+CRIfvJN4R/NgJWX3VNZfVg1C/MCnJsyEFwRKsStT44HwNSQkeeonhaR8R3FrbGbLdKn76yXvDx2ZUnOnf1FhBGVeW95/A3F4vb+zYcTNfokfw3Jy4aFq7kdqYrcuQQQJtrHtMY4LfSOLcSoKFsxWFEp9I7IN0U5BXff5wyyROXKMJbJx6jLMygV3gaYWVHB+++RiuaHwdzpCcYGOpHYx3Aq2YhuTKenvntTOXEEYOjTdgJ5OC/XtXTjGFFVr5BVeo7huqBKtsT49HwS4beS2s7l/8QBXKjtVV3vPkRBVrnRM0Bp19GZVGn53E6HGSGD2AxPglEa1rXldPY9VBfUI53SJflNSM+qLm3Z1BpoDNHJs8z9eETRpN2Fz0+mB8koDPDJ80i8s14ZODS0d7K9ggaS9HZEFSjk6tRi39w9Ggat43WnFkRKMEZKLKIv8lkPxfutJA14yupNytiq47H05ZwGeOT1EWAZ+b8dkFfBanTx5On9vxyQM+y8srC/jcjE8R8FngU6zq//yd8SkDPgt8yjjgczM++4DPAp8sXF7vmCqGafSr387h9noHP2EsvRhLp8l+TfzEYLlGP46YMIleTqL30ZqIueuJc/4LJN27vA=='),(7869,3473,'wpil_links_outbound_internal_count_data','eJzdWU2P2zYQ/SuEAuSm2PqwV6Zh9JBDgaLdFuihR4Er0jKzNKmS1LrCYv97h5TieDeLNJZc0NmLIUrDmeHjmzcSTXCS4EeO5+vfcbLA0V8NF+VvijJR/srlfYQL/GjwDY4EjEpOo7WzNTjDUatFBFd5gaOdtY3Bs5lkh09MG9bVnWSV2hNjOamYtEx/gOGsUtKSys78PJimjHWXWYKj/5jqzCAQd2NJIPAdTnonjXfyVfZ/uNs4SV36KUz0mSd5kcMssLTcChatb3sftmtYdOrO4CWOjCW2NW4A62/aO8HNbhi5hUBuvYNFj45xWRRuGv0oiDERPHj0Ph84O0yEilHu0yry73dxaGJC91zO3Jo+NLvmJ3excSC8fzfPijX450puPvuGJbN/GqX9YJVOCUQ0I5uD243eYx/PPQYO+QxcDNgdiFixz1Y+7hkYfTvuF7+vR4dt1GyrWb+pSTomsP/toSU12/giOey4aZjugzpmbXxkT5GyUq20ZdtQYtlraT353TairXtuwZ5UgleOXLd9CYA9d9vW33CsV7omklel1WS75dVxottXpQc7KDFSbcsT4j55IyKrnTMCGoOrP6sdo61giCBAhqEHrm1LBFIacRnDqoySCHyYVkBxQBbIKkq6aMiEUMpoedeVDSyAS1el8z5roSrSZ/28fp6gKEdLzzI7o55Ia5iJ1TY+NQinRIt0cb4S3X5TfQYXQcjjgPv5BC/EDfBkv1dSdMhjTyeRJB1NkuIMkpzejt1WGKhwJZhxNldCnNV8GbCF/b9oXrLLAU6BuxxkELDLDdGvrcv5tAJ2uQyc01ZzWSOoB6Zth2jLoI0hMAC5gmZX7YismZmkV9lovVqcUWGHHbExN66WVMBWliQBFWkqXpfUHEAisOZABgE1Z4h+bZrj0wqoOW43Ttc7SVny8a/LycjebVpdM92FU5jlMuQ7z6Vwu6TSACKBlQYyCKg0Q/RrUxqfVkClSecvPsMGCk5SnMUPfjao8c365VvgCkd3St0jIhGXaDjYUPp44MEeiGiPgIyGbjlerM8QiWeiUxFJuaOmCabXWZ4U5+v19R5u5GDSwBbD4/fvijQBOqE9+KiAKCAU4KoDIlFUKyKmfTbcjObLamyTAvX8u4VnoouJuWc0hpFx6ZkY/MS9o2BUSm/y7C1RyQnPF8SRRxydAoiO8E8iUvHGhEfjJE++UnF4fIyKtiDf9aV73+rt9b4cKGhenPO/2gNPz/mnnfBP+Hdx/v0oBvs8ydLVm9IowPyWHdAvHjn07H3yo8duAhue/gV35Vbd'),(7870,3473,'wpil_links_outbound_internal_count_data','eJzdWU2P2zYQ/SuEAuSm2PqwV6Zh9JBDgaLdFuihR4Er0jKzNKmS1LrCYv97h5TieDeLNJZc0NmLIUrDmeHjmzcSTXCS4EeO5+vfcbLA0V8NF+VvijJR/srlfYQL/GjwDY4EjEpOo7WzNTjDUatFBFd5gaOdtY3Bs5lkh09MG9bVnWSV2hNjOamYtEx/gOGsUtKSys78PJimjHWXWYKj/5jqzCAQd2NJIPAdTnonjXfyVfZ/uNs4SV36KUz0mSd5kcMssLTcChatb3sftmtYdOrO4CWOjCW2NW4A62/aO8HNbhi5hUBuvYNFj45xWRRuGv0oiDERPHj0Ph84O0yEilHu0yry73dxaGJC91zO3Jo+NLvmJ3excSC8fzfPijX450puPvuGJbN/GqX9YJVOCUQ0I5uD243eYx/PPQYO+QxcDNgdiFixz1Y+7hkYfTvuF7+vR4dt1GyrWb+pSTomsP/toSU12/giOey4aZjugzpmbXxkT5GyUq20ZdtQYtlraT353TairXtuwZ5UgleOXLd9CYA9d9vW33CsV7omklel1WS75dVxottXpQc7KDFSbcsT4j55IyKrnTMCGoOrP6sdo61giCBAhqEHrm1LBFIacRnDqoySCHyYVkBxQBbIKkq6aMiEUMpoedeVDSyAS1el8z5roSrSZ/28fp6gKEdLzzI7o55Ia5iJ1TY+NQinRIt0cb4S3X5TfQYXQcjjgPv5BC/EDfBkv1dSdMhjTyeRJB1NkuIMkpzejt1WGKhwJZhxNldCnNV8GbCF/b9oXrLLAU6BuxxkELDLDdGvrcv5tAJ2uQyc01ZzWSOoB6Zth2jLoI0hMAC5gmZX7YismZmkV9lovVqcUWGHHbExN66WVMBWliQBFWkqXpfUHEAisOZABgE1Z4h+bZrj0wqoOW43Ttc7SVny8a/LycjebVpdM92FU5jlMuQ7z6Vwu6TSACKBlQYyCKg0Q/RrUxqfVkClSecvPsMGCk5SnMUPfjao8c365VvgCkd3St0jIhGXaDjYUPp44MEeiGiPgIyGbjlerM8QiWeiUxFJuaOmCabXWZ4U5+v19R5u5GDSwBbD4/fvijQBOqE9+KiAKCAU4KoDIlFUKyKmfTbcjObLamyTAvX8u4VnoouJuWc0hpFx6ZkY/MS9o2BUSm/y7C1RyQnPF8SRRxydAoiO8E8iUvHGhEfjJE++UnF4fIyKtiDf9aV73+rt9b4cKGhenPO/2gNPz/mnnfBP+Hdx/v0oBvs8ydLVm9IowPyWHdAvHjn07H3yo8duAhue/gV35Vbd'),(7873,3473,'wpil_links_outbound_external_count_data','eJxVj9FuwjAMRX9lynvpqrEVmV+A8bjHKG3Mai04VeOqqhD/PifApL35xjfnXjto4Erwuj9B8w7ma6Rgj9FjsAfiHwM7uCZowQRVlrzZZ2+CNzDzFIxO7Q7MIDImqOtlWTYDuiCD2nHTx0t9l/WZhDGlimeZSCjyY7FWgc6YZA1YdciovpSpW4XGJHls8vwPml81lVhwYqctutJJfWP586niA4zjfohTQbRPxPryl1cWerLzHr3tVjuG+Zv4SdOAEHuXu5YzwfRRA1n5t9svQ1hogg=='),(7874,3473,'wpil_links_outbound_external_count_data','eJxVj9FuwjAMRX9lynvpqrEVmV+A8bjHKG3Mai04VeOqqhD/PifApL35xjfnXjto4Erwuj9B8w7ma6Rgj9FjsAfiHwM7uCZowQRVlrzZZ2+CNzDzFIxO7Q7MIDImqOtlWTYDuiCD2nHTx0t9l/WZhDGlimeZSCjyY7FWgc6YZA1YdciovpSpW4XGJHls8vwPml81lVhwYqctutJJfWP586niA4zjfohTQbRPxPryl1cWerLzHr3tVjuG+Zv4SdOAEHuXu5YzwfRRA1n5t9svQ1hogg=='),(7877,3473,'kt_blocks_editor_width',''),(7878,3473,'_kad_post_transparent',''),(7879,3473,'_kad_post_title','default'),(7880,3473,'_kad_post_layout','default'),(7881,3473,'_kad_post_sidebar_id',''),(7882,3473,'_kad_post_content_style','default'),(7883,3473,'_kad_post_vertical_padding','default'),(7884,3473,'_kad_post_feature','default'),(7885,3473,'_kad_post_feature_position',''),(7886,3473,'_kad_post_header',''),(7887,3473,'_kad_post_footer',''),(7888,3473,'_has_fluentform','a:0:{}'),(7889,3473,'_wp_page_template','default'),(7891,3473,'_kadence_starter_templates_imported_post','1'),(7892,3473,'_yoast_wpseo_estimated-reading-time-minutes','8'),(7893,3473,'_yoast_wpseo_wordproof_timestamp',''),(7894,3473,'_yoast_wpseo_content_score','60'),(7895,3473,'footnotes',''),(7896,3473,'_yoast_wpseo_focuskw','weight loss'),(7897,3473,'_yoast_wpseo_title','Gynecomastia Surgery After Weight Loss at Atlanta Gyno Center'),(7898,3473,'_yoast_wpseo_metadesc','Learn more about how to treat gynecomastia after weight loss in Atlanta and when surgery may be the right option to choose for yourself.'),(7899,3473,'_yoast_wpseo_linkdex','78'),(7900,3473,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(7901,3473,'_kad_blocks_custom_css',''),(7902,3473,'_kad_blocks_head_custom_js',''),(7903,3473,'_kad_blocks_body_custom_js',''),(7904,3473,'_kad_blocks_footer_custom_js',''),(7906,3473,'_dp_original','3418'),(7907,3473,'_edit_lock','1711845757:1'),(7909,3473,'_edit_last','1'),(7916,3479,'_menu_item_type','post_type'),(7917,3479,'_menu_item_menu_item_parent','1491'),(7918,3479,'_menu_item_object_id','3473'),(7919,3479,'_menu_item_object','page'),(7920,3479,'_menu_item_target',''),(7921,3479,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7922,3479,'_menu_item_xfn',''),(7923,3479,'_menu_item_url',''),(7925,3480,'_menu_item_type','post_type'),(7926,3480,'_menu_item_menu_item_parent','3430'),(7927,3480,'_menu_item_object_id','3473'),(7928,3480,'_menu_item_object','page'),(7929,3480,'_menu_item_target',''),(7930,3480,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7931,3480,'_menu_item_xfn',''),(7932,3480,'_menu_item_url',''),(7934,3481,'wpil_sync_report3','1'),(7935,3481,'wpil_links_inbound_internal_count','16'),(7936,3481,'wpil_links_inbound_internal_count_data','eJztmE2P2yAQhv+KxX2b+Nshp5720i+phx4tgolDlwXLkF1Zq/z3DpCmqVZaH6JcrLkZPIyHl8czaBhNK/om6Xr7naYlJb8GqdqvphOq/SL1E6ENfbO0pkTBqJUd2XpbS3NKjqMi8FRvKDk4N1i6Wmnx+luMVkz9pAU3z8w6ybjQToyfYLi6nn5w0yDsygotzfhw/Wbl3Rbg1VjnH/OUkhnP3qyhRPqxZhDXjqbRyRCcvNvcDz9N08zvLoOFYWNp0WSwCiyddEqQ7bfow0dKrt1ZWlFiHXNHG41AIG7g49rFcRkFsxcXVh37OICVXEn+910TfEonjY4TPlAz9kxL3rqR7feSXxaKTjoznu1AFcb37dV3T8GIaX7wRtHkZ9A3eZy0IWfvrOtE1+6mdoCgpPZirWMkynAWI/l/SyfQBgEBEco0XRIg4OkzENDfREaGZHgysnJJZKRwNJ14EcoMSdQ56W9NITmCAn9LXeRLAqXIvYjjswFJkr06cncM528TZq3hkjnRJa/SHRJ2c6YpECDINFVVLQkgn2n+XVIust0ESomgQLot0mZJoBRwNL4GJTsvmbCJ1HwUzEJWUVMyjOKFKViaMMhF/blo2ZswqhAjKFhNuSiM7pFvagTF32yaGkH5GJQGQfEZpcKMMgPKBkEJpadAUGb6cti5DaTUy+rc3oMUbOEGUppFtXDvQgq2dAMpBVafOVKwpxsvtFh95kjB5q1v3ubZBkmZIQW7t6F7u1kjKR+RcvoDjCGD0A=='),(7937,3481,'wpil_links_outbound_internal_count','10'),(7938,3481,'wpil_links_outbound_internal_count_data','eJzdWVFv2zYQ/iuEBvRNtSXZsszA6EMfCgxbWmAPexQYirK5sqRGUnGFIP99R1JJna1IGykBvbwEokTeHb/77uOZIThb4huOlxcfcbbGyZ8dF/XvqmGi/o3Lzwmu8I3BG5wIGNW8SS7cXIMLnPRaJPC0qnBysLYzeLGQ7PgX04YN+0Eyqr4QYzmhTFqm38JwQZW0hNqFXwfLlLHuschw8oOlbho44m4sCTi+wlkw0nkj/4n+k3uNs9yFn8NCH3m2qlawCmZabgVLLi6DDTt0LDk1Z3CJE2OJ7Y0bwP67/kpwcxhHbiMQWzCwDugYF0XlljXvBTEmgQ833uY1Z8eZULGG+7Cq1c+bOHYpab5wuXB7etsdunfuYedAePPLsqguwD5XcndnG7bMvnZK+8E2n+OIaEZ2R5eNYDH4c5+BQz4C5wOyAx4pu5vl/T4Bo8f9frP7fe+QRs1azUJSs3yKY/83QEv2bOeL5HjgpmM6OHXM2nnPniI1Vb20dd81xLLvhXXrs21Evw/cgpxQwakj12UoAZjPXdrCC8d6pfdEclpbTdqW0/uFLq9Kj/OgxAht6xPi3vpJRNKDmwQ0hil/0ANresEQkYjLFLZhlERKo2uubU8EgvWmF1AYEAGyqiFDMkZBmoY19dVQdxA8l65ClyFioSgJET+snVsoyMmyU5U/n67T16nLiFl0fdsOqeRdJ5hJTydEE6e8LKuI4vTigD6jhDmo4kqYiyCehN15PzMJC2FFlDBXq+wrGEGWG9ODjGkItkH2wNBIzVlylU+Xq+XE6jK93jM9pI2igIRJYXEaVsfrovLNOqZQvRyUz9llAUiRuyyIIGKXNXo/M4kKYUWUqBWYGgmIiPXKdMmO6FcPBPpwggR676GYJVjFZMEqiyf8ViG9gUNftefRSGXrfII+XT6qSaOJKJTJYWcBYqRadIrcLG6spnNjM1GB95o0QBSAfA8tYzx+rLNXxQ8wZdg109wOjiFOU2B6w+8SP5ki6+kUyeYd0vHIUZZlxObmuXB7zk4GEIncyUAEETuZ0fu5dTI+rJidjAeEKhCeAXVaUWYMapUQ6sjl/sE5hUZ2zhKjcroYPaEIHhQVJaCiDvp4h1WxyibcCp3vYZWBY8BLoXtsZ5Fi8z//v4WGHfy7rraQmvt7WASKwxCX6PG72FkgVpNB3E49rmBXf/fwTQwpMZ9Zk8LIuPDO4oYj36yK11R0BVDqG+LII/5QoO/hn0Wk7fRqfMKlTrTWsMi3r4oVgPmL3T3c/gNH809N'),(7939,3481,'wpil_links_outbound_external_count','1'),(7940,3481,'wpil_links_outbound_external_count_data','eJxlUMlOxDAM/RWUe1oqtsHzCwMcOUae2moioqSKU6LRaP4dp4ITt+flLTbCBNcA98cPmJ7AfK4hurdMHN0ppC8DB7gKvICJWrlA5th3BR7AbCUaRa+PYHytq8A4ttYGzxirHzyWbyw0MG0jBWEUFouJ7JwThRpykrH5i21502YnhbTYhatYpRIXi2IbW1y4u3STLLXD6aD4n0mf6CCkyiWhJjvvOZW37rx3LZ7BYJp9LruMnrCb3/2a7019ARIxufPFrXFbQvpTUvGYZ+zJ+6a+RC+pnFT7dvsBrydtMQ=='),(7941,3481,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(7942,3481,'wpil_sync_report3','1'),(7943,3481,'wpil_sync_report3','1'),(7944,3481,'wpil_sync_report3','1'),(7945,3481,'wpil_links_inbound_internal_count','16'),(7946,3481,'wpil_links_inbound_internal_count','16'),(7947,3481,'wpil_links_inbound_internal_count','16'),(7948,3481,'wpil_links_inbound_internal_count_data','eJztmE2P2yAQhv+KxX2b+Nshp5720i+phx4tgolDlwXLkF1Zq/z3DpCmqVZaH6JcrLkZPIyHl8czaBhNK/om6Xr7naYlJb8GqdqvphOq/SL1E6ENfbO0pkTBqJUd2XpbS3NKjqMi8FRvKDk4N1i6Wmnx+luMVkz9pAU3z8w6ybjQToyfYLi6nn5w0yDsygotzfhw/Wbl3Rbg1VjnH/OUkhnP3qyhRPqxZhDXjqbRyRCcvNvcDz9N08zvLoOFYWNp0WSwCiyddEqQ7bfow0dKrt1ZWlFiHXNHG41AIG7g49rFcRkFsxcXVh37OICVXEn+910TfEonjY4TPlAz9kxL3rqR7feSXxaKTjoznu1AFcb37dV3T8GIaX7wRtHkZ9A3eZy0IWfvrOtE1+6mdoCgpPZirWMkynAWI/l/SyfQBgEBEco0XRIg4OkzENDfREaGZHgysnJJZKRwNJ14EcoMSdQ56W9NITmCAn9LXeRLAqXIvYjjswFJkr06cncM528TZq3hkjnRJa/SHRJ2c6YpECDINFVVLQkgn2n+XVIust0ESomgQLot0mZJoBRwNL4GJTsvmbCJ1HwUzEJWUVMyjOKFKViaMMhF/blo2ZswqhAjKFhNuSiM7pFvagTF32yaGkH5GJQGQfEZpcKMMgPKBkEJpadAUGb6cti5DaTUy+rc3oMUbOEGUppFtXDvQgq2dAMpBVafOVKwpxsvtFh95kjB5q1v3ubZBkmZIQW7t6F7u1kjKR+RcvoDjCGD0A=='),(7949,3481,'wpil_links_inbound_internal_count_data','eJztmE2P2yAQhv+KxX2b+Nshp5720i+phx4tgolDlwXLkF1Zq/z3DpCmqVZaH6JcrLkZPIyHl8czaBhNK/om6Xr7naYlJb8GqdqvphOq/SL1E6ENfbO0pkTBqJUd2XpbS3NKjqMi8FRvKDk4N1i6Wmnx+luMVkz9pAU3z8w6ybjQToyfYLi6nn5w0yDsygotzfhw/Wbl3Rbg1VjnH/OUkhnP3qyhRPqxZhDXjqbRyRCcvNvcDz9N08zvLoOFYWNp0WSwCiyddEqQ7bfow0dKrt1ZWlFiHXNHG41AIG7g49rFcRkFsxcXVh37OICVXEn+910TfEonjY4TPlAz9kxL3rqR7feSXxaKTjoznu1AFcb37dV3T8GIaX7wRtHkZ9A3eZy0IWfvrOtE1+6mdoCgpPZirWMkynAWI/l/SyfQBgEBEco0XRIg4OkzENDfREaGZHgysnJJZKRwNJ14EcoMSdQ56W9NITmCAn9LXeRLAqXIvYjjswFJkr06cncM528TZq3hkjnRJa/SHRJ2c6YpECDINFVVLQkgn2n+XVIust0ESomgQLot0mZJoBRwNL4GJTsvmbCJ1HwUzEJWUVMyjOKFKViaMMhF/blo2ZswqhAjKFhNuSiM7pFvagTF32yaGkH5GJQGQfEZpcKMMgPKBkEJpadAUGb6cti5DaTUy+rc3oMUbOEGUppFtXDvQgq2dAMpBVafOVKwpxsvtFh95kjB5q1v3ubZBkmZIQW7t6F7u1kjKR+RcvoDjCGD0A=='),(7950,3481,'wpil_links_inbound_internal_count_data','eJztmE2P2yAQhv+KxX2b+Nshp5720i+phx4tgolDlwXLkF1Zq/z3DpCmqVZaH6JcrLkZPIyHl8czaBhNK/om6Xr7naYlJb8GqdqvphOq/SL1E6ENfbO0pkTBqJUd2XpbS3NKjqMi8FRvKDk4N1i6Wmnx+luMVkz9pAU3z8w6ybjQToyfYLi6nn5w0yDsygotzfhw/Wbl3Rbg1VjnH/OUkhnP3qyhRPqxZhDXjqbRyRCcvNvcDz9N08zvLoOFYWNp0WSwCiyddEqQ7bfow0dKrt1ZWlFiHXNHG41AIG7g49rFcRkFsxcXVh37OICVXEn+910TfEonjY4TPlAz9kxL3rqR7feSXxaKTjoznu1AFcb37dV3T8GIaX7wRtHkZ9A3eZy0IWfvrOtE1+6mdoCgpPZirWMkynAWI/l/SyfQBgEBEco0XRIg4OkzENDfREaGZHgysnJJZKRwNJ14EcoMSdQ56W9NITmCAn9LXeRLAqXIvYjjswFJkr06cncM528TZq3hkjnRJa/SHRJ2c6YpECDINFVVLQkgn2n+XVIust0ESomgQLot0mZJoBRwNL4GJTsvmbCJ1HwUzEJWUVMyjOKFKViaMMhF/blo2ZswqhAjKFhNuSiM7pFvagTF32yaGkH5GJQGQfEZpcKMMgPKBkEJpadAUGb6cti5DaTUy+rc3oMUbOEGUppFtXDvQgq2dAMpBVafOVKwpxsvtFh95kjB5q1v3ubZBkmZIQW7t6F7u1kjKR+RcvoDjCGD0A=='),(7951,3481,'wpil_links_outbound_internal_count','10'),(7952,3481,'wpil_links_outbound_internal_count','10'),(7953,3481,'wpil_links_outbound_internal_count','10'),(7954,3481,'wpil_links_outbound_internal_count_data','eJzdWVFv2zYQ/iuEBvRNtSXZsszA6EMfCgxbWmAPexQYirK5sqRGUnGFIP99R1JJna1IGykBvbwEokTeHb/77uOZIThb4huOlxcfcbbGyZ8dF/XvqmGi/o3Lzwmu8I3BG5wIGNW8SS7cXIMLnPRaJPC0qnBysLYzeLGQ7PgX04YN+0Eyqr4QYzmhTFqm38JwQZW0hNqFXwfLlLHuschw8oOlbho44m4sCTi+wlkw0nkj/4n+k3uNs9yFn8NCH3m2qlawCmZabgVLLi6DDTt0LDk1Z3CJE2OJ7Y0bwP67/kpwcxhHbiMQWzCwDugYF0XlljXvBTEmgQ833uY1Z8eZULGG+7Cq1c+bOHYpab5wuXB7etsdunfuYedAePPLsqguwD5XcndnG7bMvnZK+8E2n+OIaEZ2R5eNYDH4c5+BQz4C5wOyAx4pu5vl/T4Bo8f9frP7fe+QRs1azUJSs3yKY/83QEv2bOeL5HjgpmM6OHXM2nnPniI1Vb20dd81xLLvhXXrs21Evw/cgpxQwakj12UoAZjPXdrCC8d6pfdEclpbTdqW0/uFLq9Kj/OgxAht6xPi3vpJRNKDmwQ0hil/0ANresEQkYjLFLZhlERKo2uubU8EgvWmF1AYEAGyqiFDMkZBmoY19dVQdxA8l65ClyFioSgJET+snVsoyMmyU5U/n67T16nLiFl0fdsOqeRdJ5hJTydEE6e8LKuI4vTigD6jhDmo4kqYiyCehN15PzMJC2FFlDBXq+wrGEGWG9ODjGkItkH2wNBIzVlylU+Xq+XE6jK93jM9pI2igIRJYXEaVsfrovLNOqZQvRyUz9llAUiRuyyIIGKXNXo/M4kKYUWUqBWYGgmIiPXKdMmO6FcPBPpwggR676GYJVjFZMEqiyf8ViG9gUNftefRSGXrfII+XT6qSaOJKJTJYWcBYqRadIrcLG6spnNjM1GB95o0QBSAfA8tYzx+rLNXxQ8wZdg109wOjiFOU2B6w+8SP5ki6+kUyeYd0vHIUZZlxObmuXB7zk4GEIncyUAEETuZ0fu5dTI+rJidjAeEKhCeAXVaUWYMapUQ6sjl/sE5hUZ2zhKjcroYPaEIHhQVJaCiDvp4h1WxyibcCp3vYZWBY8BLoXtsZ5Fi8z//v4WGHfy7rraQmvt7WASKwxCX6PG72FkgVpNB3E49rmBXf/fwTQwpMZ9Zk8LIuPDO4oYj36yK11R0BVDqG+LII/5QoO/hn0Wk7fRqfMKlTrTWsMi3r4oVgPmL3T3c/gNH809N'),(7955,3481,'wpil_links_outbound_internal_count_data','eJzdWVFv2zYQ/iuEBvRNtSXZsszA6EMfCgxbWmAPexQYirK5sqRGUnGFIP99R1JJna1IGykBvbwEokTeHb/77uOZIThb4huOlxcfcbbGyZ8dF/XvqmGi/o3Lzwmu8I3BG5wIGNW8SS7cXIMLnPRaJPC0qnBysLYzeLGQ7PgX04YN+0Eyqr4QYzmhTFqm38JwQZW0hNqFXwfLlLHuschw8oOlbho44m4sCTi+wlkw0nkj/4n+k3uNs9yFn8NCH3m2qlawCmZabgVLLi6DDTt0LDk1Z3CJE2OJ7Y0bwP67/kpwcxhHbiMQWzCwDugYF0XlljXvBTEmgQ833uY1Z8eZULGG+7Cq1c+bOHYpab5wuXB7etsdunfuYedAePPLsqguwD5XcndnG7bMvnZK+8E2n+OIaEZ2R5eNYDH4c5+BQz4C5wOyAx4pu5vl/T4Bo8f9frP7fe+QRs1azUJSs3yKY/83QEv2bOeL5HjgpmM6OHXM2nnPniI1Vb20dd81xLLvhXXrs21Evw/cgpxQwakj12UoAZjPXdrCC8d6pfdEclpbTdqW0/uFLq9Kj/OgxAht6xPi3vpJRNKDmwQ0hil/0ANresEQkYjLFLZhlERKo2uubU8EgvWmF1AYEAGyqiFDMkZBmoY19dVQdxA8l65ClyFioSgJET+snVsoyMmyU5U/n67T16nLiFl0fdsOqeRdJ5hJTydEE6e8LKuI4vTigD6jhDmo4kqYiyCehN15PzMJC2FFlDBXq+wrGEGWG9ODjGkItkH2wNBIzVlylU+Xq+XE6jK93jM9pI2igIRJYXEaVsfrovLNOqZQvRyUz9llAUiRuyyIIGKXNXo/M4kKYUWUqBWYGgmIiPXKdMmO6FcPBPpwggR676GYJVjFZMEqiyf8ViG9gUNftefRSGXrfII+XT6qSaOJKJTJYWcBYqRadIrcLG6spnNjM1GB95o0QBSAfA8tYzx+rLNXxQ8wZdg109wOjiFOU2B6w+8SP5ki6+kUyeYd0vHIUZZlxObmuXB7zk4GEIncyUAEETuZ0fu5dTI+rJidjAeEKhCeAXVaUWYMapUQ6sjl/sE5hUZ2zhKjcroYPaEIHhQVJaCiDvp4h1WxyibcCp3vYZWBY8BLoXtsZ5Fi8z//v4WGHfy7rraQmvt7WASKwxCX6PG72FkgVpNB3E49rmBXf/fwTQwpMZ9Zk8LIuPDO4oYj36yK11R0BVDqG+LII/5QoO/hn0Wk7fRqfMKlTrTWsMi3r4oVgPmL3T3c/gNH809N'),(7956,3481,'wpil_links_outbound_internal_count_data','eJzdWVFv2zYQ/iuEBvRNtSXZsszA6EMfCgxbWmAPexQYirK5sqRGUnGFIP99R1JJna1IGykBvbwEokTeHb/77uOZIThb4huOlxcfcbbGyZ8dF/XvqmGi/o3Lzwmu8I3BG5wIGNW8SS7cXIMLnPRaJPC0qnBysLYzeLGQ7PgX04YN+0Eyqr4QYzmhTFqm38JwQZW0hNqFXwfLlLHuschw8oOlbho44m4sCTi+wlkw0nkj/4n+k3uNs9yFn8NCH3m2qlawCmZabgVLLi6DDTt0LDk1Z3CJE2OJ7Y0bwP67/kpwcxhHbiMQWzCwDugYF0XlljXvBTEmgQ833uY1Z8eZULGG+7Cq1c+bOHYpab5wuXB7etsdunfuYedAePPLsqguwD5XcndnG7bMvnZK+8E2n+OIaEZ2R5eNYDH4c5+BQz4C5wOyAx4pu5vl/T4Bo8f9frP7fe+QRs1azUJSs3yKY/83QEv2bOeL5HjgpmM6OHXM2nnPniI1Vb20dd81xLLvhXXrs21Evw/cgpxQwakj12UoAZjPXdrCC8d6pfdEclpbTdqW0/uFLq9Kj/OgxAht6xPi3vpJRNKDmwQ0hil/0ANresEQkYjLFLZhlERKo2uubU8EgvWmF1AYEAGyqiFDMkZBmoY19dVQdxA8l65ClyFioSgJET+snVsoyMmyU5U/n67T16nLiFl0fdsOqeRdJ5hJTydEE6e8LKuI4vTigD6jhDmo4kqYiyCehN15PzMJC2FFlDBXq+wrGEGWG9ODjGkItkH2wNBIzVlylU+Xq+XE6jK93jM9pI2igIRJYXEaVsfrovLNOqZQvRyUz9llAUiRuyyIIGKXNXo/M4kKYUWUqBWYGgmIiPXKdMmO6FcPBPpwggR676GYJVjFZMEqiyf8ViG9gUNftefRSGXrfII+XT6qSaOJKJTJYWcBYqRadIrcLG6spnNjM1GB95o0QBSAfA8tYzx+rLNXxQ8wZdg109wOjiFOU2B6w+8SP5ki6+kUyeYd0vHIUZZlxObmuXB7zk4GEIncyUAEETuZ0fu5dTI+rJidjAeEKhCeAXVaUWYMapUQ6sjl/sE5hUZ2zhKjcroYPaEIHhQVJaCiDvp4h1WxyibcCp3vYZWBY8BLoXtsZ5Fi8z//v4WGHfy7rraQmvt7WASKwxCX6PG72FkgVpNB3E49rmBXf/fwTQwpMZ9Zk8LIuPDO4oYj36yK11R0BVDqG+LII/5QoO/hn0Wk7fRqfMKlTrTWsMi3r4oVgPmL3T3c/gNH809N'),(7957,3481,'wpil_links_outbound_external_count','1'),(7958,3481,'wpil_links_outbound_external_count','1'),(7959,3481,'wpil_links_outbound_external_count','1'),(7960,3481,'wpil_links_outbound_external_count_data','eJxlUMlOxDAM/RWUe1oqtsHzCwMcOUae2moioqSKU6LRaP4dp4ITt+flLTbCBNcA98cPmJ7AfK4hurdMHN0ppC8DB7gKvICJWrlA5th3BR7AbCUaRa+PYHytq8A4ttYGzxirHzyWbyw0MG0jBWEUFouJ7JwThRpykrH5i21502YnhbTYhatYpRIXi2IbW1y4u3STLLXD6aD4n0mf6CCkyiWhJjvvOZW37rx3LZ7BYJp9LruMnrCb3/2a7019ARIxufPFrXFbQvpTUvGYZ+zJ+6a+RC+pnFT7dvsBrydtMQ=='),(7961,3481,'wpil_links_outbound_external_count_data','eJxlUMlOxDAM/RWUe1oqtsHzCwMcOUae2moioqSKU6LRaP4dp4ITt+flLTbCBNcA98cPmJ7AfK4hurdMHN0ppC8DB7gKvICJWrlA5th3BR7AbCUaRa+PYHytq8A4ttYGzxirHzyWbyw0MG0jBWEUFouJ7JwThRpykrH5i21502YnhbTYhatYpRIXi2IbW1y4u3STLLXD6aD4n0mf6CCkyiWhJjvvOZW37rx3LZ7BYJp9LruMnrCb3/2a7019ARIxufPFrXFbQvpTUvGYZ+zJ+6a+RC+pnFT7dvsBrydtMQ=='),(7962,3481,'wpil_links_outbound_external_count_data','eJxlUMlOxDAM/RWUe1oqtsHzCwMcOUae2moioqSKU6LRaP4dp4ITt+flLTbCBNcA98cPmJ7AfK4hurdMHN0ppC8DB7gKvICJWrlA5th3BR7AbCUaRa+PYHytq8A4ttYGzxirHzyWbyw0MG0jBWEUFouJ7JwThRpykrH5i21502YnhbTYhatYpRIXi2IbW1y4u3STLLXD6aD4n0mf6CCkyiWhJjvvOZW37rx3LZ7BYJp9LruMnrCb3/2a7019ARIxufPFrXFbQvpTUvGYZ+zJ+6a+RC+pnFT7dvsBrydtMQ=='),(7963,3481,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(7964,3481,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(7965,3481,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(7966,3481,'kt_blocks_editor_width',''),(7967,3481,'_kad_post_transparent',''),(7968,3481,'_kad_post_title','default'),(7969,3481,'_kad_post_layout','default'),(7970,3481,'_kad_post_sidebar_id',''),(7971,3481,'_kad_post_content_style','default'),(7972,3481,'_kad_post_vertical_padding','default'),(7973,3481,'_kad_post_feature','default'),(7974,3481,'_kad_post_feature_position',''),(7975,3481,'_kad_post_header',''),(7976,3481,'_kad_post_footer',''),(7977,3481,'_has_fluentform','a:0:{}'),(7978,3481,'_wp_page_template','default'),(7980,3481,'_kadence_starter_templates_imported_post','1'),(7981,3481,'_yoast_wpseo_estimated-reading-time-minutes','10'),(7982,3481,'_yoast_wpseo_wordproof_timestamp',''),(7983,3481,'_yoast_wpseo_content_score','90'),(7984,3481,'footnotes',''),(7985,3481,'_yoast_wpseo_focuskw','senior'),(7986,3481,'_yoast_wpseo_title','Senior Gynecomastia Surgery near Atlanta, Georgia'),(7987,3481,'_yoast_wpseo_metadesc','Learn more about how to treat senior gynecomastia in Atlanta and when surgery may be the right option to choose for yourself.'),(7988,3481,'_yoast_wpseo_linkdex','73'),(7989,3481,'_yoast_wpseo_schema_page_type','MedicalWebPage'),(7990,3481,'_kad_blocks_custom_css',''),(7991,3481,'_kad_blocks_head_custom_js',''),(7992,3481,'_kad_blocks_body_custom_js',''),(7993,3481,'_kad_blocks_footer_custom_js',''),(7995,3481,'_dp_original','3473'),(7996,3481,'_edit_lock','1711846382:1'),(7997,3481,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8006,3481,'_edit_last','1'),(8008,3485,'_menu_item_type','post_type'),(8009,3485,'_menu_item_menu_item_parent','3430'),(8010,3485,'_menu_item_object_id','3481'),(8011,3485,'_menu_item_object','page'),(8012,3485,'_menu_item_target',''),(8013,3485,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8014,3485,'_menu_item_xfn',''),(8015,3485,'_menu_item_url',''),(8017,3426,'_wp_old_date','2024-03-12'),(8018,3427,'_wp_old_date','2024-03-12'),(8019,3428,'_wp_old_date','2024-03-12'),(8020,3469,'_wp_old_date','2024-03-12'),(8021,3429,'_wp_old_date','2024-03-12'),(8022,3430,'_wp_old_date','2024-03-12'),(8023,3431,'_wp_old_date','2024-03-12'),(8024,3432,'_wp_old_date','2024-03-12'),(8025,3433,'_wp_old_date','2024-03-12'),(8026,3434,'_wp_old_date','2024-03-12'),(8027,3435,'_wp_old_date','2024-03-12'),(8028,3436,'_wp_old_date','2024-03-12'),(8029,3480,'_wp_old_date','2024-03-12'),(8030,3486,'_menu_item_type','post_type'),(8031,3486,'_menu_item_menu_item_parent','1491'),(8032,3486,'_menu_item_object_id','3481'),(8033,3486,'_menu_item_object','page'),(8034,3486,'_menu_item_target',''),(8035,3486,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8036,3486,'_menu_item_xfn',''),(8037,3486,'_menu_item_url',''),(8039,2055,'_wp_old_date','2024-03-12'),(8040,1975,'_wp_old_date','2024-03-12'),(8041,1974,'_wp_old_date','2024-03-12'),(8042,1973,'_wp_old_date','2024-03-12'),(8043,3459,'_wp_old_date','2024-03-12'),(8044,2750,'_wp_old_date','2024-03-12'),(8045,1491,'_wp_old_date','2024-03-12'),(8046,1950,'_wp_old_date','2024-03-12'),(8047,1951,'_wp_old_date','2024-03-12'),(8048,1949,'_wp_old_date','2024-03-12'),(8049,1952,'_wp_old_date','2024-03-12'),(8050,2667,'_wp_old_date','2024-03-12'),(8051,2672,'_wp_old_date','2024-03-12'),(8052,3479,'_wp_old_date','2024-03-12'),(8053,1671,'_wp_old_date','2024-03-12'),(8054,1670,'_wp_old_date','2024-03-12'),(8055,1665,'_wp_old_date','2024-03-12'),(8056,1756,'_wp_old_date','2024-03-12'),(8057,2888,'_wp_old_date','2024-03-12'),(8058,1492,'_wp_old_date','2024-03-12'),(8059,2790,'_wp_old_date','2024-03-12'),(8060,2846,'_wp_old_date','2024-03-12'),(8061,2856,'_wp_old_date','2024-03-12'),(8062,2860,'_wp_old_date','2024-03-12'),(8063,2866,'_wp_old_date','2024-03-12'),(8064,2870,'_wp_old_date','2024-03-12'),(8065,2874,'_wp_old_date','2024-03-12'),(8066,2883,'_wp_old_date','2024-03-12'),(8076,3490,'wpil_links_inbound_internal_count_data','eJztlUFOwzAQRa9SeV/SpEnjTq8AlAUSy8g4TmsIdhRPhCrUuzOuS1WERBbscHYe5/t75uspFpAu4EPDYrOFtAD21Om2urO1aqtbbV4ZcPhwUAJrqap0zTZe62AJbOhbRqvVGtgesXOQJEa9v6jeqcPuYJS0b8KhFlIZVP0NlYm0BoXExA44t80c7buZdwI1KVzizXLysg79cpkCG/HzMg5M+9oI6uYZ0mDSnUx+jPTgtyHN/EwZHTyNk/GC0ylSosZWsc198MBDp9i1Hc0KzKHAwQURxeInon5CXYSY3MXCtcMuFHRStlp+feMnT43amrDhG7X9ThgtK+xF02h5OahqjbY/6ygVIZvq6t7jSSSM3HsRDbYAth1wZpvZIwU8ezgHzM7XiLpWdfV8qDrqThuf2iK01FopQkvfZztqyjVePkpeTnyM8JFFzAdfTf+PMT6WMfNR5BMfI3zkMfNRZhMfI3wUMfPB04mPET5WMfORT+/LGB9lzHyspvdljA8eLx/pMlv/Jz68xAY+fMB/wmIdMRY5n56V3/k4fgIgX/so'),(8078,3490,'wpil_links_outbound_internal_count_data','eJzdmt9vmzAQx/8Vi6ftgTZAQojz1G3StKntqvahj5EDl8QrsZFtWqGp//vO0HZJF2mNSUXGG/59fPOx73yE0SChvzgdTH/QYES924LnswuZQT475+LOo9iq6Zh6OZZmPPOmtq+mEfVKlXv4NEyotzKm0PT0VMDDT1AaqmUlIJVrpg1nKQgD6gSLp6kUhqXmtB6Hw6Q29jEKqPePobYbLsRtWTBceE6DZpKinuQv669sNQ1Ca36IA2vLg2EyxFHY03CTgze9bOYwVQHe5nSaxtTThplSN51QAWs82tOUR40i+mUKnZfLpoAj05ynz21JPSc3XIqmwhoq1ZIJns6MYosFT18GQsaNVE/9UBWWLmYb6z7WnZhIV7YTCjeg3iU8kO+1cuTrhnTkc62d97QgyzLIZvNqVqCdXFj9Bo1xuUxZY9z2Wz6iXM5QxOH+UKyZWDFjmPBFlXaGSJjEYa8Qwak29SK6VEtQFRHAFLl41rwVJ6EzJ+Ngf06s5iB8rnMmMh9H+ZVUd10Ck/QJmNBaucnITa03+Vbr3YqTyJmTZPB2Tjar/ac38TOZogi6xqUZ3Z0TCsejXgGDk39RJ+RaahBzUEuCnBBbc8XMit21Qmb4n8clio6nr09ktHGhAEixkgKIVOSeZyAJGqHL3NRK6Faijdz99h7n8a591t2miuO4T5sq2DiFDV8DmgStmIidmRhFb2fiAaMJ9Mw+NsvuWBgFQZ9YiOJXIdyHNcuBzBVgkSjIytSu+7EVH2N3PiaOZ4b9PXSXd8FeBfrWDVvbiVyQXQF/KzoS9wh/Dze8gw6WoUv0Nxu6A2Yy6F2gf2bl3c4b3BwAl4l7oL+Hs9mJi8xB2z5Hw0yvwhIr3NmLxocHJ3DPQybDVuTMZVbNS55noI4FnZ5FMfhmn/6I/A7suKcrE9drT8POVpWCe67Rwi7PnF6BE2J8uQXL9ZPCh6GmRfKyXWhTaCgzeRRnTRiPxr1CBktXuoRteQ/DS4skZtyOl3KxqHzBiwLd73H4qDDuV+7bpuaurMzkspb5HZyUe0Jz3O6erUFweSSxTTRMeuWiAvxpbmp9t4hpR4p7Fnfi+rVkRzjDFtjTfwC+XBk/l7q7hE00HEd9gsZ+vN86X86s1OS2lpqco9Tt+HHP+B7hVwCFV8PBdIebX3PB1yzPK8LFPdP8Hg6S8Arc86HDPXZfZ3eEKJz0bS+92x9hHn8DYGROsw=='),(8080,3490,'wpil_links_outbound_external_count_data','eJy1lltv2jAUx7+KlUl7YSFNKJe6QhPb1PVCWdeLtj0hQ0wwOHbqmLK06nffsVPGyFC1BPZmx+fi/8/HJybYD/ATwwfHX7DfxM63hPHhpQwpH/aZmDu4g59S3MYOh9mQhc6xsU1xAzsLxR0zOsDOVOskxZ63XC7rgi6JmhOmEql0fSxjz1gdgpFMtRn6EO0vI7PQwQ4TmipBIPDIpgG3xLoNYNLCDhHjqVQ2Cmx2YKOgXh4Grz6TMKThcJQNE76ImFjFgvBcjolmUhhL2MVYQjoB0Z8Z9qsDaGwC4CRaEBUy8gqDAKBtsyuPAXbWJ5/zQCsSO4EIKoMI2psgZpNXywDGmxblxQfYOT+52E8BNKrrLhQAibUi862a4djXq6X1wqRnvXcSelhdqL8pdDGiaptMyL9aKq0RVu7AdyeFzb0p5Nlka/Ga/C9LVRT2wXcnha3KCg87a4XQheuxJnUmJtIjERXjzIupVtIVcJ2mriKMK0nCYhUHtoH/di1NwHS/S5tnYPKg6z/yVEbSro7k6HUkXIrIZSknIrRI3P/FpA+J0JlNtB8mneoXoVX4q8+g74iUbW/l4LdhUL6Td+zfHJ1TldIM3eahdtJ+VFl7p6B9yriWwgqnwptKTXnqTTSf8FC7oVyMONQype4EitnlMIioVBF1lySdMhGBrztSLIzott/BOnj5koG6/WTT30J6NMrQqQ2GTmAjqE/pbg+i6k/CoyLAjGj9ws+9u8kRmqvmzux5e9bATTgZ/wtFulSPvIDSXOFVlkp379R4oyuzhT3xq/6i9JuFl1QkZcSpJRiTJPVoPKKh9+B7Ftn7Oc26vbNHcpN96F0Gsn3Fvt4v536z/9H/fn0a0OHFuTu7I+2LH/O3bw4aneNHKeOu7+cTiKizhHZNt4Fx/vG+6zdb7VpCOEtJSGvkgYoFrZnDqfGcTKGQ13sszb8BcgcS5R+Qpj/1O2TgIJYiyAgLiE0UiXc5kOdfGtoyJA=='),(8087,3490,'wpil_links_inbound_internal_count_data','eJztlUFOwzAQRa9SeV/SpEnjTq8AlAUSy8g4TmsIdhRPhCrUuzOuS1WERBbscHYe5/t75uspFpAu4EPDYrOFtAD21Om2urO1aqtbbV4ZcPhwUAJrqap0zTZe62AJbOhbRqvVGtgesXOQJEa9v6jeqcPuYJS0b8KhFlIZVP0NlYm0BoXExA44t80c7buZdwI1KVzizXLysg79cpkCG/HzMg5M+9oI6uYZ0mDSnUx+jPTgtyHN/EwZHTyNk/GC0ylSosZWsc198MBDp9i1Hc0KzKHAwQURxeInon5CXYSY3MXCtcMuFHRStlp+feMnT43amrDhG7X9ThgtK+xF02h5OahqjbY/6ygVIZvq6t7jSSSM3HsRDbYAth1wZpvZIwU8ezgHzM7XiLpWdfV8qDrqThuf2iK01FopQkvfZztqyjVePkpeTnyM8JFFzAdfTf+PMT6WMfNR5BMfI3zkMfNRZhMfI3wUMfPB04mPET5WMfORT+/LGB9lzHyspvdljA8eLx/pMlv/Jz68xAY+fMB/wmIdMRY5n56V3/k4fgIgX/so'),(8088,3490,'wpil_links_inbound_internal_count_data','eJztlUFOwzAQRa9SeV/SpEnjTq8AlAUSy8g4TmsIdhRPhCrUuzOuS1WERBbscHYe5/t75uspFpAu4EPDYrOFtAD21Om2urO1aqtbbV4ZcPhwUAJrqap0zTZe62AJbOhbRqvVGtgesXOQJEa9v6jeqcPuYJS0b8KhFlIZVP0NlYm0BoXExA44t80c7buZdwI1KVzizXLysg79cpkCG/HzMg5M+9oI6uYZ0mDSnUx+jPTgtyHN/EwZHTyNk/GC0ylSosZWsc198MBDp9i1Hc0KzKHAwQURxeInon5CXYSY3MXCtcMuFHRStlp+feMnT43amrDhG7X9ThgtK+xF02h5OahqjbY/6ygVIZvq6t7jSSSM3HsRDbYAth1wZpvZIwU8ezgHzM7XiLpWdfV8qDrqThuf2iK01FopQkvfZztqyjVePkpeTnyM8JFFzAdfTf+PMT6WMfNR5BMfI3zkMfNRZhMfI3wUMfPB04mPET5WMfORT+/LGB9lzHyspvdljA8eLx/pMlv/Jz68xAY+fMB/wmIdMRY5n56V3/k4fgIgX/so'),(8089,3490,'wpil_links_inbound_internal_count_data','eJztlUFOwzAQRa9SeV/SpEnjTq8AlAUSy8g4TmsIdhRPhCrUuzOuS1WERBbscHYe5/t75uspFpAu4EPDYrOFtAD21Om2urO1aqtbbV4ZcPhwUAJrqap0zTZe62AJbOhbRqvVGtgesXOQJEa9v6jeqcPuYJS0b8KhFlIZVP0NlYm0BoXExA44t80c7buZdwI1KVzizXLysg79cpkCG/HzMg5M+9oI6uYZ0mDSnUx+jPTgtyHN/EwZHTyNk/GC0ylSosZWsc198MBDp9i1Hc0KzKHAwQURxeInon5CXYSY3MXCtcMuFHRStlp+feMnT43amrDhG7X9ThgtK+xF02h5OahqjbY/6ygVIZvq6t7jSSSM3HsRDbYAth1wZpvZIwU8ezgHzM7XiLpWdfV8qDrqThuf2iK01FopQkvfZztqyjVePkpeTnyM8JFFzAdfTf+PMT6WMfNR5BMfI3zkMfNRZhMfI3wUMfPB04mPET5WMfORT+/LGB9lzHyspvdljA8eLx/pMlv/Jz68xAY+fMB/wmIdMRY5n56V3/k4fgIgX/so'),(8090,3490,'wpil_links_inbound_internal_count_data','eJztlUFOwzAQRa9SeV/SpEnjTq8AlAUSy8g4TmsIdhRPhCrUuzOuS1WERBbscHYe5/t75uspFpAu4EPDYrOFtAD21Om2urO1aqtbbV4ZcPhwUAJrqap0zTZe62AJbOhbRqvVGtgesXOQJEa9v6jeqcPuYJS0b8KhFlIZVP0NlYm0BoXExA44t80c7buZdwI1KVzizXLysg79cpkCG/HzMg5M+9oI6uYZ0mDSnUx+jPTgtyHN/EwZHTyNk/GC0ylSosZWsc198MBDp9i1Hc0KzKHAwQURxeInon5CXYSY3MXCtcMuFHRStlp+feMnT43amrDhG7X9ThgtK+xF02h5OahqjbY/6ygVIZvq6t7jSSSM3HsRDbYAth1wZpvZIwU8ezgHzM7XiLpWdfV8qDrqThuf2iK01FopQkvfZztqyjVePkpeTnyM8JFFzAdfTf+PMT6WMfNR5BMfI3zkMfNRZhMfI3wUMfPB04mPET5WMfORT+/LGB9lzHyspvdljA8eLx/pMlv/Jz68xAY+fMB/wmIdMRY5n56V3/k4fgIgX/so'),(8091,3490,'wpil_links_outbound_internal_count_data','eJzdmt9vmzAQx/8Vi6ftgTZAQojz1G3StKntqvahj5EDl8QrsZFtWqGp//vO0HZJF2mNSUXGG/59fPOx73yE0SChvzgdTH/QYES924LnswuZQT475+LOo9iq6Zh6OZZmPPOmtq+mEfVKlXv4NEyotzKm0PT0VMDDT1AaqmUlIJVrpg1nKQgD6gSLp6kUhqXmtB6Hw6Q29jEKqPePobYbLsRtWTBceE6DZpKinuQv669sNQ1Ca36IA2vLg2EyxFHY03CTgze9bOYwVQHe5nSaxtTThplSN51QAWs82tOUR40i+mUKnZfLpoAj05ynz21JPSc3XIqmwhoq1ZIJns6MYosFT18GQsaNVE/9UBWWLmYb6z7WnZhIV7YTCjeg3iU8kO+1cuTrhnTkc62d97QgyzLIZvNqVqCdXFj9Bo1xuUxZY9z2Wz6iXM5QxOH+UKyZWDFjmPBFlXaGSJjEYa8Qwak29SK6VEtQFRHAFLl41rwVJ6EzJ+Ngf06s5iB8rnMmMh9H+ZVUd10Ck/QJmNBaucnITa03+Vbr3YqTyJmTZPB2Tjar/ac38TOZogi6xqUZ3Z0TCsejXgGDk39RJ+RaahBzUEuCnBBbc8XMit21Qmb4n8clio6nr09ktHGhAEixkgKIVOSeZyAJGqHL3NRK6Faijdz99h7n8a591t2miuO4T5sq2DiFDV8DmgStmIidmRhFb2fiAaMJ9Mw+NsvuWBgFQZ9YiOJXIdyHNcuBzBVgkSjIytSu+7EVH2N3PiaOZ4b9PXSXd8FeBfrWDVvbiVyQXQF/KzoS9wh/Dze8gw6WoUv0Nxu6A2Yy6F2gf2bl3c4b3BwAl4l7oL+Hs9mJi8xB2z5Hw0yvwhIr3NmLxocHJ3DPQybDVuTMZVbNS55noI4FnZ5FMfhmn/6I/A7suKcrE9drT8POVpWCe67Rwi7PnF6BE2J8uQXL9ZPCh6GmRfKyXWhTaCgzeRRnTRiPxr1CBktXuoRteQ/DS4skZtyOl3KxqHzBiwLd73H4qDDuV+7bpuaurMzkspb5HZyUe0Jz3O6erUFweSSxTTRMeuWiAvxpbmp9t4hpR4p7Fnfi+rVkRzjDFtjTfwC+XBk/l7q7hE00HEd9gsZ+vN86X86s1OS2lpqco9Tt+HHP+B7hVwCFV8PBdIebX3PB1yzPK8LFPdP8Hg6S8Arc86HDPXZfZ3eEKJz0bS+92x9hHn8DYGROsw=='),(8092,3490,'wpil_links_outbound_internal_count_data','eJzdmt9vmzAQx/8Vi6ftgTZAQojz1G3StKntqvahj5EDl8QrsZFtWqGp//vO0HZJF2mNSUXGG/59fPOx73yE0SChvzgdTH/QYES924LnswuZQT475+LOo9iq6Zh6OZZmPPOmtq+mEfVKlXv4NEyotzKm0PT0VMDDT1AaqmUlIJVrpg1nKQgD6gSLp6kUhqXmtB6Hw6Q29jEKqPePobYbLsRtWTBceE6DZpKinuQv669sNQ1Ca36IA2vLg2EyxFHY03CTgze9bOYwVQHe5nSaxtTThplSN51QAWs82tOUR40i+mUKnZfLpoAj05ynz21JPSc3XIqmwhoq1ZIJns6MYosFT18GQsaNVE/9UBWWLmYb6z7WnZhIV7YTCjeg3iU8kO+1cuTrhnTkc62d97QgyzLIZvNqVqCdXFj9Bo1xuUxZY9z2Wz6iXM5QxOH+UKyZWDFjmPBFlXaGSJjEYa8Qwak29SK6VEtQFRHAFLl41rwVJ6EzJ+Ngf06s5iB8rnMmMh9H+ZVUd10Ck/QJmNBaucnITa03+Vbr3YqTyJmTZPB2Tjar/ac38TOZogi6xqUZ3Z0TCsejXgGDk39RJ+RaahBzUEuCnBBbc8XMit21Qmb4n8clio6nr09ktHGhAEixkgKIVOSeZyAJGqHL3NRK6Faijdz99h7n8a591t2miuO4T5sq2DiFDV8DmgStmIidmRhFb2fiAaMJ9Mw+NsvuWBgFQZ9YiOJXIdyHNcuBzBVgkSjIytSu+7EVH2N3PiaOZ4b9PXSXd8FeBfrWDVvbiVyQXQF/KzoS9wh/Dze8gw6WoUv0Nxu6A2Yy6F2gf2bl3c4b3BwAl4l7oL+Hs9mJi8xB2z5Hw0yvwhIr3NmLxocHJ3DPQybDVuTMZVbNS55noI4FnZ5FMfhmn/6I/A7suKcrE9drT8POVpWCe67Rwi7PnF6BE2J8uQXL9ZPCh6GmRfKyXWhTaCgzeRRnTRiPxr1CBktXuoRteQ/DS4skZtyOl3KxqHzBiwLd73H4qDDuV+7bpuaurMzkspb5HZyUe0Jz3O6erUFweSSxTTRMeuWiAvxpbmp9t4hpR4p7Fnfi+rVkRzjDFtjTfwC+XBk/l7q7hE00HEd9gsZ+vN86X86s1OS2lpqco9Tt+HHP+B7hVwCFV8PBdIebX3PB1yzPK8LFPdP8Hg6S8Arc86HDPXZfZ3eEKJz0bS+92x9hHn8DYGROsw=='),(8093,3490,'wpil_links_outbound_internal_count_data','eJzdmt9vmzAQx/8Vi6ftgTZAQojz1G3StKntqvahj5EDl8QrsZFtWqGp//vO0HZJF2mNSUXGG/59fPOx73yE0SChvzgdTH/QYES924LnswuZQT475+LOo9iq6Zh6OZZmPPOmtq+mEfVKlXv4NEyotzKm0PT0VMDDT1AaqmUlIJVrpg1nKQgD6gSLp6kUhqXmtB6Hw6Q29jEKqPePobYbLsRtWTBceE6DZpKinuQv669sNQ1Ca36IA2vLg2EyxFHY03CTgze9bOYwVQHe5nSaxtTThplSN51QAWs82tOUR40i+mUKnZfLpoAj05ynz21JPSc3XIqmwhoq1ZIJns6MYosFT18GQsaNVE/9UBWWLmYb6z7WnZhIV7YTCjeg3iU8kO+1cuTrhnTkc62d97QgyzLIZvNqVqCdXFj9Bo1xuUxZY9z2Wz6iXM5QxOH+UKyZWDFjmPBFlXaGSJjEYa8Qwak29SK6VEtQFRHAFLl41rwVJ6EzJ+Ngf06s5iB8rnMmMh9H+ZVUd10Ck/QJmNBaucnITa03+Vbr3YqTyJmTZPB2Tjar/ac38TOZogi6xqUZ3Z0TCsejXgGDk39RJ+RaahBzUEuCnBBbc8XMit21Qmb4n8clio6nr09ktHGhAEixkgKIVOSeZyAJGqHL3NRK6Faijdz99h7n8a591t2miuO4T5sq2DiFDV8DmgStmIidmRhFb2fiAaMJ9Mw+NsvuWBgFQZ9YiOJXIdyHNcuBzBVgkSjIytSu+7EVH2N3PiaOZ4b9PXSXd8FeBfrWDVvbiVyQXQF/KzoS9wh/Dze8gw6WoUv0Nxu6A2Yy6F2gf2bl3c4b3BwAl4l7oL+Hs9mJi8xB2z5Hw0yvwhIr3NmLxocHJ3DPQybDVuTMZVbNS55noI4FnZ5FMfhmn/6I/A7suKcrE9drT8POVpWCe67Rwi7PnF6BE2J8uQXL9ZPCh6GmRfKyXWhTaCgzeRRnTRiPxr1CBktXuoRteQ/DS4skZtyOl3KxqHzBiwLd73H4qDDuV+7bpuaurMzkspb5HZyUe0Jz3O6erUFweSSxTTRMeuWiAvxpbmp9t4hpR4p7Fnfi+rVkRzjDFtjTfwC+XBk/l7q7hE00HEd9gsZ+vN86X86s1OS2lpqco9Tt+HHP+B7hVwCFV8PBdIebX3PB1yzPK8LFPdP8Hg6S8Arc86HDPXZfZ3eEKJz0bS+92x9hHn8DYGROsw=='),(8094,3490,'wpil_links_outbound_internal_count_data','eJzdmt9vmzAQx/8Vi6ftgTZAQojz1G3StKntqvahj5EDl8QrsZFtWqGp//vO0HZJF2mNSUXGG/59fPOx73yE0SChvzgdTH/QYES924LnswuZQT475+LOo9iq6Zh6OZZmPPOmtq+mEfVKlXv4NEyotzKm0PT0VMDDT1AaqmUlIJVrpg1nKQgD6gSLp6kUhqXmtB6Hw6Q29jEKqPePobYbLsRtWTBceE6DZpKinuQv669sNQ1Ca36IA2vLg2EyxFHY03CTgze9bOYwVQHe5nSaxtTThplSN51QAWs82tOUR40i+mUKnZfLpoAj05ynz21JPSc3XIqmwhoq1ZIJns6MYosFT18GQsaNVE/9UBWWLmYb6z7WnZhIV7YTCjeg3iU8kO+1cuTrhnTkc62d97QgyzLIZvNqVqCdXFj9Bo1xuUxZY9z2Wz6iXM5QxOH+UKyZWDFjmPBFlXaGSJjEYa8Qwak29SK6VEtQFRHAFLl41rwVJ6EzJ+Ngf06s5iB8rnMmMh9H+ZVUd10Ck/QJmNBaucnITa03+Vbr3YqTyJmTZPB2Tjar/ac38TOZogi6xqUZ3Z0TCsejXgGDk39RJ+RaahBzUEuCnBBbc8XMit21Qmb4n8clio6nr09ktHGhAEixkgKIVOSeZyAJGqHL3NRK6Faijdz99h7n8a591t2miuO4T5sq2DiFDV8DmgStmIidmRhFb2fiAaMJ9Mw+NsvuWBgFQZ9YiOJXIdyHNcuBzBVgkSjIytSu+7EVH2N3PiaOZ4b9PXSXd8FeBfrWDVvbiVyQXQF/KzoS9wh/Dze8gw6WoUv0Nxu6A2Yy6F2gf2bl3c4b3BwAl4l7oL+Hs9mJi8xB2z5Hw0yvwhIr3NmLxocHJ3DPQybDVuTMZVbNS55noI4FnZ5FMfhmn/6I/A7suKcrE9drT8POVpWCe67Rwi7PnF6BE2J8uQXL9ZPCh6GmRfKyXWhTaCgzeRRnTRiPxr1CBktXuoRteQ/DS4skZtyOl3KxqHzBiwLd73H4qDDuV+7bpuaurMzkspb5HZyUe0Jz3O6erUFweSSxTTRMeuWiAvxpbmp9t4hpR4p7Fnfi+rVkRzjDFtjTfwC+XBk/l7q7hE00HEd9gsZ+vN86X86s1OS2lpqco9Tt+HHP+B7hVwCFV8PBdIebX3PB1yzPK8LFPdP8Hg6S8Arc86HDPXZfZ3eEKJz0bS+92x9hHn8DYGROsw=='),(8095,3490,'wpil_links_outbound_external_count_data','eJy1lltv2jAUx7+KlUl7YSFNKJe6QhPb1PVCWdeLtj0hQ0wwOHbqmLK06nffsVPGyFC1BPZmx+fi/8/HJybYD/ATwwfHX7DfxM63hPHhpQwpH/aZmDu4g59S3MYOh9mQhc6xsU1xAzsLxR0zOsDOVOskxZ63XC7rgi6JmhOmEql0fSxjz1gdgpFMtRn6EO0vI7PQwQ4TmipBIPDIpgG3xLoNYNLCDhHjqVQ2Cmx2YKOgXh4Grz6TMKThcJQNE76ImFjFgvBcjolmUhhL2MVYQjoB0Z8Z9qsDaGwC4CRaEBUy8gqDAKBtsyuPAXbWJ5/zQCsSO4EIKoMI2psgZpNXywDGmxblxQfYOT+52E8BNKrrLhQAibUi862a4djXq6X1wqRnvXcSelhdqL8pdDGiaptMyL9aKq0RVu7AdyeFzb0p5Nlka/Ga/C9LVRT2wXcnha3KCg87a4XQheuxJnUmJtIjERXjzIupVtIVcJ2mriKMK0nCYhUHtoH/di1NwHS/S5tnYPKg6z/yVEbSro7k6HUkXIrIZSknIrRI3P/FpA+J0JlNtB8mneoXoVX4q8+g74iUbW/l4LdhUL6Td+zfHJ1TldIM3eahdtJ+VFl7p6B9yriWwgqnwptKTXnqTTSf8FC7oVyMONQype4EitnlMIioVBF1lySdMhGBrztSLIzott/BOnj5koG6/WTT30J6NMrQqQ2GTmAjqE/pbg+i6k/CoyLAjGj9ws+9u8kRmqvmzux5e9bATTgZ/wtFulSPvIDSXOFVlkp379R4oyuzhT3xq/6i9JuFl1QkZcSpJRiTJPVoPKKh9+B7Ftn7Oc26vbNHcpN96F0Gsn3Fvt4v536z/9H/fn0a0OHFuTu7I+2LH/O3bw4aneNHKeOu7+cTiKizhHZNt4Fx/vG+6zdb7VpCOEtJSGvkgYoFrZnDqfGcTKGQ13sszb8BcgcS5R+Qpj/1O2TgIJYiyAgLiE0UiXc5kOdfGtoyJA=='),(8096,3490,'wpil_links_outbound_external_count_data','eJy1lltv2jAUx7+KlUl7YSFNKJe6QhPb1PVCWdeLtj0hQ0wwOHbqmLK06nffsVPGyFC1BPZmx+fi/8/HJybYD/ATwwfHX7DfxM63hPHhpQwpH/aZmDu4g59S3MYOh9mQhc6xsU1xAzsLxR0zOsDOVOskxZ63XC7rgi6JmhOmEql0fSxjz1gdgpFMtRn6EO0vI7PQwQ4TmipBIPDIpgG3xLoNYNLCDhHjqVQ2Cmx2YKOgXh4Grz6TMKThcJQNE76ImFjFgvBcjolmUhhL2MVYQjoB0Z8Z9qsDaGwC4CRaEBUy8gqDAKBtsyuPAXbWJ5/zQCsSO4EIKoMI2psgZpNXywDGmxblxQfYOT+52E8BNKrrLhQAibUi862a4djXq6X1wqRnvXcSelhdqL8pdDGiaptMyL9aKq0RVu7AdyeFzb0p5Nlka/Ga/C9LVRT2wXcnha3KCg87a4XQheuxJnUmJtIjERXjzIupVtIVcJ2mriKMK0nCYhUHtoH/di1NwHS/S5tnYPKg6z/yVEbSro7k6HUkXIrIZSknIrRI3P/FpA+J0JlNtB8mneoXoVX4q8+g74iUbW/l4LdhUL6Td+zfHJ1TldIM3eahdtJ+VFl7p6B9yriWwgqnwptKTXnqTTSf8FC7oVyMONQype4EitnlMIioVBF1lySdMhGBrztSLIzott/BOnj5koG6/WTT30J6NMrQqQ2GTmAjqE/pbg+i6k/CoyLAjGj9ws+9u8kRmqvmzux5e9bATTgZ/wtFulSPvIDSXOFVlkp379R4oyuzhT3xq/6i9JuFl1QkZcSpJRiTJPVoPKKh9+B7Ftn7Oc26vbNHcpN96F0Gsn3Fvt4v536z/9H/fn0a0OHFuTu7I+2LH/O3bw4aneNHKeOu7+cTiKizhHZNt4Fx/vG+6zdb7VpCOEtJSGvkgYoFrZnDqfGcTKGQ13sszb8BcgcS5R+Qpj/1O2TgIJYiyAgLiE0UiXc5kOdfGtoyJA=='),(8097,3490,'wpil_links_outbound_external_count_data','eJy1lltv2jAUx7+KlUl7YSFNKJe6QhPb1PVCWdeLtj0hQ0wwOHbqmLK06nffsVPGyFC1BPZmx+fi/8/HJybYD/ATwwfHX7DfxM63hPHhpQwpH/aZmDu4g59S3MYOh9mQhc6xsU1xAzsLxR0zOsDOVOskxZ63XC7rgi6JmhOmEql0fSxjz1gdgpFMtRn6EO0vI7PQwQ4TmipBIPDIpgG3xLoNYNLCDhHjqVQ2Cmx2YKOgXh4Grz6TMKThcJQNE76ImFjFgvBcjolmUhhL2MVYQjoB0Z8Z9qsDaGwC4CRaEBUy8gqDAKBtsyuPAXbWJ5/zQCsSO4EIKoMI2psgZpNXywDGmxblxQfYOT+52E8BNKrrLhQAibUi862a4djXq6X1wqRnvXcSelhdqL8pdDGiaptMyL9aKq0RVu7AdyeFzb0p5Nlka/Ga/C9LVRT2wXcnha3KCg87a4XQheuxJnUmJtIjERXjzIupVtIVcJ2mriKMK0nCYhUHtoH/di1NwHS/S5tnYPKg6z/yVEbSro7k6HUkXIrIZSknIrRI3P/FpA+J0JlNtB8mneoXoVX4q8+g74iUbW/l4LdhUL6Td+zfHJ1TldIM3eahdtJ+VFl7p6B9yriWwgqnwptKTXnqTTSf8FC7oVyMONQype4EitnlMIioVBF1lySdMhGBrztSLIzott/BOnj5koG6/WTT30J6NMrQqQ2GTmAjqE/pbg+i6k/CoyLAjGj9ws+9u8kRmqvmzux5e9bATTgZ/wtFulSPvIDSXOFVlkp379R4oyuzhT3xq/6i9JuFl1QkZcSpJRiTJPVoPKKh9+B7Ftn7Oc26vbNHcpN96F0Gsn3Fvt4v536z/9H/fn0a0OHFuTu7I+2LH/O3bw4aneNHKeOu7+cTiKizhHZNt4Fx/vG+6zdb7VpCOEtJSGvkgYoFrZnDqfGcTKGQ13sszb8BcgcS5R+Qpj/1O2TgIJYiyAgLiE0UiXc5kOdfGtoyJA=='),(8098,3490,'wpil_links_outbound_external_count_data','eJy1lltv2jAUx7+KlUl7YSFNKJe6QhPb1PVCWdeLtj0hQ0wwOHbqmLK06nffsVPGyFC1BPZmx+fi/8/HJybYD/ATwwfHX7DfxM63hPHhpQwpH/aZmDu4g59S3MYOh9mQhc6xsU1xAzsLxR0zOsDOVOskxZ63XC7rgi6JmhOmEql0fSxjz1gdgpFMtRn6EO0vI7PQwQ4TmipBIPDIpgG3xLoNYNLCDhHjqVQ2Cmx2YKOgXh4Grz6TMKThcJQNE76ImFjFgvBcjolmUhhL2MVYQjoB0Z8Z9qsDaGwC4CRaEBUy8gqDAKBtsyuPAXbWJ5/zQCsSO4EIKoMI2psgZpNXywDGmxblxQfYOT+52E8BNKrrLhQAibUi862a4djXq6X1wqRnvXcSelhdqL8pdDGiaptMyL9aKq0RVu7AdyeFzb0p5Nlka/Ga/C9LVRT2wXcnha3KCg87a4XQheuxJnUmJtIjERXjzIupVtIVcJ2mriKMK0nCYhUHtoH/di1NwHS/S5tnYPKg6z/yVEbSro7k6HUkXIrIZSknIrRI3P/FpA+J0JlNtB8mneoXoVX4q8+g74iUbW/l4LdhUL6Td+zfHJ1TldIM3eahdtJ+VFl7p6B9yriWwgqnwptKTXnqTTSf8FC7oVyMONQype4EitnlMIioVBF1lySdMhGBrztSLIzott/BOnj5koG6/WTT30J6NMrQqQ2GTmAjqE/pbg+i6k/CoyLAjGj9ws+9u8kRmqvmzux5e9bATTgZ/wtFulSPvIDSXOFVlkp379R4oyuzhT3xq/6i9JuFl1QkZcSpJRiTJPVoPKKh9+B7Ftn7Oc26vbNHcpN96F0Gsn3Fvt4v536z/9H/fn0a0OHFuTu7I+2LH/O3bw4aneNHKeOu7+cTiKizhHZNt4Fx/vG+6zdb7VpCOEtJSGvkgYoFrZnDqfGcTKGQ13sszb8BcgcS5R+Qpj/1O2TgIJYiyAgLiE0UiXc5kOdfGtoyJA=='),(8099,3490,'kt_blocks_editor_width',''),(8100,3490,'_kad_post_transparent',''),(8101,3490,'_kad_post_title','default'),(8102,3490,'_kad_post_layout','default'),(8103,3490,'_kad_post_sidebar_id',''),(8104,3490,'_kad_post_content_style','default'),(8105,3490,'_kad_post_vertical_padding','default'),(8106,3490,'_kad_post_feature','default'),(8107,3490,'_kad_post_feature_position',''),(8108,3490,'_kad_post_header',''),(8109,3490,'_kad_post_footer',''),(8110,3490,'_has_fluentform','a:0:{}'),(8111,3490,'_wp_page_template','default'),(8113,3490,'footnotes',''),(8114,3490,'_kadence_starter_templates_imported_post','1'),(8115,3490,'_yoast_wpseo_content_score','30'),(8116,3490,'_yoast_wpseo_estimated-reading-time-minutes','6'),(8117,3490,'_yoast_wpseo_wordproof_timestamp',''),(8118,3490,'_yoast_wpseo_focuskw','out-of-town'),(8119,3490,'_yoast_wpseo_title','Out of Town Patients at the Atlanta Gynecomastia Center'),(8120,3490,'_yoast_wpseo_metadesc','Check out some lodging and travel information for patients who are traveling from out of town to Atlanta, GA for gynecomastia plastic surgery.'),(8121,3490,'_yoast_wpseo_linkdex','69'),(8122,3490,'_kad_blocks_custom_css',''),(8123,3490,'_kad_blocks_head_custom_js',''),(8124,3490,'_kad_blocks_body_custom_js',''),(8125,3490,'_kad_blocks_footer_custom_js',''),(8132,3490,'_dp_original','2854'),(8133,3490,'_edit_lock','1711979781:1'),(8203,3490,'_edit_last','1'),(8229,3509,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8243,3512,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8262,3517,'footnotes',''),(8263,3518,'footnotes',''),(8277,3522,'footnotes',''),(8278,3473,'wpil_links_inbound_internal_count','13'),(8279,3473,'wpil_links_outbound_internal_count','11'),(8280,3473,'wpil_links_outbound_external_count','1'),(8281,3473,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8282,3473,'wpil_sync_report3','1'),(8295,3525,'footnotes',''),(8297,2886,'wpil_links_inbound_internal_count','14'),(8298,2886,'wpil_links_outbound_internal_count','8'),(8299,2886,'wpil_links_outbound_external_count','0'),(8300,2886,'wpil_sync_report2_time','2024-03-17T18:14:20+00:00'),(8301,2886,'wpil_sync_report3','1'),(8308,1666,'wpil_links_inbound_internal_count','22'),(8309,1666,'wpil_links_outbound_internal_count','15'),(8310,1666,'wpil_links_outbound_external_count','1'),(8311,1666,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8312,1666,'wpil_sync_report3','1'),(8313,3526,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8315,1563,'wpil_sync_report3','1'),(8327,1482,'wpil_sync_report3','1'),(8328,1482,'wpil_links_inbound_internal_count','13'),(8329,1482,'wpil_links_outbound_internal_count','18'),(8330,1482,'wpil_links_outbound_external_count','0'),(8331,1482,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8332,1563,'wpil_links_inbound_internal_count','11'),(8333,1563,'wpil_links_outbound_internal_count','5'),(8334,1563,'wpil_links_outbound_external_count','0'),(8335,1563,'wpil_sync_report2_time','2024-03-17T18:13:35+00:00'),(8355,3536,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8356,1901,'wpil_links_inbound_internal_count','13'),(8357,1901,'wpil_links_outbound_internal_count','15'),(8358,1901,'wpil_links_outbound_external_count','1'),(8359,1901,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8360,1901,'wpil_sync_report3','1'),(8361,3538,'footnotes',''),(8376,1525,'wpil_links_inbound_internal_count','12'),(8377,1525,'wpil_links_outbound_internal_count','9'),(8378,1525,'wpil_links_outbound_external_count','1'),(8379,1525,'wpil_sync_report2_time','2024-03-17T18:13:35+00:00'),(8380,1525,'wpil_sync_report3','1'),(8441,3559,'_menu_item_type','post_type'),(8442,3559,'_menu_item_menu_item_parent','1492'),(8443,3559,'_menu_item_object_id','3490'),(8444,3559,'_menu_item_object','page'),(8445,3559,'_menu_item_target',''),(8446,3559,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8447,3559,'_menu_item_xfn',''),(8448,3559,'_menu_item_url',''),(8449,3560,'_menu_item_type','post_type'),(8450,3560,'_menu_item_menu_item_parent','3439'),(8451,3560,'_menu_item_object_id','3490'),(8452,3560,'_menu_item_object','page'),(8453,3560,'_menu_item_target',''),(8454,3560,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8455,3560,'_menu_item_xfn',''),(8456,3560,'_menu_item_url',''),(8465,3562,'footnotes',''),(8472,3564,'footnotes',''),(8497,3574,'footnotes',''),(8503,3573,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8511,3575,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8512,1908,'wpil_links_inbound_internal_count','17'),(8513,1908,'wpil_links_outbound_internal_count','17'),(8514,1908,'wpil_links_outbound_external_count','1'),(8515,1908,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8516,1908,'wpil_sync_report3','1'),(8517,1906,'wpil_links_inbound_internal_count','20'),(8518,1906,'wpil_links_outbound_internal_count','18'),(8519,1906,'wpil_links_outbound_external_count','2'),(8520,1906,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8521,1906,'wpil_sync_report3','1'),(8522,3577,'footnotes',''),(8523,1911,'wpil_sync_report3','1'),(8524,1911,'wpil_links_inbound_internal_count','17'),(8525,1911,'wpil_links_outbound_internal_count','19'),(8526,1911,'wpil_links_outbound_external_count','1'),(8527,1911,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8528,3578,'footnotes',''),(8529,3579,'footnotes',''),(8531,3581,'footnotes',''),(8533,3580,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8535,2668,'wpil_links_inbound_internal_count','16'),(8536,2668,'wpil_links_outbound_internal_count','16'),(8537,2668,'wpil_links_outbound_external_count','0'),(8538,2668,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8539,2668,'wpil_sync_report3','1'),(8675,2787,'wpil_links_inbound_internal_count','15'),(8676,2787,'wpil_links_outbound_internal_count','23'),(8677,2787,'wpil_links_outbound_external_count','1'),(8678,2787,'wpil_sync_report2_time','2024-03-17T18:14:20+00:00'),(8679,2787,'wpil_sync_report3','1'),(8693,3611,'footnotes',''),(8699,1511,'wpil_links_inbound_internal_count','16'),(8700,1511,'wpil_links_outbound_internal_count','12'),(8701,1511,'wpil_links_outbound_external_count','1'),(8702,1511,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8703,1511,'wpil_sync_report3','1'),(8707,2743,'wpil_sync_report3','1'),(8708,2743,'wpil_links_inbound_internal_count','9'),(8709,2743,'wpil_links_outbound_internal_count','13'),(8710,2743,'wpil_links_outbound_external_count','1'),(8711,2743,'wpil_sync_report2_time','2024-03-17T18:13:35+00:00'),(8712,3615,'footnotes',''),(8728,1668,'wpil_sync_report3','1'),(8729,1668,'wpil_links_inbound_internal_count','8'),(8730,1668,'wpil_links_outbound_internal_count','11'),(8731,1668,'wpil_links_outbound_external_count','2'),(8732,1668,'wpil_sync_report2_time','2024-03-17T18:13:35+00:00'),(8747,3625,'footnotes',''),(8748,1551,'wpil_sync_report3','1'),(8749,1551,'wpil_links_inbound_internal_count','8'),(8750,1551,'wpil_links_outbound_internal_count','8'),(8751,1551,'wpil_links_outbound_external_count','1'),(8752,1551,'wpil_sync_report2_time','2024-03-17T18:13:35+00:00'),(8753,3490,'wpil_sync_report3','1'),(8754,3490,'wpil_links_inbound_internal_count','10'),(8755,3490,'wpil_links_outbound_internal_count','18'),(8756,3490,'wpil_links_outbound_external_count','12'),(8757,3490,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8765,3418,'wpil_links_inbound_internal_count','12'),(8766,3418,'wpil_links_outbound_internal_count','17'),(8767,3418,'wpil_links_outbound_external_count','1'),(8768,3418,'wpil_sync_report2_time','2024-03-17T18:13:35+00:00'),(8769,3418,'wpil_sync_report3','1'),(8771,2858,'wpil_sync_report3','1'),(8772,2858,'wpil_links_inbound_internal_count','16'),(8773,2858,'wpil_links_outbound_internal_count','24'),(8774,2858,'wpil_links_outbound_external_count','2'),(8775,2858,'wpil_sync_report2_time','2024-03-17T18:14:20+00:00'),(8782,3635,'footnotes',''),(8783,2868,'wpil_sync_report3','1'),(8784,2868,'wpil_links_inbound_internal_count','16'),(8785,2868,'wpil_links_outbound_internal_count','23'),(8786,2868,'wpil_links_outbound_external_count','1'),(8787,2868,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8789,2854,'wpil_sync_report3','1'),(8790,2854,'wpil_links_inbound_internal_count','16'),(8791,2854,'wpil_links_outbound_internal_count','22'),(8792,2854,'wpil_links_outbound_external_count','2'),(8793,2854,'wpil_sync_report2_time','2024-03-17T18:14:20+00:00'),(8795,2872,'wpil_links_inbound_internal_count','15'),(8796,2872,'wpil_links_outbound_internal_count','23'),(8797,2872,'wpil_links_outbound_external_count','1'),(8798,2872,'wpil_sync_report2_time','2024-03-17T18:14:20+00:00'),(8799,2872,'wpil_sync_report3','1'),(8801,2881,'wpil_links_inbound_internal_count','16'),(8802,2881,'wpil_links_outbound_internal_count','22'),(8803,2881,'wpil_links_outbound_external_count','1'),(8804,2881,'wpil_sync_report2_time','2024-03-17T18:14:20+00:00'),(8805,2881,'wpil_sync_report3','1'),(8807,2844,'wpil_links_inbound_internal_count','15'),(8808,2844,'wpil_links_outbound_internal_count','23'),(8809,2844,'wpil_links_outbound_external_count','2'),(8810,2844,'wpil_sync_report2_time','2024-03-17T18:14:20+00:00'),(8811,2844,'wpil_sync_report3','1'),(8813,2862,'wpil_sync_report3','1'),(8814,2862,'wpil_links_inbound_internal_count','16'),(8815,2862,'wpil_links_outbound_internal_count','23'),(8816,2862,'wpil_links_outbound_external_count','1'),(8817,2862,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8825,1329,'wpil_links_inbound_internal_count','37'),(8826,1329,'wpil_links_outbound_internal_count','27'),(8827,1329,'wpil_links_outbound_external_count','1'),(8828,1329,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8829,1329,'wpil_sync_report3','1'),(8831,1484,'wpil_sync_report3','1'),(8832,1484,'wpil_links_inbound_internal_count','36'),(8833,1484,'wpil_links_outbound_internal_count','13'),(8834,1484,'wpil_links_outbound_external_count','1'),(8835,1484,'wpil_sync_report2_time','2024-03-17T18:16:38+00:00'),(8837,3646,'footnotes',''),(8885,3676,'footnotes',''),(8887,3679,'footnotes',''),(8889,3681,'footnotes',''),(8893,3685,'footnotes',''),(8895,3687,'footnotes',''),(8901,3689,'footnotes',''),(8915,3701,'footnotes',''),(8919,3705,'footnotes',''),(8924,3691,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8926,3711,'footnotes',''),(8927,3710,'yoast-structured-data-blocks-images-cache','a:0:{}'),(8933,3717,'footnotes',''),(8936,3720,'footnotes',''),(8937,3721,'footnotes',''),(8940,3724,'footnotes',''),(8943,3728,'footnotes',''),(8944,3729,'footnotes',''),(8945,3730,'footnotes',''),(8947,3732,'footnotes',''),(8948,3733,'footnotes',''),(8949,3734,'footnotes',''),(8950,3735,'footnotes',''),(8952,3737,'footnotes',''),(8954,3739,'footnotes',''),(8956,3742,'footnotes',''),(8958,3746,'footnotes',''),(8960,3749,'footnotes',''),(8962,3754,'footnotes',''),(8964,3756,'footnotes',''),(8966,3759,'footnotes',''),(8968,3761,'footnotes',''),(8970,3763,'footnotes',''),(8995,3789,'footnotes',''),(9000,3794,'footnotes',''),(9002,1329,'footnotes',''),(9006,3799,'footnotes',''),(9007,2790,'_wp_old_date','2024-03-14'),(9008,2846,'_wp_old_date','2024-03-14'),(9009,2856,'_wp_old_date','2024-03-14'),(9010,2860,'_wp_old_date','2024-03-14'),(9011,2866,'_wp_old_date','2024-03-14'),(9012,2870,'_wp_old_date','2024-03-14'),(9013,2874,'_wp_old_date','2024-03-14'),(9014,2883,'_wp_old_date','2024-03-14'),(9017,3445,'_wp_old_date','2024-03-12'),(9018,3444,'_wp_old_date','2024-03-12'),(9042,2055,'_wp_old_date','2024-03-14'),(9043,1975,'_wp_old_date','2024-03-14'),(9044,1974,'_wp_old_date','2024-03-14'),(9045,1973,'_wp_old_date','2024-03-14'),(9046,3459,'_wp_old_date','2024-03-14'),(9047,2750,'_wp_old_date','2024-03-14'),(9048,1491,'_wp_old_date','2024-03-14'),(9049,1950,'_wp_old_date','2024-03-14'),(9050,1951,'_wp_old_date','2024-03-14'),(9051,1949,'_wp_old_date','2024-03-14'),(9052,1952,'_wp_old_date','2024-03-14'),(9053,2667,'_wp_old_date','2024-03-14'),(9054,2672,'_wp_old_date','2024-03-14'),(9055,3479,'_wp_old_date','2024-03-14'),(9056,3486,'_wp_old_date','2024-03-14'),(9057,1671,'_wp_old_date','2024-03-14'),(9058,1670,'_wp_old_date','2024-03-14'),(9059,1665,'_wp_old_date','2024-03-14'),(9060,1756,'_wp_old_date','2024-03-14'),(9061,2888,'_wp_old_date','2024-03-14'),(9062,1492,'_wp_old_date','2024-03-14'),(9063,3559,'_wp_old_date','2024-03-15'),(9064,3426,'_wp_old_date','2024-03-14'),(9065,3427,'_wp_old_date','2024-03-14'),(9066,3428,'_wp_old_date','2024-03-14'),(9067,3469,'_wp_old_date','2024-03-14'),(9068,3429,'_wp_old_date','2024-03-14'),(9069,3430,'_wp_old_date','2024-03-14'),(9070,3431,'_wp_old_date','2024-03-14'),(9071,3432,'_wp_old_date','2024-03-14'),(9072,3433,'_wp_old_date','2024-03-14'),(9073,3434,'_wp_old_date','2024-03-14'),(9074,3435,'_wp_old_date','2024-03-14'),(9075,3436,'_wp_old_date','2024-03-14'),(9076,3480,'_wp_old_date','2024-03-14'),(9077,3485,'_wp_old_date','2024-03-14'),(9127,3837,'footnotes',''),(9128,3838,'footnotes',''),(9129,3839,'footnotes',''),(9134,3842,'footnotes',''),(9172,3860,'footnotes',''),(9179,3866,'footnotes',''),(9180,3865,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9181,3868,'footnotes',''),(9183,3870,'footnotes',''),(9184,3869,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9186,3872,'footnotes',''),(9187,3871,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9189,3874,'footnotes',''),(9190,3873,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9192,3876,'footnotes',''),(9193,3875,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9195,3878,'footnotes',''),(9196,3877,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9205,3887,'footnotes',''),(9206,3883,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9213,3894,'footnotes',''),(9214,3888,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9217,3897,'footnotes',''),(9218,3896,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9220,3900,'footnotes',''),(9221,3898,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9257,3912,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9259,3923,'footnotes',''),(9260,3924,'footnotes',''),(9261,3925,'footnotes',''),(9262,3926,'footnotes',''),(9263,3927,'footnotes',''),(9264,3928,'footnotes',''),(9265,3929,'footnotes',''),(9267,3931,'footnotes',''),(9268,3932,'footnotes',''),(9276,3934,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9291,3954,'footnotes',''),(9292,3944,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9296,3958,'footnotes',''),(9297,3956,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9305,3966,'footnotes',''),(9306,3967,'footnotes',''),(9307,3968,'footnotes',''),(9308,3969,'footnotes',''),(9311,3972,'footnotes',''),(9312,3973,'footnotes',''),(9313,3974,'footnotes',''),(9315,3976,'footnotes',''),(9317,3980,'footnotes',''),(9318,3979,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9320,3982,'footnotes',''),(9321,3981,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9323,3984,'footnotes',''),(9324,3983,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9333,3989,'footnotes',''),(9335,3990,'footnotes',''),(9338,3992,'footnotes',''),(9341,3993,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9343,3996,'footnotes',''),(9344,3995,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9346,3998,'footnotes',''),(9347,3997,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9355,4006,'footnotes',''),(9356,4007,'footnotes',''),(9357,4008,'footnotes',''),(9358,4009,'footnotes',''),(9359,4010,'footnotes',''),(9360,4011,'footnotes',''),(9361,4012,'footnotes',''),(9363,4014,'footnotes',''),(9364,4015,'footnotes',''),(9365,4016,'footnotes',''),(9366,4017,'footnotes',''),(9367,4018,'footnotes',''),(9370,4021,'footnotes',''),(9372,4023,'footnotes',''),(9373,4022,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9375,4025,'footnotes',''),(9380,4029,'footnotes',''),(9381,4028,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9383,4032,'footnotes',''),(9385,4035,'footnotes',''),(9386,4034,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9387,4036,'footnotes',''),(9388,4037,'footnotes',''),(9389,4038,'footnotes',''),(9390,4039,'footnotes',''),(9391,4040,'footnotes',''),(9392,4041,'footnotes',''),(9393,4042,'footnotes',''),(9394,4043,'footnotes',''),(9396,4045,'footnotes',''),(9397,4044,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9400,4048,'footnotes',''),(9401,4049,'footnotes',''),(9402,4050,'footnotes',''),(9403,4051,'footnotes',''),(9404,4052,'footnotes',''),(9405,4053,'footnotes',''),(9406,4054,'footnotes',''),(9407,4055,'footnotes',''),(9409,4057,'footnotes',''),(9410,4058,'footnotes',''),(9412,4060,'footnotes',''),(9413,4059,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9415,4062,'footnotes',''),(9416,4063,'footnotes',''),(9418,4065,'footnotes',''),(9419,4066,'footnotes',''),(9420,4067,'footnotes',''),(9421,4068,'footnotes',''),(9552,4115,'footnotes',''),(9554,4117,'footnotes',''),(9556,4119,'footnotes',''),(9558,4121,'footnotes',''),(9560,4123,'footnotes',''),(9562,4125,'footnotes',''),(9564,4127,'footnotes',''),(9565,4126,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9567,4129,'footnotes',''),(9568,4128,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9570,4131,'footnotes',''),(9571,4130,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9573,4133,'footnotes',''),(9574,4132,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9576,4135,'footnotes',''),(9577,4134,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9579,4137,'footnotes',''),(9581,4139,'footnotes',''),(9582,4138,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9584,4141,'footnotes',''),(9585,4142,'footnotes',''),(9588,4146,'footnotes',''),(9589,4148,'footnotes',''),(9590,4149,'footnotes',''),(9591,4150,'footnotes',''),(9593,4152,'footnotes',''),(9595,4154,'footnotes',''),(9597,4156,'footnotes',''),(9599,4158,'footnotes',''),(9601,4160,'footnotes',''),(9602,4161,'footnotes',''),(9603,4162,'footnotes',''),(9612,4170,'footnotes',''),(9614,4174,'footnotes',''),(9615,4172,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9617,4176,'footnotes',''),(9618,4175,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9620,4178,'footnotes',''),(9621,4177,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9623,4180,'footnotes',''),(9624,4179,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9626,4182,'footnotes',''),(9627,4181,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9628,4183,'footnotes',''),(9630,4185,'footnotes',''),(9631,4184,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9633,4187,'footnotes',''),(9634,4186,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9636,4189,'footnotes',''),(9637,4188,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9645,4193,'_wp_attached_file','2024/03/Atlanta_Gynecomastia_Center_Logo-1.png'),(9646,4193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:457;s:6:\"height\";i:100;s:4:\"file\";s:46:\"2024/03/Atlanta_Gynecomastia_Center_Logo-1.png\";s:8:\"filesize\";i:3187;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Atlanta_Gynecomastia_Center_Logo-1-300x66.png\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2628;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Atlanta_Gynecomastia_Center_Logo-1-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1149;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9647,4193,'_wp_attachment_image_alt','Atlanta Gynecomastia Center Logo'),(9662,4199,'_wp_attached_file','2024/03/Atlanta_Gynecomastia_Center_Logo_White.png'),(9663,4199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:459;s:6:\"height\";i:100;s:4:\"file\";s:50:\"2024/03/Atlanta_Gynecomastia_Center_Logo_White.png\";s:8:\"filesize\";i:3063;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Atlanta_Gynecomastia_Center_Logo_White-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3034;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Atlanta_Gynecomastia_Center_Logo_White-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1028;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9678,4205,'_wp_attached_file','2024/03/Atlanta_Gynecomastia_Center_Org_Logo.png'),(9679,4205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:48:\"2024/03/Atlanta_Gynecomastia_Center_Org_Logo.png\";s:8:\"filesize\";i:6137;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Atlanta_Gynecomastia_Center_Org_Logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2937;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Atlanta_Gynecomastia_Center_Org_Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1447;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9680,4205,'_wp_attachment_image_alt','Atlanta Gynecomastia Center'),(9681,4206,'_wp_attached_file','2024/03/Atlanta_Gynecomastia_Center_Site_Image.png'),(9682,4206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:281;s:4:\"file\";s:50:\"2024/03/Atlanta_Gynecomastia_Center_Site_Image.png\";s:8:\"filesize\";i:11669;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Atlanta_Gynecomastia_Center_Site_Image-300x66.png\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2385;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Atlanta_Gynecomastia_Center_Site_Image-1024x225.png\";s:5:\"width\";i:1024;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9817;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Atlanta_Gynecomastia_Center_Site_Image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1595;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Atlanta_Gynecomastia_Center_Site_Image-768x169.png\";s:5:\"width\";i:768;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9683,4206,'_wp_attachment_image_alt','Atlanta Gynecomastia Center'),(9710,4229,'_wp_attached_file','2024/03/cropped-Atlanta_Gynecomastia_Center_Favicon.png'),(9711,4229,'_wp_attachment_context','site-icon'),(9712,4229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:55:\"2024/03/cropped-Atlanta_Gynecomastia_Center_Favicon.png\";s:8:\"filesize\";i:2444;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"cropped-Atlanta_Gynecomastia_Center_Favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1571;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"cropped-Atlanta_Gynecomastia_Center_Favicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:919;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:55:\"cropped-Atlanta_Gynecomastia_Center_Favicon-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1518;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:55:\"cropped-Atlanta_Gynecomastia_Center_Favicon-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1092;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:55:\"cropped-Atlanta_Gynecomastia_Center_Favicon-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:953;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:53:\"cropped-Atlanta_Gynecomastia_Center_Favicon-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:406;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9715,4229,'_wp_attachment_image_alt','Atlanta Gynecomastia Center Favicon'),(9721,4237,'footnotes',''),(9723,4240,'footnotes',''),(9725,4243,'footnotes',''),(9727,4245,'footnotes',''),(9729,4249,'footnotes',''),(9731,4251,'footnotes',''),(9733,4255,'footnotes',''),(9735,4258,'footnotes',''),(9737,4261,'footnotes',''),(9739,4263,'footnotes',''),(9741,4265,'footnotes',''),(9743,4270,'footnotes',''),(9745,4272,'footnotes',''),(9753,2790,'_wp_old_date','2024-03-20'),(9754,2846,'_wp_old_date','2024-03-20'),(9755,2856,'_wp_old_date','2024-03-20'),(9756,2860,'_wp_old_date','2024-03-20'),(9757,2866,'_wp_old_date','2024-03-20'),(9758,2870,'_wp_old_date','2024-03-20'),(9759,2874,'_wp_old_date','2024-03-20'),(9760,2883,'_wp_old_date','2024-03-20'),(9766,4279,'footnotes',''),(9768,4281,'footnotes',''),(9770,4283,'footnotes',''),(9772,4285,'footnotes',''),(9773,4284,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9775,4287,'footnotes',''),(9776,4286,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9778,4289,'footnotes',''),(9779,4288,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9781,4291,'footnotes',''),(9783,4293,'footnotes',''),(9784,4292,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9786,4229,'_oembed_8f5eaf4487c3c271cb52e93e63e12929','{{unknown}}'),(9787,4296,'footnotes',''),(9788,4294,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9792,4300,'footnotes',''),(9795,4303,'_wp_attached_file','2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta.png'),(9796,4303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1223;s:6:\"height\";i:700;s:4:\"file\";s:55:\"2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta.png\";s:8:\"filesize\";i:168569;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14328;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122818;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7074;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72363;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9797,4304,'_wp_attached_file','2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png'),(9798,4304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1223;s:6:\"height\";i:700;s:4:\"file\";s:53:\"2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png\";s:8:\"filesize\";i:95329;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Stages-and-Grades-of-Gynecomastia-Atlanta-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9350;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Stages-and-Grades-of-Gynecomastia-Atlanta-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70763;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Stages-and-Grades-of-Gynecomastia-Atlanta-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Stages-and-Grades-of-Gynecomastia-Atlanta-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43384;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9799,4305,'_wp_attached_file','2024/03/What-is-Gynecomastia-Atlanta.png'),(9800,4305,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1223;s:6:\"height\";i:700;s:4:\"file\";s:40:\"2024/03/What-is-Gynecomastia-Atlanta.png\";s:8:\"filesize\";i:93676;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"What-is-Gynecomastia-Atlanta-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9594;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"What-is-Gynecomastia-Atlanta-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76056;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"What-is-Gynecomastia-Atlanta-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6771;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"What-is-Gynecomastia-Atlanta-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43671;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9801,4305,'_wp_attachment_image_alt','What is Gynecomastia Atlanta'),(9802,4304,'_wp_attachment_image_alt','Stages and Grades of Gynecomastia Atlanta'),(9804,4303,'_wp_attachment_image_alt','Gynecomastia vs. Pseudogynecomastia Atlanta'),(9805,4307,'footnotes',''),(9806,4309,'footnotes',''),(9807,4310,'footnotes',''),(9809,4312,'footnotes',''),(9810,4311,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9811,4313,'_wp_attached_file','2024/03/Atlanta_Gynecomastia_Center_Doctor.jpg'),(9812,4313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:854;s:6:\"height\";i:1280;s:4:\"file\";s:46:\"2024/03/Atlanta_Gynecomastia_Center_Doctor.jpg\";s:8:\"filesize\";i:41878;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Atlanta_Gynecomastia_Center_Doctor-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11406;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Atlanta_Gynecomastia_Center_Doctor-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34587;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Atlanta_Gynecomastia_Center_Doctor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4118;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Atlanta_Gynecomastia_Center_Doctor-768x1151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40948;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9813,4313,'_wp_attachment_image_alt','Atlanta Gynecomastia Center Doctor'),(9814,4314,'footnotes',''),(9816,4316,'footnotes',''),(9817,1329,'_thumbnail_id','4340'),(9818,4317,'_wp_attached_file','2024/03/What-is-Gynecomastia.jpg'),(9819,4317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:32:\"2024/03/What-is-Gynecomastia.jpg\";s:8:\"filesize\";i:56415;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"What-is-Gynecomastia-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8205;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"What-is-Gynecomastia-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38039;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"What-is-Gynecomastia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"What-is-Gynecomastia-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31465;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9820,4318,'_wp_attached_file','2024/03/Types-of-Gynecomastia-Atlanta.jpg'),(9821,4318,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1176;s:4:\"file\";s:41:\"2024/03/Types-of-Gynecomastia-Atlanta.jpg\";s:8:\"filesize\";i:75929;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Types-of-Gynecomastia-Atlanta-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6941;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Types-of-Gynecomastia-Atlanta-1024x941.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:941;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61355;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Types-of-Gynecomastia-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3162;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Types-of-Gynecomastia-Atlanta-768x706.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:706;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24509;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9822,4319,'_wp_attached_file','2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg'),(9823,4319,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:47:\"2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\";s:8:\"filesize\";i:39408;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Senior-Gynecomastia-Surgery-Atlanta-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3790;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Senior-Gynecomastia-Surgery-Atlanta-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Senior-Gynecomastia-Surgery-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2777;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Senior-Gynecomastia-Surgery-Atlanta-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21012;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9824,4320,'_wp_attached_file','2024/03/Puffy-Nipple-Treatment.jpg'),(9825,4320,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:34:\"2024/03/Puffy-Nipple-Treatment.jpg\";s:8:\"filesize\";i:43417;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Puffy-Nipple-Treatment-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4146;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Puffy-Nipple-Treatment-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23644;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Puffy-Nipple-Treatment-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2497;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Puffy-Nipple-Treatment-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28284;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9826,4321,'_wp_attached_file','2024/03/Post-Weight-Loss-Gynecomastia.jpg'),(9827,4321,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:41:\"2024/03/Post-Weight-Loss-Gynecomastia.jpg\";s:8:\"filesize\";i:74015;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Post-Weight-Loss-Gynecomastia-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6322;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Post-Weight-Loss-Gynecomastia-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44624;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Post-Weight-Loss-Gynecomastia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3804;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Post-Weight-Loss-Gynecomastia-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30192;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9828,4322,'_wp_attached_file','2024/03/Out-of-Town-Patients-Atlanta-Gynecomastia-Center.jpg'),(9829,4322,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:874;s:4:\"file\";s:60:\"2024/03/Out-of-Town-Patients-Atlanta-Gynecomastia-Center.jpg\";s:8:\"filesize\";i:18670;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2559;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center-1024x699.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20861;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2172;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center-768x524.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14154;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9830,4323,'_wp_attached_file','2024/03/Gynecomastia-Surgery-Candidate.jpg'),(9831,4323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:42:\"2024/03/Gynecomastia-Surgery-Candidate.jpg\";s:8:\"filesize\";i:49747;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Gynecomastia-Surgery-Candidate-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5459;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Gynecomastia-Surgery-Candidate-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39592;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Gynecomastia-Surgery-Candidate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2922;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Gynecomastia-Surgery-Candidate-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9832,4324,'_wp_attached_file','2024/03/Gynecomastia-Surgery-Atlanta.jpg'),(9833,4324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:40:\"2024/03/Gynecomastia-Surgery-Atlanta.jpg\";s:8:\"filesize\";i:39854;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Gynecomastia-Surgery-Atlanta-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7445;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Gynecomastia-Surgery-Atlanta-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28020;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Gynecomastia-Surgery-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3517;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Gynecomastia-Surgery-Atlanta-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24559;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9834,4325,'_wp_attached_file','2024/03/Gynecomastia-Revision-Surgery.jpg'),(9835,4325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:41:\"2024/03/Gynecomastia-Revision-Surgery.jpg\";s:8:\"filesize\";i:56374;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Gynecomastia-Revision-Surgery-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9808;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Gynecomastia-Revision-Surgery-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Gynecomastia-Revision-Surgery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4995;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Gynecomastia-Revision-Surgery-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35190;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9836,4326,'_wp_attached_file','2024/03/Gynecomastia-Frequently-Asked-Questions.jpg'),(9837,4326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1039;s:4:\"file\";s:51:\"2024/03/Gynecomastia-Frequently-Asked-Questions.jpg\";s:8:\"filesize\";i:52369;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Gynecomastia-Frequently-Asked-Questions-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5777;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Gynecomastia-Frequently-Asked-Questions-1024x831.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:831;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52581;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Gynecomastia-Frequently-Asked-Questions-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2779;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Gynecomastia-Frequently-Asked-Questions-768x623.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35201;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9838,4327,'_wp_attached_file','2024/03/Gynecomastia-Doctors-Atlanta.jpg'),(9839,4327,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:40:\"2024/03/Gynecomastia-Doctors-Atlanta.jpg\";s:8:\"filesize\";i:37643;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Gynecomastia-Doctors-Atlanta-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5841;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Gynecomastia-Doctors-Atlanta-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26739;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Gynecomastia-Doctors-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2910;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Gynecomastia-Doctors-Atlanta-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9840,4328,'_wp_attached_file','2024/03/Gynecomastia-Cost-Atlanta.jpg'),(9841,4328,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:723;s:4:\"file\";s:37:\"2024/03/Gynecomastia-Cost-Atlanta.jpg\";s:8:\"filesize\";i:31550;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Gynecomastia-Cost-Atlanta-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4316;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Gynecomastia-Cost-Atlanta-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Gynecomastia-Cost-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3173;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Gynecomastia-Cost-Atlanta-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15454;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9842,4329,'_wp_attached_file','2024/03/Gynecomastia-Causes.jpg'),(9843,4329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:31:\"2024/03/Gynecomastia-Causes.jpg\";s:8:\"filesize\";i:69915;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Gynecomastia-Causes-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12555;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Gynecomastia-Causes-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65239;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Gynecomastia-Causes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5472;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Gynecomastia-Causes-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49189;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9844,4330,'_wp_attached_file','2024/03/Contact-Atlanta-Gynecomastia-Center.jpg'),(9845,4330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:47:\"2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\";s:8:\"filesize\";i:124141;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Contact-Atlanta-Gynecomastia-Center-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14063;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Contact-Atlanta-Gynecomastia-Center-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98367;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Contact-Atlanta-Gynecomastia-Center-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5520;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Contact-Atlanta-Gynecomastia-Center-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72084;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9846,4331,'_wp_attached_file','2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg'),(9847,4331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:44:\"2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\";s:8:\"filesize\";i:21217;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Bodybuilder-Gynecomastia-Atlanta-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2198;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"Bodybuilder-Gynecomastia-Atlanta-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Bodybuilder-Gynecomastia-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1613;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"Bodybuilder-Gynecomastia-Atlanta-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9848,4332,'_wp_attached_file','2024/03/Before-and-After-Results-Gynecomastia-Atlanta.jpg'),(9849,4332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:57:\"2024/03/Before-and-After-Results-Gynecomastia-Atlanta.jpg\";s:8:\"filesize\";i:41792;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Before-and-After-Results-Gynecomastia-Atlanta-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7662;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Before-and-After-Results-Gynecomastia-Atlanta-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28338;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Before-and-After-Results-Gynecomastia-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4433;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Before-and-After-Results-Gynecomastia-Atlanta-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25122;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9850,4333,'_wp_attached_file','2024/03/Atlanta-Gynecomastia-Center-Reviews.jpg'),(9851,4333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:47:\"2024/03/Atlanta-Gynecomastia-Center-Reviews.jpg\";s:8:\"filesize\";i:24772;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Atlanta-Gynecomastia-Center-Reviews-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2492;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Atlanta-Gynecomastia-Center-Reviews-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Atlanta-Gynecomastia-Center-Reviews-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2773;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Atlanta-Gynecomastia-Center-Reviews-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12052;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9852,4334,'_wp_attached_file','2024/03/Adult-Gynecomastia-Atlanta.jpg'),(9853,4334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:38:\"2024/03/Adult-Gynecomastia-Atlanta.jpg\";s:8:\"filesize\";i:30789;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Adult-Gynecomastia-Atlanta-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3658;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Adult-Gynecomastia-Atlanta-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19789;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Adult-Gynecomastia-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2456;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Adult-Gynecomastia-Atlanta-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9854,4335,'_wp_attached_file','2024/03/Adolescent-Gynecomastia-Atlanta.jpg'),(9855,4335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:43:\"2024/03/Adolescent-Gynecomastia-Atlanta.jpg\";s:8:\"filesize\";i:64542;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Adolescent-Gynecomastia-Atlanta-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11219;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"Adolescent-Gynecomastia-Atlanta-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Adolescent-Gynecomastia-Atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5315;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Adolescent-Gynecomastia-Atlanta-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39377;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9856,4323,'_wp_attachment_image_alt','Gynecomastia Surgery Candidate'),(9857,3418,'_thumbnail_id','4323'),(9858,4333,'_wp_attachment_image_alt','Atlanta Gynecomastia Center Reviews'),(9860,2886,'_thumbnail_id','4333'),(9861,4328,'_wp_attachment_image_alt','Gynecomastia Cost Atlanta'),(9862,1668,'_thumbnail_id','4328'),(9863,4332,'_wp_attachment_image_alt','Before and After Results Gynecomastia Atlanta'),(9864,1563,'_thumbnail_id','4332'),(9865,4329,'_wp_attachment_image_alt','Gynecomastia Causes'),(9866,4330,'_wp_attachment_image_alt','Contact Atlanta Gynecomastia Center'),(9867,1484,'_thumbnail_id','4330'),(9868,1525,'_thumbnail_id','4329'),(9869,4322,'_wp_attachment_image_alt','Out of Town Patients Atlanta Gynecomastia Center'),(9870,2844,'_thumbnail_id','4330'),(9871,3490,'_thumbnail_id','4322'),(9872,2787,'_thumbnail_id','4330'),(9873,2858,'_thumbnail_id','4330'),(9874,2854,'_thumbnail_id','4330'),(9875,2868,'_thumbnail_id','4330'),(9877,2881,'_thumbnail_id','4330'),(9878,2862,'_thumbnail_id','4330'),(9879,2872,'_thumbnail_id','4330'),(9880,4326,'_wp_attachment_image_alt','Gynecomastia Frequently Asked Questions'),(9881,2743,'_thumbnail_id','4326'),(9882,4327,'_wp_attachment_image_alt','Gynecomastia Doctors Atlanta'),(9883,1275,'_thumbnail_id','4327'),(9884,4324,'_wp_attachment_image_alt','Gynecomastia Surgery Atlanta'),(9885,1666,'_thumbnail_id','4324'),(9886,4318,'_wp_attachment_image_alt','Types of Gynecomastia Atlanta'),(9887,1482,'_thumbnail_id','4318'),(9888,4335,'_wp_attachment_image_alt','Adolescent Gynecomastia Atlanta'),(9889,4334,'_wp_attachment_image_alt','Adult Gynecomastia Atlanta'),(9890,1908,'_thumbnail_id','4334'),(9891,1906,'_thumbnail_id','4335'),(9892,4331,'_wp_attachment_image_alt','Bodybuilder Gynecomastia Atlanta'),(9893,1911,'_thumbnail_id','4331'),(9894,4325,'_wp_attachment_image_alt','Gynecomastia Revision Surgery'),(9895,1901,'_thumbnail_id','4325'),(9896,4321,'_wp_attachment_image_alt','Post Weight Loss Gynecomastia'),(9897,3473,'_thumbnail_id','4321'),(9898,4320,'_wp_attachment_image_alt','Puffy Nipple Treatment'),(9899,2668,'_thumbnail_id','4320'),(9900,4319,'_wp_attachment_image_alt','Senior Gynecomastia Surgery Atlanta'),(9901,3481,'_thumbnail_id','4319'),(9902,1511,'_thumbnail_id','4305'),(9904,4317,'_wp_attachment_image_alt','What is Gynecomastia'),(9905,4339,'_wp_attached_file','2024/03/What-is-Pseudogynecomastia.jpg'),(9906,4339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:38:\"2024/03/What-is-Pseudogynecomastia.jpg\";s:8:\"filesize\";i:56415;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"What-is-Pseudogynecomastia-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8205;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"What-is-Pseudogynecomastia-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38039;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"What-is-Pseudogynecomastia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"What-is-Pseudogynecomastia-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31465;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9907,4339,'_wp_attachment_image_alt','What is Pseudogynecomastia'),(9908,4340,'_wp_attached_file','2024/03/Atlanta-Gynecomastia-Homepage.jpg'),(9909,4340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1223;s:6:\"height\";i:700;s:4:\"file\";s:41:\"2024/03/Atlanta-Gynecomastia-Homepage.jpg\";s:8:\"filesize\";i:17449;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Atlanta-Gynecomastia-Homepage-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2913;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Atlanta-Gynecomastia-Homepage-1024x586.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14645;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Atlanta-Gynecomastia-Homepage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4154;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Atlanta-Gynecomastia-Homepage-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9909;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9910,4340,'_wp_attachment_image_alt','Atlanta Gynecomastia Homepage'),(9913,4343,'footnotes',''),(9915,4345,'footnotes',''),(9916,4344,'yoast-structured-data-blocks-images-cache','a:0:{}'),(9917,4346,'footnotes',''),(9918,4347,'footnotes',''),(9922,4352,'footnotes',''),(9923,4353,'footnotes',''),(9924,4354,'footnotes',''),(9925,4355,'footnotes',''),(9926,4356,'footnotes',''),(9927,4357,'footnotes',''),(9931,4361,'footnotes',''),(9933,4363,'footnotes',''),(9935,4365,'footnotes',''),(9936,4366,'footnotes',''),(9937,4367,'footnotes',''),(9938,4368,'footnotes',''),(9939,4369,'footnotes',''),(9940,4370,'footnotes',''),(9941,4371,'footnotes',''),(9943,4373,'footnotes',''),(9944,4374,'footnotes',''),(9945,4375,'footnotes',''),(9946,4376,'footnotes',''),(9947,4377,'footnotes',''),(9949,4379,'footnotes',''),(9951,3447,'_wp_old_date','2024-03-12'),(9952,3446,'_wp_old_date','2024-03-12'),(9953,3445,'_wp_old_date','2024-03-20'),(9954,3444,'_wp_old_date','2024-03-20'),(9955,3443,'_wp_old_date','2024-03-12'),(9956,3442,'_wp_old_date','2024-03-12'),(9957,3441,'_wp_old_date','2024-03-12'),(9958,3440,'_wp_old_date','2024-03-12'),(9961,4381,'wpil_links_inbound_internal_count_data','eJztmE1uwyAQhe/CPrUh/iHkCm3aXZcWwSSlcbFliCoryt07mDRKzaIHgJUZ+/EyM/pknOEMl+yiWL59dSv0Pqiueelb2TXPSp8Qo+xiWM1QB1GjWrR1WsPWDJ3HDsGqqhj6sHYwLMu0/P6Uo5HTcdJS9F/cWMWF1FaOTxBmoteWC+t0fDyt4LLy+sw5FWDUG+uWa8zQP2ZORhlSLtYcUtkz7E2G2SSo583dZpi4gghsnGvBBSWwC5RW2U6i7c572GmQ6NEOCmXIWG7PxougJ64cyMfHpe+RuVuY7nz0AewUnRK/z+jsqazqtb/hEu3HI9dKNHbkh4MS942yVbYfbzroCheH5uF3r7OIa/HhRHOwm5uLbr68bWXb7KdmgHSUdm3KfQ5dL7jP4W8xV+hKpDSQqqwTDUsaSKQ04E1eJRqWNKzjpYEmGpY0FNHSgHGiYUlDGS0NeaIhoKGKlAZSVemkCGioY6WBlomGgAYaLQ3p3RDSsImWhrJINATTp1iHkYTWaRgZ4hDtNJLS9K8ixCHWcSShRTosQhxinUfCl2Q6LEIcoh1IFjS9HRY4XH8Asske8A=='),(9962,4381,'wpil_links_inbound_internal_count_data','eJztmE1uwyAQhe/CPrUh/iHkCm3aXZcWwSSlcbFliCoryt07mDRKzaIHgJUZ+/EyM/pknOEMl+yiWL59dSv0Pqiueelb2TXPSp8Qo+xiWM1QB1GjWrR1WsPWDJ3HDsGqqhj6sHYwLMu0/P6Uo5HTcdJS9F/cWMWF1FaOTxBmoteWC+t0fDyt4LLy+sw5FWDUG+uWa8zQP2ZORhlSLtYcUtkz7E2G2SSo583dZpi4gghsnGvBBSWwC5RW2U6i7c572GmQ6NEOCmXIWG7PxougJ64cyMfHpe+RuVuY7nz0AewUnRK/z+jsqazqtb/hEu3HI9dKNHbkh4MS942yVbYfbzroCheH5uF3r7OIa/HhRHOwm5uLbr68bWXb7KdmgHSUdm3KfQ5dL7jP4W8xV+hKpDSQqqwTDUsaSKQ04E1eJRqWNKzjpYEmGpY0FNHSgHGiYUlDGS0NeaIhoKGKlAZSVemkCGioY6WBlomGgAYaLQ3p3RDSsImWhrJINATTp1iHkYTWaRgZ4hDtNJLS9K8ixCHWcSShRTosQhxinUfCl2Q6LEIcoh1IFjS9HRY4XH8Asske8A=='),(9963,4381,'wpil_links_outbound_internal_count_data','eJzdmstu2zgUhl9F0Gq6UGNJ1sXMKpMWMy3aNGgGyNKgKdpmI5OGSMXQFHn3Hkp2ak8DdEQmkcCNYcqHF/36fEj+FEZRjL4zNDn/gsIE+bdbVs4/i4KW80+M3/koR98lypBfQmnOCv9cx0oUI7+uSh++TSfIXyu1lejsjNPdN1pJ2qwaTonYYKkYJpQrWr2F4lkbD+FCKv01DpH/myo6LEc+02WOocMFCrtGtm0jv4z6Wl9GYaSHHUHFdsRhHM2gFkQqpkrqn191bahmS/3j5iRKkS8VVrXsguDOiYDOuerKSaeEfGxClvWqK0BNUjJy+C1v22SKCd5d0AMV1QpzRuaqwsslI48VacGUqPZxoAomy/lRvw9tEOZkrYNAOND8iu68j61y3l9H0nmXrXb+vkNcFLSYL5r5FsbJuNZv0g2uFAR3gzu9yweQyxiGvAcMx5cDWVcrWjVBIQgIIQOoHHS1h4MmyhKXoImg8XfVW++rkJQvaLXyMC88feUaqzW+s0ImMkYmiwyRqeg9o7tRoBLleeoUKvA3PtbL22tthUhsjEjaAxHdIybqbIP5GiuFecAbMiAYaeQSGDPkfz4IawXD1Dxf9JhiDjCsMbmjXMLnSLJF6BIUITyRvx8VtsIiMcci7Y/FjkpF1vBBq4CImqumxaMR1d2AcCS5U3BA47c/dfYuW52tIEnNIQn7Q9IFBYTt6Rg8eUynTvEBIfttzCWzBCN7VTC0tpQHTJawjh5D4kjdShzwdG5aib0PrcRWaOTmi89ZfzRosaI7rKeVUWSMxKmMAc/j/UFfKyZmr8tEyf7FC6rW42Aic21f8v6gr531ZW6EmkAhahWIZaDEjgdbGBNEyMGgiKeziUtQaBfjS608sfT+AYG1zdUKbAeIuTmaxP8fkB3ssWFpEcDPYjgHNAmd2qjG6X9srT82uKTeoqJQ9Cpa1ET3+8YOEHMrNOmRQU6sUP1Ahssb4TR3ajLRRrkeu04cJ7jsDyns8DC3QbPcCg9c1KUKjn8YjpjZxKm9SgSlCy3v6VHczXPwYu6U5j3mmyd5ESWVOmY00Dh1yKKFu3jU+AXIMTdT86kVOQtRNIualQVsgEeCjmMLGbizP3+K/ALsmHuseQ8r7Ql2fjnilTDCIXOOU+BEsMI8geXrXuHnocbCgLVb22wlrQsxilwTpUnmFDJQupY1PZX3eXgxd2XzHsd9T/FSL5dNwNl2C9PvOOaoKHXLv4/hYV1rmb2rVuYXmKTMDdzMbqctKWdiJGubeOrY2wTwaG5afU+IsSIlMnd1Z6ZvND6xnMFLfSS0o2y1VkEp5JBWbxa7BI1+IfYkv1xoqb3bVmrvE0htx4+56ZuaLof3ZtNwS980dWq7rdcxG8bZBpdl4zF+jyW7p8/i6UXmlu+wb89XKDt/zVfLH34AzrEAZQ=='),(9964,4381,'wpil_links_outbound_internal_count_data','eJzdmstu2zgUhl9F0Gq6UGNJ1sXMKpMWMy3aNGgGyNKgKdpmI5OGSMXQFHn3Hkp2ak8DdEQmkcCNYcqHF/36fEj+FEZRjL4zNDn/gsIE+bdbVs4/i4KW80+M3/koR98lypBfQmnOCv9cx0oUI7+uSh++TSfIXyu1lejsjNPdN1pJ2qwaTonYYKkYJpQrWr2F4lkbD+FCKv01DpH/myo6LEc+02WOocMFCrtGtm0jv4z6Wl9GYaSHHUHFdsRhHM2gFkQqpkrqn191bahmS/3j5iRKkS8VVrXsguDOiYDOuerKSaeEfGxClvWqK0BNUjJy+C1v22SKCd5d0AMV1QpzRuaqwsslI48VacGUqPZxoAomy/lRvw9tEOZkrYNAOND8iu68j61y3l9H0nmXrXb+vkNcFLSYL5r5FsbJuNZv0g2uFAR3gzu9yweQyxiGvAcMx5cDWVcrWjVBIQgIIQOoHHS1h4MmyhKXoImg8XfVW++rkJQvaLXyMC88feUaqzW+s0ImMkYmiwyRqeg9o7tRoBLleeoUKvA3PtbL22tthUhsjEjaAxHdIybqbIP5GiuFecAbMiAYaeQSGDPkfz4IawXD1Dxf9JhiDjCsMbmjXMLnSLJF6BIUITyRvx8VtsIiMcci7Y/FjkpF1vBBq4CImqumxaMR1d2AcCS5U3BA47c/dfYuW52tIEnNIQn7Q9IFBYTt6Rg8eUynTvEBIfttzCWzBCN7VTC0tpQHTJawjh5D4kjdShzwdG5aib0PrcRWaOTmi89ZfzRosaI7rKeVUWSMxKmMAc/j/UFfKyZmr8tEyf7FC6rW42Aic21f8v6gr531ZW6EmkAhahWIZaDEjgdbGBNEyMGgiKeziUtQaBfjS608sfT+AYG1zdUKbAeIuTmaxP8fkB3ssWFpEcDPYjgHNAmd2qjG6X9srT82uKTeoqJQ9Cpa1ET3+8YOEHMrNOmRQU6sUP1Ahssb4TR3ajLRRrkeu04cJ7jsDyns8DC3QbPcCg9c1KUKjn8YjpjZxKm9SgSlCy3v6VHczXPwYu6U5j3mmyd5ESWVOmY00Dh1yKKFu3jU+AXIMTdT86kVOQtRNIualQVsgEeCjmMLGbizP3+K/ALsmHuseQ8r7Ql2fjnilTDCIXOOU+BEsMI8geXrXuHnocbCgLVb22wlrQsxilwTpUnmFDJQupY1PZX3eXgxd2XzHsd9T/FSL5dNwNl2C9PvOOaoKHXLv4/hYV1rmb2rVuYXmKTMDdzMbqctKWdiJGubeOrY2wTwaG5afU+IsSIlMnd1Z6ZvND6xnMFLfSS0o2y1VkEp5JBWbxa7BI1+IfYkv1xoqb3bVmrvE0htx4+56ZuaLof3ZtNwS980dWq7rdcxG8bZBpdl4zF+jyW7p8/i6UXmlu+wb89XKDt/zVfLH34AzrEAZQ=='),(9965,4381,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(9966,4381,'wpil_links_outbound_external_count_data','eJxFUF1PwkAQ/CvNmfhSpRxYSo40Bn1R+fArRn1qjt4CZ693R3tQCuG/u6Uxvu3szu7MLGeUHSXrjp4ZDRn5tFIlMyNAJVOpM8KG7FiyiBGFKJGCjBpuyfqMbAtFsKIhTtfO2ZIFQVVVnZUxKwWd1ORBzm0ZQL4AEexoYBVP4TaDOh4/Hvh7fTee9Uz0Il83VUbD6T39envoQTJ5uv754NHkO7u86PaHo4MxeUxpC/Ciqy3EheEC67a5iWk4iHzLlSy5AJ/vQG/BX5rC+QqgcXmDHk3pzoa7jPx7bDpDRqR2UGiOiRbnfMi3Z/4cwYARrtO1KRpyH+POjdc2PAd7d+U1z/Fk6aEiDjy5LHgO7XNwVQgQyaJOrNqupP5TQFFlUu6k0Q0Tr6YGTWjUPJ1+AX+0gzU='),(9967,4381,'kt_blocks_editor_width',''),(9968,4381,'_kad_post_transparent',''),(9969,4381,'_kad_post_title','default'),(9970,4381,'_kad_post_layout','default'),(9971,4381,'_kad_post_sidebar_id',''),(9972,4381,'_kad_post_content_style','default'),(9973,4381,'_kad_post_vertical_padding','default'),(9974,4381,'_kad_post_feature','default'),(9975,4381,'_kad_post_feature_position',''),(9976,4381,'_kad_post_header',''),(9977,4381,'_kad_post_footer',''),(9978,4381,'_has_fluentform','a:0:{}'),(9979,4381,'_wp_page_template','default'),(9980,4381,'footnotes',''),(9981,4381,'_kadence_starter_templates_imported_post','1'),(9982,4381,'_yoast_wpseo_content_score','90'),(9983,4381,'_yoast_wpseo_estimated-reading-time-minutes','3'),(9984,4381,'_yoast_wpseo_wordproof_timestamp',''),(9985,4381,'_yoast_wpseo_focuskw','near Buckhead'),(9986,4381,'_yoast_wpseo_title','Gynecomastia Surgeon Near Buckhead, GA (Male Breast Reduction)'),(9987,4381,'_yoast_wpseo_metadesc','If you are looking for a gynecomastia plastic surgeon near Buckhead, Georgia, reach out to the Atlanta Gynecomastia Center.'),(9988,4381,'_yoast_wpseo_linkdex','57'),(9989,4381,'_kad_blocks_custom_css',''),(9990,4381,'_kad_blocks_head_custom_js',''),(9991,4381,'_kad_blocks_body_custom_js',''),(9992,4381,'_kad_blocks_footer_custom_js',''),(9994,4381,'wpil_links_inbound_internal_count','15'),(9995,4381,'wpil_links_outbound_internal_count','23'),(9996,4381,'wpil_links_outbound_external_count','1'),(9997,4381,'wpil_sync_report2_time','2024-03-17T18:14:20+00:00'),(9998,4381,'wpil_sync_report3','1'),(9999,4381,'_thumbnail_id','4330'),(10000,4381,'_dp_original','2787'),(10001,4381,'_edit_lock','1711750661:1'),(10002,4383,'footnotes',''),(10003,4381,'_edit_last','1'),(10005,4386,'footnotes',''),(10006,4388,'_menu_item_type','post_type'),(10007,4388,'_menu_item_menu_item_parent','1492'),(10008,4388,'_menu_item_object_id','4381'),(10009,4388,'_menu_item_object','page'),(10010,4388,'_menu_item_target',''),(10011,4388,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10012,4388,'_menu_item_xfn',''),(10013,4388,'_menu_item_url',''),(10015,2055,'_wp_old_date','2024-03-20'),(10016,1975,'_wp_old_date','2024-03-20'),(10017,1974,'_wp_old_date','2024-03-20'),(10018,1973,'_wp_old_date','2024-03-20'),(10019,3459,'_wp_old_date','2024-03-20'),(10020,2750,'_wp_old_date','2024-03-20'),(10021,1491,'_wp_old_date','2024-03-20'),(10022,1950,'_wp_old_date','2024-03-20'),(10023,1951,'_wp_old_date','2024-03-20'),(10024,1949,'_wp_old_date','2024-03-20'),(10025,1952,'_wp_old_date','2024-03-20'),(10026,2667,'_wp_old_date','2024-03-20'),(10027,2672,'_wp_old_date','2024-03-20'),(10028,3479,'_wp_old_date','2024-03-20'),(10029,3486,'_wp_old_date','2024-03-20'),(10030,1671,'_wp_old_date','2024-03-20'),(10031,1670,'_wp_old_date','2024-03-20'),(10032,1665,'_wp_old_date','2024-03-20'),(10033,1756,'_wp_old_date','2024-03-20'),(10034,2888,'_wp_old_date','2024-03-20'),(10035,1492,'_wp_old_date','2024-03-20'),(10036,2790,'_wp_old_date','2024-03-27'),(10037,2846,'_wp_old_date','2024-03-27'),(10038,2856,'_wp_old_date','2024-03-27'),(10039,2860,'_wp_old_date','2024-03-27'),(10040,2866,'_wp_old_date','2024-03-27'),(10041,2870,'_wp_old_date','2024-03-27'),(10042,2874,'_wp_old_date','2024-03-27'),(10043,2883,'_wp_old_date','2024-03-27'),(10044,3559,'_wp_old_date','2024-03-20'),(10045,4389,'_menu_item_type','post_type'),(10046,4389,'_menu_item_menu_item_parent','3439'),(10047,4389,'_menu_item_object_id','4381'),(10048,4389,'_menu_item_object','page'),(10049,4389,'_menu_item_target',''),(10050,4389,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10051,4389,'_menu_item_xfn',''),(10052,4389,'_menu_item_url',''),(10054,3439,'_wp_old_date','2024-03-12'),(10055,3560,'_wp_old_date','2024-03-15'),(10056,4391,'footnotes',''),(10058,4394,'footnotes',''),(10060,4396,'footnotes',''),(10061,4398,'footnotes',''),(10063,4400,'footnotes',''),(10064,4401,'footnotes',''),(10066,4403,'footnotes',''),(10067,4404,'footnotes',''),(10068,4405,'footnotes',''),(10070,4407,'footnotes',''),(10071,4408,'footnotes',''),(10072,4409,'footnotes',''),(10073,4410,'footnotes',''),(10074,4411,'footnotes',''),(10076,4413,'footnotes',''),(10078,4416,'footnotes',''),(10080,4418,'footnotes',''),(10082,4420,'footnotes',''),(10083,4421,'footnotes',''),(10084,4422,'footnotes',''),(10086,4425,'footnotes',''),(10087,4426,'footnotes',''),(10090,4429,'footnotes',''),(10091,4427,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10093,4431,'footnotes',''),(10095,4433,'footnotes',''),(10096,4434,'footnotes',''),(10098,4436,'footnotes',''),(10100,4438,'footnotes',''),(10102,4441,'footnotes',''),(10103,4440,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10105,1551,'_thumbnail_id','4304'),(10106,4443,'footnotes',''),(10108,4445,'footnotes',''),(10110,4447,'footnotes',''),(10111,4446,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10113,4449,'footnotes',''),(10114,4450,'footnotes',''),(10115,4448,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10118,4453,'footnotes',''),(10119,4452,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10120,4454,'footnotes',''),(10121,4451,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10124,4457,'footnotes',''),(10125,4455,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10127,4459,'footnotes',''),(10128,4458,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10130,4461,'footnotes',''),(10131,4462,'footnotes',''),(10133,4464,'footnotes',''),(10134,4463,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10136,4466,'footnotes',''),(10137,4465,'yoast-structured-data-blocks-images-cache','a:0:{}'),(10139,4468,'footnotes',''),(10141,4470,'footnotes',''),(10143,4472,'footnotes',''),(10151,4486,'footnotes',''),(10152,4490,'footnotes',''),(10153,4493,'footnotes','');
/*!40000 ALTER TABLE `hyu_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_posts`
--

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

--
-- Dumping data for table `hyu_posts`
--

LOCK TABLES `hyu_posts` WRITE;
/*!40000 ALTER TABLE `hyu_posts` DISABLE KEYS */;
INSERT INTO `hyu_posts` VALUES (5,0,'2024-01-27 17:49:48','2024-01-27 17:49:48','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2024-01-27 17:49:48','2024-01-27 17:49:48','',0,'http://charlesb210.sg-host.com/navigation/',0,'wp_navigation','',0),(6,5,'2024-01-27 18:02:03','0000-00-00 00:00:00','','','','draft','closed','closed','','','','','2024-01-27 18:02:03','2024-01-27 18:02:03','{\"show_header_template\":true,\"show_footer_template\":true,\"no_conflict_mode\":true,\"no_index\":false,\"seo_title\":\"\",\"seo_description\":\"\",\"favicon\":\"\",\"social_thumbnail\":\"\",\"enable_recaptcha\":false,\"template_id\":373,\"post_title\":\"\",\"post_name\":\"\",\"post_status\":\"\",\"show_powered_by_link\":false,\"facebook_app_id\":\"\",\"affiliate_url\":\"\",\"header_scripts\":\"\",\"body_scripts\":\"\",\"footer_scripts\":\"\",\"conversion_scripts\":\"\",\"disable_default_excluded_urls\":false,\"include_exclude_type\":\"0\",\"include_list\":\"\",\"exclude_list\":\"\",\"bypass_phrase\":\"\",\"bypass_expires\":\"2\",\"bypass_cookie\":false,\"access_by_ip\":\"\",\"access_by_role\":[],\"redirect_login_page\":false,\"redirect_mode\":false,\"redirect_url\":\"\",\"domain_mapping_status\":false,\"domain_mapping\":\"\",\"domain_mapping_force_https\":false,\"exclude_list_404\":\"\",\"email_integration_id\":\"\",\"is_new\":true,\"page_type\":\"cs\",\"document\":{\"sections\":[{\"id\":\"ks8a8s\",\"type\":\"section\",\"rows\":[{\"id\":\"vw3kvy\",\"type\":\"row\",\"colType\":\"1-col\",\"cols\":[{\"id\":\"ggzp6w\",\"type\":\"col\",\"blocks\":[{\"id\":\"brhhwi\",\"elType\":\"block\",\"type\":\"image\",\"settings\":{\"unit\":\"px\",\"src\":\"https:\\/\\/assets.seedprod.com\\/clock.png\",\"altTxt\":\"\",\"link\":\"\",\"width\":\"\",\"height\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"imagePadding\":\"\",\"align\":\"center\",\"shadow\":\"\",\"imageBorderRadius\":\"\",\"imageBorderTop\":\"0\",\"imageBorderBottom\":\"0\",\"imageBorderLeft\":\"0\",\"imageBorderRight\":\"0\",\"imageBorderSync\":true,\"imageBorderStyle\":\"solid\",\"imageBorderColor\":\"\",\"blockTemplateId\":false}},{\"id\":\"jkhbii\",\"elType\":\"block\",\"type\":\"header\",\"settings\":{\"headerTxt\":\"Coming Soon\",\"tag\":\"h1\",\"textColor\":\"#321B26\",\"bgColor\":\"\",\"beforeIcon\":\"\",\"afterIcon\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"border\":\"\",\"borderStyle\":\"\",\"borderSize\":\"\",\"borderColor\":\"\",\"shadow\":\"\",\"textShadow\":\"\",\"font\":\"\",\"fontVariant\":\"\",\"fontSize\":52,\"fontSize_mobile\":\"\",\"lineHeight\":\"\",\"lineHeight_mobile\":\"\",\"letterSpacing\":\"\",\"letterSpacing_mobile\":\"\",\"typographyBold\":true,\"typographyItalic\":\"\",\"typographyUnderline\":\"\",\"align\":\"center\",\"typographyLetterCase\":\"\"}},{\"id\":\"jdj1i9\",\"elType\":\"block\",\"type\":\"text\",\"settings\":{\"txt\":\"<p>Get ready, something cool is coming!<\\/p>\",\"textColor\":\"#321B26\",\"bgColor\":\"\",\"beforeIcon\":\"\",\"afterIcon\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"border\":\"\",\"borderStyle\":\"\",\"borderSize\":\"\",\"borderColor\":\"\",\"shadow\":\"\",\"textShadow\":\"\",\"font\":\"\",\"fontVariant\":\"\",\"fontSize\":16,\"fontSize_mobile\":\"\",\"lineHeight\":\"\",\"lineHeight_mobile\":\"\",\"letterSpacing\":\"\",\"letterSpacing_mobile\":\"\",\"typographyBold\":\"\",\"typographyItalic\":\"\",\"typographyUnderline\":\"\",\"align\":\"center\",\"typographyLetterCase\":\"\"}}],\"settings\":{\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"colWidth\":\"\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"borderRadiusSync\":true,\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\"}}],\"settings\":{\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"colGutter\":0,\"width\":\"1000\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"paddingLeft\":\"0\",\"paddingRight\":\"0\",\"paddingSync\":true,\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"borderRadiusSync\":true,\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\"}}],\"settings\":{\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"contentWidth\":\"2\",\"width\":600,\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"10\",\"paddingBottom\":\"10\",\"paddingLeft\":\"10\",\"paddingRight\":\"10\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\",\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"borderRadiusSync\":true}}],\"settings\":{\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"bgColor\":\"#FFFFFF\",\"bgImage\":\"\",\"bgDimming\":0,\"bgOverlayColor\":\"\",\"bgPosition\":\"cover\",\"buttonColor\":\"#000000\",\"headerColor\":\"#000000\",\"linkColor\":\"#FF0000\",\"linkDarkerColor\":\"#cc0000\",\"textColor\":\"#272727\",\"textFont\":\"\'Helvetica Neue\', Arial, sans-serif\",\"textFontVariant\":\"400\",\"headerFont\":\"\'Helvetica Neue\', Arial, sans-serif\",\"headerFontVariant\":\"400\",\"contentPosition\":\"4\",\"customCss\":\"\",\"headCss\":\"#sp-page{color:#272727} #sp-page .sp-header-tag-h1,#sp-page .sp-header-tag-h2,#sp-page .sp-header-tag-h3,#sp-page .sp-header-tag-h4,#sp-page .sp-header-tag-h5,#sp-page .sp-header-tag-h6{color:#000000}#sp-page h1,#sp-page h2,#sp-page h3,#sp-page h4,#sp-page h5,#sp-page h6{color:#000000; font-family:\'Helvetica Neue\', Arial, sans-serif;font-weight:400;font-style:normal} #sp-page a{color:#FF0000} #sp-page a:hover{color:#cc0000}#sp-page .btn{background-color:#000000}body{background-color:#FFFFFF; background-image:;}\",\"mobileCss\":\"\",\"placeholderCss\":\"\",\"useVideoBg\":false,\"useVideoBgUrl\":\"\",\"useSlideshowBg\":false,\"useSlideshowImgs\":[\"\"]}}}',0,'http://charlesb210.sg-host.com/?post_type=seedprod&#038;p=6',0,'seedprod','',0),(7,5,'2024-01-27 18:02:03','2024-01-27 18:02:03','','sp-cs','','inherit','closed','closed','','6-revision-v1','','','2024-01-27 18:02:03','2024-01-27 18:02:03','{\"show_header_template\":true,\"show_footer_template\":true,\"no_conflict_mode\":true,\"no_index\":false,\"seo_title\":\"\",\"seo_description\":\"\",\"favicon\":\"\",\"social_thumbnail\":\"\",\"enable_recaptcha\":false,\"template_id\":\"\",\"post_title\":\"\",\"post_name\":\"\",\"post_status\":\"\",\"show_powered_by_link\":false,\"facebook_app_id\":\"\",\"affiliate_url\":\"\",\"header_scripts\":\"\",\"body_scripts\":\"\",\"footer_scripts\":\"\",\"conversion_scripts\":\"\",\"disable_default_excluded_urls\":false,\"include_exclude_type\":\"0\",\"include_list\":\"\",\"exclude_list\":\"\",\"bypass_phrase\":\"\",\"bypass_expires\":\"2\",\"bypass_cookie\":false,\"access_by_ip\":\"\",\"access_by_role\":[],\"redirect_login_page\":false,\"redirect_mode\":false,\"redirect_url\":\"\",\"domain_mapping_status\":false,\"domain_mapping\":\"\",\"domain_mapping_force_https\":false,\"exclude_list_404\":\"\",\"email_integration_id\":\"\",\"document\":{\"sections\":[],\"settings\":{\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"bgColor\":\"#FFFFFF\",\"bgImage\":\"\",\"bgDimming\":0,\"bgCustomDimming\":0,\"bgCustomDimmingOverlay\":\"\",\"bgCustomXPositionUnit\":\"px\",\"bgCustomXPosition\":\"\",\"bgCustomYPositionUnit\":\"px\",\"bgCustomYPosition\":\"\",\"bgCustomAttachment\":\"\",\"bgCustomRepeat\":\"\",\"bgCustomSize\":\"\",\"bgCustomSizeWidthUnit\":\"%\",\"bgCustomSizeWidth\":\"100\",\"bgOverlayColor\":\"\",\"bgPosition\":\"cover\",\"buttonColor\":\"#000000\",\"headerColor\":\"#000000\",\"linkColor\":\"#FF0000\",\"linkDarkerColor\":\"#cc0000\",\"textColor\":\"#272727\",\"textFont\":\"\'Helvetica Neue\', Arial, sans-serif\",\"textFontVariant\":\"400\",\"headerFont\":\"\'Helvetica Neue\', Arial, sans-serif\",\"headerFontVariant\":\"400\",\"contentPosition\":\"1\",\"customCss\":\"\",\"headCss\":\"\",\"mobileCss\":\"\",\"tabletCss\":\"\",\"mobileVisibilityCss\":\"\",\"tabletVisibilityCss\":\"\",\"desktopVisibilityCss\":\"\",\"placeholderCss\":\"\",\"useVideoBg\":false,\"useVideoBgUrl\":\"\",\"useSlideshowBg\":false,\"useSlideshowImgs\":[\"\"]}},\"is_new\":true,\"page_type\":\"cs\"}',6,'http://charlesb210.sg-host.com/?p=7',0,'revision','',0),(1275,5,'2024-03-26 10:08:00','2024-03-26 10:08:00','<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">COMING SOON!</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Jonathan Smith MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Smith is one of the head plastic surgeons at the Atlanta Gynecomastia Center. With a significant educational background and over 30 years of experience, Dr. Smith is one of the highest regarded gynecomastia plastic surgeons in Georgia.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Doctor.jpg\",\"bgImgID\":4313,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"54% 18%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith embarked on his medical journey with an internship and general surgery training in Atlanta, Georgia. After he graduated, he pursued an additional two years of plastic surgery residency.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith\'s career has been marked by active engagement in education and scholarship, including delivering lectures, writing numerous articles and chapters for textbooks, and teaching residents and medical students about different facets of plastic surgery. He is board certified from the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Smith leads the Atlanta Gynecomastia Center, one of the premier gynecomastia surgery practices in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Science</strong>: <a href=\"https://www.uga.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Georgia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','publish','closed','closed','','gynecomastia-surgery-doctors','','','2024-06-05 22:08:00','2024-06-05 22:08:00','',0,'https://stage.startertemplatecloud.com/e10/?page_id=1275',0,'page','',0),(1329,5,'2024-03-25 10:45:25','2024-03-25 10:45:25','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"actions\":[\"email\",\"entry\"],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Top]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to educate you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can appear at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gynecomastia Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost-effective as possible. Patient safety is always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gynecomastia Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"actions\":[\"email\",\"entry\"],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Bottom]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, Alpharetta, <a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a>, Fulton County, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','publish','closed','closed','','home','','','2024-10-10 21:09:57','2024-10-10 21:09:57','',0,'https://stage.startertemplatecloud.com/e10/?page_id=1329',0,'page','',0),(1407,5,'2024-01-27 18:19:48','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1036,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2021/01/pexels-mentatdgt-1138903.jpg\" alt=\"\" class=\"wp-image-1036\"/></figure>\n<!-- /wp:image -->','','','draft','open','open','','','','','2024-01-27 18:19:48','2024-01-27 18:19:48','',0,'http://charlesb210.sg-host.com/?p=1407',0,'post','',0),(1408,5,'2024-01-27 18:19:48','2024-01-27 18:19:48','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1036,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2021/01/pexels-mentatdgt-1138903.jpg\" alt=\"\" class=\"wp-image-1036\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','1407-revision-v1','','','2024-01-27 18:19:48','2024-01-27 18:19:48','',1407,'http://charlesb210.sg-host.com/?p=1408',0,'revision','',0),(1482,5,'2024-03-26 22:56:16','2024-03-26 22:56:16','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Atlanta Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Learn About the Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to help - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many cases of gynecomastia, adult gynecomastia usually stems from a hormonal imbalance between testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_a6a290-cb\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_7f0a60-59\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_7f0a60-59\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_3373e6-75\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_3373e6-75\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Bodybuilder Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c2b8c0-86\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c2b8c0-86\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_daa92f-20\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_daa92f-20\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Revision Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_956a28-79\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_51263e-9a\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_51263e-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ef8723-86\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ef8723-86\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue. Instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Pseudo Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c947fa-da\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c947fa-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_d85976-8f\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_d85976-8f\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still cause a great deal of distress for those who are affected.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Puffy Nipple</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_b149ec-63\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_cfadfd-5e\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_cfadfd-5e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ff7631-0e\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ff7631-0e\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">At any age, gynecomastia may develop. However, it becomes more common among seniors due to factors such as hormonal shifts, medications, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Senior Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_fda015-8c\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_fda015-8c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_5923d4-a2\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_5923d4-a2\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Gyno After Weight Loss</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Types of Gynecomastia','','publish','closed','closed','','gynecomastia-types','','','2024-07-11 22:56:22','2024-07-11 22:56:22','',0,'https://charlesb210.sg-host.com/?page_id=1482',0,'page','',0),(1484,3,'2024-03-25 22:56:04','2024-03-25 22:56:04','<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How to Reach Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Feel free to call the Atlanta Gynecomastia Center at (203) 441-1113 to book your free consultation. We are easily accessible from many nearby cities, and eager to help you with your gynecomastia questions and concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><span style=\"text-decoration: underline;\">Hours of Operation<br></span></strong>Monday: 9:00 AM - 5:00 PM<br>Tuesday: 9:00 AM - 5:00 PM<br>Wednesday: 9:00 AM - 5:00 PM<br>Thursday: 9:00 AM - 5:00 PM<br>Friday: 9:00 AM - 5:00 PM</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta. We regularly treat patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, you can <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and browse some <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia photos</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your male breast reduction surgery will be performed by one of the&nbsp;best gynecomastia surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gynecomastia surgery</a>, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: One of the most common surgeries performed is a standard adult gynecomastia procedure. Adult gyno is commonly a result of a hormonal imbalance between estrogen and testosterone that creates excess breast gland tissue. While there can be several causes of this, sometimes the reasons are unknown.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: As young boys go through puberty, there are changes in the natural levels of testosterone and estrogen in the body. While many of these cases resolve over time, some teenagers may need to resort to surgery in order to get rid of the condition for good.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: Bodybuilder gynecomastia is a common theme among people who use anabolic steroids and prohormones. These drugs can trigger the onset of enlarged breasts, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery might be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Not all enlarged male breasts are due to excess glandular tissue. There are times when simply excess breast fat is the culprit. In these cases, the condition is called pseudogynecomastia. While this is sometimes the case, individuals often have a combination of both excess gland tissue and excess fat tissue.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it. This is usually a mild form of gynecomastia that surgery can resolve.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: Although gynecomastia can occur at any age, it becomes increasingly common among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>No matter what type of gynecomastia you are experiencing, the Atlanta Gynecomastia Center is here to help. Schedule a free consultation today and get started on your journey to a more confident and comfortable self.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','publish','closed','closed','','contact','','','2024-10-10 21:09:38','2024-10-10 21:09:38','',0,'https://charlesb210.sg-host.com/?page_id=1484',0,'page','',0),(1491,5,'2024-03-29 00:41:21','2024-01-27 22:57:36','','Gynecomastia Types','','publish','closed','closed','','1491','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1491',7,'nav_menu_item','',0),(1492,5,'2024-03-29 00:41:21','2024-01-27 22:57:36','','Contact Us','','publish','closed','closed','','1492','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1492',21,'nav_menu_item','',0),(1511,5,'2024-03-24 19:28:42','2024-03-24 19:28:42','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_3e4ba6-c1\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_4ce970-cb\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_4ce970-cb\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_32aca6-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_32aca6-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_32aca6-18\">Gynecomastia is a common condition where males have an excess amount of breast tissue. This can come in the form of excess gland tissue, excess fat tissue, or a combination of both. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_822af6-4f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_822af6-4f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_822af6-4f\">Although gynecomastia is generally not harmful, it\'s important to understand its causes, symptoms, and available treatments. Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_238746-50\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_238746-50 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_238746-50\">At the Atlanta Gynecomastia Center, we offer personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments customized to meet your needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_f79620-27\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_f79620-27 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_f79620-27\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_27b0c1-ac\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_699bed-53\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_699bed-53\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, also known as \'gyno\' or man boobs, is the development of excess breast gland tissue in men. While several factors can contribute to its development, hormonal imbalance frequently serves as the root cause. This typically involves an imbalance between estrogen and testosterone levels:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Imbalances can be caused by various factors such as puberty, aging, specific medications, health issues, substance misuse, or nutritional deficiencies. In some other cases though, there is no known cause of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Despite not posing significant health risks, gynecomastia can induce discomfort and considerable embarrassment, leading to psychological distress for many individuals. Due to this, most men affected by it prioritize treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The Atlanta Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4305,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_f1dcc6-ab\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_f1dcc6-ab size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta-1024x586.png\" alt=\"What is Gynecomastia Atlanta\" class=\"kb-img wp-image-4305\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_b18812-cc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8d5432-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8d5432-98\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">What Causes Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common gynecomastia causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> by checking out the dedicated overview on the topic.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_176ee2-e7\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_7e9be4-63\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_7e9be4-63\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Gynecomastia is classified into four stages ranging from grade 1 (mild) to grade 4 (severe). Each stage has distinct characteristics that set it apart from the others. Treatment approaches also differ for each grade, with stage 4 necessitating a significantly distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this grading system.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4304,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_2e3ad2-1e\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_2e3ad2-1e size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta-1024x586.png\" alt=\"Stages and Grades of Gynecomastia Atlanta\" class=\"kb-img wp-image-4304\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_88fda6-a2\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_27bb6f-57\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_27bb6f-57\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Although true gynecomastia is primarily made up of excess breast gland tissue, it often involves excess fatty tissue as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a> is the term used to describe the condition where there is simply additional fatty tissue without any excess gland tissue.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it may outwardly resemble gynecomastia and result in the appearance of \"man boobs,\" its root cause is fat deposition. In these cases, the condition can sometimes be addressed through lifestyle modifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, pseudogynecomastia often can persist despite lifestyle changes. In these cases, surgical intervention, primarily through liposuction, is frequently recommended for treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. If that is the case, a <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues at once. During the surgery, both the extra breast gland tissue and excess fatty tissue are removed through a combination of excision and liposuction. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">If you\'re seeking clarity on what\'s causing your gynecomastia and discussing potential solutions, consider scheduling a visit to the Atlanta Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_5f8d30-9b\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_5f8d30-9b size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"kb-img wp-image-4303\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia can be distressing, it\'s important to understand that effective treatment options exist. Our knowledgeable medical professionals at the Atlanta Gynecomastia Center are committed to providing individualized care that caters to each patient\'s specific needs (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So, whether you\'re in need of medical advice, contemplating surgical options, or just seeking guidance, our team is dedicated to supporting you throughout your journey. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','publish','closed','closed','','what-is-gyno','','','2024-03-31 00:57:33','2024-03-31 00:57:33','',0,'https://charlesb210.sg-host.com/?page_id=1511',0,'page','',0),(1525,5,'2024-03-25 20:27:35','2024-03-25 20:27:35','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the subject of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to understand that in numerous cases, the root cause of gynecomastia remains unknown. In such cases, hormonal imbalance may not serve as the primary reason.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. This condition typically resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue usually resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Substance abuse such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels This is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting excess testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of teenagers will have some signs of gynecomastia by the age of 14. It is largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This is a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist. In these cases, surgical intervention to address the issue may be necessary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another substance abuse problem that is noticeably more common than illicit drug usage is alcoholism.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role due to its high content of phytoestrogens. These are plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects similar to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels. This process typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Professional bodybuilders frequently experience gynecomastia due to the use of anabolic drugs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may cause the body to convert excess testosterone into estrogen. In many cases, this can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Two main factors explain why there are more cases of gynecomastia in people with higher body fat. First, there is an accumulation of fat in the chest area, and second, enhanced estrogen levels increase the chance of breast gland tissue formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On top of that, heightened levels of fat also can cause a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This conversion takes place mostly in adipose tissue, which makes up around 85% of the process. Therefore, the more fat tissue there is, the more prominent the possible increase in estrogen levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens (the male hormones).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This insufficiency may result from a number of different things, such as radiation exposure, mechanical trauma, or medical disorders that harm the testes. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium. This can result in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. It\'s crucial to remember that even if these side effects do occur, you shouldn\'t automatically stop taking your prescription. Instead, staying informed enables you to handle any possible hormonal shifts with the right actions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Atlanta Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Atlanta or any surrounding areas, feel free to schedule an appointment at the Atlanta Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with an Atlanta gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','publish','closed','closed','','causes-of-gynecomastia','','','2024-03-30 23:00:58','2024-03-30 23:00:58','',0,'https://charlesb210.sg-host.com/?page_id=1525',0,'page','',0),(1540,5,'2024-01-29 16:18:43','2024-01-29 16:18:43','<!-- wp:kadence/advanced-form -->\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_068690-c2\",\"colLayout\":\"equal\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_512d3d-78\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_512d3d-78\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advanced-form-text {\"uniqueID\":\"e1fdf1-d9\",\"formID\":\"1540\",\"label\":\"Name\"} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_5737c7-e6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_5737c7-e6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advanced-form-email {\"uniqueID\":\"eb97cf-0d\",\"formID\":\"1540\",\"label\":\"Email\",\"required\":true} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advanced-form-textarea {\"uniqueID\":\"96110f-1d\",\"formID\":\"1540\",\"label\":\"Message\",\"required\":true} /-->\n\n<!-- wp:kadence/advanced-form-submit {\"uniqueID\":\"4acea1-14\",\"text\":\"Submit\"} /-->\n<!-- /wp:kadence/advanced-form -->','Request a Free Consultation','','publish','closed','closed','','auto-draft','','','2024-01-29 16:18:43','2024-01-29 16:18:43','',0,'https://charlesb210.sg-host.com/?post_type=kadence_form&#038;p=1540',0,'kadence_form','',0),(1541,5,'2024-01-29 16:18:43','2024-01-29 16:18:43','','Auto Draft','','inherit','closed','closed','','1540-revision-v1','','','2024-01-29 16:18:43','2024-01-29 16:18:43','',1540,'https://charlesb210.sg-host.com/?p=1541',0,'revision','',0),(1542,5,'2024-01-29 16:18:43','2024-01-29 16:18:43','<!-- wp:kadence/advanced-form -->\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_068690-c2\",\"colLayout\":\"equal\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_512d3d-78\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_512d3d-78\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advanced-form-text {\"uniqueID\":\"e1fdf1-d9\",\"formID\":\"1540\",\"label\":\"Name\"} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_5737c7-e6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_5737c7-e6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advanced-form-email {\"uniqueID\":\"eb97cf-0d\",\"formID\":\"1540\",\"label\":\"Email\",\"required\":true} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advanced-form-textarea {\"uniqueID\":\"96110f-1d\",\"formID\":\"1540\",\"label\":\"Message\",\"required\":true} /-->\n\n<!-- wp:kadence/advanced-form-submit {\"uniqueID\":\"4acea1-14\",\"text\":\"Submit\"} /-->\n<!-- /wp:kadence/advanced-form -->','Request a Free Consultation','','inherit','closed','closed','','1540-revision-v1','','','2024-01-29 16:18:43','2024-01-29 16:18:43','',1540,'https://charlesb210.sg-host.com/?p=1542',0,'revision','',0),(1551,5,'2024-03-26 15:34:36','2024-03-26 15:34:36','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_e25f14-1d\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_bbe3f0-60\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_bbe3f0-60\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_4a2bd1-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_4a2bd1-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_4a2bd1-56\">Gynecomastia is a condition characterized by the enlargement of breast tissue in males, and it can vary significantly in severity from one individual to another. Understanding the grading system is important in assessing and addressing this condition effectively.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_d18c4b-01\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_d18c4b-01 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_d18c4b-01\">There are four grades along the spectrum, and the gynecomastia plastic surgeons at the Atlanta Gynecomastia Center can help you gain valuable insight into creating treatment plans to suit your unique needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The severity of gynecomastia is categorized into stages ranging from grade 1 (mild) to grade 4 (severe). Each one of the stages is distinguished by specific characteristics. Treatment options and associated <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a> also vary across the stages, with stage 4 requiring a different surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages or grades of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>From a medical standpoint, it\'s also crucial to understand that gynecomastia entails the overdevelopment of breast <span style=\"text-decoration: underline;\">gland</span> tissue. However, it\'s common for excess breast <span style=\"text-decoration: underline;\">fat</span> tissue to be present as well. When the enlargement of the breast is solely due to excess fatty tissue, this is called <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During a comprehensive <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>, both excess breast gland tissue and excess fat tissue can be addressed and removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4304,\"linkDestination\":\"none\",\"uniqueID\":\"1551_c85220-4d\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_c85220-4d\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png\" alt=\"Stages and Grades of Gynecomastia Atlanta\" class=\"kb-img wp-image-4304\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Four Grades of Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 1 gynecomastia experience minimal breast growth, often accompanied by nipple pain or tenderness. Swelling around the nipple is slight, and there is occasionally some discoloration. The nipple may also appear puffy and sensitive to touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Typically, stage 1 gynecomastia is not apparent when the individual is clothed. However, it may become noticeable in situations where the person is undressed, such as at the beach or swimming pool.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 2 gynecomastia is characterized by a more pronounced enlargement of breast tissue that extends across the chest. This moderate growth may be noticeable even when the individual is clothed and becomes particularly prominent in bare-chested situations, which can cause embarrassment or distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to enlarged breasts, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness can persist, further adding to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 3 represents a substantial progression in gynecomastia, marked by significant breast tissue development and chest widening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become notably pronounced, often visibly protruding through clothing. Moreover, excess skin becomes evident, resulting in a droopy appearance of the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given the heightened visibility and physical changes associated with grade 3 gynecomastia, individuals may experience a significant impact on self-esteem and quality of life, prompting them to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most advanced stage of the condition, where breast enlargement is substantial and resembles female breasts in appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts become highly prominent, often dominating the individual\'s physique, even when clothed. Excess skin becomes more noticeable, contributing to a fuller, drooping appearance of the breasts. Nipple size can also increase significantly, further emphasizing feminine characteristics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals dealing with grade 4 gynecomastia may experience profound emotional distress and encounter significant social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch With an Atlanta Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand the whole spectrum of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From the initial assessment to customized treatment strategies, our team is committed to delivering compassionate care and empowering individuals to regain their confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are located around Atlanta and are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our Atlanta gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','publish','closed','closed','','gynecomastia-grades-stages','','','2024-03-30 23:52:32','2024-03-30 23:52:32','',0,'https://charlesb210.sg-host.com/?page_id=1551',0,'page','',0),(1563,5,'2024-03-25 17:00:28','2024-03-25 17:00:28','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery at the Atlanta Gynecomastia Center? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our Atlanta gynecomastia doctors</a>. This can also give you a better sense of whether you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Surgery: Before & After Results','','publish','closed','closed','','before-after-results','','','2024-03-31 00:20:10','2024-03-31 00:20:10','',0,'https://charlesb210.sg-host.com/?page_id=1563',0,'page','',0),(1665,5,'2024-03-29 00:41:21','2024-01-31 17:01:00','','Before & After','','publish','closed','closed','','before-after','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1665',18,'nav_menu_item','',0),(1666,5,'2024-03-26 17:04:19','2024-03-26 17:04:19','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8f1d9d-b0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_0bb6e4-04\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_0bb6e4-04\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d0e935-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d0e935-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d0e935-a9\">If you\'re considering gynecomastia surgery, it\'s important to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_481c4b-15\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_481c4b-15 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_481c4b-15\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_2f4e7c-64\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_2f4e7c-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_2f4e7c-64\">Read over the timeline below to get a better understanding of what our top <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Atlanta gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery also varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider. As you go through your pre-op appointments, you will get a better overall sense of what to expect for your surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A thorough preparation is essential before undergoing gynecomastia surgery. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, lifestyle changes, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time, as well as some other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will carefully perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate postoperative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support your newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Most patients notice a noticeable decrease in bruising and swelling by the third or fourth week after surgery, as their chest contour continues to improve.  Following your surgeon\'s guidance, light exercise and physical activities may be gradually reintroduced. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 2-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. Soon enough, you will be able to fully appreciate your new and improved chest.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_9d9696-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_540f9e-64\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_540f9e-64\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d55d18-ac\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d55d18-ac wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_d55d18-ac\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_cf4cc7-ed\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_cf4cc7-ed kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_3d441c-84\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_3d441c-84\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics. In these cases, your surgeon may prescribe anti-nausea meds to help.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_b75693-4a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_b75693-4a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_1e16cd-bc\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_1e16cd-bc wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_1e16cd-bc\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_c480e1-57\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_c480e1-57\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_54d8d7-a2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_54d8d7-a2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_54d8d7-a2\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening. These gentle movements help promote proper blood circulation, which aids in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_4c6fb2-e7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_4c6fb2-e7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_210852-34\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_210852-34\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_6e71d2-80\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_6e71d2-80\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_140359-5a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_140359-5a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_ffb01e-fe\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_ffb01e-fe\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_c7303d-f0\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_c7303d-f0\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s important to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_1e337d-d6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_1e337d-d6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_59c10d-e2\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_59c10d-e2\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_438f5c-b5\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_438f5c-b5\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_138bcc-01\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e9eeb5-dc\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e9eeb5-dc\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Additional Things to Know During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_e3f05a-43\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_e3f05a-43 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_e3f05a-43\">As you recover from surgery at the Atlanta Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_04d408-f0\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_04d408-f0 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_c60d33-bb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_c60d33-bb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_87a51c-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_87a51c-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_9352af-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_9352af-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_9352af-ea\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_b1a1f7-b6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_b1a1f7-b6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_87532f-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_87532f-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, you should resist the urge to scratch the affected area, as it can potentially disrupt the healing process. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_0a9ad7-c3\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_05cf5d-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_05cf5d-47\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We get a lot of questions around what recovering from gynecomastia surgery is like. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Pre & Post Surgery Timeline','','publish','closed','closed','','gynecomastia-surgery','','','2024-03-31 00:25:02','2024-03-31 00:25:02','',0,'https://charlesb210.sg-host.com/?page_id=1666',0,'page','',0),(1668,5,'2024-03-26 17:04:34','2024-03-26 17:04:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">It\'s normal to have <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions about the expenses and insurance coverage of gynecomastia surgery</a> in Atlanta. These are some of the biggest factors in the decision to undergo surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s take a look at these factors to ease your concerns and show you how they relate to your specific situation. Together, we can make sure you start your gynecomastia journey feeling knowledgeable about the process and confident in your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is your premier destination for male breast reduction surgery in the Peach State. If you\'re thinking about going down the procedure path, knowing the costs involved with gynecomastia surgery is crucial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Atlanta can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Atlanta Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> The qualifications, experience, and reputation of our surgeons at the Atlanta Gynecomastia Center factor into the cost of surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of highly successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery can influence the overall cost. This can come in the form of local anesthesia, intravenous sedation, or general anesthesia. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we provide transparent pricing structures to ensure you have a comprehensive understanding of all the expenses included.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The following factors should be taken into account when estimating gynecomastia surgery prices in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: To ensure your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: To cover the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: This includes medical tests and consultations after your initial free consultation.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflects the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000 taking everything into account. A consultation with our doctors will give you a better sense of what the cost of surgery would look like for your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000+</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases. This in turn leads to higher costs. In such cases, a more in-depth surgical approach is required, which involves the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Atlanta Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Atlanta Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It can be difficult to navigate insurance coverage for gynecomastia surgery. This is because most insurance companies classify it as a cosmetic procedure, which means it is usually not covered. Even if gynecomastia is stressful for the patient, insurance companies frequently refuse to acknowledge this.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, so it is worth discussing with our office. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ considers various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at the Atlanta Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Atlanta Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Cost & Insurance','','publish','closed','closed','','gynecomastia-pricing-insurance','','','2024-03-31 00:42:42','2024-03-31 00:42:42','',0,'https://charlesb210.sg-host.com/?page_id=1668',0,'page','',0),(1670,5,'2024-03-29 00:41:21','2024-01-31 17:05:28','','Cost & Insurance','','publish','closed','closed','','1670','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1670',17,'nav_menu_item','',0),(1671,5,'2024-03-29 00:41:21','2024-01-31 17:05:28','','Gyno Surgery','','publish','closed','closed','','gyno-surgery','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1671',16,'nav_menu_item','',0),(1722,5,'2024-02-01 21:51:02','2024-02-01 21:51:02','<!-- wp:kadence/advanced-form {\"uniqueID\":\"1540_07330b-c6\"} -->\n<!-- wp:kadence/column {\"background\":\"#2d3748\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1540_b1ddf0-ae\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[200,\"\",\"\",\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1540_b1ddf0-ae kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1540_7e48f1-6c\",\"align\":\"left\",\"color\":\"palette9\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette9\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<h2 class=\"kt-adv-heading1540_7e48f1-6c wp-block-kadence-advancedheading has-theme-palette-9-color has-text-color\" data-kb-block=\"kb-adv-heading1540_7e48f1-6c\">Request a Free Consultation</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1540_72faf4-f4\",\"color\":\"palette9\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette9\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1540_72faf4-f4 wp-block-kadence-advancedheading has-theme-palette-9-color has-text-color\" data-kb-block=\"kb-adv-heading1540_72faf4-f4\">Fill out this quick form and Dr. XYZ will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1540_1dc6f7-cb\",\"postID\":\"1540\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"50\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette9\",\"requiredColor\":\"\",\"background\":\"#000000\",\"border\":\"palette2\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"palette9\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"Request today\",\"width\":[\"100\",\"\",\"\"],\"size\":\"small\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"#2d3748\",\"background\":\"palette9\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"recaptcha\":true} -->\n<div class=\"wp-block-kadence-form kadence-form-1540_1dc6f7-cb kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1540_1dc6f7-cb_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1540_1dc6f7-cb_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1540_1dc6f7-cb_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1540_1dc6f7-cb_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1540_1dc6f7-cb_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1540_1dc6f7-cb_2\" data-label=\"Phone Number\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1540_1dc6f7-cb\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1540\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input type=\"hidden\" name=\"recaptcha_response\" class=\"kb_recaptcha_response kb_recaptcha_1540_1dc6f7-cb\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-small kb-button-width-full\">Request today</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/advanced-form -->','Request a Free Consultation','','inherit','closed','closed','','1540-autosave-v1','','','2024-02-01 21:51:02','2024-02-01 21:51:02','',1540,'https://charlesb210.sg-host.com/?p=1722',0,'revision','',0),(1756,5,'2024-03-29 00:41:21','2024-02-04 21:33:53',' ','','','publish','closed','closed','','about-us','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1756',19,'nav_menu_item','',0),(1901,5,'2024-03-24 03:27:28','2024-03-24 03:27:28','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">There are several reasons why people seek out gynecomastia revision surgery. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Atlanta Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically involves both excess breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. These fluctuations can alter how fat is distributed throughout the body, which can change how the chest looks. To maintain or restore the correct chest contour, revision surgery may be required to treat extra fat or loose skin brought on by weight fluctuations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can also be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic result.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Atlanta Gynecomastia Center, we\'re here to provide the support you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve your desired results.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve your desired results.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve your desired results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a drooping appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery in Atlanta','','publish','closed','closed','','gynecomastia-revision','','','2024-03-31 00:34:38','2024-03-31 00:34:38','',1482,'https://charlesb210.sg-host.com/?page_id=1901',0,'page','',0),(1906,5,'2024-03-26 03:45:22','2024-03-26 03:45:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">Boys experience a hormonal shift in their bodies when they approach puberty. This can occasionally result in gynecomastia, a condition where changes in testosterone and estrogen levels cause male breasts to grow. In some cases, surgery may be your best option if this doesn\'t resolve on its own.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Atlanta Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, involving both physical and hormonal changes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may require intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we specialize in providing comprehensive care for adolescents dealing with gynecomastia. Our team of dedicated specialists has the expertise to address the unique concerns and challenges faced by these young individuals. With a focus on compassion and precision, we strive to offer tailored solutions to ensure optimal outcomes for our gynecomastia patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Teenage gynecomastia usually appears as a little lump under the nipple, occasionally with pain or soreness. There might also be noticeable swelling of the breast tissue. This condition is most prevalent between the ages of 10 and 13, during the early stages of puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem. They may resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer on their own, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by these teenagers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While some instances may resolve naturally with time, there are cases of adolescent gynecomastia where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there is an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Atlanta Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">the candidacy of each individual</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, when it comes to adolescent gynecomastia, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Usually, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola. This results in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. To achieve the best possible healing results, it is advised to avoid physically demanding activities involving the upper body, such as sports and gym sessions, for about a month.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography are suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography are suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessary. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessary. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography are suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessary. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Atlanta, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Atlanta Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, and guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery in Atlanta','','publish','closed','closed','','adolescent-gynecomastia','','','2024-03-31 00:11:12','2024-03-31 00:11:12','',1482,'https://charlesb210.sg-host.com/?page_id=1906',0,'page','',0),(1908,5,'2024-03-24 03:50:44','2024-03-24 03:50:44','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a combination of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Atlanta Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4305,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta-1024x586.png\" alt=\"What is Gynecomastia Atlanta\" class=\"wp-image-4305\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving excess glandular tissue, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, and lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Atlanta gynecomastia specialists can help determine the underlying cause and disclose the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"wp-image-4303\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia is caused by several factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen levels. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia has a tremendous effect on psychological well-being in addition to its physical repercussions. Many who struggle with the condition report feeling more self-conscious, embarrassed, and having much lower self-esteem. As a result, individuals might decide to stay away from activities that require them to expose their chest, such as sports or swimming.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Depending on the severity of the condition and its underlying cause, adult gynecomastia can appear with a range of symptoms. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, the asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are common due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Male breast reduction surgery</a> is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Atlanta Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment and refrain from strenuous physical activities for a few weeks to ensure the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prescribed pain medication and proper post-operative care can effectively manage temporary bruising, swelling, and discomfort that are common post-surgery. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"Adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications. However, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"Adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications. However, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team is key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team is key to achieving the best results from gynecomastia surgery.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">Adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications. However, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team is key to achieving the best results from gynecomastia surgery.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia. We are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adult Gynecomastia Surgery in Atlanta','','publish','closed','closed','','adult-gynecomastia','','','2024-03-31 00:22:44','2024-03-31 00:22:44','',1482,'https://charlesb210.sg-host.com/?page_id=1908',0,'page','',0),(1911,5,'2024-03-24 19:20:59','2024-03-24 19:20:59','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder who is struggling with gynecomastia? At the Atlanta Gynecomastia Center, we offer tailored solutions designed specifically for individuals like you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_db0a35-4a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_db0a35-4a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_db0a35-4a\">Our team of specialists understands the distinctive needs and concerns that bodybuilders encounter with gynecomastia. We are dedicated to providing comprehensive support and care at every step of the way.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this overview, we dive into bodybuilder gynecomastia, examining its root causes, symptoms, available surgical interventions, post-operative recovery, and addressing common questions surrounding gyno. We\'re here to accompany you every step of the way on your journey toward resolution and renewed confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the Atlanta Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Bodybuilder Gynecomastia</strong> Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia can be a genuine concern among fitness enthusiasts. The development of enlarged breast tissue in male individuals often arises due to the use of <a href=\"https://www.dea.gov/factsheets/steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones. These substances are commonly utilized to enhance muscle growth and physical performance, albeit at the expense of disrupting the body\'s natural hormonal balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, there are risks associated with the consumption of other bodybuilding supplements. Some products marketed to enthusiasts may contain undisclosed steroid or hormone-like ingredients, further exacerbating the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When the hormonal balance is compromised, excess glandular tissue beneath the areola can appear. This results in the recognizable appearance of larger breasts in men. Understanding the impact of steroid-induced gynecomastia is crucial for those dedicated to their fitness journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The main reason bodybuilders experience gynecomastia often boils down to their use of anabolic steroids or prohormones. These substances are popular among those looking to bulk up and improve performance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But here\'s the thing: these synthetic hormones mimic testosterone, which can affect the natural balance between estrogen and testosterone in the body. This disruption can lead to the growth of breast tissue, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causing gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes, patients know they\'re taking these substances. Other times, they might be taking something they think is just a harmless supplement, not realizing it contains steroids or prohormones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Unfortunately, even if bodybuilders later quit using those substances, gynecomastia can persist. Those in the fitness world must understand these risks and how to avoid them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying gynecomastia symptoms among bodybuilders is essential for timely intervention and management. One of the hallmark signs is the presence of firm breast tissue beneath the areola, often accompanied by tenderness or sensitivity. These symptoms parallel those seen in standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, it\'s not just physical discomfort that bodybuilders may face. Gynecomastia can take a toll on mental well-being too. Many individuals experience psychological distress and a dip in self-esteem due to the appearance of enlarged breasts. This can disrupt their confidence and hinder their performance both in and out of the gym.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In more severe instances, gynecomastia may cause asymmetry between the breasts, resulting in further discomfort and aesthetic concerns. Some individuals might even experience nipple discharge, indicating a more advanced stage of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognizing these symptoms early on is very important. It allows for prompt intervention, which can prevent the progression of gynecomastia and aid in restoring a more masculine chest contour. By staying vigilant and seeking professional guidance, bodybuilders can effectively address gynecomastia correctly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for bodybuilders typically employs a dual approach, combining liposuction with direct excision of glandular tissue to attain the desired outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The procedure begins with the removal of excess fatty tissue through liposuction, employing specialized techniques to contour the chest and refine its definition. Alongside this, direct excision of glandular tissue is carried out. This is done through a discreet incision strategically placed at the lower border of the areola, aiming for minimal scarring and a natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The surgery is usually performed under general anesthesia and allows most patients to return home on the same day, which ensures a comfortable and efficient recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgery Gynecomastia Recovery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders should anticipate some swelling, bruising, and discomfort, which typically diminishes over the following weeks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Patients are advised to wear a compression garment to aid in the healing process and promote optimal results. This provides support to the chest while minimizing swelling. It\'s crucial to refrain from engaging in strenuous upper body activities, including weightlifting, for approximately four to six weeks post-surgery. This precaution is essential to prevent complications and ensure proper tissue healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While each individual\'s recovery may vary, most patients can gradually resume non-strenuous activities within a few days. Under the guidance of our surgeon, they can gradually reintroduce their regular exercise routine, ensuring a safe and effective transition back to their fitness regimen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the Atlanta Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less visible, resulting in a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less visible, resulting in a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires a commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires a commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance questions and financing options\"]}},\".\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance questions and financing options\\u003c/a\\u003e.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less visible, resulting in a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires a commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance questions and financing options</a>.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Reach Out Today</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we deliver individualized treatment strategies tailored to meet the unique needs and aspirations of bodybuilders dealing with gynecomastia. Employing cutting-edge techniques, our skilled team of specialists ensures safe, successful, and aesthetically pleasing outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Bodybuilder Gynecomastia Surgery in Atlanta','','publish','closed','closed','','bodybuilder-gynecomastia','','','2024-03-31 00:29:37','2024-03-31 00:29:37','',1482,'https://charlesb210.sg-host.com/?page_id=1911',0,'page','',0),(1949,5,'2024-03-29 00:41:21','2024-02-09 20:48:05','','Bodybuilder Gynecomastia','','publish','closed','closed','','1949','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1482,'https://charlesb210.sg-host.com/?p=1949',10,'nav_menu_item','',0),(1950,5,'2024-03-29 00:41:21','2024-02-09 20:48:05','','Adult Gynecomastia','','publish','closed','closed','','1950','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1482,'https://charlesb210.sg-host.com/?p=1950',8,'nav_menu_item','',0),(1951,5,'2024-03-29 00:41:21','2024-02-09 20:48:05','','Adolescent Gynecomastia','','publish','closed','closed','','1951','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1482,'https://charlesb210.sg-host.com/?p=1951',9,'nav_menu_item','',0),(1952,5,'2024-03-29 00:41:21','2024-02-09 20:48:05','','Gynecomastia Revision','','publish','closed','closed','','1952','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1482,'https://charlesb210.sg-host.com/?p=1952',11,'nav_menu_item','',0),(1973,5,'2024-03-29 00:41:21','2024-02-10 17:28:18','','Grades & Stages','','publish','closed','closed','','grades-stages','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1973',4,'nav_menu_item','',0),(1974,5,'2024-03-29 00:41:21','2024-02-10 17:28:18','','Causes of Gyno','','publish','closed','closed','','causes-of-gyno','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1974',3,'nav_menu_item','',0),(1975,5,'2024-03-29 00:41:21','2024-02-10 17:28:18',' ','','','publish','closed','closed','','1975','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=1975',2,'nav_menu_item','',0),(2055,5,'2024-03-29 00:41:21','2024-02-11 00:38:25',' ','','','publish','closed','closed','','2055','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://charlesb210.sg-host.com/?p=2055',1,'nav_menu_item','',0),(2056,5,'2024-03-25 00:45:20','2024-03-25 00:45:20','<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is committed to ensuring accessibility of its website to people with disabilities and it will endeavor to follow the federal standards regarding technology accessibility for people with disabilities (Section 508) and the Web Content Accessibility Guidelines (WCAG) 2.0 developed by the World Wide Web Consortium (W3C). This policy applies to all web content produced or updated by the Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Accessibility Help </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure your experience on the website is accessible, please use the built-in widget (full ADA/WCAG 2.1 compliant) located on the bottom right-hand corner of our website. Note that the website may contain links to external websites that are not within Atlanta Gynecomastia Center\'s control and may not follow the same accessibility policies and standards as the Center\'s website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Viewing Files </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Please download the latest versions of Adobe Reader (for PDF format) or Microsoft Office (for Word or Excel format) to ensure optimal viewing of files available on the website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Your Accessibility Concerns </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Certain pages on the website require login information or acceptance of additional terms and conditions. If you have difficulty accessing content, viewing a file on the website, or notice any accessibility issues, <a href=\"https://atlantagynecomastia.com/contact/\">please contact the Atlanta Gynecomastia Center</a> for assistance. In your message, please include the nature of the accessibility issue, the URL of the page containing the issue, the accessibility technology you are using, and an email address so that we can respond to your concern. We strive to make all content on this website accessible to all users, including those with disabilities.</p>\n<!-- /wp:paragraph -->','Accessibility Policy','','publish','closed','closed','','accessibility-policy','','','2024-03-27 21:20:22','2024-03-27 21:20:22','',0,'https://charlesb210.sg-host.com/?page_id=2056',0,'page','',0),(2057,5,'2024-02-11 00:45:20','2024-02-11 00:45:20','<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center is committed to ensuring accessibility of its website to people with disabilities and it will endeavor to follow the federal standards regarding technology accessibility for people with disabilities (Section 508) and the Web Content Accessibility Guidelines (WCAG) 2.0 developed by the World Wide Web Consortium (W3C). This policy applies to all web content produced or updated by the Center. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Accessibility Help </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure your experience on the website is accessible, please use the built-in widget (full ADA/WCAG 2.1 compliant) located on the bottom right-hand corner of our website. Note that the website may contain links to external websites that are not within New Jersey Gynecomastia Center\'s control and may not follow the same accessibility policies and standards as the Center\'s website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Viewing Files </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Please download the latest versions of Adobe Reader (for PDF format) or Microsoft Office (for Word or Excel format) to ensure optimal viewing of files available on the website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Your Accessibility Concerns </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Certain pages on the website require login information or acceptance of additional terms and conditions. If you have difficulty accessing content, viewing a file on the website, or notice any accessibility issues, <a href=\"https://atlantagynecomastia.com/contact-new-jersey-gynecomastia-doctors/\">please contact the New Jersey Gynecomastia Center</a> for assistance. In your message, please include the nature of the accessibility issue, the URL of page containing the issue, the accessibility technology you are using, and an email address so that we can respond to your concern. We strive to make all content on this website accessible to all users, including those with disabilities.</p>\n<!-- /wp:paragraph -->','Accessibility Policy','','inherit','closed','closed','','2056-revision-v1','','','2024-02-11 00:45:20','2024-02-11 00:45:20','',2056,'https://charlesb210.sg-host.com/?p=2057',0,'revision','',0),(2058,5,'2024-02-11 00:45:49','2024-02-11 00:45:49','<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center is committed to ensuring accessibility of its website to people with disabilities and it will endeavor to follow the federal standards regarding technology accessibility for people with disabilities (Section 508) and the Web Content Accessibility Guidelines (WCAG) 2.0 developed by the World Wide Web Consortium (W3C). This policy applies to all web content produced or updated by the Center. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Accessibility Help </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure your experience on the website is accessible, please use the built-in widget (full ADA/WCAG 2.1 compliant) located on the bottom right-hand corner of our website. Note that the website may contain links to external websites that are not within New Jersey Gynecomastia Center\'s control and may not follow the same accessibility policies and standards as the Center\'s website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Viewing Files </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Please download the latest versions of Adobe Reader (for PDF format) or Microsoft Office (for Word or Excel format) to ensure optimal viewing of files available on the website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Your Accessibility Concerns </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Certain pages on the website require login information or acceptance of additional terms and conditions. If you have difficulty accessing content, viewing a file on the website, or notice any accessibility issues, <a href=\"https://atlantagynecomastia.com/contact-new-jersey-gynecomastia-doctors/\">please contact the New Jersey Gynecomastia Center</a> for assistance. In your message, please include the nature of the accessibility issue, the URL of the page containing the issue, the accessibility technology you are using, and an email address so that we can respond to your concern. We strive to make all content on this website accessible to all users, including those with disabilities.</p>\n<!-- /wp:paragraph -->','Accessibility Policy','','inherit','closed','closed','','2056-revision-v1','','','2024-02-11 00:45:49','2024-02-11 00:45:49','',2056,'https://charlesb210.sg-host.com/?p=2058',0,'revision','',0),(2069,5,'2024-02-11 18:21:27','2024-02-11 18:21:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','publish','closed','closed','','bottom-page-summary','','','2024-03-29 22:11:21','2024-03-29 22:11:21','',0,'https://charlesb210.sg-host.com/bottom-page-summary/',0,'wp_block','',0),(2177,5,'2024-02-18 14:03:53','2024-02-18 14:03:53','div.header-html-inner {\n	line-height: 20px;\n}','kadence','','publish','closed','closed','','kadence','','','2024-03-05 17:42:41','2024-03-05 17:42:41','',0,'https://charlesb210sg-hostcom.bigscoots-staging.com/kadence/',0,'custom_css','',0),(2178,5,'2024-02-18 14:03:53','2024-02-18 14:03:53','header-html-inner {\n	line-height: 0;\n}','kadence','','inherit','closed','closed','','2177-revision-v1','','','2024-02-18 14:03:53','2024-02-18 14:03:53','',2177,'https://charlesb210sg-hostcom.bigscoots-staging.com/?p=2178',0,'revision','',0),(2180,5,'2024-02-18 14:04:37','2024-02-18 14:04:37','div.header-html-inner {\n	line-height: -10;\n}','kadence','','inherit','closed','closed','','2177-revision-v1','','','2024-02-18 14:04:37','2024-02-18 14:04:37','',2177,'https://charlesb210sg-hostcom.bigscoots-staging.com/?p=2180',0,'revision','',0),(2182,5,'2024-02-18 14:06:06','2024-02-18 14:06:06','div.header-html-inner {\n	line-height 1px;\n}','kadence','','inherit','closed','closed','','2177-revision-v1','','','2024-02-18 14:06:06','2024-02-18 14:06:06','',2177,'https://charlesb210sg-hostcom.bigscoots-staging.com/?p=2182',0,'revision','',0),(2184,5,'2024-02-18 14:08:05','2024-02-18 14:08:05','div.header-html-inner {\n	line-height: 20px;\n}','kadence','','inherit','closed','closed','','2177-revision-v1','','','2024-02-18 14:08:05','2024-02-18 14:08:05','',2177,'https://charlesb210sg-hostcom.bigscoots-staging.com/?p=2184',0,'revision','',0),(2396,5,'2024-03-26 21:27:22','2024-03-26 21:27:22','<!-- wp:paragraph -->\n<p>This privacy policy is designed to inform users about the handling of their \"Personally Identifiable Information\" (PII) online. PII is defined by US privacy and information security laws as data that can identify, reach, or pinpoint an individual either by itself or when combined with other accessible information. We encourage you to review this policy thoroughly to understand the ways in which we gather, employ, safeguard, and manage your PII on our website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What PII do we collect from users of our website?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When contacting us via our website, as appropriate, you may be asked to enter your name, email address, phone number or other details to help you with your experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When do we collect information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information from you when you fill out a form or enter information on our site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we use your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may use the information we collect from you when you request more information about a procedure, including to follow up with you after correspondence (email or phone inquiries).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we protect your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We do not use vulnerability scanning and/or scanning to PCI standards. We conduct malware scanning. We only provide information and we do not ask for credit card numbers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_152c51-8f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_152c51-8f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_152c51-8f\">Do we use \"cookies\"?</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Yes. Cookies are small files that a site or its service provider transfers to your computer’s hard drive through your Web browser (if you allow it) that enables the site’s or service provider’s systems to recognize your browser and capture and remember certain information. They are also used to help us understand your preferences based on previous or current site activity, which enables us to provide you with improved services. We also use cookies to help us compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We may also use trusted third-party services that track this information on our behalf.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off all cookies. You do this through your browser settings. Since every browser is different, look at your browser’s Help Menu to learn the correct way to modify your cookies. If you turn cookies off, some features will be disabled.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_caa05a-f8\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_caa05a-f8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_caa05a-f8\">Third-party disclosure</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>We do not sell, trade, or otherwise transfer to outside parties your PII unless we provide users with advance notice. This does not include website hosting partners and other parties who assist us in operating our website, conducting our business, or serving our users, so long as those parties agree to keep this information confidential. We may also release information when its release is appropriate to comply with the law, enforce our site policies, or protect ours or others’ rights, property or safety.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Third-party links</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Occasionally, at our discretion, we may include or offer third-party products or services on our website. These third-party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Google</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Google’s advertising requirements can be summed up by Google’s Advertising Principles. They are put in place to provide a positive experience for users.&nbsp;<a href=\"https://support.google.com/adspolicy/answer/6008942?hl=en&amp;visit_id=638456876419726489-885632823&amp;rd=1\" target=\"_blank\" rel=\"noreferrer noopener\">Google Ads policies.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have not enabled Google AdSense on our site but we may do so in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">California Online Privacy Protection Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>CalOPPA is the first state law in the nation to require commercial websites and online services to post a privacy policy. The law’s reach stretches beyond California to require any person or company in the United States (and conceivably the world) that operates websites collecting Personally Identifiable Information from California consumers to post a conspicuous privacy policy on its website stating exactly which information is being collected and those individuals or companies with whom it is being shared. Please see: <a href=\"https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/#sthash.0FdRbT51.dpuf\" target=\"_blank\" rel=\"noreferrer noopener\">California Online Privacy Protection Act (CalOPPA)</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">According to CalOPPA, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Users may visit our site anonymously. Once this privacy policy is created, we will add a link to it on our website footer. Our Privacy Policy link includes the word ‘Privacy’ and can be easily be found on the page specified above. You will be notified of any Privacy Policy changes on our Privacy Policy Page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How does our site handle Do Not Track signals?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We honor Do Not Track (DNT) signals and do not track, plant cookies, or use advertising when a DNT browser mechanism is in place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Does our site allow third-party behavioral tracking?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">COPPA (Children\'s Online Privacy Protection Act)</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to the collection of personal information from children under the age of 13 years old, the Children’s Online Privacy Protection Act (COPPA) puts parents in control. The Federal Trade Commission, United States’ consumer protection agency, enforces the COPPA Rule, which spells out what operators of websites and online services must do to protect children’s privacy and safety online. We do not specifically market to children under the age of 13 years old.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Fair Information Practices</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Fair Information Practices Principles form the backbone of privacy law in the United States and the concepts they include have played a significant role in the development of data protection laws around the globe. Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply with the various privacy laws that protect personal information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will notify you via email within 7 business days. We also agree to the Individual Redress Principle which requires that individuals have the right to legally pursue enforceable rights against data collectors and processors who fail to adhere to the law. This principle requires not only that individuals have enforceable rights against data users, but also that individuals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">CAN-SPAM Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The CAN-SPAM Act is a law that sets the rules for commercial email, establishes requirements for commercial messages, gives recipients the right to have emails stopped from being sent to them, and spells out tough penalties for violations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">We collect your email address in order to:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Send information, and respond to inquiries and/or other requests or questions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">To be in compliance with CAN-SPAM, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Not to use false or misleading subjects or email addresses.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Identify the message as an advertisement in some reasonable way.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Include the physical address of our business or site headquarters.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Monitor third-party email marketing services for compliance, if one is used.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Honor opt-out/unsubscribe requests quickly.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Allow users to unsubscribe by using the link at the bottom of each email.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">If at any time you would like to unsubscribe from receiving future emails</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Follow the instructions at the bottom of each email and we will promptly remove you from&nbsp;<strong>all</strong>&nbsp;correspondence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contacting Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If there are any questions regarding this privacy policy, you may contact us using the information below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>1230 Peachtree St NE #150</strong><br><strong>Atlanta, GA 30309</strong><br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2024-03-30 23:57:52','2024-03-30 23:57:52','',0,'https://newjerseygynecomastiacenter.com/?page_id=2396',0,'page','',0),(2397,5,'2024-02-23 21:26:57','2024-02-23 21:26:57','<!-- wp:paragraph -->\n<p>This privacy policy is designed to inform users about the handling of their \"Personally Identifiable Information\" (PII) online. PII is defined by US privacy and information security laws as data that can identify, reach, or pinpoint an individual either by itself or when combined with other accessible information. We encourage you to review this policy thoroughly to understand the ways in which we gather, employ, safeguard, and manage your PII on our website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What PII do we collect from users of our website?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When contacting us via our website, as appropriate, you may be asked to enter your name, email address, phone number or other details to help you with your experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When do we collect information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information from you when you fill out a form or enter information on our site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we use your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may use the information we collect from you when you request more information about a procedure, including to follow up with you after correspondence (email or phone inquiries).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we protect your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We do not use vulnerability scanning and/or scanning to PCI standards. We conduct malware scanning. We only provide information and we do not ask for credit card numbers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_152c51-8f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_152c51-8f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_152c51-8f\">Do we use \"cookies\"?</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Yes. Cookies are small files that a site or its service provider transfers to your computer’s hard drive through your Web browser (if you allow it) that enables the site’s or service provider’s systems to recognize your browser and capture and remember certain information. They are also used to help us understand your preferences based on previous or current site activity, which enables us to provide you with improved services. We also use cookies to help us compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We may also use trusted third-party services that track this information on our behalf.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off all cookies. You do this through your browser settings. Since every browser is different, look at your browser’s Help Menu to learn the correct way to modify your cookies. If you turn cookies off, some features will be disabled.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_caa05a-f8\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_caa05a-f8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_caa05a-f8\">Third-party disclosure</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>We do not sell, trade, or otherwise transfer to outside parties your PII unless we provide users with advance notice. This does not include website hosting partners and other parties who assist us in operating our website, conducting our business, or serving our users, so long as those parties agree to keep this information confidential. We may also release information when its release is appropriate to comply with the law, enforce our site policies, or protect ours or others’ rights, property or safety. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Third-party links</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Occasionally, at our discretion, we may include or offer third-party products or services on our website. These third-party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Google</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Google’s advertising requirements can be summed up by Google’s Advertising Principles. They are put in place to provide a positive experience for users.&nbsp;<a href=\"https://support.google.com/adwordspolicy/answer/1316548?hl=en\" target=\"_blank\" rel=\"noreferrer noopener\">Google Ads policies.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have not enabled Google AdSense on our site but we may do so in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">California Online Privacy Protection Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>CalOPPA is the first state law in the nation to require commercial websites and online services to post a privacy policy. The law’s reach stretches beyond California to require any person or company in the United States (and conceivably the world) that operates websites collecting Personally Identifiable Information from California consumers to post a conspicuous privacy policy on its website stating exactly which information is being collected and those individuals or companies with whom it is being shared. Please see: <a href=\"https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/#sthash.0FdRbT51.dpuf\" target=\"_blank\" rel=\"noreferrer noopener\">California Online Privacy Protection Act (CalOPPA)</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">According to CalOPPA, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Users may visit our site anonymously. Once this privacy policy is created, we will add a link to it on our website footer. Our Privacy Policy link includes the word ‘Privacy’ and can be easily be found on the page specified above. You will be notified of any Privacy Policy changes on our Privacy Policy Page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How does our site handle Do Not Track signals?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We honor Do Not Track (DNT) signals and do not track, plant cookies, or use advertising when a DNT browser mechanism is in place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Does our site allow third-party behavioral tracking?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">COPPA (Children\'s Online Privacy Protection Act)</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to the collection of personal information from children under the age of 13 years old, the Children’s Online Privacy Protection Act (COPPA) puts parents in control. The Federal Trade Commission, United States’ consumer protection agency, enforces the COPPA Rule, which spells out what operators of websites and online services must do to protect children’s privacy and safety online. We do not specifically market to children under the age of 13 years old.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Fair Information Practices</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Fair Information Practices Principles form the backbone of privacy law in the United States and the concepts they include have played a significant role in the development of data protection laws around the globe. Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply with the various privacy laws that protect personal information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will notify you via email within 7 business days. We also agree to the Individual Redress Principle which requires that individuals have the right to legally pursue enforceable rights against data collectors and processors who fail to adhere to the law. This principle requires not only that individuals have enforceable rights against data users, but also that individuals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">CAN-SPAM Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The CAN-SPAM Act is a law that sets the rules for commercial email, establishes requirements for commercial messages, gives recipients the right to have emails stopped from being sent to them, and spells out tough penalties for violations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">We collect your email address in order to:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Send information, and respond to inquiries and/or other requests or questions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">To be in compliance with CAN-SPAM, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Not to use false or misleading subjects or email addresses.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Identify the message as an advertisement in some reasonable way.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Include the physical address of our business or site headquarters.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Monitor third-party email marketing services for compliance, if one is used.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Honor opt-out/unsubscribe requests quickly.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Allow users to unsubscribe by using the link at the bottom of each email.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">If at any time you would like to unsubscribe from receiving future emails</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Follow the instructions at the bottom of each email and we will promptly remove you from <strong>all</strong> correspondence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contacting Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If there are any questions regarding this privacy policy, you may contact us using the information below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1567 Palisade Avenue, #3<br>Fort Lee, NJ 07024<br>T: <a href=\"tel:5512011110\">(551) 201-1110</a></p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','2396-revision-v1','','','2024-02-23 21:26:57','2024-02-23 21:26:57','',2396,'https://newjerseygynecomastiacenter.com/?p=2397',0,'revision','',0),(2404,5,'2024-02-25 20:41:48','2024-02-25 20:41:48','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_335385-c6\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_510fab-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_510fab-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_09ec95-c9\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_09ec95-c9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_104e28-5c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_104e28-5c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_104e28-5c\">At the New Jersey Gynecomastia Center, we\'re all about giving you top-notch care from start to finish. From your very first consultation (which, by the way, is on us!), to your recovery and beyond, we\'re here for you every step of the way. We\'re honored to be entrusted with your care, and we take that responsibility seriously. Our team, led by board-certified gynecomastia plastic surgeon specialists, is dedicated to providing the absolute best in patient care and outcomes. We understand that every person is unique, so we tailor our approach to suit your individual needs. Got questions? Ready to schedule your consultation? Don\'t hesitate to reach out to the New Jersey Gynecomastia Center today. We\'re here to help!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center<br></a>1567 Palisade Avenue #3A<br>Fort Lee, New Jersey 07024<br>(551) 201-1110</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-02-25 20:41:48','2024-02-25 20:41:48','',2069,'https://newjerseygynecomastiacenter.com/?p=2404',0,'revision','',0),(2657,5,'2024-03-24 20:33:37','2024-03-24 20:33:37','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. These conditions might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our doctors at the Atlanta Gynecomastia Center</a> are all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan of action.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Gynecomastia &amp; Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s first break down the differences between gynecomastia and pseudogynecomastia, and how they cause male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> is the excess of breast gland tissue, which leads to visible breast enlargement. This usually happens because of an imbalance of hormone levels, especially when there\'s more estrogen in relation to testosterone. While it\'s not physically harmful, it can have an impact on one\'s well-being. This ultimately results in many people exploring <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery options</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia is more about extra fat in the chest area, which gives off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight &amp; excess fat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"wp-image-4303\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gynecomastia and pseudogynecomastia share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can be caused by a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, which is often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The different underlying causes of these conditions also lead to distinct methods of treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to treating gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, surgery can be required if conservative methods are unable to produce desired outcomes. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contour the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s now address some common questions that come up when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths are different.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, you can connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>. Whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and greatly improve your quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','publish','closed','closed','','pseudogynecomastia','','','2024-03-31 00:38:29','2024-03-31 00:38:29','',1482,'https://newjerseygynecomastiacenter.com/?page_id=2657',0,'page','',0),(2667,5,'2024-03-29 00:41:21','2024-03-02 20:51:40','','Pseudogynecomastia','','publish','closed','closed','','pseudogynecomastia','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1482,'https://newjerseygynecomastiacenter.com/?p=2667',12,'nav_menu_item','',0),(2668,5,'2024-03-24 21:24:22','2024-03-24 21:24:22','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_86a1b1-31\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_86a1b1-31 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_86a1b1-31\">Puffy nipple is a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">variation of gynecomastia</a> that refers to the enlargement of the nipples and the surrounding areolae. It’s sometimes referred to as “Puffy Nipple Syndrome” or “Puffy Nipple-Areola Complex”. Although less prominent than typical gynecomastia, it can still cause significant distress for those affected.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_94da24-24\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_94da24-24 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_94da24-24\">In this overview, we\'ll explore the ins and outs of puffy nipples, discussing their causes, how they\'re diagnosed, and what treatment options are available.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, often associated with gynecomastia, refer to the swelling and protrusion of the nipple-areolar complex in males. This condition, while not medically harmful, can significantly impact self-esteem and quality of life due to its effect on physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples are typically caused by an imbalance in hormone levels, particularly an <a href=\"https://www.healthline.com/health/estrogen-in-men\" target=\"_blank\" rel=\"noreferrer noopener\">excess of estrogen</a> relative to testosterone. The hormonal imbalance can disrupt normal breast tissue development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While puffy nipples share similarities with <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">gynecomastia</a>, which involves the enlargement of male breast tissue, they represent a distinct presentation where the swelling is concentrated around the nipple area. For a proper diagnosis and efficient treatment, it is crucial to understand the connection between the two.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Puffy Nipples</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy Nipples can stem from various underlying hormonal, genetic, and environmental factors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, notably an excess of estrogen compared to testosterone, disrupt normal breast tissue development. This can lead to the swelling and protrusion of the nipple area. Genetic predisposition also plays a significant role in influencing hormone metabolism and receptor sensitivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle habits such as poor diet, sedentary lifestyles, and obesity exacerbate hormonal imbalances and promote excess chest adipose tissue. Excessive alcohol consumption and substance abuse further disrupt hormonal balance, and can contribute to puffy nipple formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to understand these factors to make an accurate diagnosis and implement focused treatment plans that target the underlying causes of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Surgical Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Liposuction entails gently agitating fat cells before suctioning them out using a cannula. This is effective for cases primarily caused by excess fatty tissue behind the nipple.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: In cases where puffy nipples result from excess breast gland tissue behind the nipple/areola, surgical removal of the excess breast gland tissue is recommended to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: Offering optimal post-surgery aesthetics, this comprehensive procedure removes both excess fat tissue and breast gland tissue.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the Atlanta Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"children\":[\"consult our doctors\"]}},\" for proper evaluation and guidance.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\\u0022\\u003econsult our doctors\\u003c/a\\u003e for proper evaluation and guidance.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for an accurate diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for an accurate diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">consult our doctors</a> for proper evaluation and guidance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for an accurate diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While Puffy Nipple Syndrome can be psychologically upsetting, numerous treatments exist for those affected.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the cases where diet and exercise don\'t solve the issue, surgery is always an option for chronic cases of puffy nipples. By choosing a surgical approach, it is bound to better help you get the results you want.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples Surgery in Atlanta','','publish','closed','closed','','puffy-nipples-gynecomastia','','','2024-03-31 00:47:17','2024-03-31 00:47:17','',1482,'https://newjerseygynecomastiacenter.com/?page_id=2668',0,'page','',0),(2672,5,'2024-03-29 00:41:21','2024-03-02 21:25:39','','Puffy Nipples','','publish','closed','closed','','puffy-nipples','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1482,'https://newjerseygynecomastiacenter.com/?p=2672',13,'nav_menu_item','',0),(2743,5,'2024-03-26 22:37:35','2024-03-26 22:37:35','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about the condition – from gynecomastia causes to available treatment options and much more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Atlanta Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize that you have all the relevant information you need to better help you understand the condition and its treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to excess fatty tissue. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to excess fatty tissue. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to excess fatty tissue. Distinguishing between the two conditions is essential for determining appropriate treatment options.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia is commonly caused\"]}},\" by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia is commonly caused\\u003c/a\\u003e by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, and surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, and surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve on its own, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve on its own, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, and surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve on its own, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical or psychological discomfort. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical or psychological discomfort. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is financing available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is financing available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical or psychological discomfort. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is financing available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Atlanta Gynecomastia Center?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Atlanta Gynecomastia Center?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Atlanta Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Atlanta Gynecomastia Center, we emphasize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Atlanta Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Atlanta Gynecomastia Center, we emphasize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Atlanta Gynecomastia Center?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Atlanta Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Atlanta Gynecomastia Center, we emphasize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','publish','closed','closed','','gynecomastia-frequently-asked-questions','','','2024-03-30 23:48:48','2024-03-30 23:48:48','',0,'https://newjerseygynecomastiacenter.com/?page_id=2743',0,'page','',0),(2750,5,'2024-03-29 00:41:21','2024-03-04 22:38:26','','Gyno FAQs','','publish','closed','closed','','gyno-faqs','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://newjerseygynecomastiacenter.com/?p=2750',6,'nav_menu_item','',0),(2780,3,'2024-03-05 17:42:03','2024-03-05 17:42:03','','kadence','','inherit','closed','closed','','2177-revision-v1','','','2024-03-05 17:42:03','2024-03-05 17:42:03','',2177,'https://newjerseygynecomastiacenter.com/?p=2780',0,'revision','',0),(2782,3,'2024-03-05 17:42:41','2024-03-05 17:42:41','div.header-html-inner {\n	line-height: 20px;\n}','kadence','','inherit','closed','closed','','2177-revision-v1','','','2024-03-05 17:42:41','2024-03-05 17:42:41','',2177,'https://newjerseygynecomastiacenter.com/?p=2782',0,'revision','',0),(2787,3,'2024-03-26 18:42:52','2024-03-26 18:42:52','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Atlanta Gynecomastia Center is located near Athens, about an hour and 15 minutes away from Athens in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Athens? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just over an hour from Athens in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Athens to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-10 Loop W/US-129 S/US-29 S/US-441 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-10 Loop W to GA-316 W/US-29 S/US-78 W in Oconee County. Take exit 1 from GA-10 Loop W/US-29 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow US-29 S and University Pkwy to GA-316 W in Lawrenceville</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take I-85 S to M.L.K. Jr Dr SE in Atlanta. Take exit 248A from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Athens, Georgia','','publish','closed','closed','','athens-georgia','','','2024-03-29 22:17:39','2024-03-29 22:17:39','',1484,'https://newjerseygynecomastiacenter.com/?page_id=2787',0,'page','',0),(2790,3,'2024-03-29 00:41:21','2024-03-05 18:43:37','','From Athens','','publish','closed','closed','','from-newark','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/?p=2790',22,'nav_menu_item','',0),(2844,3,'2024-03-26 22:07:27','2024-03-26 22:07:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Atlanta Gynecomastia Center is located near Alpharetta, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Alpharetta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Alpharetta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Alpharetta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Haynes Bridge Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on GA-400 S to Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Alpharetta, Georgia','','publish','closed','closed','','alpharetta-georgia','','','2024-03-29 22:14:26','2024-03-29 22:14:26','',1484,'https://newjerseygynecomastiacenter.com/?page_id=2844',0,'page','',0),(2846,3,'2024-03-29 00:41:21','2024-03-05 22:08:47','','From Alpharetta','','publish','closed','closed','','from-jersey-city','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/?p=2846',23,'nav_menu_item','',0),(2854,3,'2024-03-26 22:23:02','2024-03-26 22:23:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Atlanta Gynecomastia Center is located near Decatur, about 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Decatur? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Decatur in Atlanta, GA.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Decatur to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Head east on E Court Square toward E Ponce de Leon Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Clairemont Ave, N Decatur Rd, E Rock Springs Rd NE and Piedmont Ave NE to The Prado NE in Atlanta</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on The Prado NE. Take Westminster Drive Northeast and Peachtree Cir NE to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Decatur, Georgia','','publish','closed','closed','','decatur-georgia','','','2024-03-29 22:13:56','2024-03-29 22:13:56','',1484,'https://newjerseygynecomastiacenter.com/?page_id=2854',0,'page','',0),(2856,3,'2024-03-29 00:41:21','2024-03-05 22:23:28','','From Decatur','','publish','closed','closed','','from-edgewater','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/?p=2856',24,'nav_menu_item','',0),(2858,3,'2024-03-26 22:56:53','2024-03-26 22:56:53','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Atlanta Gynecomastia Center is located near  Columbus, about an hour and 40 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Columbus? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just under two hours from Columbus in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Columbus to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-185 N from Wynnton Rd and Macon Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-185 N and I-85 N to Fulton St SW in Atlanta. Take exit 246 from I-75 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to Capitol Ave SE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Columbus, Georgia','','publish','closed','closed','','columbus-georgia','','','2024-03-29 22:11:22','2024-03-29 22:11:22','',1484,'https://newjerseygynecomastiacenter.com/?page_id=2858',0,'page','',0),(2860,3,'2024-03-29 00:41:21','2024-03-05 22:57:12','','From Columbus','','publish','closed','closed','','from-westchester-county-ny','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/?p=2860',25,'nav_menu_item','',0),(2862,3,'2024-03-26 23:06:58','2024-03-26 23:06:58','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_6e0083-8c\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_e03b11-f9\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_e03b11-f9 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_6de37d-d7\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_6de37d-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_6de37d-d7\">The Atlanta Gynecomastia Center is located near Roswell, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Roswell? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Roswell in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Roswell to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S in Sandy Springs from N Atlanta St and GA-9/Roswell Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Roswell, Georgia','','publish','closed','closed','','roswell-georgia','','','2024-03-29 22:13:29','2024-03-29 22:13:29','',1484,'https://newjerseygynecomastiacenter.com/?page_id=2862',0,'page','',0),(2866,3,'2024-03-29 00:41:21','2024-03-05 23:07:14','','From Roswell','','publish','closed','closed','','from-manhattan','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/?p=2866',26,'nav_menu_item','',0),(2868,3,'2024-03-26 23:12:51','2024-03-26 23:12:51','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The Atlanta Gynecomastia Center is located in Fulton County, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Fulton County? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located right there in downtown Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Fulton County to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Depending on where in Fulton County you\'re located, head towards downtown Atlanta</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>From I-75 S, take I-85 S to M.L.K. Jr Dr SE. Take exit 248A from I-75 S/I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery in Fulton County, Georgia','','publish','closed','closed','','fulton-county-georgia','','','2024-03-29 22:15:03','2024-03-29 22:15:03','',1484,'https://newjerseygynecomastiacenter.com/?page_id=2868',0,'page','',0),(2870,3,'2024-03-29 00:41:21','2024-03-05 23:13:05','','From Fulton County','','publish','closed','closed','','from-staten-island','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/?p=2870',27,'nav_menu_item','',0),(2872,3,'2024-03-26 15:57:43','2024-03-26 15:57:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_608038-ac\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_0c8121-68\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_0c8121-68 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_844f76-66\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_844f76-66 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_844f76-66\">The Atlanta Gynecomastia Center is located near Sandy Springs, just 15 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Sandy Springs? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Sandy Springs in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Sandy Springs to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Vernon Woods Dr NE and Mount Vernon Hwy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Sandy Springs, Georgia','','publish','closed','closed','','sandy-springs-georgia','','','2024-03-29 22:12:43','2024-03-29 22:12:43','',1484,'https://newjerseygynecomastiacenter.com/?page_id=2872',0,'page','',0),(2874,3,'2024-03-29 00:41:21','2024-03-06 15:58:00','','From Sandy Springs','','publish','closed','closed','','from-elizabeth','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/?p=2874',28,'nav_menu_item','',0),(2881,3,'2024-03-26 16:05:50','2024-03-26 16:05:50','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The Atlanta Gynecomastia Center is located near Marietta, just 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Marietta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Marietta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Marietta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 S from GA-120ALT/North Marietta Pkwy NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-75 S to Techwood Dr NW in Atlanta. Take exit 250 from I-75 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Marietta, Georgia','','publish','closed','closed','','marietta-georgia','','','2024-03-29 22:17:40','2024-03-29 22:17:40','',1484,'https://newjerseygynecomastiacenter.com/?page_id=2881',0,'page','',0),(2883,3,'2024-03-29 00:41:21','2024-03-06 16:06:13','','From Marietta','','publish','closed','closed','','from-hackensack','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/?p=2883',29,'nav_menu_item','',0),(2886,3,'2024-03-26 16:42:36','2024-03-26 16:42:36','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_cf1f9b-99\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_1011bf-a3\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_1011bf-a3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_49abf1-ea\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_49abf1-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_49abf1-ea\">The Atlanta Gynecomastia Center is one of the best rated plastic surgery centers in Georgia and serves patients from all over the southeastern United States.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_8d4b36-f3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_8d4b36-f3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_8d4b36-f3\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also get started with some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>, and better understand <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">if you are a gyno candidate</a> to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_6fafa0-8c\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_6fafa0-8c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_6fafa0-8c\">Reach out to hear what our patients have to say about the Atlanta Gynecomastia Center!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Center Surgery Reviews','','publish','closed','closed','','gynecomastia-reviews','','','2024-03-30 22:23:39','2024-03-30 22:23:39','',0,'https://newjerseygynecomastiacenter.com/?page_id=2886',0,'page','',0),(2888,3,'2024-03-29 00:41:21','2024-03-06 16:43:05','','Reviews','','publish','closed','closed','','2888','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://newjerseygynecomastiacenter.com/?p=2888',20,'nav_menu_item','',0),(3071,3,'2024-03-08 20:33:23','2024-03-08 20:33:23','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_16f9d3-a0\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_4b06ab-30\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_4b06ab-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_5cb9af-f9\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_5cb9af-f9 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_5cb9af-f9\">Get in contact with the Atlanta Gynecomastia Center to plan your free consultation and see if surgery is the right option for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_f4ff7d-ac\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"actions\":[\"email\",\"entry\"],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Contact]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_f4ff7d-ac kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_f4ff7d-ac_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_f4ff7d-ac_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_f4ff7d-ac_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_f4ff7d-ac_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_f4ff7d-ac_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_f4ff7d-ac_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_f4ff7d-ac_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_f4ff7d-ac_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_f4ff7d-ac\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','publish','closed','closed','','free-consultation-form-on-page','','','2024-10-10 21:09:37','2024-10-10 21:09:37','',0,'https://newjerseygynecomastiacenter.com/free-consultation-form-on-page/',0,'wp_block','',0),(3081,4,'2024-03-08 23:03:13','2024-03-08 23:03:13','<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center is committed to ensuring accessibility of its website to people with disabilities and it will endeavor to follow the federal standards regarding technology accessibility for people with disabilities (Section 508) and the Web Content Accessibility Guidelines (WCAG) 2.0 developed by the World Wide Web Consortium (W3C). This policy applies to all web content produced or updated by the Center. Test</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Accessibility Help </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure your experience on the website is accessible, please use the built-in widget (full ADA/WCAG 2.1 compliant) located on the bottom right-hand corner of our website. Note that the website may contain links to external websites that are not within New Jersey Gynecomastia Center\'s control and may not follow the same accessibility policies and standards as the Center\'s website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Viewing Files </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Please download the latest versions of Adobe Reader (for PDF format) or Microsoft Office (for Word or Excel format) to ensure optimal viewing of files available on the website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Your Accessibility Concerns </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Certain pages on the website require login information or acceptance of additional terms and conditions. If you have difficulty accessing content, viewing a file on the website, or notice any accessibility issues, <a href=\"https://atlantagynecomastia.com/contact-new-jersey-gynecomastia-doctors/\">please contact the New Jersey Gynecomastia Center</a> for assistance. In your message, please include the nature of the accessibility issue, the URL of the page containing the issue, the accessibility technology you are using, and an email address so that we can respond to your concern. We strive to make all content on this website accessible to all users, including those with disabilities.</p>\n<!-- /wp:paragraph -->','Accessibility Policy','','inherit','closed','closed','','2056-revision-v1','','','2024-03-08 23:03:13','2024-03-08 23:03:13','',2056,'https://newjerseygynecomastiacenter.com/?p=3081',0,'revision','',0),(3082,4,'2024-03-08 23:03:20','2024-03-08 23:03:20','<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center is committed to ensuring accessibility of its website to people with disabilities and it will endeavor to follow the federal standards regarding technology accessibility for people with disabilities (Section 508) and the Web Content Accessibility Guidelines (WCAG) 2.0 developed by the World Wide Web Consortium (W3C). This policy applies to all web content produced or updated by the Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Accessibility Help </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure your experience on the website is accessible, please use the built-in widget (full ADA/WCAG 2.1 compliant) located on the bottom right-hand corner of our website. Note that the website may contain links to external websites that are not within New Jersey Gynecomastia Center\'s control and may not follow the same accessibility policies and standards as the Center\'s website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Viewing Files </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Please download the latest versions of Adobe Reader (for PDF format) or Microsoft Office (for Word or Excel format) to ensure optimal viewing of files available on the website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Your Accessibility Concerns </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Certain pages on the website require login information or acceptance of additional terms and conditions. If you have difficulty accessing content, viewing a file on the website, or notice any accessibility issues, <a href=\"https://atlantagynecomastia.com/contact-new-jersey-gynecomastia-doctors/\">please contact the New Jersey Gynecomastia Center</a> for assistance. In your message, please include the nature of the accessibility issue, the URL of the page containing the issue, the accessibility technology you are using, and an email address so that we can respond to your concern. We strive to make all content on this website accessible to all users, including those with disabilities.</p>\n<!-- /wp:paragraph -->','Accessibility Policy','','inherit','closed','closed','','2056-revision-v1','','','2024-03-08 23:03:20','2024-03-08 23:03:20','',2056,'https://newjerseygynecomastiacenter.com/?p=3082',0,'revision','',0),(3178,3,'2024-03-09 23:56:10','2024-03-09 23:56:10','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Paul Rosenberg MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Rosenberg is one of the head plastic surgeons at the New Jersey Gynecomastia Center. With a robust educational background and over 30 years of experience, Dr. Rosenberg is one of the premier gynecomastia plastic surgeons in the New Jersey area.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Paul-Rosenberg-MD.jpeg\",\"bgImgID\":1752,\"bgImgSize\":\"75% auto\",\"bgImgPosition\":\"51% 23%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Dr. Rosenberg embarked on his medical journey with an internship and general surgery training at North Shore-New York University Hospital in Manhasset, NY. Following this, he dedicated a year to surgical research, during which he introduced an experimental model for the rare craniofacial disorder, Craniosynostosis. He then pursued an additional two years of plastic surgery residency at New York Hospital-Cornell Medical Center in New York City, concurrently serving as Chief Resident at Memorial Sloan Kettering Cancer Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Upon completing his residency, Dr. Rosenberg further honed his skills by traveling to Mexico City to collaborate with Dr. Fernando Ortiz-Monasterio. He then spent six months specializing in cosmetic procedures and reconstructive surgery of the face, nose, eyes, and forehead.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Throughout his career, Dr. Rosenberg has been actively involved in lecturing, publishing numerous articles and textbook chapters, and instructing residents and medical students in various aspects of plastic surgery. He is board-certified by the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, Dr. Rosenberg holds over 20 US and International patents on various medical devices and founded InPLANT LLC, a company that manufactures and sells a device used in breast surgery. He serves as CEO. He also serves as Medical Director at Palisade Surgery Center, an accredited ambulatory surgery center located in Fort Lee, New Jersey since 2008.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Rosenberg leads the New Jersey Gynecomastia Center as part of Palisade Plastic Surgery Associates, P.C.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Arts &amp; Sciences</strong>: <a href=\"https://www.upenn.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Pennsylvania</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: University of Pennsylvania</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: <a href=\"https://nsuh.northwell.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">North Shore-New York University Hospital</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: <a href=\"https://www.nyp.org/locations/newyork-presbyterian-weill-cornell-medical-center\" target=\"_blank\" rel=\"noreferrer noopener\">New York Hospital-Cornell Medical Center</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Chief Resident</strong>: <a href=\"https://www.mskcc.org/\">Memorial Sloan Kettering Cancer Center</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Fellowship</strong>: Craniofacial and Aesthetic Surgery, Fernando Ortiz-Monasterio, Mexico City</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Foundations &amp; Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Plastic Surgery Educational Foundation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://dare.org/\">D.A.R.E.</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shelter Our Sisters</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Guatemalan Pediatric Foundation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>International Surgical Relief Organizations-Healing The Children Northeast</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/spacer {\"uniqueID\":\"1275_9ef788-02\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1275_9ef788-02\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_bc897d-69\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_bcc533-1e\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_bcc533-1e kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_efe575-be\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_efe575-be wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_efe575-be\">Abraham Pathak MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_9ea497-0a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_9ea497-0a has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_9ea497-0a\">Dr. Pathak serves as one of the head plastic surgeons at the New Jersey Gynecomastia Center. Originally from Texas, he underwent training at prestigious institutions across the nation before establishing himself in New York City.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_839a10-fd\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Abraham-Pathak-MD.jpeg\",\"bgImgID\":1832,\"bgImgSize\":\"75% auto\",\"bgImgPosition\":\"48% 41%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"overlayOpacity\":0,\"height\":[680,400,300],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_839a10-fd kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_a13305-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c6c511-76\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c6c511-76\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Having had the unique opportunity to train alongside prominent experts and educators in the field, Dr. Abraham Pathak has developed a fervent dedication to surgical education. His commitment extends to instructing medical students, residents, and fellows in plastic surgery, with a particular emphasis on the nuances of aesthetic procedures. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, Dr. Pathak contributes as a reviewer for numerous plastic surgery journals covering a broad spectrum of aesthetic topics. He actively participates in various regional and national meetings and has authored publications in peer-reviewed journals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Leveraging his extensive background and training, he is deeply committed to providing personalized and <a href=\"https://atlantagynecomastia.com/reviews-for-best-gynecomastia-plastic-surgeon-new-jersey/\">compassionate care</a> to the diverse patient population of the New York/New Jersey area. Apart from English, Dr. Pathak is fluent in Spanish and Italian.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: <a href=\"https://www.northwestern.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">Northwestern University</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: <a href=\"https://www.brighamandwomens.org/about-bwh\" target=\"_blank\" rel=\"noreferrer noopener\">Harvard Medical School - Brigham &amp; Women\'s Hospital </a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: <a href=\"https://www.utsouthwestern.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Texas Southwestern</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Aesthetic Surgery Fellowship</strong>: <a href=\"https://meeth.northwell.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">Manhattan Eye, Ear, and Throat Hospital</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.absurgery.org/\">American Board of Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Do you want to learn more about the offerings at the New Jersey Gynecomastia Center? Check out the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">gynecomastia services</a> offered and what <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">gynecomastia costs in NJ</a> look like.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-09 23:56:10','2024-03-09 23:56:10','',1275,'https://newjerseygynecomastiacenter.com/?p=3178',0,'revision','',0),(3179,3,'2024-03-09 23:56:38','2024-03-09 23:56:38','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Paul Rosenberg MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Rosenberg is one of the head plastic surgeons at the New Jersey Gynecomastia Center. With a robust educational background and over 30 years of experience, Dr. Rosenberg is one of the premier gynecomastia plastic surgeons in the New Jersey area.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Paul-Rosenberg-MD.jpeg\",\"bgImgID\":1752,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"51% 23%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Dr. Rosenberg embarked on his medical journey with an internship and general surgery training at North Shore-New York University Hospital in Manhasset, NY. Following this, he dedicated a year to surgical research, during which he introduced an experimental model for the rare craniofacial disorder, Craniosynostosis. He then pursued an additional two years of plastic surgery residency at New York Hospital-Cornell Medical Center in New York City, concurrently serving as Chief Resident at Memorial Sloan Kettering Cancer Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Upon completing his residency, Dr. Rosenberg further honed his skills by traveling to Mexico City to collaborate with Dr. Fernando Ortiz-Monasterio. He then spent six months specializing in cosmetic procedures and reconstructive surgery of the face, nose, eyes, and forehead.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Throughout his career, Dr. Rosenberg has been actively involved in lecturing, publishing numerous articles and textbook chapters, and instructing residents and medical students in various aspects of plastic surgery. He is board-certified by the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, Dr. Rosenberg holds over 20 US and International patents on various medical devices and founded InPLANT LLC, a company that manufactures and sells a device used in breast surgery. He serves as CEO. He also serves as Medical Director at Palisade Surgery Center, an accredited ambulatory surgery center located in Fort Lee, New Jersey since 2008.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Rosenberg leads the New Jersey Gynecomastia Center as part of Palisade Plastic Surgery Associates, P.C.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Arts &amp; Sciences</strong>: <a href=\"https://www.upenn.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Pennsylvania</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: University of Pennsylvania</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: <a href=\"https://nsuh.northwell.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">North Shore-New York University Hospital</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: <a href=\"https://www.nyp.org/locations/newyork-presbyterian-weill-cornell-medical-center\" target=\"_blank\" rel=\"noreferrer noopener\">New York Hospital-Cornell Medical Center</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Chief Resident</strong>: <a href=\"https://www.mskcc.org/\">Memorial Sloan Kettering Cancer Center</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Fellowship</strong>: Craniofacial and Aesthetic Surgery, Fernando Ortiz-Monasterio, Mexico City</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Foundations &amp; Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Plastic Surgery Educational Foundation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://dare.org/\">D.A.R.E.</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shelter Our Sisters</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Guatemalan Pediatric Foundation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>International Surgical Relief Organizations-Healing The Children Northeast</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/spacer {\"uniqueID\":\"1275_9ef788-02\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1275_9ef788-02\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_bc897d-69\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_bcc533-1e\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_bcc533-1e kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_efe575-be\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_efe575-be wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_efe575-be\">Abraham Pathak MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_9ea497-0a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_9ea497-0a has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_9ea497-0a\">Dr. Pathak serves as one of the head plastic surgeons at the New Jersey Gynecomastia Center. Originally from Texas, he underwent training at prestigious institutions across the nation before establishing himself in New York City.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_839a10-fd\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Abraham-Pathak-MD.jpeg\",\"bgImgID\":1832,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"48% 41%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"overlayOpacity\":0,\"height\":[680,400,300],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_839a10-fd kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_a13305-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c6c511-76\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c6c511-76\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Having had the unique opportunity to train alongside prominent experts and educators in the field, Dr. Abraham Pathak has developed a fervent dedication to surgical education. His commitment extends to instructing medical students, residents, and fellows in plastic surgery, with a particular emphasis on the nuances of aesthetic procedures. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, Dr. Pathak contributes as a reviewer for numerous plastic surgery journals covering a broad spectrum of aesthetic topics. He actively participates in various regional and national meetings and has authored publications in peer-reviewed journals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Leveraging his extensive background and training, he is deeply committed to providing personalized and <a href=\"https://atlantagynecomastia.com/reviews-for-best-gynecomastia-plastic-surgeon-new-jersey/\">compassionate care</a> to the diverse patient population of the New York/New Jersey area. Apart from English, Dr. Pathak is fluent in Spanish and Italian.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: <a href=\"https://www.northwestern.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">Northwestern University</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: <a href=\"https://www.brighamandwomens.org/about-bwh\" target=\"_blank\" rel=\"noreferrer noopener\">Harvard Medical School - Brigham &amp; Women\'s Hospital </a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: <a href=\"https://www.utsouthwestern.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Texas Southwestern</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Aesthetic Surgery Fellowship</strong>: <a href=\"https://meeth.northwell.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">Manhattan Eye, Ear, and Throat Hospital</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.absurgery.org/\">American Board of Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Do you want to learn more about the offerings at the New Jersey Gynecomastia Center? Check out the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">gynecomastia services</a> offered and what <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">gynecomastia costs in NJ</a> look like.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-09 23:56:38','2024-03-09 23:56:38','',1275,'https://newjerseygynecomastiacenter.com/?p=3179',0,'revision','',0),(3181,3,'2024-03-09 23:58:36','2024-03-09 23:58:36','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Paul Rosenberg MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Rosenberg is one of the head plastic surgeons at the New Jersey Gynecomastia Center. With a robust educational background and over 30 years of experience, Dr. Rosenberg is one of the premier gynecomastia plastic surgeons in the New Jersey area.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Paul-Rosenberg-MD.jpeg\",\"bgImgID\":1752,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"51% 23%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Rosenberg embarked on his medical journey with an internship and general surgery training at North Shore-New York University Hospital in Manhasset, NY. Following this, he dedicated a year to surgical research, during which he introduced an experimental model for the rare craniofacial disorder, Craniosynostosis. He then pursued an additional two years of plastic surgery residency at New York Hospital-Cornell Medical Center in New York City, concurrently serving as Chief Resident at Memorial Sloan Kettering Cancer Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Upon completing his residency, Dr. Rosenberg further honed his skills by traveling to Mexico City to collaborate with Dr. Fernando Ortiz-Monasterio. He then spent six months specializing in cosmetic procedures and reconstructive surgery of the face, nose, eyes, and forehead.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Throughout his career, Dr. Rosenberg has been actively involved in lecturing, publishing numerous articles and textbook chapters, and instructing residents and medical students in various aspects of plastic surgery. He is board-certified by the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, Dr. Rosenberg holds over 20 US and International patents on various medical devices and founded InPLANT LLC, a company that manufactures and sells a device used in breast surgery. He serves as CEO. He also serves as Medical Director at Palisade Surgery Center, an accredited ambulatory surgery center located in Fort Lee, New Jersey since 2008.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Rosenberg leads the New Jersey Gynecomastia Center as part of Palisade Plastic Surgery Associates, P.C.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Arts &amp; Sciences</strong>: <a href=\"https://www.upenn.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Pennsylvania</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: University of Pennsylvania</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: <a href=\"https://nsuh.northwell.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">North Shore-New York University Hospital</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: <a href=\"https://www.nyp.org/locations/newyork-presbyterian-weill-cornell-medical-center\" target=\"_blank\" rel=\"noreferrer noopener\">New York Hospital-Cornell Medical Center</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Chief Resident</strong>: <a href=\"https://www.mskcc.org/\">Memorial Sloan Kettering Cancer Center</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Fellowship</strong>: Craniofacial and Aesthetic Surgery, Fernando Ortiz-Monasterio, Mexico City</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Foundations &amp; Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Plastic Surgery Educational Foundation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://dare.org/\">D.A.R.E.</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shelter Our Sisters</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Guatemalan Pediatric Foundation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>International Surgical Relief Organizations-Healing The Children Northeast</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/spacer {\"uniqueID\":\"1275_9ef788-02\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1275_9ef788-02\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_bc897d-69\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_bcc533-1e\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_bcc533-1e kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_efe575-be\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_efe575-be wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_efe575-be\">Abraham Pathak MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_9ea497-0a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_9ea497-0a has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_9ea497-0a\">Dr. Pathak serves as one of the head plastic surgeons at the New Jersey Gynecomastia Center. Originally from Texas, he underwent training at prestigious institutions across the nation before establishing himself in New York City.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_839a10-fd\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Abraham-Pathak-MD.jpeg\",\"bgImgID\":1832,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"48% 41%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"overlayOpacity\":0,\"height\":[680,400,300],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_839a10-fd kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_a13305-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c6c511-76\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c6c511-76\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Having had the unique opportunity to train alongside prominent experts and educators in the field, Dr. Abraham Pathak has developed a fervent dedication to surgical education. His commitment extends to instructing medical students, residents, and fellows in plastic surgery, with a particular emphasis on the nuances of aesthetic procedures. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, Dr. Pathak contributes as a reviewer for numerous plastic surgery journals covering a broad spectrum of aesthetic topics. He actively participates in various regional and national meetings and has authored publications in peer-reviewed journals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Leveraging his extensive background and training, he is deeply committed to providing personalized and <a href=\"https://atlantagynecomastia.com/reviews-for-best-gynecomastia-plastic-surgeon-new-jersey/\">compassionate care</a> to the diverse patient population of the New York/New Jersey area. Apart from English, Dr. Pathak is fluent in Spanish and Italian.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: <a href=\"https://www.northwestern.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">Northwestern University</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: <a href=\"https://www.brighamandwomens.org/about-bwh\" target=\"_blank\" rel=\"noreferrer noopener\">Harvard Medical School - Brigham &amp; Women\'s Hospital </a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: <a href=\"https://www.utsouthwestern.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Texas Southwestern</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Aesthetic Surgery Fellowship</strong>: <a href=\"https://meeth.northwell.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">Manhattan Eye, Ear, and Throat Hospital</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.absurgery.org/\">American Board of Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Do you want to learn more about the offerings at the New Jersey Gynecomastia Center? Check out the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">gynecomastia services</a> offered and what <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">gynecomastia costs in NJ</a> look like.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-09 23:58:36','2024-03-09 23:58:36','',1275,'https://newjerseygynecomastiacenter.com/?p=3181',0,'revision','',0),(3279,5,'2024-03-10 17:14:29','2024-03-10 17:14:29','<!-- wp:paragraph -->\n<p>This privacy policy is designed to inform users about the handling of their \"Personally Identifiable Information\" (PII) online. PII is defined by US privacy and information security laws as data that can identify, reach, or pinpoint an individual either by itself or when combined with other accessible information. We encourage you to review this policy thoroughly to understand the ways in which we gather, employ, safeguard, and manage your PII on our website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What PII do we collect from users of our website?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When contacting us via our website, as appropriate, you may be asked to enter your name, email address, phone number or other details to help you with your experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When do we collect information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information from you when you fill out a form or enter information on our site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we use your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may use the information we collect from you when you request more information about a procedure, including to follow up with you after correspondence (email or phone inquiries).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we protect your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We do not use vulnerability scanning and/or scanning to PCI standards. We conduct malware scanning. We only provide information and we do not ask for credit card numbers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_152c51-8f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_152c51-8f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_152c51-8f\">Do we use \"cookies\"?</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Yes. Cookies are small files that a site or its service provider transfers to your computer’s hard drive through your Web browser (if you allow it) that enables the site’s or service provider’s systems to recognize your browser and capture and remember certain information. They are also used to help us understand your preferences based on previous or current site activity, which enables us to provide you with improved services. We also use cookies to help us compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We may also use trusted third-party services that track this information on our behalf.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off all cookies. You do this through your browser settings. Since every browser is different, look at your browser’s Help Menu to learn the correct way to modify your cookies. If you turn cookies off, some features will be disabled.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_caa05a-f8\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_caa05a-f8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_caa05a-f8\">Third-party disclosure</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>We do not sell, trade, or otherwise transfer to outside parties your PII unless we provide users with advance notice. This does not include website hosting partners and other parties who assist us in operating our website, conducting our business, or serving our users, so long as those parties agree to keep this information confidential. We may also release information when its release is appropriate to comply with the law, enforce our site policies, or protect ours or others’ rights, property or safety. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Third-party links</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Occasionally, at our discretion, we may include or offer third-party products or services on our website. These third-party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Google</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Google’s advertising requirements can be summed up by Google’s Advertising Principles. They are put in place to provide a positive experience for users.&nbsp;<a href=\"https://support.google.com/adspolicy/answer/6008942?hl=en&amp;visit_id=638456876419726489-885632823&amp;rd=1\" target=\"_blank\" rel=\"noreferrer noopener\">Google Ads policies.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have not enabled Google AdSense on our site but we may do so in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">California Online Privacy Protection Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>CalOPPA is the first state law in the nation to require commercial websites and online services to post a privacy policy. The law’s reach stretches beyond California to require any person or company in the United States (and conceivably the world) that operates websites collecting Personally Identifiable Information from California consumers to post a conspicuous privacy policy on its website stating exactly which information is being collected and those individuals or companies with whom it is being shared. Please see: <a href=\"https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/#sthash.0FdRbT51.dpuf\" target=\"_blank\" rel=\"noreferrer noopener\">California Online Privacy Protection Act (CalOPPA)</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">According to CalOPPA, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Users may visit our site anonymously. Once this privacy policy is created, we will add a link to it on our website footer. Our Privacy Policy link includes the word ‘Privacy’ and can be easily be found on the page specified above. You will be notified of any Privacy Policy changes on our Privacy Policy Page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How does our site handle Do Not Track signals?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We honor Do Not Track (DNT) signals and do not track, plant cookies, or use advertising when a DNT browser mechanism is in place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Does our site allow third-party behavioral tracking?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">COPPA (Children\'s Online Privacy Protection Act)</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to the collection of personal information from children under the age of 13 years old, the Children’s Online Privacy Protection Act (COPPA) puts parents in control. The Federal Trade Commission, United States’ consumer protection agency, enforces the COPPA Rule, which spells out what operators of websites and online services must do to protect children’s privacy and safety online. We do not specifically market to children under the age of 13 years old.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Fair Information Practices</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Fair Information Practices Principles form the backbone of privacy law in the United States and the concepts they include have played a significant role in the development of data protection laws around the globe. Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply with the various privacy laws that protect personal information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will notify you via email within 7 business days. We also agree to the Individual Redress Principle which requires that individuals have the right to legally pursue enforceable rights against data collectors and processors who fail to adhere to the law. This principle requires not only that individuals have enforceable rights against data users, but also that individuals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">CAN-SPAM Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The CAN-SPAM Act is a law that sets the rules for commercial email, establishes requirements for commercial messages, gives recipients the right to have emails stopped from being sent to them, and spells out tough penalties for violations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">We collect your email address in order to:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Send information, and respond to inquiries and/or other requests or questions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">To be in compliance with CAN-SPAM, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Not to use false or misleading subjects or email addresses.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Identify the message as an advertisement in some reasonable way.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Include the physical address of our business or site headquarters.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Monitor third-party email marketing services for compliance, if one is used.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Honor opt-out/unsubscribe requests quickly.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Allow users to unsubscribe by using the link at the bottom of each email.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">If at any time you would like to unsubscribe from receiving future emails</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Follow the instructions at the bottom of each email and we will promptly remove you from <strong>all</strong> correspondence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contacting Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If there are any questions regarding this privacy policy, you may contact us using the information below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1567 Palisade Avenue, #3<br>Fort Lee, NJ 07024<br>T: <a href=\"tel:5512011110\">(551) 201-1110</a></p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','2396-revision-v1','','','2024-03-10 17:14:29','2024-03-10 17:14:29','',2396,'https://newjerseygynecomastiacenter.com/?p=3279',0,'revision','',0),(3345,5,'2024-03-10 17:19:29','2024-03-10 17:19:29','<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center is committed to ensuring accessibility of its website to people with disabilities and it will endeavor to follow the federal standards regarding technology accessibility for people with disabilities (Section 508) and the Web Content Accessibility Guidelines (WCAG) 2.0 developed by the World Wide Web Consortium (W3C). This policy applies to all web content produced or updated by the Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Accessibility Help </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure your experience on the website is accessible, please use the built-in widget (full ADA/WCAG 2.1 compliant) located on the bottom right-hand corner of our website. Note that the website may contain links to external websites that are not within New Jersey Gynecomastia Center\'s control and may not follow the same accessibility policies and standards as the Center\'s website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Viewing Files </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Please download the latest versions of Adobe Reader (for PDF format) or Microsoft Office (for Word or Excel format) to ensure optimal viewing of files available on the website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Your Accessibility Concerns </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Certain pages on the website require login information or acceptance of additional terms and conditions. If you have difficulty accessing content, viewing a file on the website, or notice any accessibility issues, <a href=\"https://atlantagynecomastia.com/contact/\">please contact the New Jersey Gynecomastia Center</a> for assistance. In your message, please include the nature of the accessibility issue, the URL of the page containing the issue, the accessibility technology you are using, and an email address so that we can respond to your concern. We strive to make all content on this website accessible to all users, including those with disabilities.</p>\n<!-- /wp:paragraph -->','Accessibility Policy','','inherit','closed','closed','','2056-revision-v1','','','2024-03-10 17:19:29','2024-03-10 17:19:29','',2056,'https://newjerseygynecomastiacenter.com/?p=3345',0,'revision','',0),(3346,5,'2024-03-10 17:19:29','2024-03-10 17:19:29','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_b84611-99\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_d8167c-93\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_d8167c-93 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_fea660-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_fea660-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_fea660-84\">The New Jersey Gynecomastia Center is one of the best rated plastic surgery centers in New Jersey and serves patients from all over the tri-state area.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_f1722c-d2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_f1722c-d2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_f1722c-d2\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation</a> with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_0147b2-86\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_0147b2-86 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_0147b2-86\">Hear what our patients have to say about the New Jersey Gynecomastia Center</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:quote {\"className\":\"is-style-default\"} -->\n<blockquote class=\"wp-block-quote is-style-default\"><!-- wp:paragraph -->\n<p>\"Recently had surgery with Dr. Pathak and I can’t say enough good things about him.<br><br><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> met with me for a consultation. They gave me the opportunity to voice what I wanted and gave their professional opinions.<br><br>Dr. Pathak did my <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">procedure</a> and his bedside manner is an A++. He was there to talk things through on the day of surgery and as soon as I woke up. Calling that evening and seeing me again the next day.<br><br>I am so happy with my results and have been feeling great since my procedure.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Dr. Pathak is professional, knowledgeable, and patient. I went to multiple different consults before choosing the doctor I wanted to perform my surgery. When I met him I knew he was someone I could trust. He made my feel comfortable immediately and took the time to ensure I was achieving my goal. My experience with him was phenomenal and I am very happy with the outcome. You won\'t regret going with him!\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I had an amazing experience. Best plastic surgeon. Very confident, very professional. I\'m very happy with the result. I would recommend him and his harem. He certainly knows how to choose a staff full of beautiful and sweet ladies!\"</p>\n<!-- /wp:paragraph --><cite><strong>Healthgrades</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I\'m almost 2 weeks from my <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery</a> and can\'t say enough about how wonderful Dr. Pathak and their staff (Liz, Julie, Ana to name a few of their angels) have treated me and taken care of me. They have been super attentive, helpful, addressing all my questions calmly and with real care. I recommend them wholeheartedly!!\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Amazing experience, Dr Pathak is awesome. Would recommend him to all of my family and friends.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I would have to say from the first day I got my <a href=\"https://atlantagynecomastia.com/contact/\">consultation</a> with Dr. Rosenberg I knew he was the one that was going to proceed with my surgery. Also the staff were above and beyond and very courteous and attentive to any questions I had. They answered me with ease and put my mind at ease. I would highly recommend any friends or family in the future to Dr. Rosenberg and Dr. Pathak. I was very happy with the results and I see them as family now and I am very grateful and they have changed my life!! A+++++\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I have experienced two procedures with Dr. Rosenberg and both have had fantastic results. I highly recommend his practice, a fantastic team.\"</p>\n<!-- /wp:paragraph --><cite><strong>Healthgrades</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Dr. Rosenberg is an amazing surgeon. I am very happy with my results and am so thankful to him and his staff for the wonderful care they gave me.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"You don\'t get better than Dr. Rosenberg! I researched into many surgeons before deciding on one... its not an easy decision. The second I met Dr. Rosenberg I knew he was going to be my surgeon. He thoroughly answered all my questions with true care. Walked me through every step. He has a great personality and is truly a pleasure to work with, I always looked forward to my appointments! the staff are so sweet and helpful, Your truly in hands of a skilled and professional team! most important is that I\'m so happy happy with the results! I would 100% recommend going to see Dr. Paul Rosenberg\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I\'m extremely grateful to you all! And its not just the fantastic results Dr. Rosenberg gave me, but all of your kindness throughout the process.\"</p>\n<!-- /wp:paragraph --><cite><strong>Vitals</strong></cite></blockquote>\n<!-- /wp:quote --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-10 17:19:29','2024-03-10 17:19:29','',2886,'https://newjerseygynecomastiacenter.com/?p=3346',0,'revision','',0),(3363,5,'2024-03-10 17:44:27','2024-03-10 17:44:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Paul Rosenberg MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Rosenberg is one of the head plastic surgeons at the New Jersey Gynecomastia Center. With a robust educational background and over 30 years of experience, Dr. Rosenberg is one of the premier gynecomastia plastic surgeons in the New Jersey area.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Paul-Rosenberg-MD.jpeg\",\"bgImgID\":1752,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"51% 23%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Rosenberg embarked on his medical journey with an internship and general surgery training at North Shore-New York University Hospital in Manhasset, NY. Following this, he dedicated a year to surgical research, during which he introduced an experimental model for the rare craniofacial disorder, Craniosynostosis. He then pursued an additional two years of plastic surgery residency at New York Hospital-Cornell Medical Center in New York City, concurrently serving as Chief Resident at Memorial Sloan Kettering Cancer Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Upon completing his residency, Dr. Rosenberg further honed his skills by traveling to Mexico City to collaborate with Dr. Fernando Ortiz-Monasterio. He then spent six months specializing in cosmetic procedures and reconstructive surgery of the face, nose, eyes, and forehead.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Throughout his career, Dr. Rosenberg has been actively involved in lecturing, publishing numerous articles and textbook chapters, and instructing residents and medical students in various aspects of plastic surgery. He is board-certified by the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, Dr. Rosenberg holds over 20 US and International patents on various medical devices and founded InPLANT LLC, a company that manufactures and sells a device used in breast surgery. He serves as CEO. He also serves as Medical Director at Palisade Surgery Center, an accredited ambulatory surgery center located in Fort Lee, New Jersey since 2008.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Rosenberg leads the New Jersey Gynecomastia Center as part of Palisade Plastic Surgery Associates, P.C.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Arts &amp; Sciences</strong>: <a href=\"https://www.upenn.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Pennsylvania</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: University of Pennsylvania</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: <a href=\"https://nsuh.northwell.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">North Shore-New York University Hospital</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: <a href=\"https://www.nyp.org/locations/newyork-presbyterian-weill-cornell-medical-center\" target=\"_blank\" rel=\"noreferrer noopener\">New York Hospital-Cornell Medical Center</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Chief Resident</strong>: <a href=\"https://www.mskcc.org/\">Memorial Sloan Kettering Cancer Center</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Fellowship</strong>: Craniofacial and Aesthetic Surgery, Fernando Ortiz-Monasterio, Mexico City</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Foundations &amp; Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Plastic Surgery Educational Foundation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://dare.org/\">D.A.R.E.</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shelter Our Sisters</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Guatemalan Pediatric Foundation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>International Surgical Relief Organizations-Healing The Children Northeast</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/spacer {\"uniqueID\":\"1275_9ef788-02\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1275_9ef788-02\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_bc897d-69\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_bcc533-1e\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_bcc533-1e kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_efe575-be\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_efe575-be wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_efe575-be\">Abraham Pathak MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_9ea497-0a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_9ea497-0a has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_9ea497-0a\">Dr. Pathak serves as one of the head plastic surgeons at the New Jersey Gynecomastia Center. Originally from Texas, he underwent training at prestigious institutions across the nation before establishing himself in New York City.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_839a10-fd\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Abraham-Pathak-MD.jpeg\",\"bgImgID\":1832,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"48% 41%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"overlayOpacity\":0,\"height\":[680,400,300],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_839a10-fd kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_a13305-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c6c511-76\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c6c511-76\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Having had the unique opportunity to train alongside prominent experts and educators in the field, Dr. Abraham Pathak has developed a fervent dedication to surgical education. His commitment extends to instructing medical students, residents, and fellows in plastic surgery, with a particular emphasis on the nuances of aesthetic procedures. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, Dr. Pathak contributes as a reviewer for numerous plastic surgery journals covering a broad spectrum of aesthetic topics. He actively participates in various regional and national meetings and has authored publications in peer-reviewed journals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Leveraging his extensive background and training, he is deeply committed to providing personalized and <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">compassionate care</a> to the diverse patient population of the New York/New Jersey area. Apart from English, Dr. Pathak is fluent in Spanish and Italian.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: <a href=\"https://www.northwestern.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">Northwestern University</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: <a href=\"https://www.brighamandwomens.org/about-bwh\" target=\"_blank\" rel=\"noreferrer noopener\">Harvard Medical School - Brigham &amp; Women\'s Hospital </a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: <a href=\"https://www.utsouthwestern.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Texas Southwestern</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Aesthetic Surgery Fellowship</strong>: <a href=\"https://meeth.northwell.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">Manhattan Eye, Ear, and Throat Hospital</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.absurgery.org/\">American Board of Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Do you want to learn more about the offerings at the New Jersey Gynecomastia Center? Check out the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">gynecomastia services</a> offered and what <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">gynecomastia costs in NJ</a> look like.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-10 17:44:27','2024-03-10 17:44:27','',1275,'https://newjerseygynecomastiacenter.com/?p=3363',0,'revision','',0),(3369,5,'2024-03-10 17:56:15','2024-03-10 17:56:15','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_7270da-37\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_d0f80a-c4\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_d0f80a-c4 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_47b6d8-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_47b6d8-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_47b6d8-85\">The New Jersey Gynecomastia Center is one of the best rated plastic surgery centers in New Jersey and serves patients from all over the tri-state area.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_255a4e-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_255a4e-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_255a4e-33\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_62d826-8b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_62d826-8b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_62d826-8b\">Hear what our patients have to say about the New Jersey Gynecomastia Center</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:quote {\"className\":\"is-style-default\"} -->\n<blockquote class=\"wp-block-quote is-style-default\"><!-- wp:paragraph -->\n<p>\"Recently had surgery with Dr. Pathak and I can’t say enough good things about him.<br><br><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> met with me for a consultation. They gave me the opportunity to voice what I wanted and gave their professional opinions.<br><br>Dr. Pathak did my <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">procedure</a> and his bedside manner is an A++. He was there to talk things through on the day of surgery and as soon as I woke up. Calling that evening and seeing me again the next day.<br><br>I am so happy with my results and have been feeling great since my procedure.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Dr. Pathak is professional, knowledgeable, and patient. I went to multiple different consults before choosing the doctor I wanted to perform my surgery. When I met him I knew he was someone I could trust. He made my feel comfortable immediately and took the time to ensure I was achieving my goal. My experience with him was phenomenal and I am very happy with the outcome. You won\'t regret going with him!\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I had an amazing experience. Best plastic surgeon. Very confident, very professional. I\'m very happy with the result. I would recommend him and his harem. He certainly knows how to choose a staff full of beautiful and sweet ladies!\"</p>\n<!-- /wp:paragraph --><cite><strong>Healthgrades</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I\'m almost 2 weeks from my <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery</a> and can\'t say enough about how wonderful Dr. Pathak and their staff (Liz, Julie, Ana to name a few of their angels) have treated me and taken care of me. They have been super attentive, helpful, addressing all my questions calmly and with real care. I recommend them wholeheartedly!!\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Amazing experience, Dr Pathak is awesome. Would recommend him to all of my family and friends.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I would have to say from the first day I got my <a href=\"https://atlantagynecomastia.com/contact/\">consultation</a> with Dr. Rosenberg I knew he was the one that was going to proceed with my surgery. Also the staff were above and beyond and very courteous and attentive to any questions I had. They answered me with ease and put my mind at ease. I would highly recommend any friends or family in the future to Dr. Rosenberg and Dr. Pathak. I was very happy with the results and I see them as family now and I am very grateful and they have changed my life!! A+++++\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I have experienced two procedures with Dr. Rosenberg and both have had fantastic results. I highly recommend his practice, a fantastic team.\"</p>\n<!-- /wp:paragraph --><cite><strong>Healthgrades</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Dr. Rosenberg is an amazing surgeon. I am very happy with my results and am so thankful to him and his staff for the wonderful care they gave me.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"You don\'t get better than Dr. Rosenberg! I researched into many surgeons before deciding on one... its not an easy decision. The second I met Dr. Rosenberg I knew he was going to be my surgeon. He thoroughly answered all my questions with true care. Walked me through every step. He has a great personality and is truly a pleasure to work with, I always looked forward to my appointments! the staff are so sweet and helpful, Your truly in hands of a skilled and professional team! most important is that I\'m so happy happy with the results! I would 100% recommend going to see Dr. Paul Rosenberg\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I\'m extremely grateful to you all! And its not just the fantastic results Dr. Rosenberg gave me, but all of your kindness throughout the process.\"</p>\n<!-- /wp:paragraph --><cite><strong>Vitals</strong></cite></blockquote>\n<!-- /wp:quote --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-10 17:56:15','2024-03-10 17:56:15','',2886,'https://newjerseygynecomastiacenter.com/?p=3369',0,'revision','',0),(3372,5,'2024-03-10 18:30:32','2024-03-10 18:30:32','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"-schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the New Jersey Gynecomastia Center to plan your free consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"NJ Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"NJ Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-10 18:30:32','2024-03-10 18:30:32','',3071,'https://newjerseygynecomastiacenter.com/?p=3372',0,'revision','',0),(3373,5,'2024-03-10 18:31:34','2024-03-10 18:31:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the New Jersey Gynecomastia Center to plan your free consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"NJ Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"NJ Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-10 18:31:34','2024-03-10 18:31:34','',3071,'https://newjerseygynecomastiacenter.com/?p=3373',0,'revision','',0),(3374,3,'2024-03-10 18:39:18','2024-03-10 18:39:18','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the New Jersey Gynecomastia Center to plan your free consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"NJ Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"NJ Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-10 18:39:18','2024-03-10 18:39:18','',3071,'https://newjerseygynecomastiacenter.com/?p=3374',0,'revision','',0),(3418,5,'2024-03-25 22:40:49','2024-03-25 22:40:49','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0ee6c0-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0ee6c0-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0ee6c0-3e\">Are you wondering whether or not you are a candidate for gynecomastia surgery? At the Atlanta Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">It can be both physically uncomfortable and emotionally challenging to have enlarged breasts. Our gynecomastia plastic surgeons understand this, and their primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of the condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we can better help make a decision that\'s right for you. At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, which is causing psychological discomfort and/or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Atlanta</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">that contribute to gynecomastia</a>. If you\'re an adult dealing with this issue, surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> Adolescent boys often encounter persistent gynecomastia during a crucial phase of physical and emotional growth. The enlargement of breast tissue can induce self-consciousness, which impacts both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions can be a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia becomes more prevalent as individuals age. This can be caused by hormonal shifts, medication usage, and age-related health issues at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> When bodybuilders incorporate supplements into their routines, they may inadvertently face gynecomastia. <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Anabolic steroid consumption</a> can disrupt the balance of testosterone and estrogen leading to enlarged breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can result in the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Atlanta Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes - it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and gland excision help shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It helps individuals live a more comfortable lifestyle without the restrictions imposed by enlarged breast tissue.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves able to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Atlanta Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery in Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are several steps to follow while starting gynecomastia surgery. Every stage aims to guarantee patient safety and satisfaction while producing the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon. During this meeting, patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. At this point, patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be for themselves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure involves a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> Before gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> Choosing the right spots for incisions in gynecomastia surgery is key to minimizing visible scars and for precisely removing excess breast tissue and fat. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat, using a mix of liposuction and surgical excision techniques. With this technique, the chest is shaped to suit the individual anatomy and aesthetic preferences, resulting in a more natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> During surgery, the chest is reshaped and sculpted, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgery nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, helping to ensure positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our gynecomastia doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, to empower each individual during their gynecomastia journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Atlanta or other nearby areas, we invite you to schedule a <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','publish','closed','closed','','gynecomastia-candidates','','','2024-03-30 22:21:09','2024-03-30 22:21:09','',0,'https://newjerseygynecomastiacenter.com/?page_id=3418',0,'page','',0),(3426,3,'2024-03-20 23:47:38','2024-03-12 22:31:04',' ','','','publish','closed','closed','','3426','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',0,'https://newjerseygynecomastiacenter.com/3426/',1,'nav_menu_item','',0),(3427,3,'2024-03-20 23:47:38','2024-03-12 22:31:04',' ','','','publish','closed','closed','','3427','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',0,'https://newjerseygynecomastiacenter.com/3427/',2,'nav_menu_item','',0),(3428,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Grades & Stages','','publish','closed','closed','','3428','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',0,'https://newjerseygynecomastiacenter.com/3428/',3,'nav_menu_item','',0),(3429,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Frequently Asked Questions','','publish','closed','closed','','3429','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',0,'https://newjerseygynecomastiacenter.com/3429/',5,'nav_menu_item','',0),(3430,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Gynecomastia Types','','publish','closed','closed','','3430','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',0,'https://newjerseygynecomastiacenter.com/3430/',6,'nav_menu_item','',0),(3431,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Adult Gynecomastia','','publish','closed','closed','','3431','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',1482,'https://newjerseygynecomastiacenter.com/3431/',7,'nav_menu_item','',0),(3432,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Adolescent Gynecomastia','','publish','closed','closed','','3432','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',1482,'https://newjerseygynecomastiacenter.com/3432/',8,'nav_menu_item','',0),(3433,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Bodybuilder Gynecomastia','','publish','closed','closed','','3433','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',1482,'https://newjerseygynecomastiacenter.com/3433/',9,'nav_menu_item','',0),(3434,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Gynecomastia Revision','','publish','closed','closed','','3434','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',1482,'https://newjerseygynecomastiacenter.com/3434/',10,'nav_menu_item','',0),(3435,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Pseudogynecomastia','','publish','closed','closed','','3435','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',1482,'https://newjerseygynecomastiacenter.com/3435/',11,'nav_menu_item','',0),(3436,3,'2024-03-20 23:47:38','2024-03-12 22:31:04','','Puffy Nipples','','publish','closed','closed','','3436','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',1482,'https://newjerseygynecomastiacenter.com/3436/',12,'nav_menu_item','',0),(3439,3,'2024-03-29 00:42:06','2024-03-12 22:34:41','','Contact Us','','publish','closed','closed','','3439','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',0,'https://newjerseygynecomastiacenter.com/3439/',1,'nav_menu_item','',0),(3440,3,'2024-03-29 00:42:06','2024-03-12 22:34:41','','Traveling from Marietta','','publish','closed','closed','','3440','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3440/',9,'nav_menu_item','',0),(3441,3,'2024-03-29 00:42:06','2024-03-12 22:34:41','','Traveling from Sandy Springs','','publish','closed','closed','','3441','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3441/',8,'nav_menu_item','',0),(3442,3,'2024-03-29 00:42:06','2024-03-12 22:34:41','','Traveling from Fulton County','','publish','closed','closed','','3442','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3442/',7,'nav_menu_item','',0),(3443,3,'2024-03-29 00:42:06','2024-03-12 22:34:41','','Traveling from Roswell','','publish','closed','closed','','3443','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3443/',6,'nav_menu_item','',0),(3444,3,'2024-03-29 00:42:06','2024-03-12 22:34:41','','Traveling from Columbus','','publish','closed','closed','','3444','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3444/',5,'nav_menu_item','',0),(3445,3,'2024-03-29 00:42:06','2024-03-12 22:34:41','','Traveling from Decatur','','publish','closed','closed','','3445','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3445/',4,'nav_menu_item','',0),(3446,3,'2024-03-29 00:42:06','2024-03-12 22:34:42','','Traveling from Alpharetta','','publish','closed','closed','','3446','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3446/',3,'nav_menu_item','',0),(3447,3,'2024-03-29 00:42:06','2024-03-12 22:34:42','','Traveling from Athens','','publish','closed','closed','','3447','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3447/',2,'nav_menu_item','',0),(3450,3,'2024-03-12 22:54:56','2024-03-12 22:35:51','','Before & After','','publish','closed','closed','','3450','','','2024-03-12 22:54:56','2024-03-12 22:54:56','',0,'https://newjerseygynecomastiacenter.com/3450/',3,'nav_menu_item','',0),(3451,3,'2024-03-12 22:54:56','2024-03-12 22:35:51','','Surgery Timeline','','publish','closed','closed','','3451','','','2024-03-12 22:54:56','2024-03-12 22:54:56','',0,'https://newjerseygynecomastiacenter.com/3451/',1,'nav_menu_item','',0),(3452,3,'2024-03-12 22:54:56','2024-03-12 22:35:51','','Cost & Insurance','','publish','closed','closed','','3452','','','2024-03-12 22:54:56','2024-03-12 22:54:56','',0,'https://newjerseygynecomastiacenter.com/3452/',2,'nav_menu_item','',0),(3453,3,'2024-03-12 22:35:51','2024-03-12 22:35:51',' ','','','publish','closed','closed','','3453','','','2024-03-12 22:35:51','2024-03-12 22:35:51','',0,'https://newjerseygynecomastiacenter.com/3453/',4,'nav_menu_item','',0),(3454,3,'2024-03-12 22:54:56','2024-03-12 22:35:51','','Reviews','','publish','closed','closed','','3454','','','2024-03-12 22:54:56','2024-03-12 22:54:56','',0,'https://newjerseygynecomastiacenter.com/3454/',5,'nav_menu_item','',0),(3457,3,'2024-03-12 22:42:07','2024-03-12 22:42:07',' ','','','publish','closed','closed','','3457','','','2024-03-12 22:42:07','2024-03-12 22:42:07','',0,'https://newjerseygynecomastiacenter.com/3457/',1,'nav_menu_item','',0),(3458,3,'2024-03-12 22:42:07','2024-03-12 22:42:07',' ','','','publish','closed','closed','','3458','','','2024-03-12 22:42:07','2024-03-12 22:42:07','',0,'https://newjerseygynecomastiacenter.com/3458/',2,'nav_menu_item','',0),(3459,5,'2024-03-29 00:41:21','2024-03-12 22:43:10','','Am I a Candidate?','','publish','closed','closed','','am-i-a-candidate','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',0,'https://newjerseygynecomastiacenter.com/?p=3459',5,'nav_menu_item','',0),(3469,3,'2024-03-20 23:47:38','2024-03-12 22:58:14','','Am I a Candidate?','','publish','closed','closed','','am-i-a-candidate-2','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',0,'https://newjerseygynecomastiacenter.com/am-i-a-candidate-2/',4,'nav_menu_item','',0),(3473,5,'2024-03-24 23:35:42','2024-03-24 23:35:42','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">Gynecomastia is characterized by enlarged male breast tissue, and it often leads to distress and self-consciousness among men. While it is commonly linked to hormonal imbalances or medical conditions, it can also affect adult males post-weight loss. In such cases, excess skin and tissue may remain, which can contribute to the appearance of enlarged breasts.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery offers a transformative solution for men after weight loss. By addressing excess tissue and restoring a more masculine chest contour, this surgical approach enhances physical appearance and empowers individuals to regain their confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by a hormonal imbalance between testosterone and estrogen, resulting in the growth of breast gland tissue in males.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the context of weight loss, gynecomastia can become more pronounced as the excess fat decreases, revealing the presence of excess breast tissue and skin. This can be particularly frustrating for men who have worked hard to shed pounds and improve their overall health, only to be left with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Impacts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Living with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> goes beyond physical discomfort as it can deeply affect a man\'s self-esteem. Enlarged breasts often trigger feelings of embarrassment and self-consciousness. This emotional burden can affect other aspects of life, including relationships, work, and overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Men who have undergone weight loss may find gynecomastia to be an unexpected setback. Despite their hard work and physical transformation, enlarged breasts undermine their sense of achievement, overshadowing progress and leaving them grappling with renewed self-doubt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also referred to as male breast reduction surgery, is a viable solution for addressing lingering issues of excess breast tissue and skin following weight loss.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This transformative procedure involves the careful removal of glandular tissue and excess skin through surgical excision. It is complemented by liposuction techniques to eliminate excess fat. The combination of these techniques results in a flatter, more defined chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you think about gynecomastia surgery, the Atlanta Gynecomastia Center offers a comprehensive approach to care. Whether through <a href=\"https://atlantagynecomastia.com/contact/\">in-person or virtual consultations</a>, our skilled surgeons assess the extent of gynecomastia, carefully review the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and aspirations</a>, and collaboratively come up with a surgical plan that produces the best outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Post Surgery Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Understanding the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">postoperative care protocol</a> and adhering to your surgeon\'s instructions is paramount for a smooth and successful recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After gynecomastia surgery, patients are advised to wear a compression garment to provide support to the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common, most individuals can resume light activities within a few days. Return to work is usually possible within a week or two, although the timeframe may vary based on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To ensure proper healing and minimize complications, it is essential to follow your surgeon\'s postoperative instructions diligently. This may include avoiding strenuous exercise and refraining from lifting heavy objects for several weeks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Regular follow-up appointments will allow your surgeon to monitor your progress closely and address any concerns that may arise during the recovery process. This collaborative approach ensures that you receive optimal care and achieve the desired outcome from your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Long Term Results</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The effects of gynecomastia surgery are typically visible right away, with further enhancements becoming evident as swelling decreases and tissue settles over time. Patients can anticipate a flatter, firmer chest contour that looks better with their overall physique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, individuals need to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercising, and avoiding factors that contribute to gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery after weight loss offers a transformative solution for men seeking to address the physical and emotional burdens of enlarged breasts. By removing excess tissue and sculpting a more masculine chest contour, this procedure can help individuals regain confidence in their appearance and embrace their newfound sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those contemplating gynecomastia surgery, it\'s crucial to seek guidance from a board-certified plastic surgeon that is an expert in male breast reduction techniques. At the Atlanta Gynecomastia Center, we stand ready to provide expert assistance and support throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Post Weight Loss Gynecomastia Surgery','','publish','closed','closed','','gynecomastia-after-weight-loss','','','2024-03-31 00:42:36','2024-03-31 00:42:36','',1482,'https://newjerseygynecomastiacenter.com/?page_id=3473',0,'page','',0),(3479,5,'2024-03-29 00:41:21','2024-03-12 23:37:01','','Post Weight Loss','','publish','closed','closed','','post-weight-loss','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1482,'https://newjerseygynecomastiacenter.com/?p=3479',14,'nav_menu_item','',0),(3480,5,'2024-03-20 23:47:38','2024-03-12 23:37:38','','Post Weight Loss','','publish','closed','closed','','post-weight-loss-2','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',1482,'https://newjerseygynecomastiacenter.com/?p=3480',13,'nav_menu_item','',0),(3481,5,'2024-03-24 23:53:10','2024-03-24 23:53:10','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors. This can be due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\", is the enlargement of breast gland tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">doctors at the Atlanta Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur. This usually includes a decrease in testosterone levels and an increase in estrogen levels. In turn, this hormonal imbalance can lead to excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging can contribute to the development of gynecomastia in older men. These can include prostate enlargement, liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can also exacerbate hormonal imbalances. These can contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia is a prevalent condition among seniors, and it can significantly impact quality of life. It\'s crucial to understand its root causes, available treatments, and associated risks for effective management. By seeking guidance from our skilled healthcare providers and <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">determining suitability for gynecomastia treatment</a>, seniors can alleviate symptoms and restore confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"As men age, the prevalence of gynecomastia increases significantly. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"As men age, the prevalence of gynecomastia increases significantly. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[\"Can gynecomastia go away on its own? \"],\"answer\":[\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"],\"jsonQuestion\":\"Can gynecomastia go away on its own? \",\"jsonAnswer\":\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">As men age, the prevalence of gynecomastia increases significantly. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\">Can gynecomastia go away on its own? </strong> <p class=\"schema-faq-answer\">In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery provides seniors with a transformative solution, offering relief from the physical and emotional burdens of enlarged breasts. Through the removal of excess tissue and the sculpting of a more masculine chest contour, this procedure lets patients reclaim confidence in their appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For seniors thinking about gynecomastia surgery, it\'s vital to seek consultation with a board-certified plastic surgeon proficient in male breast reduction procedures. At the Atlanta Gynecomastia Center, we are ready to assist you on your journey to enhanced well-being and self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery in Atlanta','','publish','closed','closed','','senior-gynecomastia','','','2024-03-31 00:53:01','2024-03-31 00:53:01','',1482,'https://newjerseygynecomastiacenter.com/?page_id=3481',0,'page','',0),(3485,5,'2024-03-20 23:47:38','2024-03-14 23:53:55','','Senior Gynecomastia','','publish','closed','closed','','senior-gynecomastia','','','2024-03-20 23:47:38','2024-03-20 23:47:38','',1482,'https://newjerseygynecomastiacenter.com/?p=3485',14,'nav_menu_item','',0),(3486,5,'2024-03-29 00:41:21','2024-03-14 23:54:37','','Senior Gynecomastia','','publish','closed','closed','','senior-gynecomastia-2','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1482,'https://newjerseygynecomastiacenter.com/?p=3486',15,'nav_menu_item','',0),(3490,3,'2024-03-25 20:17:28','2024-03-25 20:17:28','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Atlanta Gynecomastia Center is located in Atlanta, Georgia, near one of the largest airports in the country.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Georgia and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">gynecomastia surgery near Fulton County</a>, you\'ve come to the right place, as we\'re located right in the Midtown area of Atlanta. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">surgery near Sandy Springs</a> or Alpharetta, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across Georgia, as well as from further away, including Tennessee, South Carolina, Alabama, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Atlanta, Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine whether we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, and treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in ATL. The length of your stay will depend on the type of gynecomastia procedure being performed and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your overall health may also have an impact on your surgery schedule.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There\'s a major airport just a short drive from the Atlanta Gynecomastia Center if you fly into the greater Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.atl.com/\">Hartsfield-Jackson Atlanta International Airport</a></strong> (ATL): 13 miles (20 minutes by car or 30 minutes by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from the airport is to take a quick Uber, Lyft, or local taxi. The MARTA train system is a more cost effective option but typically takes slightly longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you do choose to opt for public transportation, take the Gold or Red MARTA line heading north from the airport to the Arts Center MARTA Station. Our office is a 2 minute walk from that station, right next to The Woodruff Arts Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Atlanta Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Atlanta, Georgia offers various accommodations to fit every budget. Below are some of the popular lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/atlms-atlanta-marriott-suites-midtown/overview/\" target=\"_blank\" rel=\"noreferrer noopener\">Atlanta Marriott Suites Midtown</a><br>35 14th St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.loewshotels.com/atlanta-hotel\" target=\"_blank\" rel=\"noreferrer noopener\">Loews Atlanta Hotel<br></a>1065 Peachtree St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Renaissance Atlanta Midtown Hotel</strong><br>866 W Peachtree St NW<br>Atlanta, GA 30308</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hilton Garden Inn Atlanta Midtown</strong><br>97 10th St NW<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Four Seasons Hotel Atlanta<br>75 14th St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Atlanta, Georgia for you and/or your companions to enjoy during your time in GA. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Flying Biscuit Cafe</strong>: 1001 Piedmont Ave NE, Atlanta, GA 30309</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>R. Thomas Deluxe Grill</strong>: 1812 Peachtree St NE, Atlanta, GA 30309</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Silver Skillet</strong>: 200 14th St NW, Atlanta, GA 30318</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We are conveniently located right in the Midtown area of Atlanta, near tons of exciting entertainment options. Our office is just a short drive from Mercedes-Benz Stadium and Centennial Olympic Park, two of the more famous entertainment areas in the city. Here are some excellent local entertainment options in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Piedmont Park</strong>: This gorgeous park is just a short walk from our office and features some amazing jogging paths, a farmers market, and plenty more. It\'s also home to the Atlanta Botanical Garden, an amazing 30-acres of lush plant life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Georgia Aquarium</strong>: This is one of the largest aquariums in the world just a few miles south of us, and is a great way to escape the Atlanta heat.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>SkyView Atlanta</strong>: This 20-store Ferris wheel is right in Centennial Olympic Park and is the best way to see awesome views of downtown Atlanta.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','publish','closed','closed','','out-of-town-patients','','','2024-03-27 21:21:08','2024-03-27 21:21:08','',1484,'https://newjerseygynecomastiacenter.com/?page_id=3490',0,'page','',0),(3492,5,'2024-03-15 19:28:42','2024-03-15 19:28:42','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_335385-c6\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_510fab-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_510fab-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_09ec95-c9\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_09ec95-c9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_104e28-5c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_104e28-5c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_104e28-5c\">At the New Jersey Gynecomastia Center, we\'re all about giving you top-notch care from start to finish. From your very first consultation to your recovery and beyond, we\'re here for you every step of the way. We\'re honored to be entrusted with your care, and we take that responsibility seriously. Our team, led by board-certified gynecomastia plastic surgeon specialists, is dedicated to providing the absolute best in patient care and outcomes. We understand that every person is unique, so we tailor our approach to suit your individual needs. Got questions? Ready to schedule your in-person or virtual consultation? Don\'t hesitate to reach out to the New Jersey Gynecomastia Center today. We\'re here to help!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center<br></a>1567 Palisade Avenue #3A<br>Fort Lee, New Jersey 07024<br>(551) 201-1110</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-15 19:28:42','2024-03-15 19:28:42','',2069,'https://newjerseygynecomastiacenter.com/?p=3492',0,'revision','',0),(3517,5,'2024-03-15 19:39:52','2024-03-15 19:39:52','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_a9a50c-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_a9a50c-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_a9a50c-56\">Gynecomastia, a condition characterized by enlarged male breast tissue, can cause distress and self-consciousness in many men.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">While it\'s often associated with hormonal imbalances during puberty or certain medical conditions, it can also be found in adult males, particularly those who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery after weight loss offers a solution for men seeking to address this issue and regain confidence in their appearance.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the New Jersey Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia and Its Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by an imbalance between the hormones testosterone and estrogen, resulting in the growth of breast gland tissue in males. While it can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the context of weight loss, gynecomastia can become more pronounced as the excess fat decreases, revealing the presence of excess breast tissue and skin. This can be particularly frustrating for men who have worked hard to shed pounds and improve their overall health, only to be left with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">The Impact of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The presence of enlarged breasts can have a significant impact on a man\'s self-esteem and body image. Many individuals may feel self-conscious or embarrassed about their appearance. This can lead to feelings of insecurity and avoidance of certain social or intimate situations. This can ultimately affect various aspects of life, including relationships, work, and overall quality of health.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For men who have undergone weight loss, dealing with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> can be especially disheartening. It may detract from the sense of achievement and satisfaction associated with their weight loss journey. Despite the physical transformation, the presence of enlarged breasts can overshadow the progress and undermine confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Considering Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also known as male breast reduction surgery, offers a permanent solution for addressing the excess breast tissue and skin that remain after weight loss. This procedure involves the removal of glandular tissue and excess skin through surgical excision and the removal of excess fat through liposuction techniques. This results in a flatter, more masculine chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you consider gynecomastia surgery, you can <a href=\"https://atlantagynecomastia.com/contact/\">book an in person or virtual evaluation</a> at the NJ Gynecomastia Center. During the consultation, our surgeons will assess the extent of gynecomastia, discuss the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and goals</a>, and outline the surgical approach best suited to achieve optimal results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">The Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery is typically performed under general anesthesia on an outpatient basis, meaning patients can return home the same day. The procedure may involve a combination of liposuction to remove excess fat and surgical excision to address glandular tissue and loose skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Through small incisions strategically placed around the areola or in the natural creases of the chest, the surgeon can access the underlying tissues and reshape the chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the NJ Gynecomastia Center, we have a private ambulatory surgery center on-site, which is accredited by the Joint Commission.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Postoperative Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Following gynecomastia surgery, patients will be advised to wear a compression garment to support the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common, most individuals can resume light activities within a few days. They can then return to work within a week or two, depending on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to follow our surgeon\'s postoperative instructions diligently. This may include avoiding strenuous exercise and lifting heavy objects for several weeks to ensure proper healing. Regular follow-up appointments will allow the surgeon to monitor progress and address any concerns that may arise during the recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Results and Long-Term Satisfaction</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The results of gynecomastia surgery are typically evident immediately. Further improvements become apparent as swelling subsides and the tissues settle over time. Patients can expect a flatter, firmer chest contour that is more proportionate to their overall physique, enhancing their appearance and confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, it\'s essential for individuals to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercise, and avoiding factors that may contribute to gynecomastia recurrence, such as certain medications or steroid use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Reach Out Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery after weight loss offers a transformative solution for men seeking to address the physical and emotional burdens of enlarged breasts. By removing excess tissue and sculpting a more masculine chest contour, this procedure can help individuals regain confidence in their appearance and embrace their newfound sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those considering gynecomastia surgery, it\'s essential to consult with a board-certified plastic surgeon experienced in male breast reduction procedures. And here at the New Jersey Gynecomastia Center, we are here to help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery After Weight Loss','','inherit','closed','closed','','3473-revision-v1','','','2024-03-15 19:39:52','2024-03-15 19:39:52','',3473,'https://newjerseygynecomastiacenter.com/?p=3517',0,'revision','',0),(3518,5,'2024-03-15 19:40:13','2024-03-15 19:40:13','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_7270da-37\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_d0f80a-c4\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_d0f80a-c4 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_47b6d8-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_47b6d8-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_47b6d8-85\">The New Jersey Gynecomastia Center is one of the best rated plastic surgery centers in New Jersey and serves patients from all over the tri-state area.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_255a4e-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_255a4e-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_255a4e-33\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Rosenberg and Dr. Pathak to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_62d826-8b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_62d826-8b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_62d826-8b\">Hear what our patients have to say about the New Jersey Gynecomastia Center</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:quote {\"className\":\"is-style-default\"} -->\n<blockquote class=\"wp-block-quote is-style-default\"><!-- wp:paragraph -->\n<p>\"Recently had surgery with Dr. Pathak and I can’t say enough good things about him.<br><br><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> met with me for a consultation. They gave me the opportunity to voice what I wanted and gave their professional opinions.<br><br>Dr. Pathak did my <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">procedure</a> and his bedside manner is an A++. He was there to talk things through on the day of surgery and as soon as I woke up. Calling that evening and seeing me again the next day.<br><br>I am so happy with my results and have been feeling great since my procedure.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Dr. Pathak is professional, knowledgeable, and patient. I went to multiple different consults before choosing the doctor I wanted to perform my surgery. When I met him I knew he was someone I could trust. He made my feel comfortable immediately and took the time to ensure I was achieving my goal. My experience with him was phenomenal and I am very happy with the outcome. You won\'t regret going with him!\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I had an amazing experience. Best plastic surgeon. Very confident, very professional. I\'m very happy with the result. I would recommend him and his harem. He certainly knows how to choose a staff full of beautiful and sweet ladies!\"</p>\n<!-- /wp:paragraph --><cite><strong>Healthgrades</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I\'m almost 2 weeks from my <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery</a> and can\'t say enough about how wonderful Dr. Pathak and their staff (Liz, Julie, Ana to name a few of their angels) have treated me and taken care of me. They have been super attentive, helpful, addressing all my questions calmly and with real care. I recommend them wholeheartedly!!\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Amazing experience, Dr Pathak is awesome. Would recommend him to all of my family and friends.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I would have to say from the first day I got my <a href=\"https://atlantagynecomastia.com/contact/\">consultation</a> with Dr. Rosenberg I knew he was the one that was going to proceed with my surgery. Also the staff were above and beyond and very courteous and attentive to any questions I had. They answered me with ease and put my mind at ease. I would highly recommend any friends or family in the future to Dr. Rosenberg and Dr. Pathak. I was very happy with the results and I see them as family now and I am very grateful and they have changed my life!! A+++++\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I have experienced two procedures with Dr. Rosenberg and both have had fantastic results. I highly recommend his practice, a fantastic team.\"</p>\n<!-- /wp:paragraph --><cite><strong>Healthgrades</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Dr. Rosenberg is an amazing surgeon. I am very happy with my results and am so thankful to him and his staff for the wonderful care they gave me.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"You don\'t get better than Dr. Rosenberg! I researched into many surgeons before deciding on one... its not an easy decision. The second I met Dr. Rosenberg I knew he was going to be my surgeon. He thoroughly answered all my questions with true care. Walked me through every step. He has a great personality and is truly a pleasure to work with, I always looked forward to my appointments! the staff are so sweet and helpful, Your truly in hands of a skilled and professional team! most important is that I\'m so happy happy with the results! I would 100% recommend going to see Dr. Paul Rosenberg\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I\'m extremely grateful to you all! And its not just the fantastic results Dr. Rosenberg gave me, but all of your kindness throughout the process.\"</p>\n<!-- /wp:paragraph --><cite><strong>Vitals</strong></cite></blockquote>\n<!-- /wp:quote --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-15 19:40:13','2024-03-15 19:40:13','',2886,'https://newjerseygynecomastiacenter.com/?p=3518',0,'revision','',0),(3522,5,'2024-03-15 19:43:47','2024-03-15 19:43:47','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the New Jersey Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia refers to the development of enlarged breast gland tissue in males. It is caused by an imbalance in the hormones estrogen and testosterone, leading to the proliferation of glandular breast tissue. This condition can manifest as a small amount of <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">extra tissue around the nipples</a> or as significant breast enlargement, resembling female breasts. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">doctors at the New Jersey Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>How Aging Affects Me</strong>n</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, hormonal fluctuations become more common, which can contribute to the development of gynecomastia. Testosterone levels naturally decline with age, while estrogen levels may remain relatively stable or even increase due to factors such as excess body fat and decreased liver function. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medications commonly prescribed to seniors, such as hormone therapies, antidepressants, and antiandrogens, can further disrupt hormonal balance and increase the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, age-related health conditions such as hypogonadism, liver disease, and thyroid disorders can also predispose seniors to gynecomastia. These underlying medical issues can interfere with hormone metabolism and secretion, exacerbating hormonal imbalances and promoting breast tissue growth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are just a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In seniors, conservative approaches such as lifestyle modifications and medication adjustments may be initially recommended to address underlying hormonal imbalances and minimize breast tissue enlargement. Weight management through diet and exercise can also help reduce excess fat deposits and alleviate gynecomastia symptoms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, for seniors who experience significant discomfort or psychological distress due to gynecomastia, surgical intervention may be considered. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Surgical procedures such as liposuction, excision of gland tissue, or a combination of both can effectively remove excess breast tissue and reshape the chest contours. These procedures are performed by our board-certified plastic surgeons with expertise in gynecomastia correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While surgical intervention can provide satisfactory outcomes for many seniors with gynecomastia, it is essential to be aware of the potential risks and complications associated with these procedures.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to undergoing gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"Gynecomastia becomes more prevalent with age, affecting approximately one-third of older men. It is often attributed to hormonal changes, medication use, and age-related health conditions.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"Gynecomastia becomes more prevalent with age, affecting approximately one-third of older men. It is often attributed to hormonal changes, medication use, and age-related health conditions.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[{\"type\":\"em\",\"props\":{\"children\":[\"Can gynecomastia go away on its own? \"]}}],\"answer\":[\"In some cases, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia usually requires medical intervention to address underlying causes and alleviate symptoms.\"],\"jsonQuestion\":\"\\u003cem\\u003eCan gynecomastia go away on its own? \\u003c/em\\u003e\",\"jsonAnswer\":\"In some cases, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia usually requires medical intervention to address underlying causes and alleviate symptoms.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments such as hormone therapy, medication adjustments, and lifestyle modifications may be effective in managing gynecomastia symptoms, particularly in seniors with mild to moderate cases. However, these approaches may not provide permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments such as hormone therapy, medication adjustments, and lifestyle modifications may be effective in managing gynecomastia symptoms, particularly in seniors with mild to moderate cases. However, these approaches may not provide permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Seniors can expect some discomfort, swelling, and bruising in the initial weeks after surgery, with gradual improvement over several months. It is essential to follow post-operative instructions provided by the surgeon and attend follow-up appointments for optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Seniors can expect some discomfort, swelling, and bruising in the initial weeks after surgery, with gradual improvement over several months. It is essential to follow post-operative instructions provided by the surgeon and attend follow-up appointments for optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery is generally safe and well-tolerated, long-term complications such as scarring, changes in nipple sensation, and asymmetry may occur in some cases. Seniors should discuss potential risks and outcomes with our surgeon before undergoing any surgical procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery is generally safe and well-tolerated, long-term complications such as scarring, changes in nipple sensation, and asymmetry may occur in some cases. Seniors should discuss potential risks and outcomes with our surgeon before undergoing any surgical procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">Gynecomastia becomes more prevalent with age, affecting approximately one-third of older men. It is often attributed to hormonal changes, medication use, and age-related health conditions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\"><em>Can gynecomastia go away on its own? </em></strong> <p class=\"schema-faq-answer\">In some cases, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia usually requires medical intervention to address underlying causes and alleviate symptoms.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments such as hormone therapy, medication adjustments, and lifestyle modifications may be effective in managing gynecomastia symptoms, particularly in seniors with mild to moderate cases. However, these approaches may not provide permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Seniors can expect some discomfort, swelling, and bruising in the initial weeks after surgery, with gradual improvement over several months. It is essential to follow post-operative instructions provided by the surgeon and attend follow-up appointments for optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery is generally safe and well-tolerated, long-term complications such as scarring, changes in nipple sensation, and asymmetry may occur in some cases. Seniors should discuss potential risks and outcomes with our surgeon before undergoing any surgical procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia is a common and often bothersome condition that affects many seniors. Understanding the underlying causes, treatment options, and associated risks is essential for effectively managing gynecomastia and improving quality of life in older men. By consulting with our qualified healthcare professionals and understanding if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gyno candidate</a>, seniors can address gynecomastia symptoms and regain confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Reach Out Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for seniors offers a transformative solution for men looking to address the physical and emotional challenges of enlarged breasts. By removing excess tissue and sculpting a more masculine chest contour, this procedure can help individuals regain confidence in their appearance and embrace their newfound sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those seniors considering gynecomastia surgery, it\'s essential to consult with a board-certified plastic surgeon experienced in male breast reduction procedures. And at the New Jersey Gynecomastia Center, we are here to help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery','','inherit','closed','closed','','3481-revision-v1','','','2024-03-15 19:43:47','2024-03-15 19:43:47','',3481,'https://newjerseygynecomastiacenter.com/?p=3522',0,'revision','',0),(3525,5,'2024-03-15 19:48:27','2024-03-15 19:48:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_7270da-37\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_d0f80a-c4\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_d0f80a-c4 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_47b6d8-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_47b6d8-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_47b6d8-85\">The New Jersey Gynecomastia Center is one of the best rated plastic surgery centers in New Jersey and serves patients from all over the tri-state area.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_255a4e-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_255a4e-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_255a4e-33\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Rosenberg and Dr. Pathak to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also get started with some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>, and better understand <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">if you are a gyno candidate</a> to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_62d826-8b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_62d826-8b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_62d826-8b\">Hear what our patients have to say about the New Jersey Gynecomastia Center</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:quote {\"className\":\"is-style-default\"} -->\n<blockquote class=\"wp-block-quote is-style-default\"><!-- wp:paragraph -->\n<p>\"Recently had surgery with Dr. Pathak and I can’t say enough good things about him.<br><br><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> met with me for a consultation. They gave me the opportunity to voice what I wanted and gave their professional opinions.<br><br>Dr. Pathak did my <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">procedure</a> and his bedside manner is an A++. He was there to talk things through on the day of surgery and as soon as I woke up. Calling that evening and seeing me again the next day.<br><br>I am so happy with my results and have been feeling great since my procedure.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Dr. Pathak is professional, knowledgeable, and patient. I went to multiple different consults before choosing the doctor I wanted to perform my surgery. When I met him I knew he was someone I could trust. He made my feel comfortable immediately and took the time to ensure I was achieving my goal. My experience with him was phenomenal and I am very happy with the outcome. You won\'t regret going with him!\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I had an amazing experience. Best plastic surgeon. Very confident, very professional. I\'m very happy with the result. I would recommend him and his harem. He certainly knows how to choose a staff full of beautiful and sweet ladies!\"</p>\n<!-- /wp:paragraph --><cite><strong>Healthgrades</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I\'m almost 2 weeks from my <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery</a> and can\'t say enough about how wonderful Dr. Pathak and their staff (Liz, Julie, Ana to name a few of their angels) have treated me and taken care of me. They have been super attentive, helpful, addressing all my questions calmly and with real care. I recommend them wholeheartedly!!\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Amazing experience, Dr Pathak is awesome. Would recommend him to all of my family and friends.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I would have to say from the first day I got my <a href=\"https://atlantagynecomastia.com/contact/\">consultation</a> with Dr. Rosenberg I knew he was the one that was going to proceed with my surgery. Also the staff were above and beyond and very courteous and attentive to any questions I had. They answered me with ease and put my mind at ease. I would highly recommend any friends or family in the future to Dr. Rosenberg and Dr. Pathak. I was very happy with the results and I see them as family now and I am very grateful and they have changed my life!! A+++++\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I have experienced two procedures with Dr. Rosenberg and both have had fantastic results. I highly recommend his practice, a fantastic team.\"</p>\n<!-- /wp:paragraph --><cite><strong>Healthgrades</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"Dr. Rosenberg is an amazing surgeon. I am very happy with my results and am so thankful to him and his staff for the wonderful care they gave me.\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"You don\'t get better than Dr. Rosenberg! I researched into many surgeons before deciding on one... its not an easy decision. The second I met Dr. Rosenberg I knew he was going to be my surgeon. He thoroughly answered all my questions with true care. Walked me through every step. He has a great personality and is truly a pleasure to work with, I always looked forward to my appointments! the staff are so sweet and helpful, Your truly in hands of a skilled and professional team! most important is that I\'m so happy happy with the results! I would 100% recommend going to see Dr. Paul Rosenberg\"</p>\n<!-- /wp:paragraph --><cite><strong>Google</strong></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>\"I\'m extremely grateful to you all! And its not just the fantastic results Dr. Rosenberg gave me, but all of your kindness throughout the process.\"</p>\n<!-- /wp:paragraph --><cite><strong>Vitals</strong></cite></blockquote>\n<!-- /wp:quote --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-15 19:48:27','2024-03-15 19:48:27','',2886,'https://newjerseygynecomastiacenter.com/?p=3525',0,'revision','',0),(3538,5,'2024-03-15 20:06:07','2024-03-15 20:06:07','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_77c2b8-8a\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_9184ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_9184ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_d5eee7-83\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_d5eee7-83 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_d5eee7-83\">Gynecomastia is a common condition characterized by the enlargement of breast tissue in males due to hormonal imbalances. While not typically harmful, understanding its causes, symptoms, and available treatments is essential for individuals affected by this condition.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_0a6a6f-36\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_0a6a6f-36 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_0a6a6f-36\">Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_ac90e4-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_ac90e4-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_ac90e4-18\">At the New Jersey Gynecomastia Center, we offer compassionate care and personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments tailored to meet your needs, ensuring your comfort and confidence throughout your journey to wellness. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_4da688-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_4da688-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_4da688-a3\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_f502d3-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8abbd4-3b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8abbd4-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Understand Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, or \'gyno,\' is the development of excess breast gland tissue in men. Although there are a variety of contributing factors, it often is a result of hormonal imbalance. This imbalance is generally between estrogen and testosterone. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>This imbalance can occur due to factors like puberty, aging, certain medications, health conditions, substance abuse, or nutritional imbalances. Treatment depends on the underlying cause and severity, which can range to surgical intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Even though it is not a dangerous condition, it may be painful and very often causes significant embarrassment and psychological distress. Therefore, almost all men suffering from it prioritize seeking treatment. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The New Jersey Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3376,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_bdb067-7a\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_bdb067-7a size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Male-Breast-Reduction-1024x829.jpg\" alt=\"Gynecomastia Male Breast Reduction\" class=\"kb-img wp-image-3376\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_256648-ce\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_ea3191-51\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_ea3191-51\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common Gyno causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more by checking out the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> overview.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_514a59-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_97db91-40\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_97db91-40\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Not all gynecomastia is the same. Four stages range in severity from grade 1 (mild) to grade 4 (severe). Each stage has several characteristics that distinguish it from the other grades. The treatments for each grade also differ, with stage 4 treatment requiring a very different surgical approach in comparison to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this topic.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3375,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_447da6-9f\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_447da6-9f size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-of-Gynecomastia-Male-Chest-1024x586.jpg\" alt=\"Stages of Gynecomastia Male Chest\" class=\"kb-img wp-image-3375\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_714df7-27\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_58a29e-e8\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_58a29e-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">While true gynecomastia is due to excess breast gland tissue, there is often also extra fatty tissue associated with gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong>When there is only extra fatty tissue but no extra gland tissue, this is referred to as <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">This second condition is ‘pseudo’ because it’s not actually breast gland gynecomastia. Instead, it’s simply the build-up of excess chest fat. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Pseudogynecomastia may superficially resemble gynecomastia and still cause \"man boobs\", but since it’s merely fat, it can sometimes be improved with lifestyle changes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">However, it often can persist, and surgical treatment primarily with liposuction is often indicated. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. A <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues if that is the case. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The surgery involves both excising the extra breast gland tissue, as well as liposuction of the extra fatty tissue. To better understand what is causing your gynecomastia, be sure to schedule a visit at the New Jersey Gynecomastia Center to talk through potential solutions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3377,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_b21ad9-b7\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_b21ad9-b7 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs-Pseudogynecomastia-New-Jersey-1024x576.jpg\" alt=\"Gynecomastia vs Pseudogynecomastia New Jersey\" class=\"kb-img wp-image-3377\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia can be a distressing condition, it\'s important to remember that effective treatment options are available. At the New Jersey Gynecomastia Center, our experienced doctors specialize in providing comprehensive care tailored to each individual\'s needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re seeking medical advice, considering surgical intervention, or simply looking for guidance, our team is here to support you every step of the way. Don\'t let gynecomastia hold you back from living your best life. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-15 20:06:07','2024-03-15 20:06:07','',1511,'https://newjerseygynecomastiacenter.com/?p=3538',0,'revision','',0),(3559,3,'2024-03-29 00:41:21','2024-03-15 20:19:13',' ','','','publish','closed','closed','','3559','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://newjerseygynecomastiacenter.com/3559/',31,'nav_menu_item','',0),(3560,3,'2024-03-29 00:42:06','2024-03-15 20:19:13',' ','','','publish','closed','closed','','3560','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://newjerseygynecomastiacenter.com/3560/',11,'nav_menu_item','',0),(3562,5,'2024-03-15 20:19:53','2024-03-15 20:19:53','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder suffering from gynecomastia? If so, surgery may be an option for you. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_6ed5b8-0e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_6ed5b8-0e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_6ed5b8-0e\">The New Jersey Gynecomastia Center is your trusted destination for comprehensive solutions for bodybuilder gynecomastia. Our dedicated team of specialists is committed to addressing the unique concerns and needs of bodybuilders facing this condition. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this overview, we\'ll explore what bodybuilder gynecomastia entails, its underlying causes, symptoms, surgical procedures, post-operative care, and address some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gyno questions</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the New Jersey Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding Bodybuilder Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia is a condition characterized by the development of enlarged breast tissue in male bodybuilders. This enlargement is often attributed to the use of <a href=\"https://www.webmd.com/men/anabolic-steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones, which disrupt the natural hormonal balance in the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain supplements marketed to bodybuilders may contain undisclosed steroid or hormone-like ingredients, further contributing to gynecomastia development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The resulting imbalance can lead to the proliferation of glandular tissue beneath the areola, causing the characteristic appearance of enlarged male breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Exploring the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of gynecomastia</a> in bodybuilders is the use of anabolic steroids or prohormones, which are frequently employed to enhance muscle growth and performance. These synthetic hormones mimic the effects of testosterone, leading to an imbalance between estrogen and testosterone levels in the body. As a result, breast tissue may proliferate, leading to the development of gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes the patient may be well aware that they are taking these substances. In other instances, they may be taking some “supplement,” unaware that it contains steroids, prohormones, or hormone-like ingredients.&nbsp; Such substances can result in the development of gynecomastia which can persist even after the causative substances are discontinued.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recognizing the Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Symptoms of bodybuilder gynecomastia typically include the presence of firm breast tissue beneath the areola, which may be accompanied by tenderness or sensitivity (similar to standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilders affected by gynecomastia often experience psychological distress and a decrease in self-esteem due to the appearance of enlarged breasts. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In severe cases, gynecomastia may result in asymmetry, discomfort, or nipple discharge. Early recognition and intervention are crucial for addressing gynecomastia effectively and restoring a more masculine chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery in bodybuilders typically involves a combination of liposuction and direct excision of glandular tissue to achieve optimal results. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the procedure, excess fatty tissue is removed via liposuction, utilizing specialized techniques to sculpt the chest and enhance definition. Subsequently, direct excision of glandular tissue is performed through a discreet incision placed at the lower edge of the areola, ensuring minimal scarring and a natural aesthetic outcome. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This procedure is performed under general anesthesia, with most patients able to return home on the same day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgical Recovery and Expectations</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Following <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders can expect some degree of swelling, bruising, and discomfort, which gradually subsides over the ensuing weeks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A compression garment is worn to support the chest and minimize swelling, promoting optimal healing and contour refinement. It is essential to avoid strenuous upper body activities, including weightlifting, for approximately four to six weeks to prevent complications and facilitate proper tissue healing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While individual recovery experiences may vary, most patients can resume non-strenuous activities within a few days and gradually transition back to their regular exercise routine under the guidance of our surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the New Jersey Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":2139,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Gynecomastia-Surgery-Before-and-After-21-1024x1024.png\" alt=\"Gynecomastia Surgery Before and After 21\" class=\"wp-image-2139\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"The incisions used in gynecomastia surgery are strategically placed to minimize visibility. Over time, scars tend to fade and become less noticeable, allowing for a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"The incisions used in gynecomastia surgery are strategically placed to minimize visibility. Over time, scars tend to fade and become less noticeable, allowing for a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"It is recommended to refrain from strenuous upper body activities, including weightlifting, for approximately four to six weeks following surgery to ensure proper healing and reduce the risk of complications.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"It is recommended to refrain from strenuous upper body activities, including weightlifting, for approximately four to six weeks following surgery to ensure proper healing and reduce the risk of complications.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery provides long-lasting results, with the majority of patients experiencing permanent improvement in chest contour and appearance. However, maintaining a stable weight and avoiding future steroid or hormone use is essential to preserving the outcome.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery provides long-lasting results, with the majority of patients experiencing permanent improvement in chest contour and appearance. However, maintaining a stable weight and avoiding future steroid or hormone use is essential to preserving the outcome.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance inquiries and financing options\"]}},\" to facilitate access to treatment.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance inquiries and financing options\\u003c/a\\u003e to facilitate access to treatment.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"While gynecomastia recurrence is rare, it is essential to maintain a healthy lifestyle and avoid factors known to contribute to its development, such as steroid or hormone use, to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"While gynecomastia recurrence is rare, it is essential to maintain a healthy lifestyle and avoid factors known to contribute to its development, such as steroid or hormone use, to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Initial results of gynecomastia surgery are visible immediately following the procedure, with continued improvement as swelling subsides and tissues settle over the ensuing weeks and months.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Initial results of gynecomastia surgery are visible immediately following the procedure, with continued improvement as swelling subsides and tissues settle over the ensuing weeks and months.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"Post-operative care typically involves wearing a compression garment as directed by your surgeon, attending follow-up appointments for monitoring, and adhering to activity restrictions to promote optimal healing and outcomes.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"Post-operative care typically involves wearing a compression garment as directed by your surgeon, attending follow-up appointments for monitoring, and adhering to activity restrictions to promote optimal healing and outcomes.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Yes, gynecomastia surgery can be combined with other aesthetic procedures, such as liposuction or abdominoplasty, to address additional concerns and achieve comprehensive body contouring results. Your surgeon will assess your candidacy for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Yes, gynecomastia surgery can be combined with other aesthetic procedures, such as liposuction or abdominoplasty, to address additional concerns and achieve comprehensive body contouring results. Your surgeon will assess your candidacy for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">The incisions used in gynecomastia surgery are strategically placed to minimize visibility. Over time, scars tend to fade and become less noticeable, allowing for a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">It is recommended to refrain from strenuous upper body activities, including weightlifting, for approximately four to six weeks following surgery to ensure proper healing and reduce the risk of complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery provides long-lasting results, with the majority of patients experiencing permanent improvement in chest contour and appearance. However, maintaining a stable weight and avoiding future steroid or hormone use is essential to preserving the outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance inquiries and financing options</a> to facilitate access to treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence is rare, it is essential to maintain a healthy lifestyle and avoid factors known to contribute to its development, such as steroid or hormone use, to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Initial results of gynecomastia surgery are visible immediately following the procedure, with continued improvement as swelling subsides and tissues settle over the ensuing weeks and months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">Post-operative care typically involves wearing a compression garment as directed by your surgeon, attending follow-up appointments for monitoring, and adhering to activity restrictions to promote optimal healing and outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Yes, gynecomastia surgery can be combined with other aesthetic procedures, such as liposuction or abdominoplasty, to address additional concerns and achieve comprehensive body contouring results. Your surgeon will assess your candidacy for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Additional Information</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, we are committed to providing personalized care and tailored treatment plans to address the specific needs and goals of bodybuilders facing gynecomastia. Our experienced team of specialists utilizes state-of-the-art techniques and advanced technologies to deliver safe, effective, and natural-looking results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the New Jersey Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center covers the tri state area and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And More!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'t worry if you are situated further away from Fort Lee. It is also possible to arrange a virtual consultation for steroid induced gynecomastia, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Bodybuilder Gynecomastia Surgery','','inherit','closed','closed','','1911-revision-v1','','','2024-03-15 20:19:53','2024-03-15 20:19:53','',1911,'https://newjerseygynecomastiacenter.com/?p=3562',0,'revision','',0),(3564,5,'2024-03-15 20:21:06','2024-03-15 20:21:06','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_077252-0c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_077252-0c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_077252-0c\">Puffy nipple, a variation of gynecomastia, refers to the enlargement of the nipples and the surrounding areolae. It\'s sometimes referred to as \"Puffy Nipple Syndrome\" or \"Puffy Nipple-Areola Complex\". Although less prominent than typical gynecomastia, it can still cause significant distress for those affected.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Puffy Nipples</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy Nipples, a condition often overlooked or misunderstood, can stem from various underlying causes. One primary factor contributing to the development of puffy nipples is the accumulation of excess breast or fatty tissue beneath the nipple area. This surplus tissue results in a protrusion and a dome-like appearance of the areola, characteristic of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances play a significant role in the emergence of puffy nipples, much like they do in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">traditional gynecomastia</a>. Elevated levels of estrogen or decreased levels of testosterone, are often implicated. These hormonal disruptions can stimulate dormant breast glands in males, leading to the development of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, puffy nipples are not exclusive to adults as they can also manifest in male children, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">particularly during infancy and adolescence</a>. During these developmental stages, hormonal fluctuations are common, and the delicate balance between estrogen and testosterone can be disrupted, potentially resulting in the enlargement of breast tissue and the onset of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Exploring the multifaceted nature of puffy nipples reveals a complex interplay of genetic predispositions, hormonal dynamics, and developmental factors. Understanding these underlying mechanisms is crucial for accurate diagnosis and effective treatment strategies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Distinguishing Puffy Nipple from Regular Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Distinguishing puffy nipples from traditional gynecomastia, particularly its milder forms, such as grade 1 gynecomastia, is essential for tailored treatment approaches. While both conditions involve the enlargement of male breast tissue, they exhibit nuanced differences that inform their management.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, resembling a milder form of gynecomastia, typically present with a localized puffiness and dome-like appearance of the nipple-areola complex. This characteristic feature distinguishes puffy nipples from more extensive breast enlargement seen in advanced stages of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Options for Puffy Nipple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, surgical interventions may be considered. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Suitable for cases primarily caused by excess fatty tissue behind the nipple. Liposuction involves mechanically agitating fat cells before removing them with a cannula.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: Recommended if puffy nipples result from excess breast gland tissue behind the nipple/areola. Removal of breast tissue, including the breast gland, is performed to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: This comprehensive procedure removes both excess fat tissue and the breast gland, offering optimal post-surgery aesthetics.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the New Jersey Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs about Puffy Nipple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size. Seeking medical advice is essential for accurate diagnosis and personalized treatment plans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery. If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery. If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Generally, they don’t. If your nipples have become bigger, then chances are it’s gynecomastia or Puffy Nipple Syndrome. It’s therefore a good idea to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\",\"children\":[\"consult our doctors\"]}},\" as soon as possible.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Generally, they don’t. If your nipples have become bigger, then chances are it’s gynecomastia or Puffy Nipple Syndrome. It’s therefore a good idea to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\\u0022\\u003econsult our doctors\\u003c/a\\u003e as soon as possible.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"If you are a runner or engage in strenuous physical activity, your nipples may be chafing against your clothing. It’s also possible that you’re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, it’s a good idea to see our gynecomastia doctor specialists and get a definitive diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"If you are a runner or engage in strenuous physical activity, your nipples may be chafing against your clothing. It’s also possible that you’re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, it’s a good idea to see our gynecomastia doctor specialists and get a definitive diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"This is a difficult question to answer, as everybody is different and has different nipples/areolae. That said, nipples should be about 2cm long, and the areola should be 2.5-3cm in diameter.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"This is a difficult question to answer, as everybody is different and has different nipples/areolae. That said, nipples should be about 2cm long, and the areola should be 2.5-3cm in diameter.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery. If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Generally, they don’t. If your nipples have become bigger, then chances are it’s gynecomastia or Puffy Nipple Syndrome. It’s therefore a good idea to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">consult our doctors</a> as soon as possible.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">If you are a runner or engage in strenuous physical activity, your nipples may be chafing against your clothing. It’s also possible that you’re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, it’s a good idea to see our gynecomastia doctor specialists and get a definitive diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">This is a difficult question to answer, as everybody is different and has different nipples/areolae. That said, nipples should be about 2cm long, and the areola should be 2.5-3cm in diameter.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipples Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Though Puffy Nipple Syndrome can be psychologically upsetting, there are plenty of treatments available to those affected. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether making changes to your diet or committing to a new exercise routine (preferably both), it’s perfectly possible to fight back against a case of puffy nipples and change your appearance for the better. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And even if it’s a stubborn case, surgical procedures for puffy nipples are always available – and extremely effective.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center covers the tri state area and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And More!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'t worry if you are situated further away from Fort Lee. It is also possible to arrange a virtual consultation for puffy nipple gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples: Causes & Treatment','','inherit','closed','closed','','2668-revision-v1','','','2024-03-15 20:21:06','2024-03-15 20:21:06','',2668,'https://newjerseygynecomastiacenter.com/?p=3564',0,'revision','',0),(3574,5,'2024-03-15 21:17:47','2024-03-15 21:17:47','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">During puberty in boys, changes in the natural production of testosterone and estrogen can result in gynecomastia or an enlarged male breast. In many cases, surgery can be the best option to address this issue if the gyno does not resolve on its own. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the New Jersey Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adolescent Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puberty marks a significant phase of physical and hormonal changes in boys. It\'s during this time that shifts in testosterone and estrogen levels can lead to the development of gynecomastia, a condition characterized by enlarged male breast tissue. While many cases of adolescent gynecomastia resolve on their own, some may require intervention, such as surgery, to address persistent symptoms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, we specialize in providing comprehensive care for individuals dealing with adolescent gynecomastia. Our team of expert gynecomastia specialists understands the unique concerns and challenges faced by adolescents dealing with this condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescent gynecomastia often manifests as a small lump under the nipple, which may be accompanied by tenderness or discomfort. In some cases, there may be a noticeable enlargement of the breast tissue. This condition typically emerges during early puberty, occurring most commonly between the ages of 10 to 13.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological impact of adolescent gynecomastia cannot be overlooked. Teenagers experiencing this condition often grapple with low self-esteem and may go to great lengths to conceal their chests, avoiding activities such as swimming or participating in sports. Many suffer on their own, hesitant to discuss their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence, affecting up to a third of cases, may necessitate surgical intervention to alleviate both physical and emotional distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Deciding on Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While some cases of adolescent gynecomastia may resolve over time, surgery becomes a viable option when the condition persists and significantly impacts the individual\'s quality of life. Contrary to common misconceptions, <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> alone are often insufficient to address true cases of gynecomastia, particularly when excess glandular tissue is present.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, our experienced gynecomastia surgeons can assess the severity of the condition and determine the most appropriate course of action <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">given your candidacy</a>. We understand the sensitivity of addressing gynecomastia in teenagers and provide personalized care tailored to each individual\'s needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Surgery: What to Expect</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Similar to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult surgery</a>, the exact surgical procedure depends on the nature of the gynecomastia. As with most cases of gynecomastia, adolescent gynecomastia presents with an excess of gland tissue, as well as fatty tissue, in various amounts. In some cases, the problem involves only excess gland tissue. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The operation to treat the gynecomastia may therefore involve a combination of <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove the excess fatty tissue, as well as direct excision of the excess gland tissue. As with most cases of gynecomastia surgery, this can usually be performed with an incision hidden along the lower edge of the areola, which results in a scar that usually can hardly be seen, or not seen at all (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery in the adolescent typically results in an immediate dramatic improvement in the boy’s self-esteem. Now with a normal chest, they are no longer embarrassed to be seen without their shirt, whether it be at the gym, pool, or beach. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As with most gynecomastia surgery, the recovery is quite quick, with most boys returning to school within a few days and feeling fine. Strenuous upper body physical activity, such as gym and sports, should be avoided though for about a month.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To wrap up, feel free to read through some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked questions</a> when it comes to adolescent gynecomastia and how our male breast reduction specialists can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia refers to the enlargement of breast tissue in boys during puberty. It\'s a common condition caused by hormonal changes and usually resolves on its own within a few months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia refers to the enlargement of breast tissue in boys during puberty. It\'s a common condition caused by hormonal changes and usually resolves on its own within a few months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"In some cases, adolescent gynecomastia is temporary and resolves without treatment as hormone levels stabilize. However, with other individuals, the breast tissue may persist, requiring further evaluation and possibly treatment.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"In some cases, adolescent gynecomastia is temporary and resolves without treatment as hormone levels stabilize. However, with other individuals, the breast tissue may persist, requiring further evaluation and possibly treatment.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"It\'s advisable to consult our plastic surgeons at the New Jersey Gynecomastia Center if gynecomastia persists for more than two years, is associated with pain, tenderness, or discharge from the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"puffy nipples\"]}},\", or if it causes significant emotional distress, or affects self-esteem.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"It\'s advisable to consult our plastic surgeons at the New Jersey Gynecomastia Center if gynecomastia persists for more than two years, is associated with pain, tenderness, or discharge from the \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003epuffy nipples\\u003c/a\\u003e, or if it causes significant emotional distress, or affects self-esteem.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis typically involves a physical examination by our gynecomastia surgery experts, including a medical history assessment. In some cases, imaging studies such as ultrasound or mammography may be recommended to rule out other underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis typically involves a physical examination by our gynecomastia surgery experts, including a medical history assessment. In some cases, imaging studies such as ultrasound or mammography may be recommended to rule out other underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. In some cases, observation and reassurance are sufficient, as the condition often resolves on its own. However, if persistent or causing significant distress, treatments may include a surgical procedure to fully fix the issue.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. In some cases, observation and reassurance are sufficient, as the condition often resolves on its own. However, if persistent or causing significant distress, treatments may include a surgical procedure to fully fix the issue.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"While adolescent gynecomastia itself is not harmful, it can lead to emotional distress, self-esteem issues, and psychological concerns in some individuals. Additionally, underlying medical conditions causing gynecomastia may require specific management to prevent complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia itself is not harmful, it can lead to emotional distress, self-esteem issues, and psychological concerns in some individuals. Additionally, underlying medical conditions causing gynecomastia may require specific management to prevent complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"Surgery, such as liposuction or breast gland removal, may be considered in cases where gynecomastia persists beyond puberty or causes significant physical or emotional discomfort. However, it\'s usually recommended after other conservative measures have been tried and failed.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"Surgery, such as liposuction or breast gland removal, may be considered in cases where gynecomastia persists beyond puberty or causes significant physical or emotional discomfort. However, it\'s usually recommended after other conservative measures have been tried and failed.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"In some cases, adolescent gynecomastia resolves spontaneously within a few months to a couple of years without intervention. However, regular follow-ups with our top gyno specialist doctors are advisable to monitor for any changes or complications and provide appropriate management if needed.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"In some cases, adolescent gynecomastia resolves spontaneously within a few months to a couple of years without intervention. However, regular follow-ups with our top gyno specialist doctors are advisable to monitor for any changes or complications and provide appropriate management if needed.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia refers to the enlargement of breast tissue in boys during puberty. It\'s a common condition caused by hormonal changes and usually resolves on its own within a few months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">In some cases, adolescent gynecomastia is temporary and resolves without treatment as hormone levels stabilize. However, with other individuals, the breast tissue may persist, requiring further evaluation and possibly treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">It\'s advisable to consult our plastic surgeons at the New Jersey Gynecomastia Center if gynecomastia persists for more than two years, is associated with pain, tenderness, or discharge from the <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>, or if it causes significant emotional distress, or affects self-esteem.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis typically involves a physical examination by our gynecomastia surgery experts, including a medical history assessment. In some cases, imaging studies such as ultrasound or mammography may be recommended to rule out other underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. In some cases, observation and reassurance are sufficient, as the condition often resolves on its own. However, if persistent or causing significant distress, treatments may include a surgical procedure to fully fix the issue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia itself is not harmful, it can lead to emotional distress, self-esteem issues, and psychological concerns in some individuals. Additionally, underlying medical conditions causing gynecomastia may require specific management to prevent complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Surgery, such as liposuction or breast gland removal, may be considered in cases where gynecomastia persists beyond puberty or causes significant physical or emotional discomfort. However, it\'s usually recommended after other conservative measures have been tried and failed.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In some cases, adolescent gynecomastia resolves spontaneously within a few months to a couple of years without intervention. However, regular follow-ups with our top gyno specialist doctors are advisable to monitor for any changes or complications and provide appropriate management if needed.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia in New Jersey, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the New Jersey Gynecomastia Center</a>. Our team of dedicated specialists is here to provide compassionate care and guide you through every step of the treatment journey. Schedule a consultation today to explore your options and reclaim confidence in your appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center covers the tri state area and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And More!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'t worry if you are situated further away from Fort Lee. It is also possible to arrange a virtual consultation for adolescent gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery','','inherit','closed','closed','','1906-revision-v1','','','2024-03-15 21:17:47','2024-03-15 21:17:47','',1906,'https://newjerseygynecomastiacenter.com/?p=3574',0,'revision','',0),(3577,5,'2024-03-15 21:19:20','2024-03-15 21:19:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder suffering from gynecomastia? If so, surgery may be an option for you. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_6ed5b8-0e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_6ed5b8-0e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_6ed5b8-0e\">The New Jersey Gynecomastia Center is your trusted destination for comprehensive solutions for bodybuilder gynecomastia. Our dedicated team of specialists is committed to addressing the unique concerns and needs of bodybuilders facing this condition. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this overview, we\'ll explore what bodybuilder gynecomastia entails, its underlying causes, symptoms, surgical procedures, post-operative care, and address some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gyno questions</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the New Jersey Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding Bodybuilder Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia is a condition characterized by the development of enlarged breast tissue in male bodybuilders. This enlargement is often attributed to the use of <a href=\"https://www.webmd.com/men/anabolic-steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones, which disrupt the natural hormonal balance in the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain supplements marketed to bodybuilders may contain undisclosed steroid or hormone-like ingredients, further contributing to gynecomastia development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The resulting imbalance can lead to the proliferation of glandular tissue beneath the areola, causing the characteristic appearance of enlarged male breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Exploring the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of gynecomastia</a> in bodybuilders is the use of anabolic steroids or prohormones, which are frequently employed to enhance muscle growth and performance. These synthetic hormones mimic the effects of testosterone, leading to an imbalance between estrogen and testosterone levels in the body. As a result, breast tissue may proliferate, leading to the development of gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes the patient may be well aware that they are taking these substances. In other instances, they may be taking some “supplement,” unaware that it contains steroids, prohormones, or hormone-like ingredients.&nbsp; Such substances can result in the development of gynecomastia which can persist even after the causative substances are discontinued.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recognizing the Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Symptoms of bodybuilder gynecomastia typically include the presence of firm breast tissue beneath the areola, which may be accompanied by tenderness or sensitivity (similar to standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilders affected by gynecomastia often experience psychological distress and a decrease in self-esteem due to the appearance of enlarged breasts. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In severe cases, gynecomastia may result in asymmetry, discomfort, or nipple discharge. Early recognition and intervention are crucial for addressing gynecomastia effectively and restoring a more masculine chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery in bodybuilders typically involves a combination of liposuction and direct excision of glandular tissue to achieve optimal results. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the procedure, excess fatty tissue is removed via liposuction, utilizing specialized techniques to sculpt the chest and enhance definition. Subsequently, direct excision of glandular tissue is performed through a discreet incision placed at the lower edge of the areola, ensuring minimal scarring and a natural aesthetic outcome. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This procedure is performed under general anesthesia, with most patients able to return home on the same day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgical Recovery and Expectations</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Following <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders can expect some degree of swelling, bruising, and discomfort, which gradually subsides over the ensuing weeks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A compression garment is worn to support the chest and minimize swelling, promoting optimal healing and contour refinement. It is essential to avoid strenuous upper body activities, including weightlifting, for approximately four to six weeks to prevent complications and facilitate proper tissue healing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While individual recovery experiences may vary, most patients can resume non-strenuous activities within a few days and gradually transition back to their regular exercise routine under the guidance of our surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the New Jersey Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":2139,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Gynecomastia-Surgery-Before-and-After-21-1024x1024.png\" alt=\"Gynecomastia Surgery Before and After 21\" class=\"wp-image-2139\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"The incisions used in gynecomastia surgery are strategically placed to minimize visibility. Over time, scars tend to fade and become less noticeable, allowing for a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"The incisions used in gynecomastia surgery are strategically placed to minimize visibility. Over time, scars tend to fade and become less noticeable, allowing for a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"It is recommended to refrain from strenuous upper body activities, including weightlifting, for approximately four to six weeks following surgery to ensure proper healing and reduce the risk of complications.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"It is recommended to refrain from strenuous upper body activities, including weightlifting, for approximately four to six weeks following surgery to ensure proper healing and reduce the risk of complications.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery provides long-lasting results, with the majority of patients experiencing permanent improvement in chest contour and appearance. However, maintaining a stable weight and avoiding future steroid or hormone use is essential to preserving the outcome.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery provides long-lasting results, with the majority of patients experiencing permanent improvement in chest contour and appearance. However, maintaining a stable weight and avoiding future steroid or hormone use is essential to preserving the outcome.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance inquiries and financing options\"]}},\" to facilitate access to treatment.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance inquiries and financing options\\u003c/a\\u003e to facilitate access to treatment.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"While gynecomastia recurrence is rare, it is essential to maintain a healthy lifestyle and avoid factors known to contribute to its development, such as steroid or hormone use, to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"While gynecomastia recurrence is rare, it is essential to maintain a healthy lifestyle and avoid factors known to contribute to its development, such as steroid or hormone use, to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Initial results of gynecomastia surgery are visible immediately following the procedure, with continued improvement as swelling subsides and tissues settle over the ensuing weeks and months.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Initial results of gynecomastia surgery are visible immediately following the procedure, with continued improvement as swelling subsides and tissues settle over the ensuing weeks and months.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"Post-operative care typically involves wearing a compression garment as directed by your surgeon, attending follow-up appointments for monitoring, and adhering to activity restrictions to promote optimal healing and outcomes.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"Post-operative care typically involves wearing a compression garment as directed by your surgeon, attending follow-up appointments for monitoring, and adhering to activity restrictions to promote optimal healing and outcomes.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Yes, gynecomastia surgery can be combined with other aesthetic procedures, such as liposuction or abdominoplasty, to address additional concerns and achieve comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Yes, gynecomastia surgery can be combined with other aesthetic procedures, such as liposuction or abdominoplasty, to address additional concerns and achieve comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">The incisions used in gynecomastia surgery are strategically placed to minimize visibility. Over time, scars tend to fade and become less noticeable, allowing for a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">It is recommended to refrain from strenuous upper body activities, including weightlifting, for approximately four to six weeks following surgery to ensure proper healing and reduce the risk of complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery provides long-lasting results, with the majority of patients experiencing permanent improvement in chest contour and appearance. However, maintaining a stable weight and avoiding future steroid or hormone use is essential to preserving the outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance inquiries and financing options</a> to facilitate access to treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence is rare, it is essential to maintain a healthy lifestyle and avoid factors known to contribute to its development, such as steroid or hormone use, to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Initial results of gynecomastia surgery are visible immediately following the procedure, with continued improvement as swelling subsides and tissues settle over the ensuing weeks and months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">Post-operative care typically involves wearing a compression garment as directed by your surgeon, attending follow-up appointments for monitoring, and adhering to activity restrictions to promote optimal healing and outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Yes, gynecomastia surgery can be combined with other aesthetic procedures, such as liposuction or abdominoplasty, to address additional concerns and achieve comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Additional Information</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, we are committed to providing personalized care and tailored treatment plans to address the specific needs and goals of bodybuilders facing gynecomastia. Our experienced team of specialists utilizes state-of-the-art techniques and advanced technologies to deliver safe, effective, and natural-looking results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the New Jersey Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center covers the tri state area and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And More!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'t worry if you are situated further away from Fort Lee. It is also possible to arrange a virtual consultation for steroid induced gynecomastia, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Bodybuilder Gynecomastia Surgery','','inherit','closed','closed','','1911-revision-v1','','','2024-03-15 21:19:20','2024-03-15 21:19:20','',1911,'https://newjerseygynecomastiacenter.com/?p=3577',0,'revision','',0),(3578,5,'2024-03-15 21:19:35','2024-03-15 21:19:35','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_441c0f-1a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_441c0f-1a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_441c0f-1a\">Gynecomastia revision surgery may be indicated for a variety of reasons. In some cases, the original surgery may have been done incorrectly or incompletely. In other cases, complications of healing may have resulted in poor results. Also, over time the chest may have changed due to weight fluctuations or the natural aging process, necessitating a gynecomastia revision. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">The top plastic surgeons at the New Jersey Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Why May Gyno Revision Be Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Typically, the presentation of gynecomastia includes excess breast gland tissue, as well as excess fatty tissue. The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery to treat gynecomastia</a> usually involves a combination of liposuction to remove the excess fatty tissue, and gland excision to remove the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Revision of Liposuction</strong>: If during the original gynecomastia surgery, incomplete <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">fat liposuction</a> is performed, or the liposuction is performed improperly, the result may be uneven or the patient is left with persistent bulges of fatty tissue. In these cases, revision of the gynecomastia surgery may involve additional liposuction to create an ideal chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Revision of Gland Tissue Removal</strong>: In cases where the excess breast gland tissue was removed incompletely, this may result in a persistent lump of breast tissue. In such a case, additional excision of breast gland tissue may be indicated. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Removed</strong>: It is also possible that too much tissue was excised in certain areas of the breast, resulting in a sunken nipple/areola, or an uneven contour of the chest. This condition may require a revision surgery entailing re-arrangement of breast tissue and/or fat grafting.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Another thing to think about post-gynecomastia surgery is weight fluctuations. These weight fluctuations or the natural aging process may also affect the outcome of the original surgery, resulting in a recurrence of the gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While re-growth of breast gland tissue is rare, extreme weight gain may result in breast fat deposits and recurrence of gynecomastia. Weight fluctuations or the natural aging process may result in some stretching out of the breast skin, with breast saginess. These conditions may also be indications for a gynecomastia revision procedure to obtain an ideal chest shape.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the New Jersey Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Since proper gynecomastia surgery requires precise removal of the exact amount of extra fat and gland tissue, the gynecomastia surgery must be performed by an experienced surgeon who knows precisely where and how the excess fatty tissue and gland tissue is to be excised.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases of gynecomastia, there may also be extra skin, giving the appearance of some sagginess of the breast. Inadequate excision of skin would result in persistent sagginess of the breast, which may necessitate a revision to remove adequate skin excess.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our experienced and skilled gynecomastia surgeons at the New Jersey Gynecomastia Center would be knowledgeable as to how this extra skin should be removed to obtain an ideal shape.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center covers the tri state area and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And More!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'t worry if you are situated further away from Fort Lee. It is also possible to arrange a virtual consultation for revision gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Getting a second surgery is not ideal but here at the New Jersey Gynecomastia Center, we are here to help. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a procedure performed to correct unsatisfactory results or complications from a previous gynecomastia surgery. It aims to improve the appearance of the chest by addressing issues such as excess glandular tissue, asymmetry, or irregular contours.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a procedure performed to correct unsatisfactory results or complications from a previous gynecomastia surgery. It aims to improve the appearance of the chest by addressing issues such as excess glandular tissue, asymmetry, or irregular contours.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\"],\"answer\":[\"Common reasons for requiring revision surgery include inadequate removal of glandular tissue during the initial procedure, asymmetry, contour irregularities, excessive scarring, or recurrence of gynecomastia.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\",\"jsonAnswer\":\"Common reasons for requiring revision surgery include inadequate removal of glandular tissue during the initial procedure, asymmetry, contour irregularities, excessive scarring, or recurrence of gynecomastia.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It is generally recommended to wait at least six months to one year after the initial gynecomastia surgery before considering revision surgery. This allows for adequate healing and stabilization of the chest tissues, as well as resolution of any post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It is generally recommended to wait at least six months to one year after the initial gynecomastia surgery before considering revision surgery. This allows for adequate healing and stabilization of the chest tissues, as well as resolution of any post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery process for gynecomastia revision surgery may be similar to or slightly longer than that of the initial procedure, depending on the extent of the revision needed. Patients can expect similar post-operative instructions regarding activity restrictions, pain management, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery process for gynecomastia revision surgery may be similar to or slightly longer than that of the initial procedure, depending on the extent of the revision needed. Patients can expect similar post-operative instructions regarding activity restrictions, pain management, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery can often achieve improved results compared to the initial procedure, especially when performed by an experienced and skilled surgeon at the NJ Gynecomastia Center. However, the extent of improvement will depend on various factors, including the nature of the revision needed and the individual\'s anatomy.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery can often achieve improved results compared to the initial procedure, especially when performed by an experienced and skilled surgeon at the NJ Gynecomastia Center. However, the extent of improvement will depend on various factors, including the nature of the revision needed and the individual\'s anatomy.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance, or is it considered a cosmetic procedure? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance, or is it considered a cosmetic procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery time may vary but generally ranges from several days to a few weeks, with full results becoming apparent over several months as swelling resolves and tissues settle. Patients should consult with their surgeon for personalized information regarding cost and recovery expectations.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery time may vary but generally ranges from several days to a few weeks, with full results becoming apparent over several months as swelling resolves and tissues settle. Patients should consult with their surgeon for personalized information regarding cost and recovery expectations.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a procedure performed to correct unsatisfactory results or complications from a previous gynecomastia surgery. It aims to improve the appearance of the chest by addressing issues such as excess glandular tissue, asymmetry, or irregular contours.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?</strong> <p class=\"schema-faq-answer\">Common reasons for requiring revision surgery include inadequate removal of glandular tissue during the initial procedure, asymmetry, contour irregularities, excessive scarring, or recurrence of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It is generally recommended to wait at least six months to one year after the initial gynecomastia surgery before considering revision surgery. This allows for adequate healing and stabilization of the chest tissues, as well as resolution of any post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery process for gynecomastia revision surgery may be similar to or slightly longer than that of the initial procedure, depending on the extent of the revision needed. Patients can expect similar post-operative instructions regarding activity restrictions, pain management, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery can often achieve improved results compared to the initial procedure, especially when performed by an experienced and skilled surgeon at the NJ Gynecomastia Center. However, the extent of improvement will depend on various factors, including the nature of the revision needed and the individual\'s anatomy.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance, or is it considered a cosmetic procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery time may vary but generally ranges from several days to a few weeks, with full results becoming apparent over several months as swelling resolves and tissues settle. Patients should consult with their surgeon for personalized information regarding cost and recovery expectations.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery','','inherit','closed','closed','','1901-revision-v1','','','2024-03-15 21:19:35','2024-03-15 21:19:35','',1901,'https://newjerseygynecomastiacenter.com/?p=3578',0,'revision','',0),(3579,5,'2024-03-15 21:19:50','2024-03-15 21:19:50','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_a9a50c-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_a9a50c-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_a9a50c-56\">Gynecomastia, a condition characterized by enlarged male breast tissue, can cause distress and self-consciousness in many men.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">While it\'s often associated with hormonal imbalances during puberty or certain medical conditions, it can also be found in adult males, particularly those who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery after weight loss offers a solution for men seeking to address this issue and regain confidence in their appearance.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the New Jersey Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia and Its Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by an imbalance between the hormones testosterone and estrogen, resulting in the growth of breast gland tissue in males. While it can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the context of weight loss, gynecomastia can become more pronounced as the excess fat decreases, revealing the presence of excess breast tissue and skin. This can be particularly frustrating for men who have worked hard to shed pounds and improve their overall health, only to be left with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">The Impact of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The presence of enlarged breasts can have a significant impact on a man\'s self-esteem and body image. Many individuals may feel self-conscious or embarrassed about their appearance. This can lead to feelings of insecurity and avoidance of certain social or intimate situations. This can ultimately affect various aspects of life, including relationships, work, and overall quality of health.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For men who have undergone weight loss, dealing with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> can be especially disheartening. It may detract from the sense of achievement and satisfaction associated with their weight loss journey. Despite the physical transformation, the presence of enlarged breasts can overshadow the progress and undermine confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Considering Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also known as male breast reduction surgery, offers a permanent solution for addressing the excess breast tissue and skin that remain after weight loss. This procedure involves the removal of glandular tissue and excess skin through surgical excision and the removal of excess fat through liposuction techniques. This results in a flatter, more masculine chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you consider gynecomastia surgery, you can <a href=\"https://atlantagynecomastia.com/contact/\">book an in person or virtual evaluation</a> at the NJ Gynecomastia Center. During the consultation, our surgeons will assess the extent of gynecomastia, discuss the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and goals</a>, and outline the surgical approach best suited to achieve optimal results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">The Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery is typically performed under general anesthesia on an outpatient basis, meaning patients can return home the same day. The procedure may involve a combination of liposuction to remove excess fat and surgical excision to address glandular tissue and loose skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Through small incisions strategically placed around the areola or in the natural creases of the chest, the surgeon can access the underlying tissues and reshape the chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the NJ Gynecomastia Center, we have a private ambulatory surgery center on-site, which is accredited by the Joint Commission.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Postoperative Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Following gynecomastia surgery, patients will be advised to wear a compression garment to support the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common, most individuals can resume light activities within a few days. They can then return to work within a week or two, depending on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to follow our surgeon\'s postoperative instructions diligently. This may include avoiding strenuous exercise and lifting heavy objects for several weeks to ensure proper healing. Regular follow-up appointments will allow the surgeon to monitor progress and address any concerns that may arise during the recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Results and Long-Term Satisfaction</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The results of gynecomastia surgery are typically evident immediately. Further improvements become apparent as swelling subsides and the tissues settle over time. Patients can expect a flatter, firmer chest contour that is more proportionate to their overall physique, enhancing their appearance and confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, it\'s essential for individuals to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercise, and avoiding factors that may contribute to gynecomastia recurrence, such as certain medications or steroid use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Reach Out Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery after weight loss offers a transformative solution for men seeking to address the physical and emotional burdens of enlarged breasts. By removing excess tissue and sculpting a more masculine chest contour, this procedure can help individuals regain confidence in their appearance and embrace their newfound sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those considering gynecomastia surgery, it\'s essential to consult with a board-certified plastic surgeon experienced in male breast reduction procedures. And here at the New Jersey Gynecomastia Center, we are here to help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery After Weight Loss','','inherit','closed','closed','','3473-revision-v1','','','2024-03-15 21:19:50','2024-03-15 21:19:50','',3473,'https://newjerseygynecomastiacenter.com/?p=3579',0,'revision','',0),(3581,5,'2024-03-15 21:21:06','2024-03-15 21:21:06','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_077252-0c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_077252-0c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_077252-0c\">Puffy nipple, a variation of gynecomastia, refers to the enlargement of the nipples and the surrounding areolae. It\'s sometimes referred to as \"Puffy Nipple Syndrome\" or \"Puffy Nipple-Areola Complex\". Although less prominent than typical gynecomastia, it can still cause significant distress for those affected.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Puffy Nipples</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy Nipples, a condition often overlooked or misunderstood, can stem from various underlying causes. One primary factor contributing to the development of puffy nipples is the accumulation of excess breast or fatty tissue beneath the nipple area. This surplus tissue results in a protrusion and a dome-like appearance of the areola, characteristic of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances play a significant role in the emergence of puffy nipples, much like they do in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">traditional gynecomastia</a>. Elevated levels of estrogen or decreased levels of testosterone, are often implicated. These hormonal disruptions can stimulate dormant breast glands in males, leading to the development of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, puffy nipples are not exclusive to adults as they can also manifest in male children, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">particularly during infancy and adolescence</a>. During these developmental stages, hormonal fluctuations are common, and the delicate balance between estrogen and testosterone can be disrupted, potentially resulting in the enlargement of breast tissue and the onset of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Exploring the multifaceted nature of puffy nipples reveals a complex interplay of genetic predispositions, hormonal dynamics, and developmental factors. Understanding these underlying mechanisms is crucial for accurate diagnosis and effective treatment strategies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Distinguishing Puffy Nipple from Regular Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Distinguishing puffy nipples from traditional gynecomastia, particularly its milder forms, such as grade 1 gynecomastia, is essential for tailored treatment approaches. While both conditions involve the enlargement of male breast tissue, they exhibit nuanced differences that inform their management.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, resembling a milder form of gynecomastia, typically present with a localized puffiness and dome-like appearance of the nipple-areola complex. This characteristic feature distinguishes puffy nipples from more extensive breast enlargement seen in advanced stages of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Options for Puffy Nipple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Suitable for cases primarily caused by excess fatty tissue behind the nipple. Liposuction involves mechanically agitating fat cells before removing them with a cannula.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: Recommended if puffy nipples result from excess breast gland tissue behind the nipple/areola. Removal of breast tissue, including the breast gland, is performed to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: This comprehensive procedure removes both excess fat tissue and the breast gland, offering optimal post-surgery aesthetics.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the New Jersey Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs about Puffy Nipple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size. Seeking medical advice is essential for accurate diagnosis and personalized treatment plans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery. If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery. If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Generally, they don’t. If your nipples have become bigger, then chances are it’s gynecomastia or Puffy Nipple Syndrome. It’s therefore a good idea to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\",\"children\":[\"consult our doctors\"]}},\" as soon as possible.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Generally, they don’t. If your nipples have become bigger, then chances are it’s gynecomastia or Puffy Nipple Syndrome. It’s therefore a good idea to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\\u0022\\u003econsult our doctors\\u003c/a\\u003e as soon as possible.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"If you are a runner or engage in strenuous physical activity, your nipples may be chafing against your clothing. It’s also possible that you’re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, it’s a good idea to see our gynecomastia doctor specialists and get a definitive diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"If you are a runner or engage in strenuous physical activity, your nipples may be chafing against your clothing. It’s also possible that you’re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, it’s a good idea to see our gynecomastia doctor specialists and get a definitive diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"This is a difficult question to answer, as everybody is different and has different nipples/areolae. That said, nipples should be about 2cm long, and the areola should be 2.5-3cm in diameter.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"This is a difficult question to answer, as everybody is different and has different nipples/areolae. That said, nipples should be about 2cm long, and the areola should be 2.5-3cm in diameter.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery. If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Generally, they don’t. If your nipples have become bigger, then chances are it’s gynecomastia or Puffy Nipple Syndrome. It’s therefore a good idea to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">consult our doctors</a> as soon as possible.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">If you are a runner or engage in strenuous physical activity, your nipples may be chafing against your clothing. It’s also possible that you’re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, it’s a good idea to see our gynecomastia doctor specialists and get a definitive diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">This is a difficult question to answer, as everybody is different and has different nipples/areolae. That said, nipples should be about 2cm long, and the areola should be 2.5-3cm in diameter.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipples Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Though Puffy Nipple Syndrome can be psychologically upsetting, there are plenty of treatments available to those affected. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether making changes to your diet or committing to a new exercise routine (preferably both), it’s perfectly possible to fight back against a case of puffy nipples and change your appearance for the better. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And even if it’s a stubborn case, surgical procedures for puffy nipples are always available – and extremely effective.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The New Jersey Gynecomastia Center covers the tri state area and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And More!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'t worry if you are situated further away from Fort Lee. It is also possible to arrange a virtual consultation for puffy nipple gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples: Causes & Treatment','','inherit','closed','closed','','2668-revision-v1','','','2024-03-15 21:21:06','2024-03-15 21:21:06','',2668,'https://newjerseygynecomastiacenter.com/?p=3581',0,'revision','',0),(3611,5,'2024-03-15 21:31:28','2024-03-15 21:31:28','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_77c2b8-8a\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_9184ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_9184ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_d5eee7-83\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_d5eee7-83 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_d5eee7-83\">Gynecomastia is a common condition characterized by the enlargement of breast tissue in males due to hormonal imbalances. While not typically harmful, understanding its causes, symptoms, and available treatments is essential for individuals affected by this condition.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_0a6a6f-36\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_0a6a6f-36 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_0a6a6f-36\">Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_ac90e4-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_ac90e4-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_ac90e4-18\">At the New Jersey Gynecomastia Center, we offer compassionate care and personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments tailored to meet your needs, ensuring your comfort and confidence throughout your journey to wellness. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_4da688-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_4da688-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_4da688-a3\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_f502d3-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8abbd4-3b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8abbd4-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Understand Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, or \'gyno,\' is the development of excess breast gland tissue in men. Although there are a variety of contributing factors, it often is a result of hormonal imbalance. This imbalance is generally between estrogen and testosterone. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>This imbalance can occur due to factors like puberty, aging, certain medications, health conditions, substance abuse, or nutritional imbalances. Treatment depends on the underlying cause and severity, which can range to surgical intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Even though it is not a dangerous condition, it may be painful and very often causes significant embarrassment and psychological distress. Therefore, almost all men suffering from it prioritize seeking treatment. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The New Jersey Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3376,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_bdb067-7a\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_bdb067-7a size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Male-Breast-Reduction-1024x829.jpg\" alt=\"Gynecomastia Male Breast Reduction\" class=\"kb-img wp-image-3376\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_256648-ce\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_ea3191-51\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_ea3191-51\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common Gyno causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more by checking out the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> overview.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_514a59-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_97db91-40\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_97db91-40\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Not all gynecomastia is the same. Four stages range in severity from grade 1 (mild) to grade 4 (severe). Each stage has several characteristics that distinguish it from the other grades. The treatments for each grade also differ, with stage 4 treatment requiring a very different surgical approach in comparison to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this topic.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3375,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_447da6-9f\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_447da6-9f size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-of-Gynecomastia-Male-Chest-1024x586.jpg\" alt=\"Stages of Gynecomastia Male Chest\" class=\"kb-img wp-image-3375\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_714df7-27\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_58a29e-e8\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_58a29e-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">While true gynecomastia is due to excess breast gland tissue, there is often also extra fatty tissue associated with gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong>When there is only extra fatty tissue but no extra gland tissue, this is referred to as <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">This second condition is ‘pseudo’ because it’s not actually breast gland gynecomastia. Instead, it’s simply the build-up of excess chest fat. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Pseudogynecomastia may superficially resemble gynecomastia and still cause \"man boobs\", but since it’s merely fat, it can sometimes be improved with lifestyle changes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">However, it often can persist, and surgical treatment primarily with liposuction is often indicated. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. A <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues if that is the case. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The surgery involves both excising the extra breast gland tissue, as well as liposuction of the extra fatty tissue. To better understand what is causing your gynecomastia, be sure to schedule a visit at the New Jersey Gynecomastia Center to talk through potential solutions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3377,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_b21ad9-b7\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_b21ad9-b7 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs-Pseudogynecomastia-New-Jersey-1024x576.jpg\" alt=\"Gynecomastia vs Pseudogynecomastia New Jersey\" class=\"kb-img wp-image-3377\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia can be a distressing condition, it\'s important to remember that effective treatment options are available. At the New Jersey Gynecomastia Center, our experienced doctors specialize in providing comprehensive care tailored to each individual\'s needs (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re seeking medical advice, considering surgical intervention, or simply looking for guidance, our team is here to support you every step of the way. Don\'t let gynecomastia hold you back from living your best life. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-15 21:31:28','2024-03-15 21:31:28','',1511,'https://newjerseygynecomastiacenter.com/?p=3611',0,'revision','',0),(3615,5,'2024-03-15 21:33:26','2024-03-15 21:33:26','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_6adb9a-ad\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_d64484-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_d64484-7f\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_8b99b5-fd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_8b99b5-fd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_8b99b5-fd\">Gynecomastia is a condition characterized by the enlargement of breast tissue in males, and it can vary significantly in severity from one individual to another. Understanding the grading or staging system is pivotal in assessing and addressing this condition effectively. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_551ac3-1b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_551ac3-1b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_551ac3-1b\">There are four grades along the spectrum, and gynecomastia healthcare professionals at the New Jersey Gynecomastia Center can help you gain valuable insight into tailoring treatment plans to suit your unique needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Stages of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These stages range in severity from grade 1 (mild) to grade 4 (severe), and each stage has several characteristics that distinguish it from the other grades. The treatments for each grade also differ, with stage 4 treatment requiring a very different surgical approach in comparison to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>There are several other signs and symptoms associated with each stage, which we’ll get to later.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to note from a medical standpoint, that <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia is defined as overdeveloped breast gland tissue</a>. However, it is quite common for there also to be excess fat tissue in the breast (also known as <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Both excess breast gland tissue and excess fat tissue can be removed during an overall <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3375,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1551_00da7e-52\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_00da7e-52 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-of-Gynecomastia-Male-Chest-1024x586.jpg\" alt=\"Stages of Gynecomastia Male Chest\" class=\"kb-img wp-image-3375\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Overview of the 4 Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sufferers of grade 1 gynecomastia suffer from a&nbsp;<strong>small amount of breast growth</strong>, sometimes accompanied by pain or tenderness in the nipples. The swelling around the nipple is only slight, and the area may sometimes be discolored. The nipple is sometimes puffy and tender to the touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stage 1 gynecomastia is generally not seen when the patient is clothed. However, it may be noticeable if the patient is in a state of undress (such as at the beach or a swimming pool), and may cause embarrassment in these instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 2, gynecomastia presents with a more noticeable enlargement of breast tissue extending across the chest. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This moderate growth may be evident even when clothed and becomes particularly prominent in bare-chested situations, eliciting embarrassment or distress in affected individuals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alongside breast protrusion, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness persist, contributing to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Entering grade 3 signifies a significant advancement in gynecomastia, characterized by considerable breast tissue development and chest widening. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become more pronounced, often protruding visibly through clothing. Notably, skin excess becomes apparent, leading to a \'droopy\' appearance of the breasts. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With heightened visibility and physical changes, grade 3 gynecomastia can substantially impact self-esteem and quality of life, prompting individuals to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most severe stage of the condition, where breast enlargement is substantial and akin to female breasts in appearance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts are visibly prominent, often overshadowing other features even when clothed. Excess skin becomes more pronounced, contributing to a fuller, sagging appearance of the breasts. Nipple size increases significantly, further accentuating the feminine characteristics. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 4 gynecomastia may experience profound emotional distress and social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, we recognize the diverse landscape of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. From initial evaluation to personalized treatment plans, our team is dedicated to providing compassionate care and empowering individuals to reclaim confidence and well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our NJ gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-15 21:33:26','2024-03-15 21:33:26','',1551,'https://newjerseygynecomastiacenter.com/?p=3615',0,'revision','',0);
INSERT INTO `hyu_posts` VALUES (3625,5,'2024-03-15 21:39:05','2024-03-15 21:39:05','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_6adb9a-ad\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_d64484-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_d64484-7f\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_8b99b5-fd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_8b99b5-fd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_8b99b5-fd\">Gynecomastia is a condition characterized by the enlargement of breast tissue in males, and it can vary significantly in severity from one individual to another. Understanding the grading or staging system is pivotal in assessing and addressing this condition effectively. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_551ac3-1b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_551ac3-1b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_551ac3-1b\">There are four grades along the spectrum, and gynecomastia healthcare professionals at the New Jersey Gynecomastia Center can help you gain valuable insight into tailoring treatment plans to suit your unique needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Stages of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These stages range in severity from grade 1 (mild) to grade 4 (severe), and each stage has several characteristics that distinguish it from the other grades. The treatments for each grade also differ (as well as overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a>), with stage 4 treatment requiring a very different surgical approach in comparison to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>There are several other signs and symptoms associated with each stage, which we’ll get to later.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to note from a medical standpoint, that <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia is defined as overdeveloped breast gland tissue</a>. However, it is quite common for there also to be excess fat tissue in the breast (also known as <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Both excess breast gland tissue and excess fat tissue can be removed during an overall <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3375,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1551_00da7e-52\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_00da7e-52 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-of-Gynecomastia-Male-Chest-1024x586.jpg\" alt=\"Stages of Gynecomastia Male Chest\" class=\"kb-img wp-image-3375\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Overview of the 4 Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sufferers of grade 1 gynecomastia suffer from a&nbsp;<strong>small amount of breast growth</strong>, sometimes accompanied by pain or tenderness in the nipples. The swelling around the nipple is only slight, and the area may sometimes be discolored. The nipple is sometimes puffy and tender to the touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stage 1 gynecomastia is generally not seen when the patient is clothed. However, it may be noticeable if the patient is in a state of undress (such as at the beach or a swimming pool), and may cause embarrassment in these instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 2, gynecomastia presents with a more noticeable enlargement of breast tissue extending across the chest. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This moderate growth may be evident even when clothed and becomes particularly prominent in bare-chested situations, eliciting embarrassment or distress in affected individuals. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alongside breast protrusion, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness persist, contributing to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Entering grade 3 signifies a significant advancement in gynecomastia, characterized by considerable breast tissue development and chest widening. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become more pronounced, often protruding visibly through clothing. Notably, skin excess becomes apparent, leading to a \'droopy\' appearance of the breasts. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With heightened visibility and physical changes, grade 3 gynecomastia can substantially impact self-esteem and quality of life, prompting individuals to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most severe stage of the condition, where breast enlargement is substantial and akin to female breasts in appearance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts are visibly prominent, often overshadowing other features even when clothed. Excess skin becomes more pronounced, contributing to a fuller, sagging appearance of the breasts. Nipple size increases significantly, further accentuating the feminine characteristics. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 4 gynecomastia may experience profound emotional distress and social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, we recognize the diverse landscape of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. From initial evaluation to personalized treatment plans, our team is dedicated to providing compassionate care and empowering individuals to reclaim confidence and well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our NJ gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-15 21:39:05','2024-03-15 21:39:05','',1551,'https://newjerseygynecomastiacenter.com/?p=3625',0,'revision','',0),(3635,5,'2024-03-17 18:07:48','2024-03-17 18:07:48','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The New Jersey Gynecomastia Center is located near Staten Island, about 45 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Staten Island? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Staten Island in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Staten Island to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take the I-278 W/Staten Is Expwy ramp to Goethals Br/Elizabeth</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto I-278 W by Bulls Head and drive up through Graniteville and continue on through Old Place</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left 2 lanes to take exit 3 A for I-95 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left at the fork and merge onto I-95 N right nearby Newark Airport</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive past IKEA, and continue up through Secaucus and the Meadowlands Exposition Center</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left lane to take the Upper Level exit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ-67/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Martha Washington Way/Park Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_f10b60-d8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_f10b60-d8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_f10b60-d8\">Traveling from somewhere else? Here’s how to get to the New Jersey Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by two of the&nbsp;premier Gynecomastia Surgeons in New Jersey, with over 40 years of combined experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Fort Lee, near Staten Island (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD</a> have deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As two of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3071} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_0a4c31-34\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"zIndex\":12,\"inheritMaxWidth\":true,\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_b5fb6a-23\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2868_b5fb6a-23\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"2868_c71276-41\",\"zoom\":11,\"location\":\"1567 palisade avenue fort lee\",\"mapFilter\":\"grayscale\",\"mapFilterAmount\":100,\"kbVersion\":2} /-->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[25,25,25,25],\"uniqueID\":\"2868_68f26f-5b\",\"displayShadow\":true,\"rowGap\":[10,32,\"\"],\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[-50,\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"0\",\"\"],\"tabletBorderRadius\":[25,25,25,25],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2868_68f26f-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_cfbe15-81\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"verticalAlignment\":\"middle\",\"firstColumnWidth\":50,\"secondColumnWidth\":50,\"mobileBackground\":[{\"enable\":true,\"bgColor\":\"rgba(0,0,0,0)\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"center center\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"zIndex\":10,\"borderRadius\":[null,null,null,null],\"tabletBorderRadius\":[20,20,20,20],\"mobileBorderRadius\":[0,0,0,0],\"padding\":[\"xs\",\"\",\"xs\",\"\"],\"mobilePadding\":[\"xxs\",\"xxs\",\"xxs\",\"xxs\"],\"kbVersion\":2,\"className\":\"shadow\"} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_41a93a-84\",\"justifyContent\":[\"center\",\"\",\"flex-start\"],\"verticalAlignment\":\"top\",\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_41a93a-84 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"2868_2ad692-c2\",\"linkProperty\":\"learnmore\",\"hAlign\":\"left\",\"containerBackground\":\"rgba(255, 255, 255, 0)\",\"containerHoverBackground\":\"rgba(255, 255, 255, 0)\",\"containerPadding\":[0,0,0,0],\"mediaAlign\":\"left\",\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_map\",\"size\":30,\"width\":2,\"title\":\"\",\"color\":\"palette1\",\"hoverColor\":\"palette1\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"mediaStyle\":[{\"background\":\"palette7\",\"hoverBackground\":\"palette7\",\"border\":\"#eeeeee\",\"hoverBorder\":\"#eeeeee\",\"borderRadius\":200,\"borderWidth\":[0,0,0,0],\"padding\":[18,18,18,18],\"margin\":[0,16,0,0]}],\"titleColor\":\"palette3\",\"titleTagType\":\"p\",\"titleFont\":[{\"level\":2,\"size\":[20,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[1.3,\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"700\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette4\",\"textFont\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"transparent\",\"border\":\"#555555\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"#ffffff\",\"backgroundHover\":\"#444444\",\"borderHover\":\"#444444\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"mediaVAlign\":\"top\",\"containerMargin\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"palette9\",\"\",\"\"],\"right\":[\"palette9\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",\"\"],\"left\":[\"palette9\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"#eeeeee\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box2868_2ad692-c2\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left kb-info-box-vertical-media-align-top\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_map\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><p class=\"kt-blocks-info-box-title\">Address</p><p class=\"kt-blocks-info-box-text\">1567 Palisade Avenue #3A<br/>Fort Lee, New Jersey 07024</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_dd66e1-93\",\"justifyContent\":[\"center\",\"\",\"flex-start\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"\",\"0\"],\"mobileMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_dd66e1-93 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"2868_bf86e9-f3\",\"linkProperty\":\"learnmore\",\"hAlign\":\"left\",\"containerBackground\":\"rgba(255, 255, 255, 0)\",\"containerHoverBackground\":\"rgba(255, 255, 255, 0)\",\"containerPadding\":[0,0,0,0],\"containerMobilePadding\":[\"\",\"\",\"\",\"0\"],\"mediaAlign\":\"left\",\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phoneCall\",\"size\":30,\"width\":2,\"title\":\"\",\"color\":\"palette1\",\"hoverColor\":\"palette1\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"mediaStyle\":[{\"background\":\"palette7\",\"hoverBackground\":\"palette7\",\"border\":\"#eeeeee\",\"hoverBorder\":\"#eeeeee\",\"borderRadius\":200,\"borderWidth\":[0,0,0,0],\"padding\":[18,18,18,18],\"margin\":[0,16,0,0]}],\"titleColor\":\"palette3\",\"titleTagType\":\"p\",\"titleFont\":[{\"level\":2,\"size\":[20,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[1.3,\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"700\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette4\",\"textFont\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"transparent\",\"border\":\"#555555\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"#ffffff\",\"backgroundHover\":\"#444444\",\"borderHover\":\"#444444\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"mediaVAlign\":\"top\",\"containerMargin\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"palette9\",\"\",\"\"],\"right\":[\"palette9\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",\"\"],\"left\":[\"palette9\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"#eeeeee\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box2868_bf86e9-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left kb-info-box-vertical-media-align-top\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phoneCall\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><p class=\"kt-blocks-info-box-title\">Phone</p><p class=\"kt-blocks-info-box-text\">(551) 201-1110</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Staten Island, NY','','inherit','closed','closed','','2868-revision-v1','','','2024-03-17 18:07:48','2024-03-17 18:07:48','',2868,'https://newjerseygynecomastiacenter.com/?p=3635',0,'revision','',0),(3646,5,'2024-03-18 23:24:04','2024-03-18 23:24:04','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_77c2b8-8a\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_9184ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_9184ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_d5eee7-83\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_d5eee7-83 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_d5eee7-83\">Gynecomastia is a common occurrence where males experience an increase in breast tissue due to hormonal imbalances. Although generally not harmful, it\'s important for those affected to understand its causes, symptoms, and available treatments.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_0a6a6f-36\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_0a6a6f-36 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_0a6a6f-36\">Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_ac90e4-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_ac90e4-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_ac90e4-18\">At the Tampa Gynecomastia Center, we offer caring and personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments customized to meet your needs, ensuring your comfort and confidence throughout your journey to wellness.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_4da688-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_4da688-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_4da688-a3\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_f502d3-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8abbd4-3b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8abbd4-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, also known as \'gyno\' or man boobs, is the development of excess breast gland tissue in men. While several factors can contribute, hormonal imbalance frequently serves as the root cause, typically involving a disparity between estrogen and testosterone levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Imbalances can arise due to various factors such as puberty, aging, specific medications, health issues, substance misuse, or nutritional deficiencies. Treatment varies based on the underlying cause and severity, potentially extending to surgical options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Despite not posing significant health risks, gynecomastia can induce discomfort and considerable embarrassment, leading to psychological distress for many individuals affected. Consequently, most men afflicted with it prioritize seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The Tampa Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3376,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_bdb067-7a\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_bdb067-7a size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Male-Breast-Reduction-1024x829.jpg\" alt=\"Gynecomastia Male Breast Reduction\" class=\"kb-img wp-image-3376\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_256648-ce\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_ea3191-51\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_ea3191-51\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">What Causes Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common Gyno causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> by checking out the dedicated overview on the topic.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_514a59-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_97db91-40\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_97db91-40\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Gynecomastia varies in severity, classified into four stages ranging from grade 1 (mild) to grade 4 (severe). Each stage exhibits distinct characteristics that set it apart from the others. Treatment approaches also differ for each grade, with stage 4 necessitating a significantly distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this topic.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3375,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_447da6-9f\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_447da6-9f size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-of-Gynecomastia-Male-Chest-1024x586.jpg\" alt=\"Stages of Gynecomastia Male Chest\" class=\"kb-img wp-image-3375\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_714df7-27\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_58a29e-e8\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_58a29e-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Although true gynecomastia primarily results from excess breast gland tissue, it often involves additional fatty tissue as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong>When there is only extra fatty tissue but no extra gland tissue, this is referred to as <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The second condition, known as \'pseudo\' gynecomastia, differs from true gynecomastia as it primarily involves excess chest fat rather than breast gland tissue. While it may outwardly resemble gynecomastia and result in the appearance of \"man boobs,\" its root cause is fat deposition, which can sometimes be addressed through lifestyle modifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, pseudogynecomastia often persists despite lifestyle changes, and surgical intervention, primarily through liposuction, is frequently recommended for treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. A <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues if that is the case. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">During the surgery, both the extra breast gland tissue and excess fatty tissue are removed through a combination of excision and liposuction. If you\'re seeking clarity on what\'s causing your gynecomastia and discussing potential solutions, consider scheduling a visit to the Tampa Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3377,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_b21ad9-b7\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_b21ad9-b7 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs-Pseudogynecomastia-New-Jersey-1024x576.jpg\" alt=\"Gynecomastia vs Pseudogynecomastia New Jersey\" class=\"kb-img wp-image-3377\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia can be distressing, it\'s crucial to recognize that effective treatment options exist. At the Tampa Gynecomastia Center, our skilled doctors focus on delivering personalized care tailored to meet the unique needs of each individual (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Whether you\'re in need of medical advice, contemplating surgical options, or just seeking guidance, our team is dedicated to supporting you throughout your journey. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-18 23:24:04','2024-03-18 23:24:04','',1511,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3646',0,'revision','',0),(3662,3,'2024-03-19 20:29:29','2024-03-19 20:29:29','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the New Jersey Gynecomastia Center to plan your free consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Tampa Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Tampa Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-19 20:29:29','2024-03-19 20:29:29','',3071,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3662',0,'revision','',0),(3671,5,'2024-03-19 21:11:46','2024-03-19 21:11:46','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Tampa Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Tampa Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center<br></a>100 N Ashley Dr #50K<br>Tampa, Florida 33602<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-19 21:11:46','2024-03-19 21:11:46','',2069,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3671',0,'revision','',0),(3674,5,'2024-03-19 21:16:43','2024-03-19 21:16:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Tampa Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Tampa Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center<br></a>100 N Ashley Dr #50K<br>Tampa, Florida 33602<br><a href=\"tel:2034411113\">(203) 441-1113</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-19 21:16:43','2024-03-19 21:16:43','',2069,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3674',0,'revision','',0),(3676,5,'2024-03-19 21:22:38','2024-03-19 21:22:38','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia can stem from a variety of factors, including medical conditions, medications, and substance use. However, at the core of many cases lies hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Recognizing this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gyno?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> arises from an imbalance of estrogen and testosterone, whether it involves an excess of estrogen, a deficiency of testosterone, or a blend of both. When considering methods to alleviate gynecomastia, understanding this imbalance is crucial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The primary indication of gynecomastia is the enlargement of male breast tissue, often triggered by this hormonal imbalance.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to acknowledge that in numerous cases, the root causes of gynecomastia remain unidentified. In such scenarios, hormonal imbalance may not serve as the primary catalyst.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be aware that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the sole issue in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. Typically, this condition resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue typically resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Abuse of substances such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety and anti-psychotic medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels, which is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting surplus testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, aging, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of adolescents will have some signs of gyno by the age of 14, largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This represents a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist, necessitating surgical intervention to address the issue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alcoholism represents another form of substance abuse, one that is notably more widespread than illegal drug abuse.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role in this context due to its high content of phytoestrogens, plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects akin to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels, a process that typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a></strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia is commonly seen in professional bodybuilders for a common reason: the use of anabolic steroids.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may lead the body to convert excess testosterone into estrogen. This can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a> in many cases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Elevated body fat contributes to higher incidences of gynecomastia through two primary mechanisms: increased fat accumulation in the chest area and elevated estrogen levels, which enhance the likelihood of breast gland tissue development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, heightened levels of fat also precipitate a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The majority of this conversion occurs within fat tissue, accounting for approximately 85% of the process. Consequently, the greater the amount of fat tissue present, the more pronounced the elevation in estrogen levels may become.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens, the male hormones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This deficiency can stem from various causes, including damage to the testes due to factors such as radiation exposure, mechanical injury, or pathological conditions. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium, resulting in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a concurrent rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. If such effects are possible, it\'s important to note that this isn\'t necessarily a reason to discontinue your medication. Rather, being informed allows you to take appropriate measures to manage any potential hormonal changes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Tampa Gynecomastia Specialist</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Tampa, Clearwater, St. Petersburg, or any surrounding area, feel free to schedule an appointment at the Tampa Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with a Tampa gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-19 21:22:38','2024-03-19 21:22:38','',1525,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3676',0,'revision','',0),(3677,5,'2024-03-19 21:26:46','2024-03-19 21:26:46','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-kadence','','','2024-03-19 21:26:46','2024-03-19 21:26:46','',0,'https://tampagynecomastiacom.bigscoots-staging.com/wp-global-styles-kadence/',0,'wp_global_styles','',0),(3679,5,'2024-03-19 21:45:54','2024-03-19 21:45:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_6adb9a-ad\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_d64484-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_d64484-7f\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_8845dc-e9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_8845dc-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_8845dc-e9\">Gynecomastia, characterized by male breast tissue enlargement, varies in severity among individuals. Understanding the grading system is essential for effective assessment and treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_066181-62\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_066181-62 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_066181-62\">With four distinct grades along the spectrum, our gynecomastia surgeons at the Tampa Gynecomastia Center specialize in tailoring treatment plans to your unique needs, ensuring valuable insight and personalized care.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The severity of gynecomastia is categorized into stages ranging from grade 1 (mild) to grade 4 (severe), each distinguished by specific characteristics. Treatment options and associated <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a> also vary across the stages, with stage 4 requiring a distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages / grades of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>There are several other signs and symptoms associated with each stage, which we’ll get to later.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s crucial to understand medically that gynecomastia entails the overdevelopment of breast gland tissue. However, it\'s common for excess fat tissue to be present in the breast, which is also called <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During a comprehensive <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>, both excess breast gland tissue and excess fat tissue can be addressed and removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3375,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1551_00da7e-52\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_00da7e-52 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-of-Gynecomastia-Male-Chest-1024x586.jpg\" alt=\"Stages of Gynecomastia Male Chest\" class=\"kb-img wp-image-3375\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Four Grades of Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 1 gynecomastia experience minimal breast growth, often accompanied by nipple pain or tenderness. Swelling around the nipple is slight, occasionally with discoloration. The nipple may appear puffy and sensitive to touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Typically, stage 1 gynecomastia is not apparent when the individual is clothed. However, it may become noticeable in situations where the person is undressed, such as at the beach or swimming pool, potentially leading to feelings of embarrassment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 2 gynecomastia is characterized by a more pronounced enlargement of breast tissue that extends across the chest. This moderate growth may be noticeable even when the individual is clothed and becomes particularly prominent in bare-chested situations, causing embarrassment or distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to breast protrusion, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness persist, further adding to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 3 represents a substantial progression in gynecomastia, marked by significant breast tissue development and chest widening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become notably pronounced, often visibly protruding through clothing. Moreover, excess skin becomes evident, resulting in a \'droopy\' appearance of the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given the heightened visibility and physical changes associated with grade 3 gynecomastia, individuals may experience a significant impact on self-esteem and quality of life, prompting them to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most advanced stage of the condition, where breast enlargement is substantial and resembles female breasts in appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts become highly prominent, often dominating the individual\'s physique, even when clothed. Excess skin becomes more noticeable, contributing to a fuller, drooping appearance of the breasts. Moreover, nipple size increases significantly, further emphasizing feminine characteristics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals grappling with grade 4 gynecomastia may grapple with profound emotional distress and encounter significant social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch With a Tampa Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we acknowledge the varied spectrum of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. From the initial assessment to tailored treatment strategies, our team is committed to delivering compassionate care, and empowering individuals to regain confidence and overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are located in the Tampa, Clearwater, St. Petersburg, or general area, and are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our Tampa gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-19 21:45:54','2024-03-19 21:45:54','',1551,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3679',0,'revision','',0),(3681,5,'2024-03-19 21:53:08','2024-03-19 21:53:08','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_6adb9a-ad\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_d64484-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_d64484-7f\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_8845dc-e9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_8845dc-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_8845dc-e9\">Gynecomastia, characterized by male breast tissue enlargement, varies in severity among individuals. Understanding the grading system is essential for effective assessment and treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_066181-62\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_066181-62 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_066181-62\">There are four distinct grades along the spectrum - from the mild grade 1 to the more severe grade 4. At the Tampa Gynecomastia Center, our gynecomastia surgeons specialize in tailoring treatment plans to your unique needs, ensuring valuable insight and personalized care.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The severity of gynecomastia is categorized into stages ranging from grade 1 (mild) to grade 4 (severe), each distinguished by specific characteristics. Treatment options and associated <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a> also vary across the stages, with stage 4 requiring a distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages / grades of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>There are several other signs and symptoms associated with each stage, which we’ll get to later.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s also crucial to understand medically that gynecomastia entails the overdevelopment of breast gland tissue. However, it\'s common for excess fat tissue to be present in the breast, which is called <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> when found on its own.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During a comprehensive <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>, both excess breast gland tissue and excess fat tissue can be addressed and removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3375,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1551_00da7e-52\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_00da7e-52 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-of-Gynecomastia-Male-Chest-1024x586.jpg\" alt=\"Stages of Gynecomastia Male Chest\" class=\"kb-img wp-image-3375\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Four Grades of Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 1 gynecomastia experience minimal breast growth, often accompanied by nipple pain or tenderness. Swelling around the nipple is slight, occasionally with discoloration. The nipple may appear puffy and sensitive to touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Typically, stage 1 gynecomastia is not apparent when the individual is clothed. However, it may become noticeable in situations where the person is undressed, such as at the beach or swimming pool, potentially leading to feelings of embarrassment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 2 gynecomastia is characterized by a more pronounced enlargement of breast tissue that extends across the chest. This moderate growth may be noticeable even when the individual is clothed and becomes particularly prominent in bare-chested situations, causing embarrassment or distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to breast protrusion, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness persist, further adding to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 3 represents a substantial progression in gynecomastia, marked by significant breast tissue development and chest widening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become notably pronounced, often visibly protruding through clothing. Moreover, excess skin becomes evident, resulting in a droopy appearance of the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given the heightened visibility and physical changes associated with grade 3 gynecomastia, individuals may experience a significant impact on self-esteem and quality of life, prompting them to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most advanced stage of the condition, where breast enlargement is substantial and resembles female breasts in appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts become highly prominent, often dominating the individual\'s physique, even when clothed. Excess skin becomes more noticeable, contributing to a fuller, drooping appearance of the breasts. Moreover, nipple size can increase significantly, further emphasizing feminine characteristics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals grappling with grade 4 gynecomastia may grapple with profound emotional distress and encounter significant social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch With a Tampa Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we acknowledge the varied spectrum of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From the initial assessment to customized treatment strategies, our team is committed to delivering compassionate care, and empowering individuals to regain confidence and overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are located in the Tampa, Clearwater, St. Petersburg, or anywhere else nearby, and are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our Tampa gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-19 21:53:08','2024-03-19 21:53:08','',1551,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3681',0,'revision','',0),(3685,5,'2024-03-19 22:41:40','2024-03-19 22:41:40','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0b1b27-d7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0b1b27-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0b1b27-d7\">Are you asking yourself if gynecomastia surgery is the right step for you? At the Tampa Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">Dealing with enlarged breast tissue in males can be both physically uncomfortable and emotionally challenging. Our gynecomastia surgeons understand this, and our primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of your condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we empower you to make a decision that\'s right for you. Whether you choose surgery or explore other options, we\'re here to support you every step of the way toward regaining your confidence and well-being.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_30bcd6-73\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_30bcd6-73 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_30bcd6-73\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, causing either psychological discomfort or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Men with persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Those who have realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Tampa</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">contributing to gynecomastia</a>. If you\'re an adult dealing with this issue, know that surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> During a crucial phase of physical and emotional growth, adolescent boys often encounter distinct hurdles when grappling with persistent gynecomastia. The enlargement of breast tissue can induce self-consciousness, impacting both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions emerge as a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia, marked by the enlargement of male breast tissue, becomes more prevalent as individuals age. This condition, influenced by hormonal shifts, medication usage, and age-related health issues, can appear at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> As bodybuilders incorporate supplements into their routines, they might inadvertently face gynecomastia as a consequence. Enlarged breast tissue, often resulting from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroid consumption</a>, can lead bodybuilders to explore surgical remedies to regain desired chest aesthetics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can give rise to the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Tampa Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes—it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable and enhancing mobility.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and tissue excision help finely shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It empowers individuals to live without the restrictions imposed by enlarged breast tissue, enabling them to embrace a more comfortable lifestyle.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves liberated to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Tampa Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Embarking on the journey of gynecomastia surgery involves navigating a series of meticulous steps. Each step is meticulously designed to achieve optimal outcomes and ensure patient safety and satisfaction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon, where patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. During this time patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure itself involves utilizing a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> During gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and to make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> During gynecomastia surgery, incision placement matters a lot in reducing visible scars and removing excess breast tissue and fat precisely. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat with precision, using a mix of liposuction and surgical excision techniques. This targeted method helps shape the chest to look natural and masculine, personalized to fit each patient\'s unique anatomy and aesthetic desires.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> After surgery, the reshaping and sculpting of the chest mark the result of meticulous efforts, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgical journey nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, promoting optimal wound recovery and ensuring positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal occurrences. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">our doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, empowering each individual to discover their true self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Tampa, Clearwater, St. Petersburg, or nearby area, we invite you to schedule a free in-person<a href=\"https://atlantagynecomastia.com/contact/\"> or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-19 22:41:40','2024-03-19 22:41:40','',3418,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3685',0,'revision','',0),(3687,5,'2024-03-19 22:45:55','2024-03-19 22:45:55','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0b1b27-d7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0b1b27-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0b1b27-d7\">Are you asking yourself if gynecomastia surgery is the right step for you? At the Tampa Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">Dealing with enlarged breast tissue in males can be both physically uncomfortable and emotionally challenging. Our gynecomastia plastic surgeons understand this, and our primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of your condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we empower you to make a decision that\'s right for you. Whether you choose surgery or explore other options, we\'re here to support you every step of the way toward regaining your confidence and well-being.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_30bcd6-73\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_30bcd6-73 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_30bcd6-73\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, causing either psychological discomfort or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Men with persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Those who have realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Tampa</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">contributing to gynecomastia</a>. If you\'re an adult dealing with this issue, know that surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> During a crucial phase of physical and emotional growth, adolescent boys often encounter distinct hurdles when grappling with persistent gynecomastia. The enlargement of breast tissue can induce self-consciousness, impacting both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions emerge as a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia, marked by the enlargement of male breast tissue, becomes more prevalent as individuals age. This condition, influenced by hormonal shifts, medication usage, and age-related health issues, can appear at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> As bodybuilders incorporate supplements into their routines, they might inadvertently face gynecomastia as a consequence. Enlarged breast tissue, often resulting from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroid consumption</a>, can lead bodybuilders to explore surgical remedies to regain desired chest aesthetics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can give rise to the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Tampa Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes—it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable and enhancing mobility.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and tissue excision help finely shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It empowers individuals to live without the restrictions imposed by enlarged breast tissue, enabling them to embrace a more comfortable lifestyle.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves liberated to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Tampa Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Embarking on the journey of gynecomastia surgery involves navigating a series of meticulous steps. Each step is meticulously designed to achieve optimal outcomes and ensure patient safety and satisfaction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon, where patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. During this time patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure itself involves utilizing a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> During gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and to make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> During gynecomastia surgery, incision placement matters a lot in reducing visible scars and removing excess breast tissue and fat precisely. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat with precision, using a mix of liposuction and surgical excision techniques. This targeted method helps shape the chest to look natural and masculine, personalized to fit each patient\'s unique anatomy and aesthetic desires.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> After surgery, the reshaping and sculpting of the chest mark the result of meticulous efforts, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgical journey nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, promoting optimal wound recovery and ensuring positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal occurrences. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">our doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, empowering each individual to discover their true self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Tampa, Clearwater, St. Petersburg, or nearby area, we invite you to schedule a free in-person<a href=\"https://atlantagynecomastia.com/contact/\"> or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-19 22:45:55','2024-03-19 22:45:55','',3418,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3687',0,'revision','',0),(3689,5,'2024-03-19 22:50:17','2024-03-19 22:50:17','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0b1b27-d7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0b1b27-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0b1b27-d7\">Are you asking yourself if gynecomastia surgery is the right step for you? At the Tampa Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">Dealing with enlarged breast tissue in males can be both physically uncomfortable and emotionally challenging. Our gynecomastia plastic surgeons understand this, and our primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of your condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we empower you to make a decision that\'s right for you. Whether you choose surgery or explore other options, we\'re here to support you every step of the way toward regaining your confidence and well-being.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_30bcd6-73\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_30bcd6-73 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_30bcd6-73\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, causing either psychological discomfort or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Men with persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Those who have realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Tampa</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">contributing to gynecomastia</a>. If you\'re an adult dealing with this issue, know that surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> During a crucial phase of physical and emotional growth, adolescent boys often encounter distinct hurdles when grappling with persistent gynecomastia. The enlargement of breast tissue can induce self-consciousness, impacting both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions emerge as a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia, marked by the enlargement of male breast tissue, becomes more prevalent as individuals age. This condition, influenced by hormonal shifts, medication usage, and age-related health issues, can appear at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> As bodybuilders incorporate supplements into their routines, they might inadvertently face gynecomastia as a consequence. Enlarged breast tissue, often resulting from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroid consumption</a>, can lead bodybuilders to explore surgical remedies to regain desired chest aesthetics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can give rise to the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Tampa Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes—it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable and enhancing mobility.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and tissue excision help finely shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It empowers individuals to live without the restrictions imposed by enlarged breast tissue, enabling them to embrace a more comfortable lifestyle.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves liberated to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Tampa Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Embarking on the journey of gynecomastia surgery involves navigating a series of meticulous steps. Each step is designed to achieve optimal outcomes and ensure patient safety and satisfaction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon, where patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. During this time patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure itself involves utilizing a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> Before gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and to make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> Choosing the right spots for incisions in gynecomastia surgery is key to minimizing visible scars and precisely removing excess breast tissue and fat. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat with precision, using a mix of liposuction and surgical excision techniques. This targeted method helps shape the chest to look natural and masculine, personalized to fit each patient\'s unique anatomy and aesthetic desires.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> After surgery, the reshaping and sculpting of the chest mark the result of meticulous efforts, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgical journey nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, promoting optimal wound recovery and ensuring positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal occurrences. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">our doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, empowering each individual to discover their true self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Tampa, Clearwater, St. Petersburg, or other nearby areas, we invite you to schedule a <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-19 22:50:17','2024-03-19 22:50:17','',3418,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3689',0,'revision','',0),(3695,3,'2024-03-20 16:24:26','2024-03-20 16:24:26','<!-- wp:block {\"ref\":3071} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"3695_284f00-13\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"zIndex\":12,\"inheritMaxWidth\":true,\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_027e2e-ca\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3695_027e2e-ca\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"3695_738a43-fd\",\"zoom\":11,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"mapFilter\":\"grayscale\",\"mapFilterAmount\":100,\"kbVersion\":2} /-->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[25,25,25,25],\"uniqueID\":\"3695_7aa0e7-dc\",\"displayShadow\":true,\"rowGap\":[10,32,\"\"],\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[-50,\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"0\",\"\"],\"tabletBorderRadius\":[25,25,25,25],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3695_7aa0e7-dc\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"3695_baa505-52\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"verticalAlignment\":\"middle\",\"firstColumnWidth\":50,\"secondColumnWidth\":50,\"mobileBackground\":[{\"enable\":true,\"bgColor\":\"rgba(0,0,0,0)\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"center center\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"zIndex\":10,\"borderRadius\":[null,null,null,null],\"tabletBorderRadius\":[20,20,20,20],\"mobileBorderRadius\":[0,0,0,0],\"padding\":[\"xs\",\"\",\"xs\",\"\"],\"mobilePadding\":[\"xxs\",\"xxs\",\"xxs\",\"xxs\"],\"kbVersion\":2,\"className\":\"shadow\"} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_e9f8c2-be\",\"justifyContent\":[\"center\",\"\",\"flex-start\"],\"verticalAlignment\":\"top\",\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column3695_e9f8c2-be inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"3695_38e5a3-da\",\"linkProperty\":\"learnmore\",\"hAlign\":\"left\",\"containerBackground\":\"rgba(255, 255, 255, 0)\",\"containerHoverBackground\":\"rgba(255, 255, 255, 0)\",\"containerPadding\":[0,0,0,0],\"mediaAlign\":\"left\",\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_map\",\"size\":30,\"width\":2,\"title\":\"\",\"color\":\"palette1\",\"hoverColor\":\"palette1\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"mediaStyle\":[{\"background\":\"palette7\",\"hoverBackground\":\"palette7\",\"border\":\"#eeeeee\",\"hoverBorder\":\"#eeeeee\",\"borderRadius\":200,\"borderWidth\":[0,0,0,0],\"padding\":[18,18,18,18],\"margin\":[0,16,0,0]}],\"titleColor\":\"palette3\",\"titleFont\":[{\"level\":6,\"size\":[20,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[1.3,\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"700\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette4\",\"textFont\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"transparent\",\"border\":\"#555555\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"#ffffff\",\"backgroundHover\":\"#444444\",\"borderHover\":\"#444444\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"mediaVAlign\":\"top\",\"containerMargin\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"palette9\",\"\",\"\"],\"right\":[\"palette9\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",\"\"],\"left\":[\"palette9\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"#eeeeee\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box3695_38e5a3-da\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left kb-info-box-vertical-media-align-top\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_map\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h6 class=\"kt-blocks-info-box-title\">Address</h6><p class=\"kt-blocks-info-box-text\">1230 Peachtree St NE #150<br/>Atlanta, GA 30309</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_37ddc6-88\",\"justifyContent\":[\"center\",\"\",\"flex-start\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"\",\"0\"],\"mobileMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column3695_37ddc6-88 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"3695_3fcb49-c0\",\"linkProperty\":\"learnmore\",\"hAlign\":\"left\",\"containerBackground\":\"rgba(255, 255, 255, 0)\",\"containerHoverBackground\":\"rgba(255, 255, 255, 0)\",\"containerPadding\":[0,0,0,0],\"containerMobilePadding\":[\"\",\"\",\"\",\"0\"],\"mediaAlign\":\"left\",\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phoneCall\",\"size\":30,\"width\":2,\"title\":\"\",\"color\":\"palette1\",\"hoverColor\":\"palette1\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"mediaStyle\":[{\"background\":\"palette7\",\"hoverBackground\":\"palette7\",\"border\":\"#eeeeee\",\"hoverBorder\":\"#eeeeee\",\"borderRadius\":200,\"borderWidth\":[0,0,0,0],\"padding\":[18,18,18,18],\"margin\":[0,16,0,0]}],\"titleColor\":\"palette3\",\"titleFont\":[{\"level\":6,\"size\":[20,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[1.3,\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"700\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette4\",\"textFont\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"transparent\",\"border\":\"#555555\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"#ffffff\",\"backgroundHover\":\"#444444\",\"borderHover\":\"#444444\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"mediaVAlign\":\"top\",\"containerMargin\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"palette9\",\"\",\"\"],\"right\":[\"palette9\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",\"\"],\"left\":[\"palette9\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"#eeeeee\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box3695_3fcb49-c0\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left kb-info-box-vertical-media-align-top\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phoneCall\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h6 class=\"kt-blocks-info-box-title\">Phone</h6><p class=\"kt-blocks-info-box-text\">(203) 441-1113</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Free Consultation + Maps','','publish','closed','closed','','free-consultation-maps','','','2024-03-27 03:07:31','2024-03-27 03:07:31','',0,'https://tampagynecomastiacom.bigscoots-staging.com/free-consultation-maps/',0,'wp_block','',0),(3701,3,'2024-03-20 16:43:44','2024-03-20 16:43:44','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The New Jersey Gynecomastia Center is located near Hackensack, just 15 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Hackensack? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Hackensack in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2881_aed728-b6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2881_aed728-b6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_aed728-b6\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Hackensack to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on NJ-4 E/Rte 4 E from State St, River St and Hackensack Ave just past Bergen County Academies</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on NJ-4 E/Rte 4 E past Teaneck High School to Fort Lee. Continue past Overpeck Golf Course</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 from I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto NJ-4 E/Rte 4 E</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the middle lane to merge onto I-95 N toward US-1/US-9 N/G Washington Br</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 toward NJ-67/Lemoine Ave/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto Bruce Reynolds Blvd.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Martha Washington Way/Park Ave and pass IPIC Theaters</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_73c7e9-c0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_73c7e9-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_73c7e9-c0\">Traveling from somewhere else? Here’s how to get to the New Jersey Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by two of the&nbsp;premier Gynecomastia Surgeons in New Jersey, with over 40 years of combined experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Fort Lee, near Hackensack (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD have deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As two of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Hackensack, NJ','','inherit','closed','closed','','2881-revision-v1','','','2024-03-20 16:43:44','2024-03-20 16:43:44','',2881,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3701',0,'revision','',0),(3705,3,'2024-03-20 16:54:23','2024-03-20 16:54:23','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The New Jersey Gynecomastia Center is located near Staten Island, about 45 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Staten Island? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Staten Island in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Staten Island to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take the I-278 W/Staten Is Expwy ramp to Goethals Br/Elizabeth</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto I-278 W by Bulls Head and drive up through Graniteville and continue on through Old Place</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left 2 lanes to take exit 3 A for I-95 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left at the fork and merge onto I-95 N right nearby Newark Airport</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive past IKEA, and continue up through Secaucus and the Meadowlands Exposition Center</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left lane to take the Upper Level exit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ-67/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Martha Washington Way/Park Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_f10b60-d8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_f10b60-d8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_f10b60-d8\">Traveling from somewhere else? Here’s how to get to the New Jersey Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by two of the&nbsp;premier Gynecomastia Surgeons in New Jersey, with over 40 years of combined experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Fort Lee, near Staten Island (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD</a> have deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As two of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Staten Island, NY','','inherit','closed','closed','','2868-revision-v1','','','2024-03-20 16:54:23','2024-03-20 16:54:23','',2868,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3705',0,'revision','',0),(3711,5,'2024-03-20 17:18:38','2024-03-20 17:18:38','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about this condition – from its causes to available treatment options and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Tampa Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize your understanding and work closely with you to create tailored treatment plans.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males, often causing a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". This condition can occur at any age and is typically benign, though it may cause physical discomfort or psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males, often causing a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. This condition can occur at any age and is typically benign, though it may cause physical discomfort or psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment approaches, as they may have different underlying causes and management strategies.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment approaches, as they may have different underlying causes and management strategies.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional, possibly including blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional, possibly including blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males, often causing a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. This condition can occur at any age and is typically benign, though it may cause physical discomfort or psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment approaches, as they may have different underlying causes and management strategies.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional, possibly including blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia can be caused\"]}},\" by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia can be caused\\u003c/a\\u003e by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Yes, gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Yes, gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia can be caused</a> by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects or considerations after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects or considerations after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953916692\",\"question\":[\"What is the importance of follow-up appointments after gynecomastia surgery?\"],\"answer\":[\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.\"],\"jsonQuestion\":\"What is the importance of follow-up appointments after gynecomastia surgery?\",\"jsonAnswer\":\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects or considerations after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953916692\"><strong class=\"schema-faq-question\">What is the importance of follow-up appointments after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is Financing Available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is Financing Available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is Financing Available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Tampa Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Tampa Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Tampa Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-20 17:18:38','2024-03-20 17:18:38','',2743,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3711',0,'revision','',0),(3717,3,'2024-03-20 17:53:05','2024-03-20 17:53:05','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The New Jersey Gynecomastia Center is located near Newark, less than 30 minutes away from Newark Airport in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Newark? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Newark in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Newark to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Head west on Market St/Rte 510 toward Halsey St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Washington St and pass by the Newark Museum of Art</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left 2 lanes to turn left onto Broad St and pass the Riverfront Stadium Light Rail Station</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right to merge onto I-280 E toward Harrison/Jersey City</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Go over the William A. Stickel Memorial Bridge, and take exit 15X and 16E toward Lincoln Tunnel</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto I-95 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pass by the Meadowlands Sports Complex, up through Ridgefield, and continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left lane to take the Upper Level exit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ-67/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Martha Washington Way/Park Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_1d1591-b6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_1d1591-b6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_1d1591-b6\">Traveling from somewhere else? Here’s how to get to the New Jersey Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by two of the&nbsp;premier Gynecomastia Surgeons in New Jersey, with over 40 years of combined experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Fort Lee, near Newark (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD have deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As two of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Riverview','','inherit','closed','closed','','2787-revision-v1','','','2024-03-20 17:53:05','2024-03-20 17:53:05','',2787,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3717',0,'revision','',0),(3720,3,'2024-03-20 17:53:34','2024-03-20 17:53:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_e84952-0e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_ac0c40-b1\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_ac0c40-b1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_88387d-33\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_88387d-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_88387d-33\">The New Jersey Gynecomastia Center is located near Manhattan, about 20 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Manhattan? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Manhattan in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2862_4e3b71-cf\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2862_4e3b71-cf wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_4e3b71-cf\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Manhattan to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Merge onto NY-9A N by the Hudson River Waterfront Greenway and continue up along the Henry Hudson Pkwy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pass Riverside Park</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the middle lane to take exit 14 for G Washington Br toward I-95/Cross Bronx Expwy/W 178 St right by Fort Washington Park</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left at the fork, follow signs for Interstate 95 Upper Level S/G W Bridge/New Jersey and merge onto George Washington Bridge/Interstate 95 Upper Level S/US-1 Upper Level S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 S/Interstate 95 Upper Level S/US-1 Upper Level S and drive over Hazard Beach</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 toward Hudson Terrace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Central Rd, Main St and Palisade Ave to Whiteman St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Hudson Terrace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Bruce Reynolds Blvd.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto Central Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Main St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left to stay on Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_5df749-c1\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_5df749-c1 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_5df749-c1\">Traveling from somewhere else? Here’s how to get to the New Jersey Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by two of the&nbsp;premier Gynecomastia Surgeons in New Jersey, with over 40 years of combined experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Fort Lee, near Manhattan (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD</a> have deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As two of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Lakeland','','inherit','closed','closed','','2862-revision-v1','','','2024-03-20 17:53:34','2024-03-20 17:53:34','',2862,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3720',0,'revision','',0),(3721,3,'2024-03-20 17:53:54','2024-03-20 17:53:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The New Jersey Gynecomastia Center is located near Staten Island, about 45 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Staten Island? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Staten Island in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Staten Island to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take the I-278 W/Staten Is Expwy ramp to Goethals Br/Elizabeth</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto I-278 W by Bulls Head and drive up through Graniteville and continue on through Old Place</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left 2 lanes to take exit 3 A for I-95 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left at the fork and merge onto I-95 N right nearby Newark Airport</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive past IKEA, and continue up through Secaucus and the Meadowlands Exposition Center</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left lane to take the Upper Level exit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ-67/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Martha Washington Way/Park Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_f10b60-d8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_f10b60-d8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_f10b60-d8\">Traveling from somewhere else? Here’s how to get to the New Jersey Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/hackensack-new-jersey/\">Hackensack</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by two of the&nbsp;premier Gynecomastia Surgeons in New Jersey, with over 40 years of combined experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Fort Lee, near Staten Island (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD</a> have deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As two of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Orlando','','inherit','closed','closed','','2868-revision-v1','','','2024-03-20 17:53:54','2024-03-20 17:53:54','',2868,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3721',0,'revision','',0),(3724,3,'2024-03-20 17:54:39','2024-03-20 17:54:39','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The New Jersey Gynecomastia Center is located near Hackensack, just 15 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Hackensack? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Hackensack in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2881_aed728-b6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2881_aed728-b6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_aed728-b6\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Hackensack to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on NJ-4 E/Rte 4 E from State St, River St and Hackensack Ave just past Bergen County Academies</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on NJ-4 E/Rte 4 E past Teaneck High School to Fort Lee. Continue past Overpeck Golf Course</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 from I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto NJ-4 E/Rte 4 E</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the middle lane to merge onto I-95 N toward US-1/US-9 N/G Washington Br</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 toward NJ-67/Lemoine Ave/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto Bruce Reynolds Blvd.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Martha Washington Way/Park Ave and pass IPIC Theaters</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_73c7e9-c0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_73c7e9-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_73c7e9-c0\">Traveling from somewhere else? Here’s how to get to the New Jersey Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/newark-new-jersey/\">Newark</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/jersey-city-new-jersey/\">Jersey City</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/westchester-county-new-york/\">Westchester County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/manhattan-nyc/\">Manhattan</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/staten-island-new-york/\">Staten Island</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/edgewater-new-jersey/\">Edgewater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/elizabeth-new-jersey/\">Elizabeth</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the New Jersey Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by two of the&nbsp;premier Gynecomastia Surgeons in New Jersey, with over 40 years of combined experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Fort Lee, near Hackensack (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD have deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As two of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Gainesville','','inherit','closed','closed','','2881-revision-v1','','','2024-03-20 17:54:39','2024-03-20 17:54:39','',2881,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3724',0,'revision','',0),(3725,3,'2024-03-20 17:56:06','2024-03-20 17:56:06','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier gynecomastia surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gynecomastia surgery</a>, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery might be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of actual gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive male breast reduction surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','publish','closed','closed','','location-page-service-summary','','','2024-03-31 14:23:58','2024-03-31 14:23:58','',0,'https://tampagynecomastiacom.bigscoots-staging.com/location-page-service-summary/',0,'wp_block','',0),(3728,3,'2024-03-20 17:57:23','2024-03-20 17:57:23','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_7a4554-6d\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_ca4ba9-77\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_ca4ba9-77 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_1a8217-f2\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_1a8217-f2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_1a8217-f2\">The New Jersey Gynecomastia Center is located near Elizabeth, about 30 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Elizabeth? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Elizabeth in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2872_2baa95-f5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2872_2baa95-f5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_2baa95-f5\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Elizabeth to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Head southwest toward E Jersey St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto E Jersey St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto Spring St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left to continue on US-1 N/US-9 N and continue past Newark Liberty International Airport</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take the exit toward US-1 Truck N/US-9 Truck N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-1 Truck N/US-9 Truck N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take the US-Truck/US-9 Truck exit toward Jersey City</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ Turnpike/I-95</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right at the fork to continue on Exits 16E-18E, follow signs for US-46/I-80/Lincoln Tunnel and merge onto I-95 N/NJ Turnpike N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pass by Secaucus Junction, and drive up through Ridgefield</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N as you pass Constitution Park</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left lane to take the Upper Level exit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ-67/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Martha Washington Way/Park Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave past IPIC Theaters and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Fort Meyers','','inherit','closed','closed','','2872-revision-v1','','','2024-03-20 17:57:23','2024-03-20 17:57:23','',2872,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3728',0,'revision','',0),(3729,3,'2024-03-20 17:58:04','2024-03-20 17:58:04','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_7a4554-6d\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_ca4ba9-77\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_ca4ba9-77 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_1a8217-f2\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_1a8217-f2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_1a8217-f2\">The New Jersey Gynecomastia Center is located near Elizabeth, about 30 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Elizabeth? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Elizabeth in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2872_2baa95-f5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2872_2baa95-f5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_2baa95-f5\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Elizabeth to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Head southwest toward E Jersey St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto E Jersey St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto Spring St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left to continue on US-1 N/US-9 N and continue past Newark Liberty International Airport</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take the exit toward US-1 Truck N/US-9 Truck N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-1 Truck N/US-9 Truck N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take the US-Truck/US-9 Truck exit toward Jersey City</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ Turnpike/I-95</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right at the fork to continue on Exits 16E-18E, follow signs for US-46/I-80/Lincoln Tunnel and merge onto I-95 N/NJ Turnpike N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pass by Secaucus Junction, and drive up through Ridgefield</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N as you pass Constitution Park</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left lane to take the Upper Level exit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ-67/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Martha Washington Way/Park Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave past IPIC Theaters and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Fort Meyers','','inherit','closed','closed','','2872-revision-v1','','','2024-03-20 17:58:04','2024-03-20 17:58:04','',2872,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3729',0,'revision','',0),(3730,3,'2024-03-20 18:21:19','2024-03-20 18:21:19','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The New Jersey Gynecomastia Center is located near Hackensack, just 15 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Hackensack? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Hackensack in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2881_aed728-b6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2881_aed728-b6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_aed728-b6\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Hackensack to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on NJ-4 E/Rte 4 E from State St, River St and Hackensack Ave just past Bergen County Academies</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on NJ-4 E/Rte 4 E past Teaneck High School to Fort Lee. Continue past Overpeck Golf Course</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 from I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto NJ-4 E/Rte 4 E</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the middle lane to merge onto I-95 N toward US-1/US-9 N/G Washington Br</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 toward NJ-67/Lemoine Ave/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto Bruce Reynolds Blvd.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Martha Washington Way/Park Ave and pass IPIC Theaters</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Gainesville','','inherit','closed','closed','','2881-revision-v1','','','2024-03-20 18:21:19','2024-03-20 18:21:19','',2881,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3730',0,'revision','',0),(3732,3,'2024-03-20 18:22:02','2024-03-20 18:22:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_e84952-0e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_ac0c40-b1\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_ac0c40-b1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_88387d-33\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_88387d-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_88387d-33\">The New Jersey Gynecomastia Center is located near Manhattan, about 20 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Manhattan? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Manhattan in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2862_4e3b71-cf\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2862_4e3b71-cf wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_4e3b71-cf\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Manhattan to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Merge onto NY-9A N by the Hudson River Waterfront Greenway and continue up along the Henry Hudson Pkwy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pass Riverside Park</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the middle lane to take exit 14 for G Washington Br toward I-95/Cross Bronx Expwy/W 178 St right by Fort Washington Park</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left at the fork, follow signs for Interstate 95 Upper Level S/G W Bridge/New Jersey and merge onto George Washington Bridge/Interstate 95 Upper Level S/US-1 Upper Level S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 S/Interstate 95 Upper Level S/US-1 Upper Level S and drive over Hazard Beach</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 toward Hudson Terrace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Central Rd, Main St and Palisade Ave to Whiteman St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Hudson Terrace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Bruce Reynolds Blvd.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto Central Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Main St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left to stay on Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Lakeland','','inherit','closed','closed','','2862-revision-v1','','','2024-03-20 18:22:02','2024-03-20 18:22:02','',2862,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3732',0,'revision','',0),(3733,3,'2024-03-20 18:22:19','2024-03-20 18:22:19','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The New Jersey Gynecomastia Center is located near Newark, less than 30 minutes away from Newark Airport in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Newark? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Newark in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Rosenberg and Dr. Pathak</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Newark to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Head west on Market St/Rte 510 toward Halsey St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Washington St and pass by the Newark Museum of Art</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left 2 lanes to turn left onto Broad St and pass the Riverfront Stadium Light Rail Station</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right to merge onto I-280 E toward Harrison/Jersey City</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Go over the William A. Stickel Memorial Bridge, and take exit 15X and 16E toward Lincoln Tunnel</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto I-95 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pass by the Meadowlands Sports Complex, up through Ridgefield, and continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left lane to take the Upper Level exit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ-67/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Martha Washington Way/Park Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Riverview','','inherit','closed','closed','','2787-revision-v1','','','2024-03-20 18:22:19','2024-03-20 18:22:19','',2787,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3733',0,'revision','',0),(3734,3,'2024-03-20 18:22:33','2024-03-20 18:22:33','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The New Jersey Gynecomastia Center is located near Staten Island, about 45 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Staten Island? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Staten Island in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Staten Island to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take the I-278 W/Staten Is Expwy ramp to Goethals Br/Elizabeth</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Merge onto I-278 W by Bulls Head and drive up through Graniteville and continue on through Old Place</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left 2 lanes to take exit 3 A for I-95 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left at the fork and merge onto I-95 N right nearby Newark Airport</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive past IKEA, and continue up through Secaucus and the Meadowlands Exposition Center</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto US-9 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto I-95 Lower Level N/U.S. 1 Lower Level N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the left lane to take the Upper Level exit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for NJ-67/Fort Lee</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Martha Washington Way/Park Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Orlando','','inherit','closed','closed','','2868-revision-v1','','','2024-03-20 18:22:33','2024-03-20 18:22:33','',2868,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3734',0,'revision','',0),(3735,3,'2024-03-20 18:22:49','2024-03-20 18:22:49','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The New Jersey Gynecomastia Center is located near Westchester County, about 45 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Westchester County? The <a href=\"https://atlantagynecomastia.com/\">New Jersey Gynecomastia Center</a> is located just minutes from Westchester in Fort Lee, NJ.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">1567 Palisade Avenue #3A<br>Fort Lee, NJ 07024<br>T: (551) 201-1110</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the New Jersey Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Rosenberg and Dr. Pathak and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Westchester to the New Jersey Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take I-87 S towards New York City right by Elmsford, and drive down past Woodlands, Ardsley, and through the Sprain Ridge Park</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pass by Empire City Casino, down through Van Cortlandt Park, and use the 2nd from the right lane to take exit 7 for I-95 N/US-1 N/Cross Bronx Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep left at the fork to continue on Exit 7S, follow signs for I-95 S/US-1 S/George Washington Bridge/Trenton and merge onto I-95 S/US-1 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take exit 73 toward Hudson Terrace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keep right, follow signs for Hudson Terrace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Central Rd, Main St and Palisade Ave to Whiteman St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Hudson Terrace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Bruce Reynolds Blvd.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto Central Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto Main St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto Palisade Ave and the New Jersey Gynecomastia Center will be on your right</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from St. Petersburg','','inherit','closed','closed','','2858-revision-v1','','','2024-03-20 18:22:49','2024-03-20 18:22:49','',2858,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3735',0,'revision','',0),(3737,3,'2024-03-20 18:24:53','2024-03-20 18:24:53','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Tampa Gynecomastia Center is located near Brandon, less than 10 minutes away in Fort Lee, New Jersey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Brandon? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Brandon in Tampa, FL.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Brandon to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>XX</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Brandon','','inherit','closed','closed','','2854-revision-v1','','','2024-03-20 18:24:53','2024-03-20 18:24:53','',2854,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3737',0,'revision','',0),(3739,3,'2024-03-20 18:25:11','2024-03-20 18:25:11','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Tampa Gynecomastia Center is located near Brandon, less than 10 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Brandon? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Brandon in Tampa, FL.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Brandon to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>XX</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Brandon','','inherit','closed','closed','','2854-revision-v1','','','2024-03-20 18:25:11','2024-03-20 18:25:11','',2854,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3739',0,'revision','',0),(3742,3,'2024-03-20 19:30:27','2024-03-20 19:30:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Tampa Gynecomastia Center is located near Brandon, about 20 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Brandon? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Brandon in Tampa, FL.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Brandon to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow FL-618 Toll/Selmon Expy to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Brandon','','inherit','closed','closed','','2854-revision-v1','','','2024-03-20 19:30:27','2024-03-20 19:30:27','',2854,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3742',0,'revision','',0),(3746,3,'2024-03-20 19:36:30','2024-03-20 19:36:30','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_7a4554-6d\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_ca4ba9-77\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_ca4ba9-77 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_1a8217-f2\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_1a8217-f2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_1a8217-f2\">The Tampa Gynecomastia Center is located near Fort Meyers, about 2.5 hours away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Fort Meyers? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just a couple hours from Fort Meyers in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Fort Meyers to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 N in Charlotte County from Cleveland Ave and US-41 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-75 N to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Fort Meyers','','inherit','closed','closed','','2872-revision-v1','','','2024-03-20 19:36:30','2024-03-20 19:36:30','',2872,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3746',0,'revision','',0),(3749,3,'2024-03-20 19:39:08','2024-03-20 19:39:08','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The Tampa Gynecomastia Center is located near Gainesville, just 2 hours away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Gainesville? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Gainesville in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Gainesville to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 S from S Main St and US-441 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on I-75 S to Tampa. Take exit 45A from I-275 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on N Orange Ave. Drive to E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Gainesville','','inherit','closed','closed','','2881-revision-v1','','','2024-03-20 19:39:08','2024-03-20 19:39:08','',2881,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3749',0,'revision','',0),(3754,3,'2024-03-20 19:45:59','2024-03-20 19:45:59','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Tampa Gynecomastia Center is located near Clearwater, about 40 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Clearwater? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Clearwater in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Clearwater to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take Cleveland St to Court St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take State Rd 60 E to FL-616 E/W Spruce St in Tampa. Take exit 1B from FL-60 E/State Rd 60 E</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on FL-616 E. Take W Columbus Dr to N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn left onto E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Clearwater','','inherit','closed','closed','','2844-revision-v1','','','2024-03-20 19:45:59','2024-03-20 19:45:59','',2844,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3754',0,'revision','',0),(3756,3,'2024-03-20 19:51:14','2024-03-20 19:51:14','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_e84952-0e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_ac0c40-b1\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_ac0c40-b1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_88387d-33\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_88387d-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_88387d-33\">The Tampa Gynecomastia Center is located near Lakeland, about 40 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Lakeland? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Lakeland in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Lakeland to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-4 W from Kathleen Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-4 W to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Lakeland','','inherit','closed','closed','','2862-revision-v1','','','2024-03-20 19:51:14','2024-03-20 19:51:14','',2862,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3756',0,'revision','',0),(3758,3,'2024-03-20 19:53:47','2024-03-20 19:53:47','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the Tampa Gynecomastia Center to plan your free consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Tampa Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Tampa Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-20 19:53:47','2024-03-20 19:53:47','',3071,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3758',0,'revision','',0),(3759,3,'2024-03-20 19:53:47','2024-03-20 19:53:47','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Tampa Gynecomastia Center is located near Riverview, just 15 minutes away from Riverview in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Riverview? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Riverview in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Riverview to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow FL-618 Toll/Selmon Expy to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Riverview','','inherit','closed','closed','','2787-revision-v1','','','2024-03-20 19:53:47','2024-03-20 19:53:47','',2787,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3759',0,'revision','',0),(3761,3,'2024-03-20 19:57:20','2024-03-20 19:57:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The Tampa Gynecomastia Center is located near Orlando, just over an hour away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Orlando? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Orlando in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Orlando to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-4 Express</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive from I-4 W to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Orlando','','inherit','closed','closed','','2868-revision-v1','','','2024-03-20 19:57:20','2024-03-20 19:57:20','',2868,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3761',0,'revision','',0),(3763,3,'2024-03-20 20:00:33','2024-03-20 20:00:33','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Tampa Gynecomastia Center is located near St. Petersburg, about 25 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near St. Petersburg? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from St. Petersburg in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From St. Petersburg to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-175 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-275 N to N Tampa St in Tampa. Take exit 44 from I-275 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from St. Petersburg','','inherit','closed','closed','','2858-revision-v1','','','2024-03-20 20:00:33','2024-03-20 20:00:33','',2858,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3763',0,'revision','',0),(3789,3,'2024-03-20 22:12:02','2024-03-20 22:12:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Tampa Gynecomastia Center is located in Tampa, Florida, near two major airports.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our Tampa patients, but also to those from around the entire state of Florida and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those considering <a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">gynecomastia surgery near St. Petersburg</a>, we\'re located just over the Howard Frankland Bridge in Hillsborough County. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">surgery near Lakeland</a> or Orange County, we are just a short car ride away. We\'re proud to have earned a distinguished reputation that draws individuals from across central Florida, as well as from further away, including southern Florida, Tallahassee, Jacksonville, and beyond.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the specialized skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Smith</a>, renowned among the nation\'s leading gynecomastia surgeons. For our out-of-town patients, we go the extra mile to ensure you feel welcome and comfortable at our state-of-the-art surgery center in Tampa, Florida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are here to meet both your needs and those of any companions who may be traveling with you. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, allowing you to get a feel for our practice and decide if we\'re a good fit before making any travel plans. This is an excellent opportunity to learn more about Dr. Smith, including his background, medical training, and approach to treatment, as well as to familiarize yourself with our supportive team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated duration for your stay in Florida. The length of time you\'ll need to stay depends on the type of gynecomastia procedure you\'re undergoing and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your general health condition may also have an impact on your surgery schedule.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are two major airports just a short drive from the Tampa Gynecomastia Center if you fly into the greater Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.tampaairport.com/\">Tampa Airport</a></strong>: 7 miles (20 minutes by car or 40 minutes by public transport)<br><strong><a href=\"https://orlandoairports.net/\">Orlando Airport</a>:</strong> 92 miles (1 hour 40 minutes by car or 3 hours by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from any of these major airports is to take a quick Uber, Lyft, or local taxi. Busses and trains are a more cost effective option but typically take longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Tampa Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tampa, Florida offers a variety of accommodation choices to fit every budget. Below are some of the favorite lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.hilton.com/en/hotels/tpanthf-hilton-tampa-downtown/\"><strong>Hilton Tampa Downtown</strong><br></a>211 N Tampa St<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/tpamd-le-meridien-tampa-the-courthouse/overview/\"><strong>Le Méridien Tampa, The Courthouse</strong><br></a>601 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hyatt Place Tampa Downtown<br></strong>325 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Embassy Suites by Hilton Tampa Downtown Convention Center<br></strong>513 S Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Westin Tampa Waterside</strong><br>725 S Harbour Island Blvd<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Tampa, Florida for you and/or your companions to enjoy during your time in FL. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Columbia Cafe at the Tampa Bay History Center:</strong> 801 Water St #1905, Tampa, FL 33602</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Mise en Place</strong>: 442 W Grand Central Ave, Tampa, FL 33606</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>The Pearl Tampa</strong>: 823 Water St C100, Tampa, FL 33602</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>With our office being right in downtown Tampa, that\'s where you are going to find the most exciting entertainment options. Our office is just across the bridge from Clearwater, which is another great option for beaches and entertainment. Here are some excellent local entertainment options in the Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Florida Aquarium</strong>: This aquarium is just a few miles away and features some incredible marine life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Curtis Hixon Waterfront Park</strong>: This beautiful park is right on the Hillsborough River and is great way to spend an afternoon.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Clearwater Beach:</strong> Consistently rated one of the best beaches in the United States, Clearwater Beach is just over the bridge less than an hour away.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Tampa Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-20 22:12:02','2024-03-20 22:12:02','',3490,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3789',0,'revision','',0),(3794,3,'2024-03-20 22:18:04','2024-03-20 22:18:04','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Tampa Gynecomastia Center is located in Tampa, Florida, near two major airports.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Florida and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">gynecomastia surgery near St. Petersburg</a>, we\'re located just over the Howard Frankland Bridge in Hillsborough County. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">surgery near Lakeland</a> or Orange County, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across central Florida, as well as from further away, including southern Florida, Tallahassee, Jacksonville, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Tampa, Florida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people who you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine if we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in Tampa. The length of time you\'ll need to stay depends on the type of gynecomastia procedure you\'re undergoing and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your general health condition may also have an impact on your surgery schedule.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are two major airports just a short drive from the Tampa Gynecomastia Center if you fly into the greater Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.tampaairport.com/\">Tampa Airport</a></strong>: 7 miles (20 minutes by car or 40 minutes by public transport)<br><strong><a href=\"https://orlandoairports.net/\">Orlando Airport</a>:</strong> 92 miles (1 hour 40 minutes by car or 3 hours by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from any of these major airports is to take a quick Uber, Lyft, or local taxi. Busses and trains are a more cost effective option but typically take longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Tampa Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tampa, Florida offers a variety of accommodation choices to fit every budget. Below are some of the favorite lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.hilton.com/en/hotels/tpanthf-hilton-tampa-downtown/\"><strong>Hilton Tampa Downtown</strong><br></a>211 N Tampa St<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/tpamd-le-meridien-tampa-the-courthouse/overview/\"><strong>Le Méridien Tampa, The Courthouse</strong><br></a>601 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hyatt Place Tampa Downtown<br></strong>325 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Embassy Suites by Hilton Tampa Downtown Convention Center<br></strong>513 S Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Westin Tampa Waterside</strong><br>725 S Harbour Island Blvd<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Tampa, Florida for you and/or your companions to enjoy during your time in FL. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Columbia Cafe at the Tampa Bay History Center:</strong> 801 Water St #1905, Tampa, FL 33602</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Mise en Place</strong>: 442 W Grand Central Ave, Tampa, FL 33606</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>The Pearl Tampa</strong>: 823 Water St C100, Tampa, FL 33602</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>With our office being right in downtown Tampa, that\'s where you are going to find the most exciting entertainment options. Our office is just across the bridge from Clearwater, which is another great option for beaches and entertainment. Here are some excellent local entertainment options in the Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Florida Aquarium</strong>: This aquarium is just a few miles away and features some incredible marine life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Curtis Hixon Waterfront Park</strong>: This beautiful park is right on the Hillsborough River and is great way to spend an afternoon.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Clearwater Beach:</strong> Consistently rated one of the best beaches in the United States, Clearwater Beach is just over the bridge less than an hour away.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Tampa Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-20 22:18:04','2024-03-20 22:18:04','',3490,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3794',0,'revision','',0),(3799,3,'2024-03-20 22:34:09','2024-03-20 22:34:09','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Tampa Gynecomastia Center is located in Tampa, Florida, near two major airports.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Florida and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">gynecomastia surgery near St. Petersburg</a>, we\'re located just over the Howard Frankland Bridge in Hillsborough County. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">surgery near Lakeland</a> or Orange County, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across central Florida, as well as from further away, including southern Florida, Tallahassee, Jacksonville, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Tampa, Florida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine whether we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in Tampa. The length of time you\'ll need to stay depends on the type of gynecomastia procedure being performed and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your overall health may also have an impact on your surgery timeline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are two major airports just a short drive from the Tampa Gynecomastia Center if you fly into the greater Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.tampaairport.com/\">Tampa Airport</a></strong>: 7 miles (20 minutes by car or 40 minutes by public transport)<br><strong><a href=\"https://orlandoairports.net/\">Orlando Airport</a>:</strong> 92 miles (1 hour 40 minutes by car or 3 hours by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from any of these major airports is to take a quick Uber, Lyft, or local taxi. Busses are a more cost effective option but typically take longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Tampa Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tampa, Florida offers various accommodations to fit every budget. Below are some of the popular lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.hilton.com/en/hotels/tpanthf-hilton-tampa-downtown/\"><strong>Hilton Tampa Downtown</strong><br></a>211 N Tampa St<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/tpamd-le-meridien-tampa-the-courthouse/overview/\"><strong>Le Méridien Tampa, The Courthouse</strong><br></a>601 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hyatt Place Tampa Downtown<br></strong>325 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Embassy Suites by Hilton Tampa Downtown Convention Center<br></strong>513 S Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Westin Tampa Waterside</strong><br>725 S Harbour Island Blvd<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Tampa, Florida for you and/or your companions to enjoy during your time in FL. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Columbia Cafe at the Tampa Bay History Center:</strong> 801 Water St #1905, Tampa, FL 33602</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Mise en Place</strong>: 442 W Grand Central Ave, Tampa, FL 33606</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>The Pearl Tampa</strong>: 823 Water St C100, Tampa, FL 33602</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We are conveniently located right in downtown Tampa, near tons of exciting entertainment options. Our office is just across the bridge from Clearwater, which is another great option for beaches and entertainment. Here are some excellent local entertainment options in the Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Florida Aquarium</strong>: This aquarium is just a few miles away and features some incredible marine life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Curtis Hixon Waterfront Park</strong>: This beautiful park is right on the Hillsborough River and is a great way to spend an afternoon.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Clearwater Beach:</strong> Clearwater Beach is just over the bridge less than an hour away, and is consistently rated one of the best beaches in the United States.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Tampa Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-20 22:34:09','2024-03-20 22:34:09','',3490,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3799',0,'revision','',0),(3808,5,'2024-03-20 23:21:55','2024-03-20 23:21:55','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3808_b917f4-a1\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3808_ca9cbc-43\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3808_ca9cbc-43\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center covers the Atlanta area and beyond. Just some of the main cities of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out-of-town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And don\'t worry if you are situated further away from the Atlanta area. It is also possible to arrange a virtual consultation for gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Service Pages -> City Summary','','publish','closed','closed','','service-pages-city-summary','','','2024-03-29 15:40:32','2024-03-29 15:40:32','',0,'https://tampagynecomastiacom.bigscoots-staging.com/service-pages-city-summary/',0,'wp_block','',0),(3809,5,'2024-03-20 23:26:43','2024-03-20 23:26:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3808_b917f4-a1\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3808_ca9cbc-43\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3808_ca9cbc-43\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p>The Tampa Gynecomastia Center covers the Tampa, Clearwater, St Petersberg areas, and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Brandon</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Clearwater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fort-meyers-florida/\">Fort Meyers</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Gainesville</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Lakeland</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Orlando</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Riverview</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">St. Petersburg</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'t worry if you are situated further away from the Tampa area. It is also possible to arrange a virtual consultation for gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Service Pages -> City Summary','','inherit','closed','closed','','3808-revision-v1','','','2024-03-20 23:26:43','2024-03-20 23:26:43','',3808,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3809',0,'revision','',0),(3837,3,'2024-03-21 00:55:21','2024-03-21 00:55:21','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest photos that show before and after results for those who opted to have surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">our doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gyno Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-21 00:55:21','2024-03-21 00:55:21','',1563,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3837',0,'revision','',0),(3838,3,'2024-03-21 00:56:15','2024-03-21 00:56:15','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">our doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gyno Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-21 00:56:15','2024-03-21 00:56:15','',1563,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3838',0,'revision','',0),(3839,3,'2024-03-21 00:56:43','2024-03-21 00:56:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">our doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gyno Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-21 00:56:43','2024-03-21 00:56:43','',1563,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3839',0,'revision','',0),(3842,3,'2024-03-21 01:12:03','2024-03-21 01:12:03','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Jonathan Smith MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Smith is one of the head plastic surgeons at the Tampa Gynecomastia Center. With a significant educational background and over 30 years of experience, Dr. Smith is one of the highest regarded gynecomastia plastic surgeons in Florida.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia_Surgeon_Tampa_Florida.jpg\",\"bgImgID\":3841,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"51% 23%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith embarked on his medical journey with an internship and general surgery training at a Hospital in Tampa, Florida. After he graduated, he pursued an additional two years of plastic surgery residency at a medical center in northern Florida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith\'s career has been marked by active engagement in education and scholarship, including delivering lectures, writing numerous articles and chapters for textbooks, and teaching residents and medical students about different facets of plastic surgery. He is board certified from the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Smith leads the Tampa Gynecomastia Center, one of the premier gynecomastia surgery practices in Florida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Science</strong>: <a href=\"https://www.ut.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Tampa</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: Morsani College of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: Morsani College of Medicine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: UF College of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-21 01:12:03','2024-03-21 01:12:03','',1275,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3842',0,'revision','',0),(3860,3,'2024-03-21 01:32:26','2024-03-21 01:32:26','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_7270da-37\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_d0f80a-c4\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_d0f80a-c4 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_47b6d8-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_47b6d8-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_47b6d8-85\">The Tampa Gynecomastia Center is one of the best rated plastic surgery centers in Florida and serves patients from all over the southeastern United States.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_255a4e-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_255a4e-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_255a4e-33\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also get started with some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>, and better understand <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">if you are a gyno candidate</a> to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_62d826-8b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_62d826-8b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_62d826-8b\">Reach out to hear what our patients have to say about the Tampa Gynecomastia Center</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-21 01:32:26','2024-03-21 01:32:26','',2886,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3860',0,'revision','',0),(3866,5,'2024-03-21 02:05:19','2024-03-21 02:05:19','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">As boys hit puberty, their bodies undergo a rollercoaster of hormonal changes. Sometimes, this can cause a condition called gynecomastia, where male breasts become enlarged due to shifts in testosterone and estrogen levels. If this doesn\'t sort itself out naturally, surgery might be the best bet to fix it up.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Tampa Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, encompassing both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may necessitate intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, encompassing both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may necessitate intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescent gynecomastia frequently presents as a small lump beneath the nipple, sometimes accompanied by tenderness or discomfort. There might also be noticeable swelling of the breast tissue. Typically emerging during the early stages of puberty, this condition is most prevalent between the ages of 10 and 13.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem and resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer silently, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence, affecting up to a third of cases, may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by affected individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, while some instances may resolve naturally with time, there are cases where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there\'s an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Tampa Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individual candidacy</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs, ensuring both physical and emotional well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Typically, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola, resulting in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. However, it\'s advisable to refrain from strenuous upper body activities, including gym workouts and sports, for approximately a month to ensure optimal healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and typically clears up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and typically clears up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"puffy nipple\"]}},\" discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003epuffy nipple\\u003c/a\\u003e discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and typically clears up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipple</a> discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Tampa, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Tampa Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery','','inherit','closed','closed','','1906-revision-v1','','','2024-03-21 02:05:19','2024-03-21 02:05:19','',1906,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3866',0,'revision','',0),(3867,5,'2024-03-21 02:06:10','2024-03-21 02:06:10','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3808_b917f4-a1\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3808_ca9cbc-43\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3808_ca9cbc-43\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p>The Tampa Gynecomastia Center covers the Tampa, Clearwater, St Petersberg areas, and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Brandon</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Clearwater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fort-meyers-florida/\">Fort Meyers</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Gainesville</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Lakeland</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Orlando</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Riverview</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">St. Petersburg</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And don\'t worry if you are situated further away from the Tampa area. It is also possible to arrange a virtual consultation for gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Service Pages -> City Summary','','inherit','closed','closed','','3808-revision-v1','','','2024-03-21 02:06:10','2024-03-21 02:06:10','',3808,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3867',0,'revision','',0),(3868,5,'2024-03-21 02:06:11','2024-03-21 02:06:11','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">As boys hit puberty, their bodies undergo a rollercoaster of hormonal changes. Sometimes, this can cause a condition called gynecomastia, where male breasts become enlarged due to shifts in testosterone and estrogen levels. If this doesn\'t sort itself out naturally, surgery might be the best bet to fix it up.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Tampa Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, encompassing both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may necessitate intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, encompassing both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may necessitate intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescent gynecomastia frequently presents as a small lump beneath the nipple, sometimes accompanied by tenderness or discomfort. There might also be noticeable swelling of the breast tissue. Typically emerging during the early stages of puberty, this condition is most prevalent between the ages of 10 and 13.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem and resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer silently, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence, affecting up to a third of cases, may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by affected individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, while some instances may resolve naturally with time, there are cases where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there\'s an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Tampa Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individual candidacy</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs, ensuring both physical and emotional well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Typically, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola, resulting in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. However, it\'s advisable to refrain from strenuous upper body activities, including gym workouts and sports, for approximately a month to ensure optimal healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and typically clears up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and typically clears up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"puffy nipple\"]}},\" discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003epuffy nipple\\u003c/a\\u003e discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and typically clears up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipple</a> discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Tampa, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Tampa Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery','','inherit','closed','closed','','1906-revision-v1','','','2024-03-21 02:06:11','2024-03-21 02:06:11','',1906,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3868',0,'revision','',0),(3870,5,'2024-03-21 02:13:23','2024-03-21 02:13:23','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">As boys hit puberty, their bodies undergo a rollercoaster of hormonal changes. Sometimes, this can cause a condition called gynecomastia, where male breasts become enlarged due to shifts in testosterone and estrogen levels. If this doesn\'t sort itself out naturally, surgery might be the best way to fix it.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Tampa Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, encompassing both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may necessitate intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we specialize in providing comprehensive care for adolescents grappling with gynecomastia. Our team of dedicated specialists has the expertise to address the unique concerns and challenges faced by young individuals dealing with this condition. With a focus on compassion and precision, we strive to offer tailored solutions to ensure optimal outcomes for our gynecomastia patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescent gynecomastia frequently presents as a small lump beneath the nipple, sometimes accompanied by tenderness or discomfort. There might also be noticeable swelling of the breast tissue. Typically emerging during the early stages of puberty, this condition is most prevalent between the ages of 10 and 13.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem and resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer silently, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence, affecting up to a third of cases, may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by affected individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, while some instances may resolve naturally with time, there are cases where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there\'s an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Tampa Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individual candidacy</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Typically, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola, resulting in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. However, it\'s advisable to refrain from strenuous upper body activities, including gym workouts and sports, for approximately a month to ensure optimal healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"puffy nipple\"]}},\" discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003epuffy nipple\\u003c/a\\u003e discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipple</a> discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often resolves on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Tampa, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Tampa Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery','','inherit','closed','closed','','1906-revision-v1','','','2024-03-21 02:13:23','2024-03-21 02:13:23','',1906,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3870',0,'revision','',0),(3872,5,'2024-03-21 02:16:08','2024-03-21 02:16:08','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">As boys hit puberty, their bodies undergo a rollercoaster of hormonal changes. Sometimes, this can cause a condition called gynecomastia, where male breasts become enlarged due to shifts in testosterone and estrogen levels. If this doesn\'t sort itself out naturally, surgery might be the best way to fix it.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Tampa Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, encompassing both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may necessitate intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we specialize in providing comprehensive care for adolescents grappling with gynecomastia. Our team of dedicated specialists has the expertise to address the unique concerns and challenges faced by young individuals dealing with this condition. With a focus on compassion and precision, we strive to offer tailored solutions to ensure optimal outcomes for our gynecomastia patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescent gynecomastia frequently presents as a small lump beneath the nipple, sometimes accompanied by tenderness or discomfort. There might also be noticeable swelling of the breast tissue. Typically emerging during the early stages of puberty, this condition is most prevalent between the ages of 10 and 13.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem and resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer silently, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence, affecting up to a third of cases, may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by affected individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, while some instances may resolve naturally with time, there are cases where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there\'s an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Tampa Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individual candidacy</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Typically, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola, resulting in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. However, it\'s advisable to refrain from strenuous upper body activities, including gym workouts and sports, for approximately a month to ensure optimal healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"puffy nipple\"]}},\" discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003epuffy nipple\\u003c/a\\u003e discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipple</a> discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Tampa, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Tampa Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery','','inherit','closed','closed','','1906-revision-v1','','','2024-03-21 02:16:08','2024-03-21 02:16:08','',1906,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3872',0,'revision','',0),(3874,5,'2024-03-21 02:37:07','2024-03-21 02:37:07','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a mix of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Tampa Gynecomastia to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3376,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Male-Breast-Reduction-1024x829.jpg\" alt=\"Gynecomastia Male Breast Reduction\" class=\"wp-image-3376\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving glandular tissue enlargement, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, or lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified gynecomastia specialists is necessary to determine the underlying cause and recommend the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1780,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Gynecomastia-and-Pseudogynecomastia--1024x527.jpg\" alt=\"Pseudo Vs Gyno\" class=\"wp-image-1780\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes and Effects</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia arises from a multitude of factors</a>, encompassing hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The ramifications of gynecomastia extend beyond mere physical appearance, profoundly impacting psychological well-being. Many individuals grappling with this condition experience heightened self-consciousness, embarrassment, and a notable decline in self-esteem. Consequently, they may opt to avoid situations involving exposure of their chest, such as swimming or sports, leading to a significant decrease in their overall quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia can present with a variety of symptoms, which can differ depending on the underlying cause and the severity of the condition. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are not uncommon due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gyno Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Male breast reduction surgery, also known as <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">adult gynecomastia surgery</a>, is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Tampa Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment, while refraining from strenuous physical activities for a few weeks ensures the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Temporary bruising, swelling, and discomfort are common post-surgery, managed effectively with prescribed pain medication and proper post-operative care. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes. During this period, it\'s essential to follow our surgeon\'s guidance closely and attend all follow-up appointments for monitoring and support throughout the recovery process.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes. During this period, it\'s essential to follow our surgeon\'s guidance closely and attend all follow-up appointments for monitoring and support throughout the recovery process.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process. By incorporating these lifestyle changes, patients can further support their recovery journey and achieve the best possible results.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process. By incorporating these lifestyle changes, patients can further support their recovery journey and achieve the best possible results.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"},{\"id\":\"faq-question-1709940395846\",\"question\":[\"Will insurance cover the cost of surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"Insurance coverage for gynecomastia surgery\"]}},\" varies based on individual insurance plans and the severity of the condition. Our team can provide guidance and support in navigating insurance matters and determining eligibility for coverage.\"],\"jsonQuestion\":\"Will insurance cover the cost of surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eInsurance coverage for gynecomastia surgery\\u003c/a\\u003e varies based on individual insurance plans and the severity of the condition. Our team can provide guidance and support in navigating insurance matters and determining eligibility for coverage.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes. During this period, it\'s essential to follow our surgeon\'s guidance closely and attend all follow-up appointments for monitoring and support throughout the recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process. By incorporating these lifestyle changes, patients can further support their recovery journey and achieve the best possible results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940395846\"><strong class=\"schema-faq-question\">Will insurance cover the cost of surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">Insurance coverage for gynecomastia surgery</a> varies based on individual insurance plans and the severity of the condition. Our team can provide guidance and support in navigating insurance matters and determining eligibility for coverage.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia and are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery for Adults','','inherit','closed','closed','','1908-revision-v1','','','2024-03-21 02:37:07','2024-03-21 02:37:07','',1908,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3874',0,'revision','',0),(3876,5,'2024-03-21 02:39:47','2024-03-21 02:39:47','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a mix of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Tampa Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3376,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Male-Breast-Reduction-1024x829.jpg\" alt=\"Gynecomastia Male Breast Reduction\" class=\"wp-image-3376\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving glandular tissue enlargement, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, or lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Tampa gynecomastia specialists is necessary to determine the underlying cause and recommend the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1780,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Gynecomastia-and-Pseudogynecomastia--1024x527.jpg\" alt=\"Pseudo Vs Gyno\" class=\"wp-image-1780\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes and Effects</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia arises from a multitude of factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The ramifications of gynecomastia extend beyond mere physical appearance, profoundly impacting psychological well-being. Many individuals grappling with this condition experience heightened self-consciousness, embarrassment, and a notable decline in self-esteem. Consequently, they may opt to avoid situations involving exposure of their chest, such as swimming or sports, leading to a significant decrease in their overall quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia can present with a variety of symptoms, which can differ depending on the underlying cause and the severity of the condition. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are not uncommon due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gyno Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Male breast reduction surgery is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Tampa Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment, while refraining from strenuous physical activities for a few weeks ensures the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Temporary bruising, swelling, and discomfort are common post-surgery, managed effectively with prescribed pain medication and proper post-operative care. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes. During this period, it\'s essential to follow our surgeon\'s guidance closely and attend all follow-up appointments for monitoring and support throughout the recovery process.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes. During this period, it\'s essential to follow our surgeon\'s guidance closely and attend all follow-up appointments for monitoring and support throughout the recovery process.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process. By incorporating these lifestyle changes, patients can further support their recovery journey and achieve the best possible results.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process. By incorporating these lifestyle changes, patients can further support their recovery journey and achieve the best possible results.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"},{\"id\":\"faq-question-1709940395846\",\"question\":[\"Will insurance cover the cost of surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"Insurance coverage for gynecomastia surgery\"]}},\" varies based on individual insurance plans and the severity of the condition. Our team can provide guidance and support in navigating insurance matters and determining eligibility for coverage.\"],\"jsonQuestion\":\"Will insurance cover the cost of surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eInsurance coverage for gynecomastia surgery\\u003c/a\\u003e varies based on individual insurance plans and the severity of the condition. Our team can provide guidance and support in navigating insurance matters and determining eligibility for coverage.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes. During this period, it\'s essential to follow our surgeon\'s guidance closely and attend all follow-up appointments for monitoring and support throughout the recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process. By incorporating these lifestyle changes, patients can further support their recovery journey and achieve the best possible results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940395846\"><strong class=\"schema-faq-question\">Will insurance cover the cost of surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">Insurance coverage for gynecomastia surgery</a> varies based on individual insurance plans and the severity of the condition. Our team can provide guidance and support in navigating insurance matters and determining eligibility for coverage.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia and are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery for Adults','','inherit','closed','closed','','1908-revision-v1','','','2024-03-21 02:39:47','2024-03-21 02:39:47','',1908,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3876',0,'revision','',0),(3878,5,'2024-03-21 02:42:50','2024-03-21 02:42:50','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a mix of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Tampa Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3376,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Male-Breast-Reduction-1024x829.jpg\" alt=\"Gynecomastia Male Breast Reduction\" class=\"wp-image-3376\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving glandular tissue enlargement, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, or lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Tampa gynecomastia specialists is necessary to determine the underlying cause and recommend the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1780,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/02/Gynecomastia-and-Pseudogynecomastia--1024x527.jpg\" alt=\"Pseudo Vs Gyno\" class=\"wp-image-1780\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes and Effects</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia arises from a multitude of factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The ramifications of gynecomastia extend beyond mere physical appearance, profoundly impacting psychological well-being. Many individuals grappling with this condition experience heightened self-consciousness, embarrassment, and a notable decline in self-esteem. Consequently, they may opt to avoid situations involving exposure of their chest, such as swimming or sports, leading to a significant decrease in their overall quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia can present with a variety of symptoms, which can differ depending on the underlying cause and the severity of the condition. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are not uncommon due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gyno Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Male breast reduction surgery is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Tampa Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment, while refraining from strenuous physical activities for a few weeks ensures the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Temporary bruising, swelling, and discomfort are common post-surgery, managed effectively with prescribed pain medication and proper post-operative care. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia and are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery for Adults','','inherit','closed','closed','','1908-revision-v1','','','2024-03-21 02:42:50','2024-03-21 02:42:50','',1908,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3878',0,'revision','',0),(3887,5,'2024-03-21 18:01:32','2024-03-21 18:01:32','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder grappling with the challenges of gynecomastia? At the Tampa Gynecomastia Center, we offer tailored solutions designed specifically for individuals like you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_db0a35-4a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_db0a35-4a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_db0a35-4a\">Dedicated to providing comprehensive support and care, our team of specialists understands the distinctive needs and concerns that bodybuilders encounter with gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this guide, we delve into the intricacies of bodybuilder gynecomastia, examining its root causes, symptoms, available surgical interventions, post-operative recovery, and addressing <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">common questions surrounding gyno</a>. We\'re here to accompany you every step of the way on your journey towards resolution and renewed confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the Tampa Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Bodybuilder Gynecomastia</strong> Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia is a genuine concern among fitness enthusiasts, leading to the development of enlarged breast tissue in male individuals. This issue often arises due to the use of <a href=\"https://www.dea.gov/factsheets/steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones. These substances are commonly utilized to enhance muscle growth and physical performance, albeit at the expense of disrupting the body\'s natural hormonal balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, the realm of bodybuilding supplements is not without its pitfalls. Some products marketed to enthusiasts may contain undisclosed steroid or hormone-like ingredients, further exacerbating the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When hormonal equilibrium is compromised, it results in the proliferation of glandular tissue beneath the areola, giving rise to the characteristic appearance of enlarged male breasts. Understanding the impact of steroid-induced gynecomastia is crucial for those dedicated to their fitness journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The main reason bodybuilders experience gynecomastia often boils down to their use of anabolic steroids or prohormones. These substances are popular among those looking to bulk up and improve performance. But here\'s the thing: these synthetic hormones mimic testosterone, messing up the natural balance between estrogen and testosterone in the body. This disruption can lead to the growth of breast tissue, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causing gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes, patients know they\'re taking these substances. Other times, they might be taking something they think is just a harmless supplement, not realizing it contains steroids, prohormones, or similar stuff. Unfortunately, this can still trigger gynecomastia, even if they stop using those substances later on. It\'s crucial for folks in the fitness world to understand these risks and how to avoid them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying gynecomastia symptoms among bodybuilders is essential for timely intervention and management. One of the hallmark signs is the presence of firm breast tissue beneath the areola, often accompanied by tenderness or sensitivity. These symptoms parallel those seen in standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, it\'s not just physical discomfort that bodybuilders may face. Gynecomastia can take a toll on mental well-being too. Many individuals experience psychological distress and a dip in self-esteem due to the appearance of enlarged breasts, which can disrupt their confidence and hinder their performance both in and out of the gym.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In more severe instances, gynecomastia may manifest in asymmetry between the breasts, causing further discomfort and aesthetic concerns. Some individuals might even experience nipple discharge, indicating a more advanced stage of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognizing these symptoms early on is paramount. It allows for prompt intervention, which can prevent the progression of gynecomastia and aid in restoring a more masculine chest contour. By staying vigilant and seeking professional guidance when needed, bodybuilders can effectively address gynecomastia and reclaim their confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for bodybuilders typically employs a dual approach, combining liposuction with direct excision of glandular tissue to attain the desired outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The procedure begins with the removal of excess fatty tissue through liposuction, employing specialized techniques to contour the chest and refine its definition. Following this, direct excision of glandular tissue is carried out through a discreet incision strategically placed at the lower border of the areola, aiming for minimal scarring and a natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Performed under general anesthesia, the surgery allows most patients to return home on the same day, ensuring a comfortable and efficient recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgery Gynecomastia Recovery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders should anticipate some swelling, bruising, and discomfort, which typically diminishes over the following weeks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To aid in the healing process and promote optimal contour refinement, patients are advised to wear a compression garment, providing support to the chest while minimizing swelling. It\'s crucial to refrain from engaging in strenuous upper body activities, including weightlifting, for approximately four to six weeks post-surgery. This precaution is essential to prevent complications and ensure proper tissue healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While each individual\'s recovery journey may vary, most patients can gradually resume non-strenuous activities within a few days. Under the guidance of our surgeon, they can gradually reintroduce their regular exercise routine, ensuring a safe and effective transition back to their fitness regimen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the Tampa Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance inquiries and financing options\"]}},\" to facilitate access to treatment.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance inquiries and financing options\\u003c/a\\u003e to facilitate access to treatment.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance inquiries and financing options</a> to facilitate access to treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Reach Out Today</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our dedication lies in delivering customized care and individualized treatment strategies tailored to meet the unique needs and aspirations of bodybuilders contending with gynecomastia. Employing cutting-edge techniques and advanced technologies, our skilled team of specialists ensures the provision of safe, successful, and aesthetically pleasing outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the Tampa Gynecomastia Center.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery for Bodybuilders','','inherit','closed','closed','','1911-revision-v1','','','2024-03-21 18:01:32','2024-03-21 18:01:32','',1911,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3887',0,'revision','',0),(3894,5,'2024-03-21 18:08:25','2024-03-21 18:08:25','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder grappling with the challenges of gynecomastia? At the Tampa Gynecomastia Center, we offer tailored solutions designed specifically for individuals like you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_db0a35-4a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_db0a35-4a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_db0a35-4a\">Dedicated to providing comprehensive support and care, our team of specialists understands the distinctive needs and concerns that bodybuilders encounter with gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this guide, we delve into the intricacies of bodybuilder gynecomastia, examining its root causes, symptoms, available surgical interventions, post-operative recovery, and addressing <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">common questions surrounding gyno</a>. We\'re here to accompany you every step of the way on your journey towards resolution and renewed confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the Tampa Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Bodybuilder Gynecomastia</strong> Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia is a genuine concern among fitness enthusiasts, leading to the development of enlarged breast tissue in male individuals. This issue often arises due to the use of <a href=\"https://www.dea.gov/factsheets/steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones. These substances are commonly utilized to enhance muscle growth and physical performance, albeit at the expense of disrupting the body\'s natural hormonal balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, the realm of bodybuilding supplements is not without its pitfalls. Some products marketed to enthusiasts may contain undisclosed steroid or hormone-like ingredients, further exacerbating the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When hormonal equilibrium is compromised, it results in the proliferation of glandular tissue beneath the areola, giving rise to the characteristic appearance of enlarged male breasts. Understanding the impact of steroid-induced gynecomastia is crucial for those dedicated to their fitness journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The main reason bodybuilders experience gynecomastia often boils down to their use of anabolic steroids or prohormones. These substances are popular among those looking to bulk up and improve performance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But here\'s the thing: these synthetic hormones mimic testosterone, messing up the natural balance between estrogen and testosterone in the body. This disruption can lead to the growth of breast tissue, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causing gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes, patients know they\'re taking these substances. Other times, they might be taking something they think is just a harmless supplement, not realizing it contains steroids, prohormones, or similar stuff.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> Unfortunately, this can still trigger gynecomastia, even if they stop using those substances later on. It\'s crucial for folks in the fitness world to understand these risks and how to avoid them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying gynecomastia symptoms among bodybuilders is essential for timely intervention and management. One of the hallmark signs is the presence of firm breast tissue beneath the areola, often accompanied by tenderness or sensitivity. These symptoms parallel those seen in standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, it\'s not just physical discomfort that bodybuilders may face. Gynecomastia can take a toll on mental well-being too. Many individuals experience psychological distress and a dip in self-esteem due to the appearance of enlarged breasts, which can disrupt their confidence and hinder their performance both in and out of the gym.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In more severe instances, gynecomastia may manifest in asymmetry between the breasts, causing further discomfort and aesthetic concerns. Some individuals might even experience nipple discharge, indicating a more advanced stage of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognizing these symptoms early on is paramount. It allows for prompt intervention, which can prevent the progression of gynecomastia and aid in restoring a more masculine chest contour. By staying vigilant and seeking professional guidance, bodybuilders can effectively address gynecomastia and reclaim their confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for bodybuilders typically employs a dual approach, combining liposuction with direct excision of glandular tissue to attain the desired outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The procedure begins with the removal of excess fatty tissue through liposuction, employing specialized techniques to contour the chest and refine its definition. Following this, direct excision of glandular tissue is carried out through a discreet incision strategically placed at the lower border of the areola, aiming for minimal scarring and a natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Performed under general anesthesia, the surgery allows most patients to return home on the same day, ensuring a comfortable and efficient recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgery Gynecomastia Recovery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders should anticipate some swelling, bruising, and discomfort, which typically diminishes over the following weeks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To aid in the healing process and promote optimal contour refinement, patients are advised to wear a compression garment, providing support to the chest while minimizing swelling. It\'s crucial to refrain from engaging in strenuous upper body activities, including weightlifting, for approximately four to six weeks post-surgery. This precaution is essential to prevent complications and ensure proper tissue healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While each individual\'s recovery journey may vary, most patients can gradually resume non-strenuous activities within a few days. Under the guidance of our surgeon, they can gradually reintroduce their regular exercise routine, ensuring a safe and effective transition back to their fitness regimen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the Tampa Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance inquiries and financing options\"]}},\" to facilitate access to treatment.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance inquiries and financing options\\u003c/a\\u003e to facilitate access to treatment.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance inquiries and financing options</a> to facilitate access to treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Reach Out Today</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our dedication lies in delivering customized care and individualized treatment strategies tailored to meet the unique needs and aspirations of bodybuilders contending with gynecomastia. Employing cutting-edge techniques and advanced technologies, our skilled team of specialists ensures safe, successful, and aesthetically pleasing outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the Tampa Gynecomastia Center.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery for Bodybuilders','','inherit','closed','closed','','1911-revision-v1','','','2024-03-21 18:08:25','2024-03-21 18:08:25','',1911,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3894',0,'revision','',0),(3897,5,'2024-03-21 18:28:58','2024-03-21 18:28:58','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">Gynecomastia revision surgery is a procedure sought for various reasons. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Tampa Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically presents with an excess of both breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the surplus breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. Changes in weight can alter the distribution of fat in the body, affecting the chest appearance. Revision surgery may be necessary to address excess fat or loose skin resulting from weight changes, ensuring the maintenance or restoration of the desired chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Tampa Gynecomastia Center, we\'re here to provide the support and assistance you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced and adept surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced and adept surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance, or is it considered a cosmetic procedure? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance, or is it considered a cosmetic procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced and adept surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance, or is it considered a cosmetic procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a sagging appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery','','inherit','closed','closed','','1901-revision-v1','','','2024-03-21 18:28:58','2024-03-21 18:28:58','',1901,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3897',0,'revision','',0),(3899,5,'2024-03-21 18:33:22','2024-03-21 18:33:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3808_b917f4-a1\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3808_ca9cbc-43\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3808_ca9cbc-43\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p>The Tampa Gynecomastia Center covers the Tampa, Clearwater, St. Petersberg areas, and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Brandon</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Clearwater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fort-meyers-florida/\">Fort Meyers</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Gainesville</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Lakeland</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Orlando</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Riverview</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">St. Petersburg</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And don\'t worry if you are situated further away from the Tampa area. It is also possible to arrange a virtual consultation for gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Service Pages -> City Summary','','inherit','closed','closed','','3808-revision-v1','','','2024-03-21 18:33:22','2024-03-21 18:33:22','',3808,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3899',0,'revision','',0),(3900,5,'2024-03-21 18:33:22','2024-03-21 18:33:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">Gynecomastia revision surgery is a procedure sought for various reasons. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Tampa Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically presents with an excess of both breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. Changes in weight can alter the distribution of fat in the body, affecting the chest appearance. Revision surgery may be necessary to address excess fat or loose skin resulting from weight changes, ensuring the maintenance or restoration of the desired chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Tampa Gynecomastia Center, we\'re here to provide the support and assistance you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a sagging appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery','','inherit','closed','closed','','1901-revision-v1','','','2024-03-21 18:33:22','2024-03-21 18:33:22','',1901,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3900',0,'revision','',0),(3923,3,'2024-03-21 20:18:15','2024-03-21 20:18:15','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Tampa Gynecomastia Center is located near Riverview, just 15 minutes away from Riverview in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Riverview? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Riverview in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Riverview to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;FL-618 Toll/Selmon Expy&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Riverview','','inherit','closed','closed','','2787-revision-v1','','','2024-03-21 20:18:15','2024-03-21 20:18:15','',2787,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3923',0,'revision','',0),(3924,3,'2024-03-21 20:19:54','2024-03-21 20:19:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Tampa Gynecomastia Center is located near Clearwater, about 40 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Clearwater? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Clearwater in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Clearwater to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take&nbsp;Cleveland St&nbsp;to&nbsp;Court St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take&nbsp;State Rd 60 E&nbsp;to&nbsp;FL-616 E/W Spruce St&nbsp;in&nbsp;Tampa. Take exit&nbsp;1B&nbsp;from&nbsp;FL-60 E/State Rd 60 E</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on&nbsp;FL-616 E. Take&nbsp;W Columbus Dr&nbsp;to&nbsp;N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn&nbsp;right&nbsp;onto&nbsp;N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn&nbsp;left&nbsp;onto&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Clearwater','','inherit','closed','closed','','2844-revision-v1','','','2024-03-21 20:19:54','2024-03-21 20:19:54','',2844,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3924',0,'revision','',0),(3925,3,'2024-03-21 20:20:18','2024-03-21 20:20:18','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Tampa Gynecomastia Center is located near Brandon, about 20 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Brandon? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Brandon in Tampa, FL.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Brandon to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow FL-618 Toll/Selmon Expy to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Brandon','','inherit','closed','closed','','2854-revision-v1','','','2024-03-21 20:20:18','2024-03-21 20:20:18','',2854,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3925',0,'revision','',0),(3926,3,'2024-03-21 20:20:56','2024-03-21 20:20:56','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Tampa Gynecomastia Center is located near St. Petersburg, about 25 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near St. Petersburg? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from St. Petersburg in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From St. Petersburg to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-175 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-275 N&nbsp;to&nbsp;N Tampa St&nbsp;in&nbsp;Tampa. Take exit&nbsp;44&nbsp;from&nbsp;I-275 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from St. Petersburg','','inherit','closed','closed','','2858-revision-v1','','','2024-03-21 20:20:56','2024-03-21 20:20:56','',2858,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3926',0,'revision','',0),(3927,3,'2024-03-21 20:21:25','2024-03-21 20:21:25','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_e84952-0e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_ac0c40-b1\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_ac0c40-b1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_88387d-33\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_88387d-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_88387d-33\">The Tampa Gynecomastia Center is located near Lakeland, about 40 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Lakeland? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Lakeland in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Lakeland to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-4 W&nbsp;from&nbsp;Kathleen Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-4 W&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Lakeland','','inherit','closed','closed','','2862-revision-v1','','','2024-03-21 20:21:25','2024-03-21 20:21:25','',2862,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3927',0,'revision','',0),(3928,3,'2024-03-21 20:22:23','2024-03-21 20:22:23','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The Tampa Gynecomastia Center is located near Orlando, just over an hour away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Orlando? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Orlando in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Orlando to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-4 Express</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive from&nbsp;I-4 W&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Orlando','','inherit','closed','closed','','2868-revision-v1','','','2024-03-21 20:22:23','2024-03-21 20:22:23','',2868,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3928',0,'revision','',0),(3929,3,'2024-03-21 20:22:44','2024-03-21 20:22:44','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_7a4554-6d\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_ca4ba9-77\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_ca4ba9-77 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_1a8217-f2\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_1a8217-f2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_1a8217-f2\">The Tampa Gynecomastia Center is located near Fort Meyers, about 2.5 hours away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Fort Meyers? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just a couple hours from Fort Meyers in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Fort Meyers to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 N in Charlotte County from Cleveland Ave and US-41 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-75 N&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Fort Meyers','','inherit','closed','closed','','2872-revision-v1','','','2024-03-21 20:22:44','2024-03-21 20:22:44','',2872,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3929',0,'revision','',0),(3931,3,'2024-03-21 20:22:59','2024-03-21 20:22:59','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The Tampa Gynecomastia Center is located near Gainesville, just 2 hours away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Gainesville? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Gainesville in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Gainesville to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-75 S&nbsp;from&nbsp;S Main St&nbsp;and&nbsp;US-441 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on&nbsp;I-75 S&nbsp;to&nbsp;Tampa. Take exit&nbsp;45A&nbsp;from&nbsp;I-275 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on&nbsp;N Orange Ave. Drive to&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Gainesville','','inherit','closed','closed','','2881-revision-v1','','','2024-03-21 20:22:59','2024-03-21 20:22:59','',2881,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3931',0,'revision','',0),(3932,3,'2024-03-21 20:23:34','2024-03-21 20:23:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Tampa Gynecomastia Center is located in Tampa, Florida, near two major airports.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Florida and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">gynecomastia surgery near St. Petersburg</a>, we\'re located just over the Howard Frankland Bridge in Hillsborough County. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">surgery near Lakeland</a> or Orange County, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across central Florida, as well as from further away, including southern Florida, Tallahassee, Jacksonville, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Tampa, Florida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine whether we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in Tampa. The length of time you\'ll need to stay depends on the type of gynecomastia procedure being performed and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your overall health may also have an impact on your surgery timeline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are two major airports just a short drive from the Tampa Gynecomastia Center if you fly into the greater Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.tampaairport.com/\">Tampa Airport</a></strong>: 7 miles (20 minutes by car or 40 minutes by public transport)<br><strong><a href=\"https://orlandoairports.net/\">Orlando Airport</a>:</strong> 92 miles (1 hour 40 minutes by car or 3 hours by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from any of these major airports is to take a quick Uber, Lyft, or local taxi. Busses are a more cost effective option but typically take longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Tampa Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tampa, Florida offers various accommodations to fit every budget. Below are some of the popular lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.hilton.com/en/hotels/tpanthf-hilton-tampa-downtown/\"><strong>Hilton Tampa Downtown</strong><br></a>211 N Tampa St<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/tpamd-le-meridien-tampa-the-courthouse/overview/\"><strong>Le Méridien Tampa, The Courthouse</strong><br></a>601 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hyatt Place Tampa Downtown<br></strong>325 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Embassy Suites by Hilton Tampa Downtown Convention Center<br></strong>513 S Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Westin Tampa Waterside</strong><br>725 S Harbour Island Blvd<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Tampa, Florida for you and/or your companions to enjoy during your time in FL. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Columbia Cafe at the Tampa Bay History Center:</strong> 801 Water St #1905, Tampa, FL 33602</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Mise en Place</strong>: 442 W Grand Central Ave, Tampa, FL 33606</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>The Pearl Tampa</strong>: 823 Water St C100, Tampa, FL 33602</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We are conveniently located right in downtown Tampa, near tons of exciting entertainment options. Our office is just across the bridge from Clearwater, which is another great option for beaches and entertainment. Here are some excellent local entertainment options in the Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Florida Aquarium</strong>: This aquarium is just a few miles away and features some incredible marine life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Curtis Hixon Waterfront Park</strong>: This beautiful park is right on the Hillsborough River and is a great way to spend an afternoon.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Clearwater Beach:</strong> Clearwater Beach is just over the bridge less than an hour away, and is consistently rated one of the best beaches in the United States.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Tampa Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-21 20:23:34','2024-03-21 20:23:34','',3490,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3932',0,'revision','',0),(3954,5,'2024-03-21 20:59:07','2024-03-21 20:59:07','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_86a1b1-31\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_86a1b1-31 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_86a1b1-31\">For many men, the term \"puffy nipples\" can bring up feelings of self-consciousness and discomfort. This specific type of gynecomastia, marked by the swelling and protrusion of the nipple-areolar complex, goes beyond just physical appearance - it can deeply affect confidence and well-being. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_94da24-24\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_94da24-24 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_94da24-24\">In this article, we\'ll explore the ins and outs of puffy nipples, discussing what causes them, how they\'re diagnosed, and what treatment options are available.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipples Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, an aspect of <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">gynecomastia</a>, result from a complex interplay of hormonal, genetic, and environmental factors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, notably an excess of estrogen compared to testosterone, disrupt normal breast tissue development, leading to the characteristic swelling and protrusion of the nipple-areolar complex. Genetic predisposition also plays a significant role, influencing hormone metabolism and receptor sensitivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle habits such as poor diet, sedentary lifestyles, and obesity exacerbate hormonal imbalances and promote excess chest adipose tissue. Excessive alcohol consumption and substance abuse further disrupt hormonal equilibrium, contributing to puffy nipple formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding these factors is crucial for accurate diagnosis and targeted treatment interventions aimed at addressing the root cause of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, often associated with gynecomastia, refer to the swelling and protrusion of the nipple-areolar complex in males. This condition, while not medically harmful, can significantly impact self-esteem and quality of life due to its effect on physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples typically arise from an imbalance in hormone levels, particularly an excess of estrogen relative to testosterone. This hormonal imbalance can disrupt normal breast tissue development, resulting in the characteristic appearance of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While puffy nipples share similarities with gynecomastia, which involves the enlargement of male breast tissue, they represent a distinct presentation where the swelling is concentrated around the nipple area. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the relationship between puffy nipples and gynecomastia is essential for accurate diagnosis and effective management, as both conditions can have overlapping symptoms and require tailored treatment approaches to address underlying causes and alleviate associated concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Surgical Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Liposuction, which is effective for cases primarily caused by excess fatty tissue behind the nipple, entails gently agitating fat cells before suctioning them out using a cannula.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: In cases where puffy nipples result from excess breast gland tissue behind the nipple/areola, surgical removal of the breast tissue, including the gland itself, is recommended to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: Offering optimal post-surgery aesthetics, this comprehensive procedure removes both excess fat tissue and the breast gland.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the Tampa Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size. Seeking medical advice is essential for accurate diagnosis and personalized treatment plans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\",\"children\":[\"consult our doctors\"]}},\" promptly for proper evaluation and guidance.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\\u0022\\u003econsult our doctors\\u003c/a\\u003e promptly for proper evaluation and guidance.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\">consult our doctors</a> promptly for proper evaluation and guidance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While Puffy Nipple Syndrome can be psychologically upsetting, numerous treatments exist for those affected. Whether adjusting your diet or adopting a new exercise routine (ideally both), combating puffy nipples and enhancing your appearance is entirely feasible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, for persistent cases, surgical procedures for puffy nipples are always an option—and highly effective at achieving desired outcomes.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples Overview','','inherit','closed','closed','','2668-revision-v1','','','2024-03-21 20:59:07','2024-03-21 20:59:07','',2668,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3954',0,'revision','',0),(3958,5,'2024-03-21 21:04:21','2024-03-21 21:04:21','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_86a1b1-31\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_86a1b1-31 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_86a1b1-31\">For many men, the term \"puffy nipples\" can bring up feelings of self-consciousness and discomfort. This specific <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a>, marked by the swelling and protrusion of the nipple-areolar complex, goes beyond just physical appearance - it can deeply affect confidence and well-being. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_94da24-24\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_94da24-24 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_94da24-24\">In this article, we\'ll explore the ins and outs of puffy nipples, discussing what causes them, how they\'re diagnosed, and what treatment options are available.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, often associated with gynecomastia, refer to the swelling and protrusion of the nipple-areolar complex in males. This condition, while not medically harmful, can significantly impact self-esteem and quality of life due to its effect on physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples typically arise from an imbalance in hormone levels, particularly an excess of estrogen relative to testosterone. This hormonal imbalance can disrupt normal breast tissue development, resulting in the characteristic appearance of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While puffy nipples share similarities with gynecomastia, which involves the enlargement of male breast tissue, they represent a distinct presentation where the swelling is concentrated around the nipple area. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the relationship between puffy nipples and gynecomastia is essential for accurate diagnosis and effective management, as both conditions can have overlapping symptoms and require tailored treatment approaches to address underlying causes and alleviate associated concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipples Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, an aspect of <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">gynecomastia</a>, result from a complex interplay of hormonal, genetic, and environmental factors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, notably an excess of estrogen compared to testosterone, disrupt normal breast tissue development, leading to the characteristic swelling and protrusion of the nipple area. Genetic predisposition also plays a significant role, influencing hormone metabolism and receptor sensitivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle habits such as poor diet, sedentary lifestyles, and obesity exacerbate hormonal imbalances and promote excess chest adipose tissue. Excessive alcohol consumption and substance abuse further disrupt hormonal equilibrium, contributing to puffy nipple formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding these factors is crucial for accurate diagnosis and targeted treatment interventions aimed at addressing the root cause of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Surgical Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Liposuction, which is effective for cases primarily caused by excess fatty tissue behind the nipple, entails gently agitating fat cells before suctioning them out using a cannula.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: In cases where puffy nipples result from excess breast gland tissue behind the nipple/areola, surgical removal of the excess breast gland tissue, is recommended to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: Offering optimal post-surgery aesthetics, this comprehensive procedure removes both excess fat tissue and breast gland tissue.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the Tampa Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size. Seeking medical advice is essential for accurate diagnosis and personalized treatment plans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\",\"children\":[\"consult our doctors\"]}},\" promptly for proper evaluation and guidance.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\\u0022\\u003econsult our doctors\\u003c/a\\u003e promptly for proper evaluation and guidance.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\">consult our doctors</a> promptly for proper evaluation and guidance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While Puffy Nipple Syndrome can be psychologically upsetting, numerous treatments exist for those affected. Whether adjusting your diet or adopting a new exercise routine (ideally both), combating puffy nipples and enhancing your appearance is entirely feasible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, for persistent cases, surgical procedures for puffy nipples are always an option—and highly effective at achieving desired outcomes.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples Overview','','inherit','closed','closed','','2668-revision-v1','','','2024-03-21 21:04:21','2024-03-21 21:04:21','',2668,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3958',0,'revision','',0),(3966,3,'2024-03-21 21:19:29','2024-03-21 21:19:29','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Tampa Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Discover the Range of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to assist - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><span class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually arises from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></span></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><span class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></span></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_c2b09c-eb\",\"collapseGutter\":\"skinny\",\"tabletRowGutter\":\"skinny\",\"customRowGutter\":[10,10,\"\"],\"columnGutter\":\"skinny\",\"tabletGutter\":\"skinny\",\"customGutter\":[16,16,\"\"],\"colLayout\":\"equal\",\"maxWidth\":2000,\"topSepHeight\":0,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"margin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_83a5ea-56\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_83a5ea-56 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_8926b4-bf\",\"linkProperty\":\"learnmore\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_8926b4-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually arises from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_79039c-f8\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_79039c-f8 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_c1a9aa-04\",\"linkProperty\":\"learnmore\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_c1a9aa-04\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_5b134a-4a\",\"collapseGutter\":\"skinny\",\"tabletRowGutter\":\"skinny\",\"customRowGutter\":[10,10,\"\"],\"columnGutter\":\"skinny\",\"tabletGutter\":\"skinny\",\"customGutter\":[16,16,\"\"],\"colLayout\":\"equal\",\"maxWidth\":2000,\"topSepHeight\":0,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"margin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_384372-8b\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_384372-8b kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_7e4a25-75\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_7e4a25-75\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_6256f4-c2\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_6256f4-c2 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_bcef12-5a\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_bcef12-5a\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Revision Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_95ca0d-52\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_95ca0d-52 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_83b26e-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_83b26e-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue but instead is caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedo Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_6aa30e-21\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_6aa30e-21 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_4cc2c6-49\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_4cc2c6-49\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_171275-ed\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_171275-ed kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_f0163f-a2\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_f0163f-a2\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_176f6c-05\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_176f6c-05 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_876163-57\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_876163-57\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gyno After Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Types & Categories','','inherit','closed','closed','','1482-revision-v1','','','2024-03-21 21:19:29','2024-03-21 21:19:29','',1482,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3966',0,'revision','',0),(3967,3,'2024-03-21 21:20:55','2024-03-21 21:20:55','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Tampa Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Discover the Range of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to assist - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually arises from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><span class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></span></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_c2b09c-eb\",\"collapseGutter\":\"skinny\",\"tabletRowGutter\":\"skinny\",\"customRowGutter\":[10,10,\"\"],\"columnGutter\":\"skinny\",\"tabletGutter\":\"skinny\",\"customGutter\":[16,16,\"\"],\"colLayout\":\"equal\",\"maxWidth\":2000,\"topSepHeight\":0,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"margin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_83a5ea-56\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_83a5ea-56 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_8926b4-bf\",\"linkProperty\":\"learnmore\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_8926b4-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually arises from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_79039c-f8\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_79039c-f8 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_c1a9aa-04\",\"linkProperty\":\"learnmore\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_c1a9aa-04\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_5b134a-4a\",\"collapseGutter\":\"skinny\",\"tabletRowGutter\":\"skinny\",\"customRowGutter\":[10,10,\"\"],\"columnGutter\":\"skinny\",\"tabletGutter\":\"skinny\",\"customGutter\":[16,16,\"\"],\"colLayout\":\"equal\",\"maxWidth\":2000,\"topSepHeight\":0,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"margin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_384372-8b\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_384372-8b kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_7e4a25-75\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_7e4a25-75\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_6256f4-c2\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_6256f4-c2 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_bcef12-5a\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_bcef12-5a\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Revision Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_95ca0d-52\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_95ca0d-52 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_83b26e-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_83b26e-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue but instead is caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedo Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_6aa30e-21\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_6aa30e-21 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_4cc2c6-49\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_4cc2c6-49\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_171275-ed\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_171275-ed kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_f0163f-a2\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_f0163f-a2\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_176f6c-05\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_176f6c-05 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_876163-57\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_876163-57\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gyno After Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Types & Categories','','inherit','closed','closed','','1482-revision-v1','','','2024-03-21 21:20:55','2024-03-21 21:20:55','',1482,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3967',0,'revision','',0),(3968,3,'2024-03-21 21:22:00','2024-03-21 21:22:00','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Tampa Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Discover the Range of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to assist - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually arises from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_c2b09c-eb\",\"collapseGutter\":\"skinny\",\"tabletRowGutter\":\"skinny\",\"customRowGutter\":[10,10,\"\"],\"columnGutter\":\"skinny\",\"tabletGutter\":\"skinny\",\"customGutter\":[16,16,\"\"],\"colLayout\":\"equal\",\"maxWidth\":2000,\"topSepHeight\":0,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"margin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_83a5ea-56\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_83a5ea-56 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_8926b4-bf\",\"linkProperty\":\"learnmore\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_8926b4-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually arises from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_79039c-f8\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_79039c-f8 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_c1a9aa-04\",\"linkProperty\":\"learnmore\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_c1a9aa-04\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_5b134a-4a\",\"collapseGutter\":\"skinny\",\"tabletRowGutter\":\"skinny\",\"customRowGutter\":[10,10,\"\"],\"columnGutter\":\"skinny\",\"tabletGutter\":\"skinny\",\"customGutter\":[16,16,\"\"],\"colLayout\":\"equal\",\"maxWidth\":2000,\"topSepHeight\":0,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"margin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_384372-8b\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_384372-8b kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_7e4a25-75\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_7e4a25-75\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_6256f4-c2\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_6256f4-c2 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_bcef12-5a\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_bcef12-5a\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Revision Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_95ca0d-52\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_95ca0d-52 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_83b26e-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_83b26e-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue but instead is caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedo Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_6aa30e-21\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_6aa30e-21 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_4cc2c6-49\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_4cc2c6-49\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_171275-ed\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_171275-ed kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_f0163f-a2\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_f0163f-a2\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_176f6c-05\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignment\":\"space-evenly\",\"verticalAlignmentTablet\":\"top\",\"backgroundHover\":\"palette2\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_176f6c-05 kb-section-dir-vertical kb-section-md-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_876163-57\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette5\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaIcon\":[{\"icon\":\"fe_plus\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"palette9\",\"hoverColor\":\"palette9\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"titleColor\":\"palette9\",\"titleHoverColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"textHoverColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"palette9\",\"border\":\"palette9\",\"borderRadius\":5,\"borderWidth\":[5,5,5,5],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_876163-57\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_plus\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gyno After Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Types & Categories','','inherit','closed','closed','','1482-revision-v1','','','2024-03-21 21:22:00','2024-03-21 21:22:00','',1482,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3968',0,'revision','',0),(3969,5,'2024-03-21 21:23:14','2024-03-21 21:23:14','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">Gynecomastia, characterized by enlarged male breast tissue, often leads to distress and self-consciousness among men. While commonly linked to hormonal imbalances or medical conditions, it can also affect adult males post-weight loss. Despite significant achievements in shedding pounds, lingering issues may persist, such as excess skin and tissue contributing to the appearance of enlarged breasts.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery offers a transformative solution for men after weight loss. By addressing excess tissue and restoring a more masculine chest contour, this surgical intervention enhances physical appearance and empowers individuals to reclaim confidence. Join us as we explore the journey of post-weight loss gynecomastia surgery, its benefits, and its transformative impact on confidence and self-image.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by an imbalance between the hormones testosterone and estrogen, resulting in the growth of breast gland tissue in males. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Beyond Puberty</strong>: While hormonal changes during puberty are frequently implicated in the onset of gynecomastia, its manifestation beyond adolescence underscores a broader spectrum of triggers. The delicate balance between testosterone and estrogen hormones, essential for maintaining normal breast tissue development, can be disrupted by various factors throughout a man\'s life journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Navigating the Maze of Causes</strong>: Obesity, medications, hormone imbalances, and underlying medical conditions intricately weave into the tapestry of gynecomastia\'s causative landscape. The accumulating layers of excess adipose tissue, compounded by hormonal irregularities or medication side effects, can further exacerbate the condition, presenting a challenging maze for both patients and healthcare providers to navigate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Loss Unveils Hidden Struggles</strong>: In the context of weight loss, gynecomastia\'s presence can become more pronounced as excess fat dissipates, laying bare the underlying surplus breast tissue and skin. This revelation can be particularly disheartening for men who have dedicated themselves to shedding pounds, only to be confronted with a lingering cosmetic concern, underscoring the necessity for a comprehensive understanding of gynecomastia\'s causes and treatment strategies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Impacts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Living with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> goes beyond physical discomfort—it deeply affects a man\'s self-esteem and how he views himself. Enlarged breasts often trigger feelings of embarrassment and self-consciousness, making social and intimate situations daunting. This emotional burden can seep into various aspects of life, from relationships to work, and even overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For many, dealing with enlarged breasts leads to a rollercoaster of emotions, from feeling constantly insecure to avoiding interactions altogether. Constant scrutiny of appearance chips away at self-confidence, creating barriers to forming meaningful connections and hindering personal growth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Men who\'ve triumphed over weight loss may find gynecomastia to be an unexpected setback. Despite their hard work and physical transformation, enlarged breasts undermine their sense of achievement, overshadowing progress and leaving them grappling with renewed self-doubt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing the emotional impact of gynecomastia requires a holistic approach. By acknowledging its toll and fostering a supportive environment, individuals can begin to rebuild their confidence and embrace their journey towards self-acceptance and empowerment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also referred to as male breast reduction surgery, stands as a definitive solution for addressing lingering issues of excess breast tissue and skin following weight loss. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This transformative procedure involves the meticulous removal of glandular tissue and surplus skin through surgical excision, complemented by the precision of liposuction techniques to eliminate excess fat. The culmination of these techniques results in the creation of a flatter, more defined chest contour—a testament to masculinity and renewed self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you contemplate gynecomastia surgery, the Tampa Gynecomastia Center offers a comprehensive approach to care. Whether through <a href=\"https://atlantagynecomastia.com/contact/\">in-person or virtual consultations</a>, our skilled surgeons assess the extent of gynecomastia, carefully review the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and aspirations</a>, and collaboratively devise a surgical strategy tailored to achieve optimal results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery is a transformative procedure typically conducted under general anesthesia on an outpatient basis, enabling patients to return home the same day. The surgery encompasses a combination of techniques, including liposuction to eliminate excess fat and surgical excision to address glandular tissue and loose skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Performed through small incisions strategically placed around the areola or in the natural creases of the chest, the surgery allows the surgeon to access underlying tissues and reshape the chest contour to achieve a more masculine appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Post Surgery Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Recovery following gynecomastia surgery is a crucial phase in the journey towards achieving optimal results. Understanding the postoperative care protocol and adhering to your surgeon\'s instructions are paramount for a smooth and successful recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After gynecomastia surgery, patients are typically advised to wear a compression garment to provide support to the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common occurrences, most individuals can resume light activities within a few days. Return to work is usually possible within a week or two, although the timeframe may vary based on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Following your surgeon\'s postoperative instructions diligently is essential for ensuring proper healing and minimizing complications. This may include avoiding strenuous exercise and refraining from lifting heavy objects for several weeks. Regular follow-up appointments will allow your surgeon to monitor your progress closely and address any concerns that may arise during the recovery process. This collaborative approach ensures that you receive optimal care and achieve the desired outcome from your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Long Term Results</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The effects of gynecomastia surgery are typically visible right away, with further enhancements becoming evident as swelling decreases and tissues settle over time. Patients can anticipate a flatter, firmer chest contour that harmonizes better with their overall physique, ultimately enhancing both their appearance and confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, it\'s essential for individuals to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercise, and avoiding factors that may contribute to gynecomastia recurrence, such as certain medications or steroid use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery following weight loss presents a transformative option for men burdened by enlarged breasts, addressing both physical and emotional concerns. By eliminating excess tissue and crafting a more masculine chest silhouette, this procedure empowers individuals to reclaim confidence and embrace their authentic selves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those contemplating gynecomastia surgery, it\'s crucial to seek guidance from a board-certified plastic surgeon well-versed in male breast reduction techniques. At the Tampa Gynecomastia Center, we stand ready to provide expert assistance and support throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Post Weight Loss Gynecomastia Surgery','','inherit','closed','closed','','3473-revision-v1','','','2024-03-21 21:23:14','2024-03-21 21:23:14','',3473,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3969',0,'revision','',0),(3972,3,'2024-03-21 21:25:00','2024-03-21 21:25:00','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Tampa Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Discover the Range of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to assist - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually arises from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_a6a290-cb\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_7f0a60-59\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_7f0a60-59\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_3373e6-75\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_3373e6-75\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Bodybuilder Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c2b8c0-86\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c2b8c0-86\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_daa92f-20\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_daa92f-20\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Revision Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_956a28-79\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_51263e-9a\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_51263e-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ef8723-86\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ef8723-86\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue but instead is caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Psuedo Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c947fa-da\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c947fa-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_d85976-8f\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_d85976-8f\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Puffy Nipple</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_b149ec-63\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_cfadfd-5e\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_cfadfd-5e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ff7631-0e\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ff7631-0e\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Senior Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_fda015-8c\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_fda015-8c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_5923d4-a2\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_5923d4-a2\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Gyno After Weight Loss</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Types & Categories','','inherit','closed','closed','','1482-revision-v1','','','2024-03-21 21:25:00','2024-03-21 21:25:00','',1482,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3972',0,'revision','',0),(3973,3,'2024-03-21 21:25:43','2024-03-21 21:25:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Tampa Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Discover the Range of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to assist - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually arises from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_a6a290-cb\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_7f0a60-59\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_7f0a60-59\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_3373e6-75\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_3373e6-75\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Bodybuilder Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c2b8c0-86\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c2b8c0-86\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_daa92f-20\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_daa92f-20\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Revision Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_956a28-79\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_51263e-9a\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_51263e-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ef8723-86\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ef8723-86\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue but instead is caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Psuedo Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c947fa-da\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c947fa-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_d85976-8f\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_d85976-8f\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Puffy Nipple</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_b149ec-63\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_cfadfd-5e\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_cfadfd-5e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ff7631-0e\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ff7631-0e\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Senior Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_fda015-8c\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_fda015-8c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_5923d4-a2\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_5923d4-a2\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Gyno After Weight Loss</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Types & Categories','','inherit','closed','closed','','1482-revision-v1','','','2024-03-21 21:25:43','2024-03-21 21:25:43','',1482,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3973',0,'revision','',0),(3974,5,'2024-03-21 21:27:45','2024-03-21 21:27:45','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">Gynecomastia, characterized by enlarged male breast tissue, often leads to distress and self-consciousness among men. While commonly linked to hormonal imbalances or medical conditions, it can also affect adult males post-weight loss. Despite significant achievements in shedding pounds, lingering issues may persist, such as excess skin and tissue contributing to the appearance of enlarged breasts.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery offers a transformative solution for men after weight loss. By addressing excess tissue and restoring a more masculine chest contour, this surgical intervention enhances physical appearance and empowers individuals to reclaim confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by an imbalance between the hormones testosterone and estrogen, resulting in the growth of breast gland tissue in males. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Beyond Puberty</strong>: While hormonal fluctuations during puberty are often linked to the development of gynecomastia, its occurrence beyond adolescence highlights a wider range of contributing factors. The delicate balance between testosterone and estrogen hormones, essential for maintaining normal breast tissue development, can be disrupted by various factors throughout a man\'s life journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Navigating the Maze of Causes</strong>: Obesity, medications, hormonal imbalances, and underlying medical conditions all play a significant role in the development of gynecomastia. These factors contribute to the condition\'s complexity, making it challenging for both patients and healthcare providers to navigate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Loss Unveils Hidden Struggles</strong>: In the context of weight loss, gynecomastia\'s presence can become more pronounced as excess fat dissipates, laying bare the underlying surplus breast tissue and skin. This revelation can be particularly disheartening for men who have dedicated themselves to shedding pounds, only to be confronted with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Impacts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Living with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> goes beyond physical discomfort—it deeply affects a man\'s self-esteem and how he views himself. Enlarged breasts often trigger feelings of embarrassment and self-consciousness, making social and intimate situations daunting. This emotional burden can seep into various aspects of life, from relationships to work, and even overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For many, dealing with enlarged breasts leads to a rollercoaster of emotions, from feeling constantly insecure to avoiding interactions altogether. Constant scrutiny of appearance chips away at self-confidence, creating barriers to forming meaningful connections and hindering personal growth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Men who\'ve triumphed over weight loss may find gynecomastia to be an unexpected setback. Despite their hard work and physical transformation, enlarged breasts undermine their sense of achievement, overshadowing progress and leaving them grappling with renewed self-doubt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing the emotional impact of gynecomastia requires a holistic approach. By acknowledging its toll and fostering a supportive environment, individuals can begin to rebuild their confidence and embrace their journey towards self-acceptance and empowerment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also referred to as male breast reduction surgery, stands as a definitive solution for addressing lingering issues of excess breast tissue and skin following weight loss. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This transformative procedure involves the meticulous removal of glandular tissue and surplus skin through surgical excision. It is complemented by the precision of liposuction techniques to eliminate excess fat. The culmination of these techniques results in the creation of a flatter, more defined chest contour - a testament to masculinity and renewed self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you contemplate gynecomastia surgery, the Tampa Gynecomastia Center offers a comprehensive approach to care. Whether through <a href=\"https://atlantagynecomastia.com/contact/\">in-person or virtual consultations</a>, our skilled surgeons assess the extent of gynecomastia, carefully review the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and aspirations</a>, and collaboratively devise a surgical strategy tailored to achieve optimal results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery is a transformative procedure typically conducted under general anesthesia on an outpatient basis, enabling patients to return home the same day. The surgery encompasses a combination of techniques, including liposuction to eliminate excess fat and surgical excision to address glandular tissue and loose skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Performed through small incisions strategically placed around the areola or in the natural creases of the chest, the surgery allows the surgeon to access underlying tissues and reshape the chest contour to achieve a more masculine appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Post Surgery Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Recovery following gynecomastia surgery is a crucial phase in the journey towards achieving optimal results. Understanding the postoperative care protocol and adhering to your surgeon\'s instructions are paramount for a smooth and successful recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After gynecomastia surgery, patients are typically advised to wear a compression garment to provide support to the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common occurrences, most individuals can resume light activities within a few days. Return to work is usually possible within a week or two, although the timeframe may vary based on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Following your surgeon\'s postoperative instructions diligently is essential for ensuring proper healing and minimizing complications. This may include avoiding strenuous exercise and refraining from lifting heavy objects for several weeks. Regular follow-up appointments will allow your surgeon to monitor your progress closely and address any concerns that may arise during the recovery process. This collaborative approach ensures that you receive optimal care and achieve the desired outcome from your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Long Term Results</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The effects of gynecomastia surgery are typically visible right away, with further enhancements becoming evident as swelling decreases and tissues settle over time. Patients can anticipate a flatter, firmer chest contour that harmonizes better with their overall physique, ultimately enhancing both their appearance and confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, it\'s essential for individuals to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercise, and avoiding factors that may contribute to gynecomastia recurrence, such as certain medications or steroid use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery following weight loss presents a transformative option for men burdened by enlarged breasts, addressing both physical and emotional concerns. By eliminating excess tissue and crafting a more masculine chest silhouette, this procedure empowers individuals to reclaim confidence and embrace their authentic selves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those contemplating gynecomastia surgery, it\'s crucial to seek guidance from a board-certified plastic surgeon well-versed in male breast reduction techniques. At the Tampa Gynecomastia Center, we stand ready to provide expert assistance and support throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Post Weight Loss Gynecomastia Surgery','','inherit','closed','closed','','3473-revision-v1','','','2024-03-21 21:27:45','2024-03-21 21:27:45','',3473,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3974',0,'revision','',0),(3976,5,'2024-03-21 21:29:31','2024-03-21 21:29:31','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">Gynecomastia, characterized by enlarged male breast tissue, often leads to distress and self-consciousness among men. While commonly linked to hormonal imbalances or medical conditions, it can also affect adult males post-weight loss. Despite significant achievements in shedding pounds, lingering issues may persist, such as excess skin and tissue contributing to the appearance of enlarged breasts.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery offers a transformative solution for men after weight loss. By addressing excess tissue and restoring a more masculine chest contour, this surgical intervention enhances physical appearance and empowers individuals to reclaim confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by an imbalance between the hormones testosterone and estrogen, resulting in the growth of breast gland tissue in males. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Beyond Puberty</strong>: While hormonal fluctuations during puberty are often linked to the development of gynecomastia, its occurrence beyond adolescence highlights a wider range of contributing factors. The delicate balance between testosterone and estrogen hormones, essential for maintaining normal breast tissue development, can be disrupted by various factors throughout a man\'s life journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Navigating the Maze of Causes</strong>: Obesity, medications, hormonal imbalances, and underlying medical conditions all play a significant role in the development of gynecomastia. These factors contribute to the condition\'s complexity, making it challenging for both patients and healthcare providers to navigate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Loss Unveils Hidden Struggles</strong>: In the context of weight loss, gynecomastia\'s presence can become more pronounced as excess fat dissipates, laying bare the underlying surplus breast tissue and skin. This revelation can be particularly disheartening for men who have dedicated themselves to shedding pounds, only to be confronted with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Impacts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Living with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> goes beyond physical discomfort—it deeply affects a man\'s self-esteem and how he views himself. Enlarged breasts often trigger feelings of embarrassment and self-consciousness, making social and intimate situations daunting. This emotional burden can seep into various aspects of life, from relationships to work, and even overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For many, dealing with enlarged breasts leads to a rollercoaster of emotions, from feeling constantly insecure to avoiding interactions altogether. Constant scrutiny of appearance chips away at self-confidence, creating barriers to forming meaningful connections and hindering personal growth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Men who\'ve triumphed over weight loss may find gynecomastia to be an unexpected setback. Despite their hard work and physical transformation, enlarged breasts undermine their sense of achievement, overshadowing progress and leaving them grappling with renewed self-doubt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing the emotional impact of gynecomastia requires a holistic approach. By acknowledging its toll and fostering a supportive environment, individuals can begin to rebuild their confidence and embrace their journey towards self-acceptance and empowerment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also referred to as male breast reduction surgery, stands as a definitive solution for addressing lingering issues of excess breast tissue and skin following weight loss. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This transformative procedure involves the meticulous removal of glandular tissue and surplus skin through surgical excision. It is complemented by the precision of liposuction techniques to eliminate excess fat. The culmination of these techniques results in the creation of a flatter, more defined chest contour - a testament to masculinity and renewed self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you contemplate gynecomastia surgery, the Tampa Gynecomastia Center offers a comprehensive approach to care. Whether through <a href=\"https://atlantagynecomastia.com/contact/\">in-person or virtual consultations</a>, our skilled surgeons assess the extent of gynecomastia, carefully review the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and aspirations</a>, and collaboratively devise a surgical strategy tailored to achieve optimal results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery is a transformative procedure typically conducted under general anesthesia on an outpatient basis, enabling patients to return home the same day. The surgery encompasses a combination of techniques, including liposuction to eliminate excess fat and surgical excision to address glandular tissue and loose skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Performed through small incisions strategically placed around the areola or in the natural creases of the chest, the surgery allows the surgeon to access underlying tissues and reshape the chest contour to achieve a more masculine appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Post Surgery Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Recovery following gynecomastia surgery is a crucial phase in the journey towards achieving optimal results. Understanding the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">postoperative care protocol</a> and adhering to your surgeon\'s instructions are paramount for a smooth and successful recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After gynecomastia surgery, patients are typically advised to wear a compression garment to provide support to the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common occurrences, most individuals can resume light activities within a few days. Return to work is usually possible within a week or two, although the timeframe may vary based on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Following your surgeon\'s postoperative instructions diligently is essential for ensuring proper healing and minimizing complications. This may include avoiding strenuous exercise and refraining from lifting heavy objects for several weeks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Regular follow-up appointments will allow your surgeon to monitor your progress closely and address any concerns that may arise during the recovery process. This collaborative approach ensures that you receive optimal care and achieve the desired outcome from your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Long Term Results</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The effects of gynecomastia surgery are typically visible right away, with further enhancements becoming evident as swelling decreases and tissues settle over time. Patients can anticipate a flatter, firmer chest contour that harmonizes better with their overall physique, ultimately enhancing both their appearance and confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, it\'s essential for individuals to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercise, and avoiding factors that may contribute to gynecomastia recurrence, such as certain medications or steroid use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery following weight loss presents a transformative option for men burdened by enlarged breasts. By eliminating excess tissue and crafting a more masculine chest, this procedure empowers individuals to reclaim confidence and embrace their authentic selves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those contemplating gynecomastia surgery, it\'s crucial to seek guidance from a board-certified plastic surgeon well-versed in male breast reduction techniques. At the Tampa Gynecomastia Center, we stand ready to provide expert assistance and support throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Post Weight Loss Gynecomastia Surgery','','inherit','closed','closed','','3473-revision-v1','','','2024-03-21 21:29:31','2024-03-21 21:29:31','',3473,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3976',0,'revision','',0),(3977,3,'2024-03-21 21:31:49','2024-03-21 21:31:49','<!-- wp:paragraph -->\n<p>This privacy policy is designed to inform users about the handling of their \"Personally Identifiable Information\" (PII) online. PII is defined by US privacy and information security laws as data that can identify, reach, or pinpoint an individual either by itself or when combined with other accessible information. We encourage you to review this policy thoroughly to understand the ways in which we gather, employ, safeguard, and manage your PII on our website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What PII do we collect from users of our website?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When contacting us via our website, as appropriate, you may be asked to enter your name, email address, phone number or other details to help you with your experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When do we collect information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information from you when you fill out a form or enter information on our site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we use your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may use the information we collect from you when you request more information about a procedure, including to follow up with you after correspondence (email or phone inquiries).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we protect your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We do not use vulnerability scanning and/or scanning to PCI standards. We conduct malware scanning. We only provide information and we do not ask for credit card numbers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_152c51-8f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_152c51-8f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_152c51-8f\">Do we use \"cookies\"?</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Yes. Cookies are small files that a site or its service provider transfers to your computer’s hard drive through your Web browser (if you allow it) that enables the site’s or service provider’s systems to recognize your browser and capture and remember certain information. They are also used to help us understand your preferences based on previous or current site activity, which enables us to provide you with improved services. We also use cookies to help us compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We may also use trusted third-party services that track this information on our behalf.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off all cookies. You do this through your browser settings. Since every browser is different, look at your browser’s Help Menu to learn the correct way to modify your cookies. If you turn cookies off, some features will be disabled.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_caa05a-f8\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_caa05a-f8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_caa05a-f8\">Third-party disclosure</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>We do not sell, trade, or otherwise transfer to outside parties your PII unless we provide users with advance notice. This does not include website hosting partners and other parties who assist us in operating our website, conducting our business, or serving our users, so long as those parties agree to keep this information confidential. We may also release information when its release is appropriate to comply with the law, enforce our site policies, or protect ours or others’ rights, property or safety.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Third-party links</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Occasionally, at our discretion, we may include or offer third-party products or services on our website. These third-party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Google</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Google’s advertising requirements can be summed up by Google’s Advertising Principles. They are put in place to provide a positive experience for users.&nbsp;<a href=\"https://support.google.com/adspolicy/answer/6008942?hl=en&amp;visit_id=638456876419726489-885632823&amp;rd=1\" target=\"_blank\" rel=\"noreferrer noopener\">Google Ads policies.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have not enabled Google AdSense on our site but we may do so in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">California Online Privacy Protection Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>CalOPPA is the first state law in the nation to require commercial websites and online services to post a privacy policy. The law’s reach stretches beyond California to require any person or company in the United States (and conceivably the world) that operates websites collecting Personally Identifiable Information from California consumers to post a conspicuous privacy policy on its website stating exactly which information is being collected and those individuals or companies with whom it is being shared. Please see: <a href=\"https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/#sthash.0FdRbT51.dpuf\" target=\"_blank\" rel=\"noreferrer noopener\">California Online Privacy Protection Act (CalOPPA)</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">According to CalOPPA, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Users may visit our site anonymously. Once this privacy policy is created, we will add a link to it on our website footer. Our Privacy Policy link includes the word ‘Privacy’ and can be easily be found on the page specified above. You will be notified of any Privacy Policy changes on our Privacy Policy Page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How does our site handle Do Not Track signals?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We honor Do Not Track (DNT) signals and do not track, plant cookies, or use advertising when a DNT browser mechanism is in place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Does our site allow third-party behavioral tracking?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">COPPA (Children\'s Online Privacy Protection Act)</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to the collection of personal information from children under the age of 13 years old, the Children’s Online Privacy Protection Act (COPPA) puts parents in control. The Federal Trade Commission, United States’ consumer protection agency, enforces the COPPA Rule, which spells out what operators of websites and online services must do to protect children’s privacy and safety online. We do not specifically market to children under the age of 13 years old.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Fair Information Practices</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Fair Information Practices Principles form the backbone of privacy law in the United States and the concepts they include have played a significant role in the development of data protection laws around the globe. Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply with the various privacy laws that protect personal information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will notify you via email within 7 business days. We also agree to the Individual Redress Principle which requires that individuals have the right to legally pursue enforceable rights against data collectors and processors who fail to adhere to the law. This principle requires not only that individuals have enforceable rights against data users, but also that individuals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">CAN-SPAM Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The CAN-SPAM Act is a law that sets the rules for commercial email, establishes requirements for commercial messages, gives recipients the right to have emails stopped from being sent to them, and spells out tough penalties for violations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">We collect your email address in order to:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Send information, and respond to inquiries and/or other requests or questions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">To be in compliance with CAN-SPAM, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Not to use false or misleading subjects or email addresses.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Identify the message as an advertisement in some reasonable way.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Include the physical address of our business or site headquarters.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Monitor third-party email marketing services for compliance, if one is used.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Honor opt-out/unsubscribe requests quickly.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Allow users to unsubscribe by using the link at the bottom of each email.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">If at any time you would like to unsubscribe from receiving future emails</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Follow the instructions at the bottom of each email and we will promptly remove you from&nbsp;<strong>all</strong>&nbsp;correspondence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contacting Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If there are any questions regarding this privacy policy, you may contact us using the information below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','2396-revision-v1','','','2024-03-21 21:31:49','2024-03-21 21:31:49','',2396,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3977',0,'revision','',0),(3978,3,'2024-03-21 21:33:26','2024-03-21 21:33:26','<!-- wp:paragraph -->\n<p>The Tampa Gynecomastia Center is committed to ensuring accessibility of its website to people with disabilities and it will endeavor to follow the federal standards regarding technology accessibility for people with disabilities (Section 508) and the Web Content Accessibility Guidelines (WCAG) 2.0 developed by the World Wide Web Consortium (W3C). This policy applies to all web content produced or updated by the Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Accessibility Help </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure your experience on the website is accessible, please use the built-in widget (full ADA/WCAG 2.1 compliant) located on the bottom right-hand corner of our website. Note that the website may contain links to external websites that are not within Tampa Gynecomastia Center\'s control and may not follow the same accessibility policies and standards as the Center\'s website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Viewing Files </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Please download the latest versions of Adobe Reader (for PDF format) or Microsoft Office (for Word or Excel format) to ensure optimal viewing of files available on the website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Your Accessibility Concerns </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Certain pages on the website require login information or acceptance of additional terms and conditions. If you have difficulty accessing content, viewing a file on the website, or notice any accessibility issues, <a href=\"https://atlantagynecomastia.com/contact/\">please contact the Tampa Gynecomastia Center</a> for assistance. In your message, please include the nature of the accessibility issue, the URL of the page containing the issue, the accessibility technology you are using, and an email address so that we can respond to your concern. We strive to make all content on this website accessible to all users, including those with disabilities.</p>\n<!-- /wp:paragraph -->','Accessibility Policy','','inherit','closed','closed','','2056-revision-v1','','','2024-03-21 21:33:26','2024-03-21 21:33:26','',2056,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3978',0,'revision','',0),(3980,5,'2024-03-21 21:39:17','2024-03-21 21:39:17','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the New Jersey Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\" or \"moobs,\" is the abnormal enlargement of breast tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">doctors at the Tampa Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur, including a decrease in testosterone levels and an increase in estrogen levels. This hormonal imbalance can disrupt the normal balance between testosterone and estrogen, leading to the proliferation of breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging, such as prostate enlargement (benign prostatic hyperplasia), liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants, can contribute to the development of gynecomastia in older men.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can exacerbate hormonal imbalances and contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are just a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Medication:</strong> In cases where hormonal imbalances are contributing to gynecomastia, medications such as selective estrogen receptor modulators (SERMs) or aromatase inhibitors may be prescribed to help regulate hormone levels and reduce breast tissue growth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia. Additionally, medications used to treat gynecomastia may have side effects, including nausea, headache, and changes in mood or libido.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to undergoing gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"Gynecomastia becomes more prevalent with age, affecting approximately one-third of older men. It is often attributed to hormonal changes, medication use, and age-related health conditions.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"Gynecomastia becomes more prevalent with age, affecting approximately one-third of older men. It is often attributed to hormonal changes, medication use, and age-related health conditions.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[{\"type\":\"em\",\"props\":{\"children\":[\"Can gynecomastia go away on its own? \"]}}],\"answer\":[\"In some cases, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia usually requires medical intervention to address underlying causes and alleviate symptoms.\"],\"jsonQuestion\":\"\\u003cem\\u003eCan gynecomastia go away on its own? \\u003c/em\\u003e\",\"jsonAnswer\":\"In some cases, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia usually requires medical intervention to address underlying causes and alleviate symptoms.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments such as hormone therapy, medication adjustments, and lifestyle modifications may be effective in managing gynecomastia symptoms, particularly in seniors with mild to moderate cases. However, these approaches may not provide permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments such as hormone therapy, medication adjustments, and lifestyle modifications may be effective in managing gynecomastia symptoms, particularly in seniors with mild to moderate cases. However, these approaches may not provide permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Seniors can expect some discomfort, swelling, and bruising in the initial weeks after surgery, with gradual improvement over several months. It is essential to follow post-operative instructions provided by the surgeon and attend follow-up appointments for optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Seniors can expect some discomfort, swelling, and bruising in the initial weeks after surgery, with gradual improvement over several months. It is essential to follow post-operative instructions provided by the surgeon and attend follow-up appointments for optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery is generally safe and well-tolerated, long-term complications such as scarring, changes in nipple sensation, and asymmetry may occur in some cases. Seniors should discuss potential risks and outcomes with our surgeon before undergoing any surgical procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery is generally safe and well-tolerated, long-term complications such as scarring, changes in nipple sensation, and asymmetry may occur in some cases. Seniors should discuss potential risks and outcomes with our surgeon before undergoing any surgical procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">Gynecomastia becomes more prevalent with age, affecting approximately one-third of older men. It is often attributed to hormonal changes, medication use, and age-related health conditions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\"><em>Can gynecomastia go away on its own? </em></strong> <p class=\"schema-faq-answer\">In some cases, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia usually requires medical intervention to address underlying causes and alleviate symptoms.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments such as hormone therapy, medication adjustments, and lifestyle modifications may be effective in managing gynecomastia symptoms, particularly in seniors with mild to moderate cases. However, these approaches may not provide permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Seniors can expect some discomfort, swelling, and bruising in the initial weeks after surgery, with gradual improvement over several months. It is essential to follow post-operative instructions provided by the surgeon and attend follow-up appointments for optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery is generally safe and well-tolerated, long-term complications such as scarring, changes in nipple sensation, and asymmetry may occur in some cases. Seniors should discuss potential risks and outcomes with our surgeon before undergoing any surgical procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia is a common and often bothersome condition that affects many seniors. Understanding the underlying causes, treatment options, and associated risks is essential for effectively managing gynecomastia and improving quality of life in older men. By consulting with our qualified healthcare professionals and understanding if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gyno candidate</a>, seniors can address gynecomastia symptoms and regain confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Reach Out Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for seniors offers a transformative solution for men looking to address the physical and emotional challenges of enlarged breasts. By removing excess tissue and sculpting a more masculine chest contour, this procedure can help individuals regain confidence in their appearance and embrace their newfound sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those seniors considering gynecomastia surgery, it\'s essential to consult with a board-certified plastic surgeon experienced in male breast reduction procedures. And at the New Jersey Gynecomastia Center, we are here to help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery','','inherit','closed','closed','','3481-revision-v1','','','2024-03-21 21:39:17','2024-03-21 21:39:17','',3481,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3980',0,'revision','',0);
INSERT INTO `hyu_posts` VALUES (3982,5,'2024-03-21 21:44:44','2024-03-21 21:44:44','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the New Jersey Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\" or \"moobs,\" is the abnormal enlargement of breast tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">doctors at the Tampa Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur, including a decrease in testosterone levels and an increase in estrogen levels. This hormonal imbalance can disrupt the normal balance between testosterone and estrogen, leading to the proliferation of breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging, such as prostate enlargement (benign prostatic hyperplasia), liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants, can contribute to the development of gynecomastia in older men.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can exacerbate hormonal imbalances and contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are just a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Medication:</strong> In cases where hormonal imbalances are contributing to gynecomastia, medications such as selective estrogen receptor modulators (SERMs) or aromatase inhibitors may be prescribed to help regulate hormone levels and reduce breast tissue growth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia. Additionally, medications used to treat gynecomastia may have side effects, including nausea, headache, and changes in mood or libido.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to undergoing gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, a prevalent and frequently troubling condition among seniors, can significantly impact quality of life. It\'s crucial to comprehend its root causes, available treatment modalities, and associated risks for effective management. By seeking guidance from our skilled healthcare providers and <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">determining suitability for gynecomastia treatment</a>, seniors can alleviate symptoms and restore confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[\"Can gynecomastia go away on its own? \"],\"answer\":[\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"],\"jsonQuestion\":\"Can gynecomastia go away on its own? \",\"jsonAnswer\":\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\">Can gynecomastia go away on its own? </strong> <p class=\"schema-faq-answer\">In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery provides seniors with a transformative solution, offering relief from the physical and emotional burdens of enlarged breasts. Through the removal of excess tissue and the sculpting of a more masculine chest contour, this procedure empowers individuals to reclaim confidence in their appearance and embrace a renewed sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For seniors contemplating gynecomastia surgery, it\'s vital to seek consultation with a board-certified plastic surgeon proficient in male breast reduction procedures. At the New Jersey Gynecomastia Center, we stand ready to assist you on your journey to enhanced well-being and self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery','','inherit','closed','closed','','3481-revision-v1','','','2024-03-21 21:44:44','2024-03-21 21:44:44','',3481,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3982',0,'revision','',0),(3984,5,'2024-03-21 21:50:07','2024-03-21 21:50:07','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\" or \"moobs,\" is the abnormal enlargement of breast gland tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/\">doctors at the Tampa Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur, including a decrease in testosterone levels and an increase in estrogen levels. This hormonal imbalance can disrupt the normal balance between testosterone and estrogen, leading to the proliferation of breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging, such as prostate enlargement, liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants, can contribute to the development of gynecomastia in older men.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can exacerbate hormonal imbalances and contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are just a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to undergoing gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, a prevalent and frequently troubling condition among seniors, can significantly impact quality of life. It\'s crucial to comprehend its root causes, available treatment modalities, and associated risks for effective management. By seeking guidance from our skilled healthcare providers and <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">determining suitability for gynecomastia treatment</a>, seniors can alleviate symptoms and restore confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[\"Can gynecomastia go away on its own? \"],\"answer\":[\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"],\"jsonQuestion\":\"Can gynecomastia go away on its own? \",\"jsonAnswer\":\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\">Can gynecomastia go away on its own? </strong> <p class=\"schema-faq-answer\">In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery provides seniors with a transformative solution, offering relief from the physical and emotional burdens of enlarged breasts. Through the removal of excess tissue and the sculpting of a more masculine chest contour, this procedure empowers individuals to reclaim confidence in their appearance and embrace a renewed sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For seniors contemplating gynecomastia surgery, it\'s vital to seek consultation with a board-certified plastic surgeon proficient in male breast reduction procedures. At the Tampa Gynecomastia Center, we are ready to assist you on your journey to enhanced well-being and self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery','','inherit','closed','closed','','3481-revision-v1','','','2024-03-21 21:50:07','2024-03-21 21:50:07','',3481,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3984',0,'revision','',0),(3989,5,'2024-03-21 22:18:26','2024-03-21 22:18:26','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_6adb9a-ad\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_d64484-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_d64484-7f\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_8845dc-e9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_8845dc-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_8845dc-e9\">Gynecomastia, characterized by male breast tissue enlargement, varies in severity among individuals. Understanding the grading system is essential for effective assessment and treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_066181-62\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_066181-62 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_066181-62\">There are four distinct grades along the spectrum - from the mild grade 1 to the more severe grade 4. At the Tampa Gynecomastia Center, our gynecomastia surgeons specialize in tailoring treatment plans to your unique needs, ensuring valuable insight and personalized care.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The severity of gynecomastia is categorized into stages ranging from grade 1 (mild) to grade 4 (severe), each distinguished by specific characteristics. Treatment options and associated <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a> also vary across the stages, with stage 4 requiring a distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages / grades of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>There are several other signs and symptoms associated with each stage, which we’ll get to later.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s also crucial to understand medically that gynecomastia entails the overdevelopment of breast gland tissue. However, it\'s common for excess fat tissue to be present in the breast, which is called <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> when found on its own.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During a comprehensive <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>, both excess breast gland tissue and excess fat tissue can be addressed and removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3987,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1551_00da7e-52\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_00da7e-52 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-1024x586.jpg\" alt=\"Stages and Grades of Gynecomastia\" class=\"kb-img wp-image-3987\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Four Grades of Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 1 gynecomastia experience minimal breast growth, often accompanied by nipple pain or tenderness. Swelling around the nipple is slight, occasionally with discoloration. The nipple may appear puffy and sensitive to touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Typically, stage 1 gynecomastia is not apparent when the individual is clothed. However, it may become noticeable in situations where the person is undressed, such as at the beach or swimming pool, potentially leading to feelings of embarrassment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 2 gynecomastia is characterized by a more pronounced enlargement of breast tissue that extends across the chest. This moderate growth may be noticeable even when the individual is clothed and becomes particularly prominent in bare-chested situations, causing embarrassment or distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to breast protrusion, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness persist, further adding to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 3 represents a substantial progression in gynecomastia, marked by significant breast tissue development and chest widening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become notably pronounced, often visibly protruding through clothing. Moreover, excess skin becomes evident, resulting in a droopy appearance of the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given the heightened visibility and physical changes associated with grade 3 gynecomastia, individuals may experience a significant impact on self-esteem and quality of life, prompting them to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most advanced stage of the condition, where breast enlargement is substantial and resembles female breasts in appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts become highly prominent, often dominating the individual\'s physique, even when clothed. Excess skin becomes more noticeable, contributing to a fuller, drooping appearance of the breasts. Moreover, nipple size can increase significantly, further emphasizing feminine characteristics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals grappling with grade 4 gynecomastia may grapple with profound emotional distress and encounter significant social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch With a Tampa Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we acknowledge the varied spectrum of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From the initial assessment to customized treatment strategies, our team is committed to delivering compassionate care, and empowering individuals to regain confidence and overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are located in the Tampa, Clearwater, St. Petersburg, or anywhere else nearby, and are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our Tampa gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-21 22:18:26','2024-03-21 22:18:26','',1551,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3989',0,'revision','',0),(3990,5,'2024-03-21 22:19:20','2024-03-21 22:19:20','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. They might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><strong>Here at the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\">Tampa Gynecomastia Center</a>, we\'re all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan to tackle it.</strong></p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two gyno conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s break down the distinctions between gynecomastia and pseudogynecomastia, two conditions that frequently confuse individuals with male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a>, first off, is all about an overgrowth of breast gland tissue, leading to visible breast enlargement. This usually happens because of an imblance of hormone levels, especially when there\'s more estrogen compared to testosterone. While it\'s not physically harmful, it can have impacts on one\'s well being, driving many folks to explore treatment options, including <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia, on the flip side, is more about extra fat in the chest area, giving off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gyno and pseudogyno share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can arise from a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Due to the distinct underlying causes of these conditions, treatment approaches likewise vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to managing gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, if conservative measures fail to yield satisfactory results, surgical intervention may be necessary. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contouring the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s address some common questions that arise when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths diverge.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, it\'s crucial to connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>. With their support, whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and confidence, greatly improving your quality of life.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-21 22:19:20','2024-03-21 22:19:20','',2657,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3990',0,'revision','',0),(3992,5,'2024-03-21 22:20:03','2024-03-21 22:20:03','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_77c2b8-8a\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_9184ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_9184ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_d5eee7-83\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_d5eee7-83 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_d5eee7-83\">Gynecomastia is a common occurrence where males experience an increase in breast tissue due to hormonal imbalances. Although generally not harmful, it\'s important for those affected to understand its causes, symptoms, and available treatments.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_0a6a6f-36\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_0a6a6f-36 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_0a6a6f-36\">Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_ac90e4-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_ac90e4-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_ac90e4-18\">At the Tampa Gynecomastia Center, we offer caring and personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments customized to meet your needs, ensuring your comfort and confidence throughout your journey to wellness.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_4da688-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_4da688-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_4da688-a3\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_f502d3-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8abbd4-3b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8abbd4-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, also known as \'gyno\' or man boobs, is the development of excess breast gland tissue in men. While several factors can contribute, hormonal imbalance frequently serves as the root cause, typically involving a disparity between estrogen and testosterone levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Imbalances can arise due to various factors such as puberty, aging, specific medications, health issues, substance misuse, or nutritional deficiencies. Treatment varies based on the underlying cause and severity, potentially extending to surgical options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Despite not posing significant health risks, gynecomastia can induce discomfort and considerable embarrassment, leading to psychological distress for many individuals affected. Consequently, most men afflicted with it prioritize seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The Tampa Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3988,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_bdb067-7a\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_bdb067-7a size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-1024x586.jpg\" alt=\"What is Gynecomastia\" class=\"kb-img wp-image-3988\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_256648-ce\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_ea3191-51\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_ea3191-51\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">What Causes Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common Gyno causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> by checking out the dedicated overview on the topic.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_514a59-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_97db91-40\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_97db91-40\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Gynecomastia varies in severity, classified into four stages ranging from grade 1 (mild) to grade 4 (severe). Each stage exhibits distinct characteristics that set it apart from the others. Treatment approaches also differ for each grade, with stage 4 necessitating a significantly distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this topic.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3987,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_447da6-9f\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_447da6-9f size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-1024x586.jpg\" alt=\"Stages and Grades of Gynecomastia\" class=\"kb-img wp-image-3987\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_714df7-27\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_58a29e-e8\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_58a29e-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Although true gynecomastia primarily results from excess breast gland tissue, it often involves additional fatty tissue as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong>When there is only extra fatty tissue but no extra gland tissue, this is referred to as <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The second condition, known as \'pseudo\' gynecomastia, differs from true gynecomastia as it primarily involves excess chest fat rather than breast gland tissue. While it may outwardly resemble gynecomastia and result in the appearance of \"man boobs,\" its root cause is fat deposition, which can sometimes be addressed through lifestyle modifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, pseudogynecomastia often persists despite lifestyle changes, and surgical intervention, primarily through liposuction, is frequently recommended for treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. A <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues if that is the case. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">During the surgery, both the extra breast gland tissue and excess fatty tissue are removed through a combination of excision and liposuction. If you\'re seeking clarity on what\'s causing your gynecomastia and discussing potential solutions, consider scheduling a visit to the Tampa Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_b21ad9-b7\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_b21ad9-b7 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"kb-img wp-image-3986\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia can be distressing, it\'s crucial to recognize that effective treatment options exist. At the Tampa Gynecomastia Center, our skilled doctors focus on delivering personalized care tailored to meet the unique needs of each individual (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Whether you\'re in need of medical advice, contemplating surgical options, or just seeking guidance, our team is dedicated to supporting you throughout your journey. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-21 22:20:03','2024-03-21 22:20:03','',1511,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3992',0,'revision','',0),(3996,5,'2024-03-22 14:29:12','2024-03-22 14:29:12','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8d7bfa-b6\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_a9a99c-c9\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_a9a99c-c9\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_97f102-72\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_97f102-72 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_97f102-72\">If you\'re considering gynecomastia surgery, it\'s crucial to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d735e8-57\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d735e8-57 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d735e8-57\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_b08339-a6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_b08339-a6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_b08339-a6\">Read over the timeline below to get a better understanding of what our <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">top Tampa gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate, regardless of whether you\'re undergoing grade 1 or 4 surgery. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before undergoing gynecomastia surgery, thorough preparation is essential. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, smoking cessation, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time in addition to other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will meticulously perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate post-operative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support the newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By the third to fourth week post-surgery, most patients experience a significant reduction in swelling and bruising, with the chest contour continuing to refine. Light exercise and physical activities may be gradually reintroduced, following your surgeon\'s guidance. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 1-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. It\'s essential to adhere to your surgeon\'s post-operative instructions, including proper scar care and sun protection, to optimize the long-term outcome of your surgery.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_20245c-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e8c001-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e8c001-33\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Managing Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_217828-aa\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_217828-aa wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_217828-aa\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_d9f72e-b2\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_d9f72e-b2 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_4c0574-b7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_4c0574-b7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics, especially on an empty stomach. Your surgeon may prescribe anti-nausea meds to help. Always prioritize your comfort and communicate any concerns with your medical team.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_f83497-ad\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_f83497-ad\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_0c6274-ff\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_0c6274-ff wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_0c6274-ff\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_255ae6-13\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_255ae6-13\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_545e52-1e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_545e52-1e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_545e52-1e\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening, lasting around 15 minutes. These gentle movements help promote proper blood circulation, aiding in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_878bdf-72\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_878bdf-72\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_c252cd-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_c252cd-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_e3be40-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_e3be40-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_561560-d7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_561560-d7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_18610d-8a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_18610d-8a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_8a91b0-a3\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_8a91b0-a3\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s essential to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_e6169f-cd\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_e6169f-cd\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, promptly contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_788f10-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_788f10-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_07cfa9-17\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_07cfa9-17\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_d1b87b-5c\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_c6e786-30\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_c6e786-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Other Things to Expect During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_954f98-28\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_954f98-28 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_954f98-28\">As you recover from surgery at the Tampa Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_bf8ca5-44\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_bf8ca5-44 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_51df90-99\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_51df90-99\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time. If you have any concerns about the extent or duration of swelling, don\'t hesitate to reach out to your surgeon for reassurance and guidance.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_72c6dc-9f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_72c6dc-9f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_258758-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_258758-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_258758-3e\">Ideally, the scars from your gynecomastia surgery will gradually fade and become nearly imperceptible within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_e33fa6-4c\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_e33fa6-4c\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time. If concerned, consult your surgeon for reassurance.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_1609d4-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_1609d4-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, it\'s crucial to resist the urge to scratch the affected area, as it can potentially disrupt the healing process and lead to complications such as reopening incisions. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery. If itching persists or worsens, consult your surgeon for guidance on managing it effectively.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_3a3a26-d0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_3c7563-42\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_3c7563-42\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to recovering from gynecomastia surgery, there are a lot questions out there. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes about a year. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes about a year. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months. It\'s important to follow your surgeon\'s recommendations and gradually reintroduce physical activity to ensure a safe and successful recovery.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months. It\'s important to follow your surgeon\'s recommendations and gradually reintroduce physical activity to ensure a safe and successful recovery.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed (around 2 months), you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed (around 2 months), you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes about a year. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months. It\'s important to follow your surgeon\'s recommendations and gradually reintroduce physical activity to ensure a safe and successful recovery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed (around 2 months), you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Things to Know','','inherit','closed','closed','','1666-revision-v1','','','2024-03-22 14:29:12','2024-03-22 14:29:12','',1666,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3996',0,'revision','',0),(3998,5,'2024-03-22 14:31:54','2024-03-22 14:31:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8d7bfa-b6\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_a9a99c-c9\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_a9a99c-c9\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_97f102-72\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_97f102-72 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_97f102-72\">If you\'re considering gynecomastia surgery, it\'s crucial to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d735e8-57\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d735e8-57 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d735e8-57\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_b08339-a6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_b08339-a6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_b08339-a6\">Read over the timeline below to get a better understanding of what our <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">top Tampa gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate, regardless of whether you\'re undergoing grade 1 or 4 surgery. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before undergoing gynecomastia surgery, thorough preparation is essential. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, smoking cessation, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time in addition to other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will meticulously perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate post-operative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support the newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By the third to fourth week post-surgery, most patients experience a significant reduction in swelling and bruising, with the chest contour continuing to refine. Light exercise and physical activities may be gradually reintroduced, following your surgeon\'s guidance. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 1-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. It\'s essential to adhere to your surgeon\'s post-operative instructions, including proper scar care and sun protection, to optimize the long-term outcome of your surgery.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_20245c-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e8c001-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e8c001-33\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Managing Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_217828-aa\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_217828-aa wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_217828-aa\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_d9f72e-b2\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_d9f72e-b2 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_4c0574-b7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_4c0574-b7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics, especially on an empty stomach. Your surgeon may prescribe anti-nausea meds to help. Always prioritize your comfort and communicate any concerns with your medical team.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_f83497-ad\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_f83497-ad\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_0c6274-ff\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_0c6274-ff wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_0c6274-ff\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_255ae6-13\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_255ae6-13\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_545e52-1e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_545e52-1e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_545e52-1e\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening, lasting around 15 minutes. These gentle movements help promote proper blood circulation, aiding in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_878bdf-72\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_878bdf-72\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_c252cd-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_c252cd-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_e3be40-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_e3be40-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_561560-d7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_561560-d7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_18610d-8a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_18610d-8a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_8a91b0-a3\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_8a91b0-a3\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s essential to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_e6169f-cd\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_e6169f-cd\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, promptly contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_788f10-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_788f10-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_07cfa9-17\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_07cfa9-17\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_d1b87b-5c\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_c6e786-30\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_c6e786-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Other Things to Expect During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_954f98-28\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_954f98-28 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_954f98-28\">As you recover from surgery at the Tampa Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_bf8ca5-44\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_bf8ca5-44 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_51df90-99\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_51df90-99\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_72c6dc-9f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_72c6dc-9f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_258758-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_258758-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_258758-3e\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_e33fa6-4c\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_e33fa6-4c\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_1609d4-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_1609d4-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, it\'s crucial to resist the urge to scratch the affected area, as it can potentially disrupt the healing process and lead to complications such as reopening incisions. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_3a3a26-d0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_3c7563-42\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_3c7563-42\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to recovering from gynecomastia surgery, there are a lot questions out there. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Things to Know','','inherit','closed','closed','','1666-revision-v1','','','2024-03-22 14:31:54','2024-03-22 14:31:54','',1666,'https://tampagynecomastiacom.bigscoots-staging.com/?p=3998',0,'revision','',0),(4006,5,'2024-03-22 15:00:14','2024-03-22 15:00:14','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_7270da-37\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_d0f80a-c4\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_d0f80a-c4 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_47b6d8-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_47b6d8-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_47b6d8-85\">The Tampa Gynecomastia Center is one of the best rated plastic surgery centers in Florida and serves patients from all over the southeastern United States.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_255a4e-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_255a4e-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_255a4e-33\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also get started with some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked gynecomastia questions</a>, and better understand <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">if you are a gyno candidate</a> to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_62d826-8b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_62d826-8b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_62d826-8b\">Reach out to hear what our patients have to say about the Tampa Gynecomastia Center!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-22 15:00:14','2024-03-22 15:00:14','',2886,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4006',0,'revision','',0),(4007,3,'2024-03-22 17:16:02','2024-03-22 17:16:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Tampa Gynecomastia Center is located near Clearwater, about 40 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Clearwater? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Clearwater in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Clearwater to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take&nbsp;Cleveland St&nbsp;to&nbsp;Court St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take&nbsp;State Rd 60 E&nbsp;to&nbsp;FL-616 E/W Spruce St&nbsp;in&nbsp;Tampa. Take exit&nbsp;1B&nbsp;from&nbsp;FL-60 E/State Rd 60 E</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on&nbsp;FL-616 E. Take&nbsp;W Columbus Dr&nbsp;to&nbsp;N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn&nbsp;right&nbsp;onto&nbsp;N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn&nbsp;left&nbsp;onto&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Clearwater','','inherit','closed','closed','','2844-revision-v1','','','2024-03-22 17:16:02','2024-03-22 17:16:02','',2844,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4007',0,'revision','',0),(4008,3,'2024-03-22 17:16:17','2024-03-22 17:16:17','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Tampa Gynecomastia Center is located near St. Petersburg, about 25 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near St. Petersburg? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from St. Petersburg in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From St. Petersburg to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-175 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-275 N&nbsp;to&nbsp;N Tampa St&nbsp;in&nbsp;Tampa. Take exit&nbsp;44&nbsp;from&nbsp;I-275 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from St. Petersburg','','inherit','closed','closed','','2858-revision-v1','','','2024-03-22 17:16:17','2024-03-22 17:16:17','',2858,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4008',0,'revision','',0),(4009,3,'2024-03-22 17:16:56','2024-03-22 17:16:56','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gyno Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-22 17:16:56','2024-03-22 17:16:56','',1563,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4009',0,'revision','',0),(4010,3,'2024-03-22 17:17:14','2024-03-22 17:17:14','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_7270da-37\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_d0f80a-c4\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_d0f80a-c4 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_47b6d8-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_47b6d8-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_47b6d8-85\">The Tampa Gynecomastia Center is one of the best rated plastic surgery centers in Florida and serves patients from all over the southeastern United States.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_255a4e-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_255a4e-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_255a4e-33\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also get started with some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>, and better understand <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">if you are a gyno candidate</a> to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_62d826-8b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_62d826-8b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_62d826-8b\">Reach out to hear what our patients have to say about the Tampa Gynecomastia Center!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-22 17:17:14','2024-03-22 17:17:14','',2886,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4010',0,'revision','',0),(4011,3,'2024-03-22 17:17:43','2024-03-22 17:17:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gyno Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-22 17:17:43','2024-03-22 17:17:43','',1563,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4011',0,'revision','',0),(4012,3,'2024-03-22 17:18:34','2024-03-22 17:18:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gyno Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-22 17:18:34','2024-03-22 17:18:34','',1563,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4012',0,'revision','',0),(4014,3,'2024-03-22 17:19:56','2024-03-22 17:19:56','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0b1b27-d7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0b1b27-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0b1b27-d7\">Are you asking yourself if gynecomastia surgery is the right step for you? At the Tampa Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">Dealing with enlarged breast tissue in males can be both physically uncomfortable and emotionally challenging. Our gynecomastia plastic surgeons understand this, and our primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of your condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we empower you to make a decision that\'s right for you. Whether you choose surgery or explore other options, we\'re here to support you every step of the way toward regaining your confidence and well-being.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_30bcd6-73\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_30bcd6-73 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_30bcd6-73\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, causing either psychological discomfort or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Men with persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Those who have realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Tampa</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">contributing to gynecomastia</a>. If you\'re an adult dealing with this issue, know that surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> During a crucial phase of physical and emotional growth, adolescent boys often encounter distinct hurdles when grappling with persistent gynecomastia. The enlargement of breast tissue can induce self-consciousness, impacting both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions emerge as a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia, marked by the enlargement of male breast tissue, becomes more prevalent as individuals age. This condition, influenced by hormonal shifts, medication usage, and age-related health issues, can appear at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> As bodybuilders incorporate supplements into their routines, they might inadvertently face gynecomastia as a consequence. Enlarged breast tissue, often resulting from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroid consumption</a>, can lead bodybuilders to explore surgical remedies to regain desired chest aesthetics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can give rise to the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Tampa Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes—it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable and enhancing mobility.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and tissue excision help finely shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It empowers individuals to live without the restrictions imposed by enlarged breast tissue, enabling them to embrace a more comfortable lifestyle.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves liberated to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Tampa Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Embarking on the journey of gynecomastia surgery involves navigating a series of meticulous steps. Each step is designed to achieve optimal outcomes and ensure patient safety and satisfaction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon, where patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. During this time patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure itself involves utilizing a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> Before gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and to make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> Choosing the right spots for incisions in gynecomastia surgery is key to minimizing visible scars and precisely removing excess breast tissue and fat. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat with precision, using a mix of liposuction and surgical excision techniques. This targeted method helps shape the chest to look natural and masculine, personalized to fit each patient\'s unique anatomy and aesthetic desires.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> After surgery, the reshaping and sculpting of the chest mark the result of meticulous efforts, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgical journey nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, promoting optimal wound recovery and ensuring positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal occurrences. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, empowering each individual to discover their true self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Tampa, Clearwater, St. Petersburg, or other nearby areas, we invite you to schedule a <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-22 17:19:56','2024-03-22 17:19:56','',3418,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4014',0,'revision','',0),(4015,3,'2024-03-22 17:20:55','2024-03-22 17:20:55','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about this condition – from its causes to available treatment options and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Tampa Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize your understanding and work closely with you to create tailored treatment plans.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males, often causing a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". This condition can occur at any age and is typically benign, though it may cause physical discomfort or psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males, often causing a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. This condition can occur at any age and is typically benign, though it may cause physical discomfort or psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment approaches, as they may have different underlying causes and management strategies.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment approaches, as they may have different underlying causes and management strategies.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional, possibly including blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional, possibly including blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males, often causing a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. This condition can occur at any age and is typically benign, though it may cause physical discomfort or psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment approaches, as they may have different underlying causes and management strategies.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional, possibly including blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia can be caused\"]}},\" by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia can be caused\\u003c/a\\u003e by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Yes, gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Yes, gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia can be caused</a> by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects or considerations after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects or considerations after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953916692\",\"question\":[\"What is the importance of follow-up appointments after gynecomastia surgery?\"],\"answer\":[\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.\"],\"jsonQuestion\":\"What is the importance of follow-up appointments after gynecomastia surgery?\",\"jsonAnswer\":\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects or considerations after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953916692\"><strong class=\"schema-faq-question\">What is the importance of follow-up appointments after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is Financing Available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is Financing Available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is Financing Available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Tampa Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Tampa Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Tampa Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-22 17:20:55','2024-03-22 17:20:55','',2743,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4015',0,'revision','',0),(4016,3,'2024-03-22 17:24:18','2024-03-22 17:24:18','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">Gynecomastia revision surgery is a procedure sought for various reasons. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Tampa Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically presents with an excess of both breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. Changes in weight can alter the distribution of fat in the body, affecting the chest appearance. Revision surgery may be necessary to address excess fat or loose skin resulting from weight changes, ensuring the maintenance or restoration of the desired chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Tampa Gynecomastia Center, we\'re here to provide the support and assistance you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a sagging appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery','','inherit','closed','closed','','1901-revision-v1','','','2024-03-22 17:24:18','2024-03-22 17:24:18','',1901,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4016',0,'revision','',0),(4017,3,'2024-03-22 17:25:03','2024-03-22 17:25:03','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8d7bfa-b6\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_a9a99c-c9\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_a9a99c-c9\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_97f102-72\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_97f102-72 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_97f102-72\">If you\'re considering gynecomastia surgery, it\'s crucial to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d735e8-57\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d735e8-57 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d735e8-57\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_b08339-a6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_b08339-a6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_b08339-a6\">Read over the timeline below to get a better understanding of what our <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">top Tampa gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate, regardless of whether you\'re undergoing grade 1 or 4 surgery. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before undergoing gynecomastia surgery, thorough preparation is essential. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, smoking cessation, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time in addition to other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will meticulously perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate post-operative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support the newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By the third to fourth week post-surgery, most patients experience a significant reduction in swelling and bruising, with the chest contour continuing to refine. Light exercise and physical activities may be gradually reintroduced, following your surgeon\'s guidance. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 1-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. It\'s essential to adhere to your surgeon\'s post-operative instructions, including proper scar care and sun protection, to optimize the long-term outcome of your surgery.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_20245c-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e8c001-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e8c001-33\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Managing Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_217828-aa\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_217828-aa wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_217828-aa\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_d9f72e-b2\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_d9f72e-b2 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_4c0574-b7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_4c0574-b7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics, especially on an empty stomach. Your surgeon may prescribe anti-nausea meds to help. Always prioritize your comfort and communicate any concerns with your medical team.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_f83497-ad\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_f83497-ad\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_0c6274-ff\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_0c6274-ff wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_0c6274-ff\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_255ae6-13\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_255ae6-13\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_545e52-1e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_545e52-1e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_545e52-1e\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening, lasting around 15 minutes. These gentle movements help promote proper blood circulation, aiding in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_878bdf-72\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_878bdf-72\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_c252cd-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_c252cd-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_e3be40-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_e3be40-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_561560-d7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_561560-d7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_18610d-8a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_18610d-8a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_8a91b0-a3\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_8a91b0-a3\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s essential to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_e6169f-cd\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_e6169f-cd\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, promptly contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_788f10-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_788f10-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_07cfa9-17\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_07cfa9-17\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_d1b87b-5c\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_c6e786-30\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_c6e786-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Other Things to Expect During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_954f98-28\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_954f98-28 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_954f98-28\">As you recover from surgery at the Tampa Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_bf8ca5-44\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_bf8ca5-44 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_51df90-99\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_51df90-99\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_72c6dc-9f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_72c6dc-9f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_258758-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_258758-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_258758-3e\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_e33fa6-4c\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_e33fa6-4c\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_1609d4-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_1609d4-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, it\'s crucial to resist the urge to scratch the affected area, as it can potentially disrupt the healing process and lead to complications such as reopening incisions. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_3a3a26-d0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_3c7563-42\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_3c7563-42\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to recovering from gynecomastia surgery, there are a lot questions out there. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Things to Know','','inherit','closed','closed','','1666-revision-v1','','','2024-03-22 17:25:03','2024-03-22 17:25:03','',1666,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4017',0,'revision','',0),(4018,3,'2024-03-22 17:25:20','2024-03-22 17:25:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8d7bfa-b6\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_a9a99c-c9\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_a9a99c-c9\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_97f102-72\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_97f102-72 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_97f102-72\">If you\'re considering gynecomastia surgery, it\'s crucial to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d735e8-57\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d735e8-57 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d735e8-57\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_b08339-a6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_b08339-a6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_b08339-a6\">Read over the timeline below to get a better understanding of what our <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">top Tampa gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate, regardless of whether you\'re undergoing grade 1 or 4 surgery. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before undergoing gynecomastia surgery, thorough preparation is essential. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, smoking cessation, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time in addition to other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will meticulously perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate post-operative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support the newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By the third to fourth week post-surgery, most patients experience a significant reduction in swelling and bruising, with the chest contour continuing to refine. Light exercise and physical activities may be gradually reintroduced, following your surgeon\'s guidance. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 1-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. It\'s essential to adhere to your surgeon\'s post-operative instructions, including proper scar care and sun protection, to optimize the long-term outcome of your surgery.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_20245c-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e8c001-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e8c001-33\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Managing Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_217828-aa\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_217828-aa wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_217828-aa\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_d9f72e-b2\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_d9f72e-b2 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_4c0574-b7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_4c0574-b7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics, especially on an empty stomach. Your surgeon may prescribe anti-nausea meds to help. Always prioritize your comfort and communicate any concerns with your medical team.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_f83497-ad\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_f83497-ad\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_0c6274-ff\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_0c6274-ff wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_0c6274-ff\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_255ae6-13\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_255ae6-13\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_545e52-1e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_545e52-1e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_545e52-1e\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening, lasting around 15 minutes. These gentle movements help promote proper blood circulation, aiding in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_878bdf-72\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_878bdf-72\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_c252cd-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_c252cd-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_e3be40-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_e3be40-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_561560-d7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_561560-d7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_18610d-8a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_18610d-8a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_8a91b0-a3\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_8a91b0-a3\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s essential to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_e6169f-cd\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_e6169f-cd\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, promptly contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_788f10-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_788f10-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_07cfa9-17\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_07cfa9-17\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_d1b87b-5c\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_c6e786-30\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_c6e786-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Other Things to Expect During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_954f98-28\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_954f98-28 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_954f98-28\">As you recover from surgery at the Tampa Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_bf8ca5-44\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_bf8ca5-44 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_51df90-99\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_51df90-99\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_72c6dc-9f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_72c6dc-9f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_258758-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_258758-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_258758-3e\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_e33fa6-4c\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_e33fa6-4c\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_1609d4-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_1609d4-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, it\'s crucial to resist the urge to scratch the affected area, as it can potentially disrupt the healing process and lead to complications such as reopening incisions. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_3a3a26-d0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_3c7563-42\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_3c7563-42\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to recovering from gynecomastia surgery, there are a lot questions out there. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Things to Know','','inherit','closed','closed','','1666-revision-v1','','','2024-03-22 17:25:20','2024-03-22 17:25:20','',1666,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4018',0,'revision','',0),(4021,3,'2024-03-22 17:29:17','2024-03-22 17:29:17','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">Gynecomastia, characterized by enlarged male breast tissue, often leads to distress and self-consciousness among men. While commonly linked to hormonal imbalances or medical conditions, it can also affect adult males post-weight loss. Despite significant achievements in shedding pounds, lingering issues may persist, such as excess skin and tissue contributing to the appearance of enlarged breasts.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery offers a transformative solution for men after weight loss. By addressing excess tissue and restoring a more masculine chest contour, this surgical intervention enhances physical appearance and empowers individuals to reclaim confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by an imbalance between the hormones testosterone and estrogen, resulting in the growth of breast gland tissue in males. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Beyond Puberty</strong>: While hormonal fluctuations during puberty are often linked to the development of gynecomastia, its occurrence beyond adolescence highlights a wider range of contributing factors. The delicate balance between testosterone and estrogen hormones, essential for maintaining normal breast tissue development, can be disrupted by various factors throughout a man\'s life journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Navigating the Maze of Causes</strong>: Obesity, medications, hormonal imbalances, and underlying medical conditions all play a significant role in the development of gynecomastia. These factors contribute to the condition\'s complexity, making it challenging for both patients and healthcare providers to navigate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Loss Unveils Hidden Struggles</strong>: In the context of weight loss, gynecomastia\'s presence can become more pronounced as excess fat dissipates, laying bare the underlying surplus breast tissue and skin. This revelation can be particularly disheartening for men who have dedicated themselves to shedding pounds, only to be confronted with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Impacts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Living with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> goes beyond physical discomfort—it deeply affects a man\'s self-esteem and how he views himself. Enlarged breasts often trigger feelings of embarrassment and self-consciousness, making social and intimate situations daunting. This emotional burden can seep into various aspects of life, from relationships to work, and even overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For many, dealing with enlarged breasts leads to a rollercoaster of emotions, from feeling constantly insecure to avoiding interactions altogether. Constant scrutiny of appearance chips away at self-confidence, creating barriers to forming meaningful connections and hindering personal growth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Men who\'ve triumphed over weight loss may find gynecomastia to be an unexpected setback. Despite their hard work and physical transformation, enlarged breasts undermine their sense of achievement, overshadowing progress and leaving them grappling with renewed self-doubt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing the emotional impact of gynecomastia requires a holistic approach. By acknowledging its toll and fostering a supportive environment, individuals can begin to rebuild their confidence and embrace their journey towards self-acceptance and empowerment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also referred to as male breast reduction surgery, stands as a definitive solution for addressing lingering issues of excess breast tissue and skin following weight loss. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This transformative procedure involves the meticulous removal of glandular tissue and surplus skin through surgical excision. It is complemented by the precision of liposuction techniques to eliminate excess fat. The culmination of these techniques results in the creation of a flatter, more defined chest contour - a testament to masculinity and renewed self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you contemplate gynecomastia surgery, the Tampa Gynecomastia Center offers a comprehensive approach to care. Whether through <a href=\"https://atlantagynecomastia.com/contact/\">in-person or virtual consultations</a>, our skilled surgeons assess the extent of gynecomastia, carefully review the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and aspirations</a>, and collaboratively devise a surgical strategy tailored to achieve optimal results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery is a transformative procedure typically conducted under general anesthesia on an outpatient basis, enabling patients to return home the same day. The surgery encompasses a combination of techniques, including liposuction to eliminate excess fat and surgical excision to address glandular tissue and loose skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Performed through small incisions strategically placed around the areola or in the natural creases of the chest, the surgery allows the surgeon to access underlying tissues and reshape the chest contour to achieve a more masculine appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Post Surgery Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Recovery following gynecomastia surgery is a crucial phase in the journey towards achieving optimal results. Understanding the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">postoperative care protocol</a> and adhering to your surgeon\'s instructions are paramount for a smooth and successful recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After gynecomastia surgery, patients are typically advised to wear a compression garment to provide support to the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common occurrences, most individuals can resume light activities within a few days. Return to work is usually possible within a week or two, although the timeframe may vary based on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Following your surgeon\'s postoperative instructions diligently is essential for ensuring proper healing and minimizing complications. This may include avoiding strenuous exercise and refraining from lifting heavy objects for several weeks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Regular follow-up appointments will allow your surgeon to monitor your progress closely and address any concerns that may arise during the recovery process. This collaborative approach ensures that you receive optimal care and achieve the desired outcome from your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Long Term Results</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The effects of gynecomastia surgery are typically visible right away, with further enhancements becoming evident as swelling decreases and tissues settle over time. Patients can anticipate a flatter, firmer chest contour that harmonizes better with their overall physique, ultimately enhancing both their appearance and confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, it\'s essential for individuals to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercise, and avoiding factors that may contribute to gynecomastia recurrence, such as certain medications or steroid use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery following weight loss presents a transformative option for men burdened by enlarged breasts. By eliminating excess tissue and crafting a more masculine chest, this procedure empowers individuals to reclaim confidence and embrace their authentic selves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those contemplating gynecomastia surgery, it\'s crucial to seek guidance from a board-certified plastic surgeon well-versed in male breast reduction techniques. At the Tampa Gynecomastia Center, we stand ready to provide expert assistance and support throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Post Weight Loss Gynecomastia Surgery','','inherit','closed','closed','','3473-revision-v1','','','2024-03-22 17:29:17','2024-03-22 17:29:17','',3473,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4021',0,'revision','',0),(4023,3,'2024-03-22 17:30:04','2024-03-22 17:30:04','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\" or \"moobs,\" is the abnormal enlargement of breast gland tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">doctors at the Tampa Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur, including a decrease in testosterone levels and an increase in estrogen levels. This hormonal imbalance can disrupt the normal balance between testosterone and estrogen, leading to the proliferation of breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging, such as prostate enlargement, liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants, can contribute to the development of gynecomastia in older men.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can exacerbate hormonal imbalances and contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are just a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to undergoing gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, a prevalent and frequently troubling condition among seniors, can significantly impact quality of life. It\'s crucial to comprehend its root causes, available treatment modalities, and associated risks for effective management. By seeking guidance from our skilled healthcare providers and <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">determining suitability for gynecomastia treatment</a>, seniors can alleviate symptoms and restore confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[\"Can gynecomastia go away on its own? \"],\"answer\":[\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"],\"jsonQuestion\":\"Can gynecomastia go away on its own? \",\"jsonAnswer\":\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\">Can gynecomastia go away on its own? </strong> <p class=\"schema-faq-answer\">In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery provides seniors with a transformative solution, offering relief from the physical and emotional burdens of enlarged breasts. Through the removal of excess tissue and the sculpting of a more masculine chest contour, this procedure empowers individuals to reclaim confidence in their appearance and embrace a renewed sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For seniors contemplating gynecomastia surgery, it\'s vital to seek consultation with a board-certified plastic surgeon proficient in male breast reduction procedures. At the Tampa Gynecomastia Center, we are ready to assist you on your journey to enhanced well-being and self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery','','inherit','closed','closed','','3481-revision-v1','','','2024-03-22 17:30:04','2024-03-22 17:30:04','',3481,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4023',0,'revision','',0),(4025,3,'2024-03-22 17:30:52','2024-03-22 17:30:52','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">When considering gynecomastia surgery in Tampa, <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions about the costs and insurance</a> coverage are common and understandable. These aspects can significantly impact your decision-making process. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s dive deeper into these topics to help you better understand how they relate to your situation and alleviate any concerns you may have. By exploring these factors together, we can ensure you feel confident and informed as you embark on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Tampa</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Tampa Gynecomastia Center is your premier destination for male breast reduction solutions in the Sunshine State. If you\'re considering gynecomastia surgery, understanding the associated costs is essential for your journey toward achieving your desired physique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Tampa can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Tampa Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Tampa Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> At the Tampa Gynecomastia Center, the qualifications, experience, and reputation of our surgeons factor into the cost of gynecomastia surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery, whether it\'s local anesthesia, intravenous sedation, or general anesthesia, can influence the overall cost. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Tampa Gynecomastia Center, we provide transparent pricing structures, ensuring you have a comprehensive understanding of all expenses involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When considering gynecomastia surgery costs in the Tampa area, it\'s essential to account for various components, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: Ensuring your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: Covering the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: Including medical tests and consultations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflecting the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000. A <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">consultation with our doctors</a> will give you a better sense of what the cost of surgery would look like.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, the presence of excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases, consequently leading to higher costs. In such cases, a more in-depth surgical approach is required, often involving the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Tampa Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Tampa Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Navigating insurance coverage for gynecomastia surgery can be challenging, as most insurance companies categorize it as a cosmetic procedure, which typically isn\'t covered. Despite the distressing nature of gynecomastia for the patient, insurance providers often maintain this stance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, such as when gynecomastia presents as an isolated breast mass requiring excision. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ takes into account various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at The Tampa Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Tampa Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Tampa Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-22 17:30:52','2024-03-22 17:30:52','',1668,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4025',0,'revision','',0),(4029,5,'2024-03-22 19:05:11','2024-03-22 19:05:11','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_86a1b1-31\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_86a1b1-31 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_86a1b1-31\">For many men, the term \"puffy nipples\" can bring up feelings of self-consciousness and discomfort. This specific <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a>, marked by the swelling and protrusion of the nipple-areolar complex, goes beyond just physical appearance - it can deeply affect confidence and well-being. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_94da24-24\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_94da24-24 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_94da24-24\">In this article, we\'ll explore the ins and outs of puffy nipples, discussing what causes them, how they\'re diagnosed, and what treatment options are available.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, often associated with gynecomastia, refer to the swelling and protrusion of the nipple-areolar complex in males. This condition, while not medically harmful, can significantly impact self-esteem and quality of life due to its effect on physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples typically arise from an imbalance in hormone levels, particularly an <a href=\"https://www.healthline.com/health/estrogen-in-men\" target=\"_blank\" rel=\"noreferrer noopener\">excess of estrogen</a> relative to testosterone. This hormonal imbalance can disrupt normal breast tissue development, resulting in the characteristic appearance of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While puffy nipples share similarities with gynecomastia, which involves the enlargement of male breast tissue, they represent a distinct presentation where the swelling is concentrated around the nipple area. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the relationship between puffy nipples and gynecomastia is essential for accurate diagnosis and effective management. Both conditions can have overlapping symptoms and require tailored treatment approaches to address underlying causes and alleviate associated concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipples Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, an aspect of <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">gynecomastia</a>, result from a complex interplay of hormonal, genetic, and environmental factors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, notably an excess of estrogen compared to testosterone, disrupt normal breast tissue development, leading to the characteristic swelling and protrusion of the nipple area. Genetic predisposition also plays a significant role, influencing hormone metabolism and receptor sensitivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle habits such as poor diet, sedentary lifestyles, and obesity exacerbate hormonal imbalances and promote excess chest adipose tissue. Excessive alcohol consumption and substance abuse further disrupt hormonal equilibrium, contributing to puffy nipple formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding these factors is crucial for accurate diagnosis and targeted treatment interventions aimed at addressing the root cause of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Surgical Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Liposuction, which is effective for cases primarily caused by excess fatty tissue behind the nipple, entails gently agitating fat cells before suctioning them out using a cannula.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: In cases where puffy nipples result from excess breast gland tissue behind the nipple/areola, surgical removal of the excess breast gland tissue, is recommended to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: Offering optimal post-surgery aesthetics, this comprehensive procedure removes both excess fat tissue and breast gland tissue.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the Tampa Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size. Seeking medical advice is essential for accurate diagnosis and personalized treatment plans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\",\"children\":[\"consult our doctors\"]}},\" promptly for proper evaluation and guidance.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\\u0022\\u003econsult our doctors\\u003c/a\\u003e promptly for proper evaluation and guidance.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors-tampa-florida/\">consult our doctors</a> promptly for proper evaluation and guidance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While Puffy Nipple Syndrome can be psychologically upsetting, numerous treatments exist for those affected. Whether adjusting your diet or adopting a new exercise routine (ideally both), combating puffy nipples and enhancing your appearance is entirely feasible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, for persistent cases, surgical procedures for puffy nipples are always an option—and highly effective at achieving desired outcomes.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples Overview','','inherit','closed','closed','','2668-revision-v1','','','2024-03-22 19:05:11','2024-03-22 19:05:11','',2668,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4029',0,'revision','',0),(4031,5,'2024-03-22 19:12:27','2024-03-22 19:12:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Tampa Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Tampa Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center<br></a>100 N Ashley Dr #50K<br>Tampa, Florida 33602<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-22 19:12:27','2024-03-22 19:12:27','',2069,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4031',0,'revision','',0),(4032,5,'2024-03-22 19:22:17','2024-03-22 19:22:17','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">As boys hit puberty, their bodies undergo a rollercoaster of hormonal changes. Sometimes, this can cause a condition called gynecomastia, where male breasts become enlarged due to shifts in testosterone and estrogen levels. If this doesn\'t sort itself out naturally, surgery might be the best way to fix it.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Tampa Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, encompassing both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may necessitate intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we specialize in providing comprehensive care for adolescents grappling with gynecomastia. Our team of dedicated specialists has the expertise to address the unique concerns and challenges faced by young individuals dealing with this condition. With a focus on compassion and precision, we strive to offer tailored solutions to ensure optimal outcomes for our gynecomastia patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescent gynecomastia frequently presents as a small lump beneath the nipple, sometimes accompanied by tenderness or discomfort. There might also be noticeable swelling of the breast tissue. Typically emerging during the early stages of puberty, this condition is most prevalent between the ages of 10 and 13.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem and resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer silently, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence, affecting up to a third of cases, may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by affected individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, while some instances may resolve naturally with time, there are cases where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there\'s an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Tampa Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individual candidacy</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Typically, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola, resulting in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. However, it\'s advisable to refrain from strenuous upper body activities, including gym workouts and sports, for approximately a month to ensure optimal healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"puffy nipple\"]}},\" discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003epuffy nipple\\u003c/a\\u003e discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and may clear up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalances, specifically an increase in estrogen relative to testosterone during puberty, are the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists, necessitating additional evaluation and potential treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipple</a> discharge, or if it significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Tampa Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. While observation and reassurance suffice for some cases, as gynecomastia often resolves spontaneously, persistent or distressing cases may require surgical intervention for complete resolution.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues in some cases. Moreover, managing underlying medical conditions that trigger gynecomastia may be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be contemplated. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gyno specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Tampa, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Tampa Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery','','inherit','closed','closed','','1906-revision-v1','','','2024-03-22 19:22:17','2024-03-22 19:22:17','',1906,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4032',0,'revision','',0),(4033,5,'2024-03-22 19:23:12','2024-03-22 19:23:12','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3808_b917f4-a1\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3808_ca9cbc-43\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3808_ca9cbc-43\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p>The Tampa Gynecomastia Center covers the Tampa, Clearwater, St. Petersberg areas, and beyond. Just some of the main areas of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Brandon</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Clearwater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fort-meyers-florida/\">Fort Meyers</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Gainesville</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Lakeland</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Orlando</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Riverview</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">St. Petersburg</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And don\'t worry if you are situated further away from the Tampa area. It is also possible to arrange a virtual consultation for gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Service Pages -> City Summary','','inherit','closed','closed','','3808-revision-v1','','','2024-03-22 19:23:12','2024-03-22 19:23:12','',3808,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4033',0,'revision','',0),(4035,5,'2024-03-22 19:25:32','2024-03-22 19:25:32','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a mix of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Tampa Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3988,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-1024x586.jpg\" alt=\"What is Gynecomastia\" class=\"wp-image-3988\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving glandular tissue enlargement, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, or lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Tampa gynecomastia specialists is necessary to determine the underlying cause and recommend the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes and Effects</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia arises from a multitude of factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The ramifications of gynecomastia extend beyond mere physical appearance, profoundly impacting psychological well-being. Many individuals grappling with this condition experience heightened self-consciousness, embarrassment, and a notable decline in self-esteem. Consequently, they may opt to avoid situations involving exposure of their chest, such as swimming or sports, leading to a significant decrease in their overall quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia can present with a variety of symptoms, which can differ depending on the underlying cause and the severity of the condition. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are not uncommon due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gyno Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Male breast reduction surgery is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Tampa Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment, while refraining from strenuous physical activities for a few weeks ensures the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Temporary bruising, swelling, and discomfort are common post-surgery, managed effectively with prescribed pain medication and proper post-operative care. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia and are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery for Adults','','inherit','closed','closed','','1908-revision-v1','','','2024-03-22 19:25:32','2024-03-22 19:25:32','',1908,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4035',0,'revision','',0),(4036,5,'2024-03-22 19:27:02','2024-03-22 19:27:02','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. They might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><strong>Here at the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Tampa Gynecomastia Center</a>, we\'re all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan to tackle it.</strong></p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two gyno conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s break down the distinctions between gynecomastia and pseudogynecomastia, two conditions that frequently confuse individuals with male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a>, first off, is all about an overgrowth of breast gland tissue, leading to visible breast enlargement. This usually happens because of an imblance of hormone levels, especially when there\'s more estrogen compared to testosterone. While it\'s not physically harmful, it can have impacts on one\'s well being, driving many folks to explore treatment options, including <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia, on the flip side, is more about extra fat in the chest area, giving off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gyno and pseudogyno share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can arise from a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Due to the distinct underlying causes of these conditions, treatment approaches likewise vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to managing gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, if conservative measures fail to yield satisfactory results, surgical intervention may be necessary. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contouring the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s address some common questions that arise when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths diverge.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, it\'s crucial to connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>. With their support, whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and confidence, greatly improving your quality of life.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-22 19:27:02','2024-03-22 19:27:02','',2657,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4036',0,'revision','',0),(4037,5,'2024-03-22 19:27:56','2024-03-22 19:27:56','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_86a1b1-31\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_86a1b1-31 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_86a1b1-31\">For many men, the term \"puffy nipples\" can bring up feelings of self-consciousness and discomfort. This specific <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a>, marked by the swelling and protrusion of the nipple-areolar complex, goes beyond just physical appearance - it can deeply affect confidence and well-being. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_94da24-24\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_94da24-24 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_94da24-24\">In this article, we\'ll explore the ins and outs of puffy nipples, discussing what causes them, how they\'re diagnosed, and what treatment options are available.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, often associated with gynecomastia, refer to the swelling and protrusion of the nipple-areolar complex in males. This condition, while not medically harmful, can significantly impact self-esteem and quality of life due to its effect on physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples typically arise from an imbalance in hormone levels, particularly an <a href=\"https://www.healthline.com/health/estrogen-in-men\" target=\"_blank\" rel=\"noreferrer noopener\">excess of estrogen</a> relative to testosterone. This hormonal imbalance can disrupt normal breast tissue development, resulting in the characteristic appearance of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While puffy nipples share similarities with gynecomastia, which involves the enlargement of male breast tissue, they represent a distinct presentation where the swelling is concentrated around the nipple area. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the relationship between puffy nipples and gynecomastia is essential for accurate diagnosis and effective management. Both conditions can have overlapping symptoms and require tailored treatment approaches to address underlying causes and alleviate associated concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipples Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, an aspect of <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">gynecomastia</a>, result from a complex interplay of hormonal, genetic, and environmental factors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, notably an excess of estrogen compared to testosterone, disrupt normal breast tissue development, leading to the characteristic swelling and protrusion of the nipple area. Genetic predisposition also plays a significant role, influencing hormone metabolism and receptor sensitivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle habits such as poor diet, sedentary lifestyles, and obesity exacerbate hormonal imbalances and promote excess chest adipose tissue. Excessive alcohol consumption and substance abuse further disrupt hormonal equilibrium, contributing to puffy nipple formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding these factors is crucial for accurate diagnosis and targeted treatment interventions aimed at addressing the root cause of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Surgical Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Liposuction, which is effective for cases primarily caused by excess fatty tissue behind the nipple, entails gently agitating fat cells before suctioning them out using a cannula.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: In cases where puffy nipples result from excess breast gland tissue behind the nipple/areola, surgical removal of the excess breast gland tissue, is recommended to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: Offering optimal post-surgery aesthetics, this comprehensive procedure removes both excess fat tissue and breast gland tissue.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the Tampa Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size. Seeking medical advice is essential for accurate diagnosis and personalized treatment plans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"children\":[\"consult our doctors\"]}},\" promptly for proper evaluation and guidance.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\\u0022\\u003econsult our doctors\\u003c/a\\u003e promptly for proper evaluation and guidance.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">consult our doctors</a> promptly for proper evaluation and guidance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While Puffy Nipple Syndrome can be psychologically upsetting, numerous treatments exist for those affected. Whether adjusting your diet or adopting a new exercise routine (ideally both), combating puffy nipples and enhancing your appearance is entirely feasible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, for persistent cases, surgical procedures for puffy nipples are always an option—and highly effective at achieving desired outcomes.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":3808} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples Overview','','inherit','closed','closed','','2668-revision-v1','','','2024-03-22 19:27:56','2024-03-22 19:27:56','',2668,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4037',0,'revision','',0),(4038,5,'2024-03-22 20:11:45','2024-03-22 20:11:45','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\" or \"moobs,\" is the abnormal enlargement of breast gland tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">doctors at the Tampa Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur, including a decrease in testosterone levels and an increase in estrogen levels. This hormonal imbalance can disrupt the normal balance between testosterone and estrogen, leading to the proliferation of breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging, such as prostate enlargement, liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants, can contribute to the development of gynecomastia in older men.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can exacerbate hormonal imbalances and contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are just a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to undergoing gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, a prevalent and frequently troubling condition among seniors, can significantly impact quality of life. It\'s crucial to comprehend its root causes, available treatment modalities, and associated risks for effective management. By seeking guidance from our skilled healthcare providers and <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">determining suitability for gynecomastia treatment</a>, seniors can alleviate symptoms and restore confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[\"Can gynecomastia go away on its own? \"],\"answer\":[\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"],\"jsonQuestion\":\"Can gynecomastia go away on its own? \",\"jsonAnswer\":\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\">Can gynecomastia go away on its own? </strong> <p class=\"schema-faq-answer\">In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery provides seniors with a transformative solution, offering relief from the physical and emotional burdens of enlarged breasts. Through the removal of excess tissue and the sculpting of a more masculine chest contour, this procedure empowers individuals to reclaim confidence in their appearance and embrace a renewed sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For seniors contemplating gynecomastia surgery, it\'s vital to seek consultation with a board-certified plastic surgeon proficient in male breast reduction procedures. At the Tampa Gynecomastia Center, we are ready to assist you on your journey to enhanced well-being and self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery','','inherit','closed','closed','','3481-revision-v1','','','2024-03-22 20:11:45','2024-03-22 20:11:45','',3481,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4038',0,'revision','',0),(4039,5,'2024-03-22 20:12:02','2024-03-22 20:12:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">Gynecomastia revision surgery is a procedure sought for various reasons. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Tampa Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically presents with an excess of both breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. Changes in weight can alter the distribution of fat in the body, affecting the chest appearance. Revision surgery may be necessary to address excess fat or loose skin resulting from weight changes, ensuring the maintenance or restoration of the desired chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Tampa Gynecomastia Center, we\'re here to provide the support and assistance you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery after the initial gynecomastia procedure?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Tampa Gynecomastia Center. However, the degree of improvement varies based on factors such as the required revision extent and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a sagging appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery','','inherit','closed','closed','','1901-revision-v1','','','2024-03-22 20:12:02','2024-03-22 20:12:02','',1901,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4039',0,'revision','',0),(4040,5,'2024-03-22 20:12:17','2024-03-22 20:12:17','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a mix of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Tampa Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3988,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-1024x586.jpg\" alt=\"What is Gynecomastia\" class=\"wp-image-3988\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving glandular tissue enlargement, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, or lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Tampa gynecomastia specialists is necessary to determine the underlying cause and recommend the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes and Effects</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia arises from a multitude of factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The ramifications of gynecomastia extend beyond mere physical appearance, profoundly impacting psychological well-being. Many individuals grappling with this condition experience heightened self-consciousness, embarrassment, and a notable decline in self-esteem. Consequently, they may opt to avoid situations involving exposure of their chest, such as swimming or sports, leading to a significant decrease in their overall quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia can present with a variety of symptoms, which can differ depending on the underlying cause and the severity of the condition. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are not uncommon due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gyno Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Male breast reduction surgery is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Tampa Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment, while refraining from strenuous physical activities for a few weeks ensures the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Temporary bruising, swelling, and discomfort are common post-surgery, managed effectively with prescribed pain medication and proper post-operative care. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia and are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery for Adults','','inherit','closed','closed','','1908-revision-v1','','','2024-03-22 20:12:17','2024-03-22 20:12:17','',1908,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4040',0,'revision','',0),(4041,5,'2024-03-22 20:12:33','2024-03-22 20:12:33','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder grappling with the challenges of gynecomastia? At the Tampa Gynecomastia Center, we offer tailored solutions designed specifically for individuals like you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_db0a35-4a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_db0a35-4a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_db0a35-4a\">Dedicated to providing comprehensive support and care, our team of specialists understands the distinctive needs and concerns that bodybuilders encounter with gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this guide, we delve into the intricacies of bodybuilder gynecomastia, examining its root causes, symptoms, available surgical interventions, post-operative recovery, and addressing <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">common questions surrounding gyno</a>. We\'re here to accompany you every step of the way on your journey towards resolution and renewed confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the Tampa Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Bodybuilder Gynecomastia</strong> Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia is a genuine concern among fitness enthusiasts, leading to the development of enlarged breast tissue in male individuals. This issue often arises due to the use of <a href=\"https://www.dea.gov/factsheets/steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones. These substances are commonly utilized to enhance muscle growth and physical performance, albeit at the expense of disrupting the body\'s natural hormonal balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, the realm of bodybuilding supplements is not without its pitfalls. Some products marketed to enthusiasts may contain undisclosed steroid or hormone-like ingredients, further exacerbating the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When hormonal equilibrium is compromised, it results in the proliferation of glandular tissue beneath the areola, giving rise to the characteristic appearance of enlarged male breasts. Understanding the impact of steroid-induced gynecomastia is crucial for those dedicated to their fitness journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The main reason bodybuilders experience gynecomastia often boils down to their use of anabolic steroids or prohormones. These substances are popular among those looking to bulk up and improve performance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But here\'s the thing: these synthetic hormones mimic testosterone, messing up the natural balance between estrogen and testosterone in the body. This disruption can lead to the growth of breast tissue, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causing gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes, patients know they\'re taking these substances. Other times, they might be taking something they think is just a harmless supplement, not realizing it contains steroids, prohormones, or similar stuff.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> Unfortunately, this can still trigger gynecomastia, even if they stop using those substances later on. It\'s crucial for folks in the fitness world to understand these risks and how to avoid them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying gynecomastia symptoms among bodybuilders is essential for timely intervention and management. One of the hallmark signs is the presence of firm breast tissue beneath the areola, often accompanied by tenderness or sensitivity. These symptoms parallel those seen in standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, it\'s not just physical discomfort that bodybuilders may face. Gynecomastia can take a toll on mental well-being too. Many individuals experience psychological distress and a dip in self-esteem due to the appearance of enlarged breasts, which can disrupt their confidence and hinder their performance both in and out of the gym.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In more severe instances, gynecomastia may manifest in asymmetry between the breasts, causing further discomfort and aesthetic concerns. Some individuals might even experience nipple discharge, indicating a more advanced stage of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognizing these symptoms early on is paramount. It allows for prompt intervention, which can prevent the progression of gynecomastia and aid in restoring a more masculine chest contour. By staying vigilant and seeking professional guidance, bodybuilders can effectively address gynecomastia and reclaim their confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for bodybuilders typically employs a dual approach, combining liposuction with direct excision of glandular tissue to attain the desired outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The procedure begins with the removal of excess fatty tissue through liposuction, employing specialized techniques to contour the chest and refine its definition. Following this, direct excision of glandular tissue is carried out through a discreet incision strategically placed at the lower border of the areola, aiming for minimal scarring and a natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Performed under general anesthesia, the surgery allows most patients to return home on the same day, ensuring a comfortable and efficient recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgery Gynecomastia Recovery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders should anticipate some swelling, bruising, and discomfort, which typically diminishes over the following weeks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To aid in the healing process and promote optimal contour refinement, patients are advised to wear a compression garment, providing support to the chest while minimizing swelling. It\'s crucial to refrain from engaging in strenuous upper body activities, including weightlifting, for approximately four to six weeks post-surgery. This precaution is essential to prevent complications and ensure proper tissue healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While each individual\'s recovery journey may vary, most patients can gradually resume non-strenuous activities within a few days. Under the guidance of our surgeon, they can gradually reintroduce their regular exercise routine, ensuring a safe and effective transition back to their fitness regimen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the Tampa Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance inquiries and financing options\"]}},\" to facilitate access to treatment.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance inquiries and financing options\\u003c/a\\u003e to facilitate access to treatment.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance inquiries and financing options</a> to facilitate access to treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Reach Out Today</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our dedication lies in delivering customized care and individualized treatment strategies tailored to meet the unique needs and aspirations of bodybuilders contending with gynecomastia. Employing cutting-edge techniques and advanced technologies, our skilled team of specialists ensures safe, successful, and aesthetically pleasing outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the Tampa Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery for Bodybuilders','','inherit','closed','closed','','1911-revision-v1','','','2024-03-22 20:12:33','2024-03-22 20:12:33','',1911,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4041',0,'revision','',0),(4042,5,'2024-03-22 20:12:45','2024-03-22 20:12:45','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. They might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><strong>Here at the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Tampa Gynecomastia Center</a>, we\'re all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan to tackle it.</strong></p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two gyno conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s break down the distinctions between gynecomastia and pseudogynecomastia, two conditions that frequently confuse individuals with male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a>, first off, is all about an overgrowth of breast gland tissue, leading to visible breast enlargement. This usually happens because of an imblance of hormone levels, especially when there\'s more estrogen compared to testosterone. While it\'s not physically harmful, it can have impacts on one\'s well being, driving many folks to explore treatment options, including <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia, on the flip side, is more about extra fat in the chest area, giving off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gyno and pseudogyno share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can arise from a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Due to the distinct underlying causes of these conditions, treatment approaches likewise vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to managing gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, if conservative measures fail to yield satisfactory results, surgical intervention may be necessary. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contouring the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s address some common questions that arise when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths diverge.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, it\'s crucial to connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>. With their support, whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and confidence, greatly improving your quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-22 20:12:45','2024-03-22 20:12:45','',2657,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4042',0,'revision','',0),(4043,5,'2024-03-22 20:13:01','2024-03-22 20:13:01','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">Gynecomastia, characterized by enlarged male breast tissue, often leads to distress and self-consciousness among men. While commonly linked to hormonal imbalances or medical conditions, it can also affect adult males post-weight loss. Despite significant achievements in shedding pounds, lingering issues may persist, such as excess skin and tissue contributing to the appearance of enlarged breasts.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery offers a transformative solution for men after weight loss. By addressing excess tissue and restoring a more masculine chest contour, this surgical intervention enhances physical appearance and empowers individuals to reclaim confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by an imbalance between the hormones testosterone and estrogen, resulting in the growth of breast gland tissue in males. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Beyond Puberty</strong>: While hormonal fluctuations during puberty are often linked to the development of gynecomastia, its occurrence beyond adolescence highlights a wider range of contributing factors. The delicate balance between testosterone and estrogen hormones, essential for maintaining normal breast tissue development, can be disrupted by various factors throughout a man\'s life journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Navigating the Maze of Causes</strong>: Obesity, medications, hormonal imbalances, and underlying medical conditions all play a significant role in the development of gynecomastia. These factors contribute to the condition\'s complexity, making it challenging for both patients and healthcare providers to navigate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Loss Unveils Hidden Struggles</strong>: In the context of weight loss, gynecomastia\'s presence can become more pronounced as excess fat dissipates, laying bare the underlying surplus breast tissue and skin. This revelation can be particularly disheartening for men who have dedicated themselves to shedding pounds, only to be confronted with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Impacts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Living with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> goes beyond physical discomfort—it deeply affects a man\'s self-esteem and how he views himself. Enlarged breasts often trigger feelings of embarrassment and self-consciousness, making social and intimate situations daunting. This emotional burden can seep into various aspects of life, from relationships to work, and even overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For many, dealing with enlarged breasts leads to a rollercoaster of emotions, from feeling constantly insecure to avoiding interactions altogether. Constant scrutiny of appearance chips away at self-confidence, creating barriers to forming meaningful connections and hindering personal growth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Men who\'ve triumphed over weight loss may find gynecomastia to be an unexpected setback. Despite their hard work and physical transformation, enlarged breasts undermine their sense of achievement, overshadowing progress and leaving them grappling with renewed self-doubt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing the emotional impact of gynecomastia requires a holistic approach. By acknowledging its toll and fostering a supportive environment, individuals can begin to rebuild their confidence and embrace their journey towards self-acceptance and empowerment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also referred to as male breast reduction surgery, stands as a definitive solution for addressing lingering issues of excess breast tissue and skin following weight loss. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This transformative procedure involves the meticulous removal of glandular tissue and surplus skin through surgical excision. It is complemented by the precision of liposuction techniques to eliminate excess fat. The culmination of these techniques results in the creation of a flatter, more defined chest contour - a testament to masculinity and renewed self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you contemplate gynecomastia surgery, the Tampa Gynecomastia Center offers a comprehensive approach to care. Whether through <a href=\"https://atlantagynecomastia.com/contact/\">in-person or virtual consultations</a>, our skilled surgeons assess the extent of gynecomastia, carefully review the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and aspirations</a>, and collaboratively devise a surgical strategy tailored to achieve optimal results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery is a transformative procedure typically conducted under general anesthesia on an outpatient basis, enabling patients to return home the same day. The surgery encompasses a combination of techniques, including liposuction to eliminate excess fat and surgical excision to address glandular tissue and loose skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Performed through small incisions strategically placed around the areola or in the natural creases of the chest, the surgery allows the surgeon to access underlying tissues and reshape the chest contour to achieve a more masculine appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Post Surgery Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Recovery following gynecomastia surgery is a crucial phase in the journey towards achieving optimal results. Understanding the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">postoperative care protocol</a> and adhering to your surgeon\'s instructions are paramount for a smooth and successful recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After gynecomastia surgery, patients are typically advised to wear a compression garment to provide support to the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common occurrences, most individuals can resume light activities within a few days. Return to work is usually possible within a week or two, although the timeframe may vary based on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Following your surgeon\'s postoperative instructions diligently is essential for ensuring proper healing and minimizing complications. This may include avoiding strenuous exercise and refraining from lifting heavy objects for several weeks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Regular follow-up appointments will allow your surgeon to monitor your progress closely and address any concerns that may arise during the recovery process. This collaborative approach ensures that you receive optimal care and achieve the desired outcome from your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Long Term Results</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The effects of gynecomastia surgery are typically visible right away, with further enhancements becoming evident as swelling decreases and tissues settle over time. Patients can anticipate a flatter, firmer chest contour that harmonizes better with their overall physique, ultimately enhancing both their appearance and confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, it\'s essential for individuals to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercise, and avoiding factors that may contribute to gynecomastia recurrence, such as certain medications or steroid use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery following weight loss presents a transformative option for men burdened by enlarged breasts. By eliminating excess tissue and crafting a more masculine chest, this procedure empowers individuals to reclaim confidence and embrace their authentic selves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those contemplating gynecomastia surgery, it\'s crucial to seek guidance from a board-certified plastic surgeon well-versed in male breast reduction techniques. At the Tampa Gynecomastia Center, we stand ready to provide expert assistance and support throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Post Weight Loss Gynecomastia Surgery','','inherit','closed','closed','','3473-revision-v1','','','2024-03-22 20:13:01','2024-03-22 20:13:01','',3473,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4043',0,'revision','',0),(4045,5,'2024-03-22 20:13:18','2024-03-22 20:13:18','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_86a1b1-31\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_86a1b1-31 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_86a1b1-31\">For many men, the term \"puffy nipples\" can bring up feelings of self-consciousness and discomfort. This specific <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a>, marked by the swelling and protrusion of the nipple-areolar complex, goes beyond just physical appearance - it can deeply affect confidence and well-being. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_94da24-24\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_94da24-24 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_94da24-24\">In this article, we\'ll explore the ins and outs of puffy nipples, discussing what causes them, how they\'re diagnosed, and what treatment options are available.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, often associated with gynecomastia, refer to the swelling and protrusion of the nipple-areolar complex in males. This condition, while not medically harmful, can significantly impact self-esteem and quality of life due to its effect on physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples typically arise from an imbalance in hormone levels, particularly an <a href=\"https://www.healthline.com/health/estrogen-in-men\" target=\"_blank\" rel=\"noreferrer noopener\">excess of estrogen</a> relative to testosterone. This hormonal imbalance can disrupt normal breast tissue development, resulting in the characteristic appearance of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While puffy nipples share similarities with gynecomastia, which involves the enlargement of male breast tissue, they represent a distinct presentation where the swelling is concentrated around the nipple area. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the relationship between puffy nipples and gynecomastia is essential for accurate diagnosis and effective management. Both conditions can have overlapping symptoms and require tailored treatment approaches to address underlying causes and alleviate associated concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipples Causes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, an aspect of <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">gynecomastia</a>, result from a complex interplay of hormonal, genetic, and environmental factors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, notably an excess of estrogen compared to testosterone, disrupt normal breast tissue development, leading to the characteristic swelling and protrusion of the nipple area. Genetic predisposition also plays a significant role, influencing hormone metabolism and receptor sensitivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle habits such as poor diet, sedentary lifestyles, and obesity exacerbate hormonal imbalances and promote excess chest adipose tissue. Excessive alcohol consumption and substance abuse further disrupt hormonal equilibrium, contributing to puffy nipple formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding these factors is crucial for accurate diagnosis and targeted treatment interventions aimed at addressing the root cause of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Surgical Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Liposuction, which is effective for cases primarily caused by excess fatty tissue behind the nipple, entails gently agitating fat cells before suctioning them out using a cannula.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: In cases where puffy nipples result from excess breast gland tissue behind the nipple/areola, surgical removal of the excess breast gland tissue, is recommended to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: Offering optimal post-surgery aesthetics, this comprehensive procedure removes both excess fat tissue and breast gland tissue.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the Tampa Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size. Seeking medical advice is essential for accurate diagnosis and personalized treatment plans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"children\":[\"consult our doctors\"]}},\" promptly for proper evaluation and guidance.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\\u0022\\u003econsult our doctors\\u003c/a\\u003e promptly for proper evaluation and guidance.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if it’s simply a case of having big nipples, it’s not really something that can be fixed outside of surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Typically, they don’t. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">consult our doctors</a> promptly for proper evaluation and guidance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">Your nipples may be chafing against your clothing if you\'re a runner or engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Regardless, seeking consultation with our gynecomastia specialists is advisable for a definitive diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While Puffy Nipple Syndrome can be psychologically upsetting, numerous treatments exist for those affected. Whether adjusting your diet or adopting a new exercise routine (ideally both), combating puffy nipples and enhancing your appearance is entirely feasible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, for persistent cases, surgical procedures for puffy nipples are always an option—and highly effective at achieving desired outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples Overview','','inherit','closed','closed','','2668-revision-v1','','','2024-03-22 20:13:18','2024-03-22 20:13:18','',2668,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4045',0,'revision','',0),(4048,5,'2024-03-22 20:21:46','2024-03-22 20:21:46','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Tampa Gynecomastia Center is located in Tampa, Florida, near two major airports.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Florida and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">gynecomastia surgery near St. Petersburg</a>, we\'re located just over the Howard Frankland Bridge in Hillsborough County. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">surgery near Lakeland</a> or Orange County, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across central Florida, as well as from further away, including southern Florida, Tallahassee, Jacksonville, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Tampa, Florida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine whether we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in Tampa. The length of time you\'ll need to stay depends on the type of gynecomastia procedure being performed and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your overall health may also have an impact on your surgery timeline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are two major airports just a short drive from the Tampa Gynecomastia Center if you fly into the greater Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.tampaairport.com/\">Tampa Airport</a></strong>: 7 miles (20 minutes by car or 40 minutes by public transport)<br><strong><a href=\"https://orlandoairports.net/\">Orlando Airport</a>:</strong> 92 miles (1 hour 40 minutes by car or 3 hours by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from any of these major airports is to take a quick Uber, Lyft, or local taxi. Busses are a more cost effective option but typically take longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Tampa Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tampa, Florida offers various accommodations to fit every budget. Below are some of the popular lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.hilton.com/en/hotels/tpanthf-hilton-tampa-downtown/\"><strong>Hilton Tampa Downtown</strong><br></a>211 N Tampa St<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/tpamd-le-meridien-tampa-the-courthouse/overview/\"><strong>Le Méridien Tampa, The Courthouse</strong><br></a>601 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hyatt Place Tampa Downtown<br></strong>325 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Embassy Suites by Hilton Tampa Downtown Convention Center<br></strong>513 S Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Westin Tampa Waterside</strong><br>725 S Harbour Island Blvd<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Tampa, Florida for you and/or your companions to enjoy during your time in FL. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Columbia Cafe at the Tampa Bay History Center:</strong> 801 Water St #1905, Tampa, FL 33602</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Mise en Place</strong>: 442 W Grand Central Ave, Tampa, FL 33606</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>The Pearl Tampa</strong>: 823 Water St C100, Tampa, FL 33602</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We are conveniently located right in downtown Tampa, near tons of exciting entertainment options. Our office is just across the bridge from Clearwater, which is another great option for beaches and entertainment. Here are some excellent local entertainment options in the Tampa area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Florida Aquarium</strong>: This aquarium is just a few miles away and features some incredible marine life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Curtis Hixon Waterfront Park</strong>: This beautiful park is right on the Hillsborough River and is a great way to spend an afternoon.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Clearwater Beach:</strong> Clearwater Beach is just over the bridge less than an hour away, and is consistently rated one of the best beaches in the United States.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Tampa Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-22 20:21:46','2024-03-22 20:21:46','',3490,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4048',0,'revision','',0),(4049,5,'2024-03-22 20:22:11','2024-03-22 20:22:11','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Tampa Gynecomastia Center is located near Brandon, about 20 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Brandon? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Brandon in Tampa, FL.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Brandon to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow FL-618 Toll/Selmon Expy to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Brandon','','inherit','closed','closed','','2854-revision-v1','','','2024-03-22 20:22:11','2024-03-22 20:22:11','',2854,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4049',0,'revision','',0),(4050,5,'2024-03-22 20:23:16','2024-03-22 20:23:16','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Tampa Gynecomastia Center is located near Clearwater, about 40 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Clearwater? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Clearwater in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Clearwater to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take&nbsp;Cleveland St&nbsp;to&nbsp;Court St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take&nbsp;State Rd 60 E&nbsp;to&nbsp;FL-616 E/W Spruce St&nbsp;in&nbsp;Tampa. Take exit&nbsp;1B&nbsp;from&nbsp;FL-60 E/State Rd 60 E</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on&nbsp;FL-616 E. Take&nbsp;W Columbus Dr&nbsp;to&nbsp;N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn&nbsp;right&nbsp;onto&nbsp;N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn&nbsp;left&nbsp;onto&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Clearwater','','inherit','closed','closed','','2844-revision-v1','','','2024-03-22 20:23:16','2024-03-22 20:23:16','',2844,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4050',0,'revision','',0),(4051,5,'2024-03-22 20:23:22','2024-03-22 20:23:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Tampa Gynecomastia Center is located near Brandon, about 20 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Brandon? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Brandon in Tampa, FL.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Brandon to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow FL-618 Toll/Selmon Expy to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Brandon','','inherit','closed','closed','','2854-revision-v1','','','2024-03-22 20:23:22','2024-03-22 20:23:22','',2854,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4051',0,'revision','',0),(4052,5,'2024-03-22 20:24:03','2024-03-22 20:24:03','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_7a4554-6d\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_ca4ba9-77\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_ca4ba9-77 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_1a8217-f2\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_1a8217-f2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_1a8217-f2\">The Tampa Gynecomastia Center is located near Fort Meyers, about 2.5 hours away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Fort Meyers? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just a couple hours from Fort Meyers in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews-tampa-florida/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Fort Meyers to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 N in Charlotte County from Cleveland Ave and US-41 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-75 N&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Fort Meyers','','inherit','closed','closed','','2872-revision-v1','','','2024-03-22 20:24:03','2024-03-22 20:24:03','',2872,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4052',0,'revision','',0),(4053,5,'2024-03-22 20:24:21','2024-03-22 20:24:21','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The Tampa Gynecomastia Center is located near Gainesville, just 2 hours away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Gainesville? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Gainesville in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Gainesville to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-75 S&nbsp;from&nbsp;S Main St&nbsp;and&nbsp;US-441 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on&nbsp;I-75 S&nbsp;to&nbsp;Tampa. Take exit&nbsp;45A&nbsp;from&nbsp;I-275 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on&nbsp;N Orange Ave. Drive to&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Gainesville','','inherit','closed','closed','','2881-revision-v1','','','2024-03-22 20:24:21','2024-03-22 20:24:21','',2881,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4053',0,'revision','',0),(4054,5,'2024-03-22 20:25:09','2024-03-22 20:25:09','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_6e0083-8c\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_e03b11-f9\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_e03b11-f9 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_6de37d-d7\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_6de37d-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_6de37d-d7\">The Tampa Gynecomastia Center is located near Lakeland, about 40 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Lakeland? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Lakeland in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Lakeland to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-4 W&nbsp;from&nbsp;Kathleen Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-4 W&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Lakeland','','inherit','closed','closed','','2862-revision-v1','','','2024-03-22 20:25:09','2024-03-22 20:25:09','',2862,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4054',0,'revision','',0),(4055,5,'2024-03-22 20:25:27','2024-03-22 20:25:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The Tampa Gynecomastia Center is located near Orlando, just over an hour away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Orlando? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Orlando in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Orlando to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-4 Express</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive from&nbsp;I-4 W&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Orlando','','inherit','closed','closed','','2868-revision-v1','','','2024-03-22 20:25:27','2024-03-22 20:25:27','',2868,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4055',0,'revision','',0),(4057,5,'2024-03-22 20:26:03','2024-03-22 20:26:03','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Tampa Gynecomastia Center is located near Riverview, just 15 minutes away from Riverview in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Riverview? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Riverview in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Riverview to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;FL-618 Toll/Selmon Expy&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Riverview','','inherit','closed','closed','','2787-revision-v1','','','2024-03-22 20:26:03','2024-03-22 20:26:03','',2787,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4057',0,'revision','',0),(4058,5,'2024-03-22 20:26:17','2024-03-22 20:26:17','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Tampa Gynecomastia Center is located near St. Petersburg, about 25 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near St. Petersburg? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from St. Petersburg in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From St. Petersburg to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-175 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-275 N&nbsp;to&nbsp;N Tampa St&nbsp;in&nbsp;Tampa. Take exit&nbsp;44&nbsp;from&nbsp;I-275 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from St. Petersburg','','inherit','closed','closed','','2858-revision-v1','','','2024-03-22 20:26:17','2024-03-22 20:26:17','',2858,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4058',0,'revision','',0),(4060,5,'2024-03-22 20:28:24','2024-03-22 20:28:24','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8d7bfa-b6\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_a9a99c-c9\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_a9a99c-c9\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_97f102-72\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_97f102-72 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_97f102-72\">If you\'re considering gynecomastia surgery, it\'s crucial to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d735e8-57\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d735e8-57 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d735e8-57\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_b08339-a6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_b08339-a6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_b08339-a6\">Read over the timeline below to get a better understanding of what our top <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Tampa gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate, regardless of whether you\'re undergoing grade 1 or 4 surgery. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before undergoing gynecomastia surgery, thorough preparation is essential. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, smoking cessation, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time in addition to other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will meticulously perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate post-operative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support the newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By the third to fourth week post-surgery, most patients experience a significant reduction in swelling and bruising, with the chest contour continuing to refine. Light exercise and physical activities may be gradually reintroduced, following your surgeon\'s guidance. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 1-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. It\'s essential to adhere to your surgeon\'s post-operative instructions, including proper scar care and sun protection, to optimize the long-term outcome of your surgery.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_20245c-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e8c001-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e8c001-33\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Managing Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_217828-aa\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_217828-aa wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_217828-aa\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_d9f72e-b2\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_d9f72e-b2 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_4c0574-b7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_4c0574-b7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics, especially on an empty stomach. Your surgeon may prescribe anti-nausea meds to help. Always prioritize your comfort and communicate any concerns with your medical team.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_f83497-ad\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_f83497-ad\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_0c6274-ff\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_0c6274-ff wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_0c6274-ff\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_255ae6-13\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_255ae6-13\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_545e52-1e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_545e52-1e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_545e52-1e\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening, lasting around 15 minutes. These gentle movements help promote proper blood circulation, aiding in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_878bdf-72\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_878bdf-72\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_c252cd-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_c252cd-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_e3be40-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_e3be40-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_561560-d7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_561560-d7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_18610d-8a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_18610d-8a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_8a91b0-a3\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_8a91b0-a3\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s essential to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_e6169f-cd\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_e6169f-cd\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, promptly contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_788f10-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_788f10-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_07cfa9-17\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_07cfa9-17\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_d1b87b-5c\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_c6e786-30\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_c6e786-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Other Things to Expect During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_954f98-28\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_954f98-28 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_954f98-28\">As you recover from surgery at the Tampa Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_bf8ca5-44\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_bf8ca5-44 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_51df90-99\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_51df90-99\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_72c6dc-9f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_72c6dc-9f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_258758-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_258758-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_258758-3e\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_e33fa6-4c\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_e33fa6-4c\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_1609d4-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_1609d4-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, it\'s crucial to resist the urge to scratch the affected area, as it can potentially disrupt the healing process and lead to complications such as reopening incisions. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_3a3a26-d0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_3c7563-42\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_3c7563-42\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to recovering from gynecomastia surgery, there are a lot questions out there. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. It\'s important to note that extensive exercise may require a bit longer before you can fully engage in it.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supporting proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery. This garment helps support the healing process and promotes the reduction of swelling over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation, aiding in a smoother recovery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure to promote proper healing. Additionally, refrain from scratching or picking at incisions and adhere to wearing the compression garment as directed by your surgeon to minimize complications and optimize results.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Things to Know','','inherit','closed','closed','','1666-revision-v1','','','2024-03-22 20:28:24','2024-03-22 20:28:24','',1666,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4060',0,'revision','',0),(4062,5,'2024-03-22 20:35:36','2024-03-22 20:35:36','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gyno Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-22 20:35:36','2024-03-22 20:35:36','',1563,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4062',0,'revision','',0),(4063,5,'2024-03-22 20:38:18','2024-03-22 20:38:18','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">When considering gynecomastia surgery in Tampa, <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions about the costs and insurance</a> coverage are common and understandable. These aspects can significantly impact your decision-making process. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s dive deeper into these topics to help you better understand how they relate to your situation and alleviate any concerns you may have. By exploring these factors together, we can ensure you feel confident and informed as you embark on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Tampa</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Tampa Gynecomastia Center is your premier destination for male breast reduction solutions in the Sunshine State. If you\'re considering gynecomastia surgery, understanding the associated costs is essential for your journey toward achieving your desired physique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Tampa can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Tampa Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Tampa Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> At the Tampa Gynecomastia Center, the qualifications, experience, and reputation of our surgeons factor into the cost of gynecomastia surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery, whether it\'s local anesthesia, intravenous sedation, or general anesthesia, can influence the overall cost. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Tampa Gynecomastia Center, we provide transparent pricing structures, ensuring you have a comprehensive understanding of all expenses involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When considering gynecomastia surgery costs in the Tampa area, it\'s essential to account for various components, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: Ensuring your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: Covering the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: Including medical tests and consultations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflecting the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000. A consultation with our doctors will give you a better sense of what the cost of surgery would look like.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, the presence of excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases, consequently leading to higher costs. In such cases, a more in-depth surgical approach is required, often involving the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Tampa Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Tampa Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Navigating insurance coverage for gynecomastia surgery can be challenging, as most insurance companies categorize it as a cosmetic procedure, which typically isn\'t covered. Despite the distressing nature of gynecomastia for the patient, insurance providers often maintain this stance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, such as when gynecomastia presents as an isolated breast mass requiring excision. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ takes into account various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at The Tampa Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Tampa Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Tampa Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-22 20:38:18','2024-03-22 20:38:18','',1668,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4063',0,'revision','',0),(4065,5,'2024-03-22 20:40:02','2024-03-22 20:40:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Tampa Gynecomastia Center is located near St. Petersburg, about 25 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near St. Petersburg? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from St. Petersburg in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From St. Petersburg to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on&nbsp;I-175 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-275 N&nbsp;to&nbsp;N Tampa St&nbsp;in&nbsp;Tampa. Take exit&nbsp;44&nbsp;from&nbsp;I-275 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from St. Petersburg','','inherit','closed','closed','','2858-revision-v1','','','2024-03-22 20:40:02','2024-03-22 20:40:02','',2858,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4065',0,'revision','',0),(4066,5,'2024-03-22 20:40:39','2024-03-22 20:40:39','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Tampa Gynecomastia Center is located near Brandon, about 20 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Brandon? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Brandon in Tampa, FL.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Brandon to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow FL-618 Toll/Selmon Expy to Tampa. Take exit 8 from FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Brandon','','inherit','closed','closed','','2854-revision-v1','','','2024-03-22 20:40:39','2024-03-22 20:40:39','',2854,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4066',0,'revision','',0),(4067,5,'2024-03-22 20:41:02','2024-03-22 20:41:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Tampa Gynecomastia Center is located near Clearwater, about 40 minutes away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Clearwater? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just minutes from Clearwater in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Clearwater to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take&nbsp;Cleveland St&nbsp;to&nbsp;Court St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take&nbsp;State Rd 60 E&nbsp;to&nbsp;FL-616 E/W Spruce St&nbsp;in&nbsp;Tampa. Take exit&nbsp;1B&nbsp;from&nbsp;FL-60 E/State Rd 60 E</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on&nbsp;FL-616 E. Take&nbsp;W Columbus Dr&nbsp;to&nbsp;N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn&nbsp;right&nbsp;onto&nbsp;N Tampa St</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn&nbsp;left&nbsp;onto&nbsp;E Cass St</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Clearwater','','inherit','closed','closed','','2844-revision-v1','','','2024-03-22 20:41:02','2024-03-22 20:41:02','',2844,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4067',0,'revision','',0),(4068,5,'2024-03-22 20:41:31','2024-03-22 20:41:31','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_7a4554-6d\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_ca4ba9-77\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_ca4ba9-77 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_1a8217-f2\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_1a8217-f2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_1a8217-f2\">The Tampa Gynecomastia Center is located near Fort Meyers, about 2.5 hours away in Tampa, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Fort Meyers? The <a href=\"https://atlantagynecomastia.com/\">Tampa Gynecomastia Center</a> is located just a couple hours from Fort Meyers in Tampa, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Tampa Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Fort Meyers to the Tampa Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 N in Charlotte County from Cleveland Ave and US-41 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-75 N&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Fort Meyers','','inherit','closed','closed','','2872-revision-v1','','','2024-03-22 20:41:31','2024-03-22 20:41:31','',2872,'https://tampagynecomastiacom.bigscoots-staging.com/?p=4068',0,'revision','',0),(4115,5,'2024-03-25 18:10:27','2024-03-25 18:10:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0ee6c0-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0ee6c0-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0ee6c0-3e\">Are you wondering whether or not you are a candidate for gynecomastia surgery? At the Tampa Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">Having enlarged breasts can be both physically uncomfortable and emotionally challenging. Our gynecomastia plastic surgeons understand this, and their primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of the condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we can better help make a decision that\'s right for you. At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, that is causing either psychological discomfort and/or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia still persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Tampa</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">that contribute to gynecomastia</a>. If you\'re an adult dealing with this issue, surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> Adolescent boys often encounter persistent gynecomastia during a crucial phase of physical and emotional growth. The enlargement of breast tissue can induce self-consciousness, which impacts both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions can be a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia becomes more prevalent as individuals age. This can be caused by hormonal shifts, medication usage, and age-related health issues at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> When bodybuilders incorporate supplements into their routines, they may inadvertently face gynecomastia. <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Anabolic steroid consumption</a> can disrupt the balance of testosterone and estrogen leading to enlarged breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can result in the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Tampa Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes—it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable and enhancing mobility.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and tissue excision help finely shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It empowers individuals to live without the restrictions imposed by enlarged breast tissue, enabling them to embrace a more comfortable lifestyle.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves liberated to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Tampa Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Embarking on the journey of gynecomastia surgery involves navigating a series of meticulous steps. Each step is designed to achieve optimal outcomes and ensure patient safety and satisfaction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon, where patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. During this time patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure itself involves utilizing a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> Before gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and to make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> Choosing the right spots for incisions in gynecomastia surgery is key to minimizing visible scars and precisely removing excess breast tissue and fat. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat with precision, using a mix of liposuction and surgical excision techniques. This targeted method helps shape the chest to look natural and masculine, personalized to fit each patient\'s unique anatomy and aesthetic desires.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> After surgery, the reshaping and sculpting of the chest mark the result of meticulous efforts, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgical journey nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, promoting optimal wound recovery and ensuring positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal occurrences. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, empowering each individual to discover their true self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Tampa, Clearwater, St. Petersburg, or other nearby areas, we invite you to schedule a <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-25 18:10:27','2024-03-25 18:10:27','',3418,'https://tampagynecomastia.com/?p=4115',0,'revision','',0),(4117,5,'2024-03-25 18:25:24','2024-03-25 18:25:24','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0ee6c0-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0ee6c0-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0ee6c0-3e\">Are you wondering whether or not you are a candidate for gynecomastia surgery? At the Tampa Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">Having enlarged breasts can be both physically uncomfortable and emotionally challenging. Our gynecomastia plastic surgeons understand this, and their primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of the condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we can better help make a decision that\'s right for you. At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, that is causing either psychological discomfort and/or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia still persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Tampa</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">that contribute to gynecomastia</a>. If you\'re an adult dealing with this issue, surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> Adolescent boys often encounter persistent gynecomastia during a crucial phase of physical and emotional growth. The enlargement of breast tissue can induce self-consciousness, which impacts both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions can be a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia becomes more prevalent as individuals age. This can be caused by hormonal shifts, medication usage, and age-related health issues at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> When bodybuilders incorporate supplements into their routines, they may inadvertently face gynecomastia. <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Anabolic steroid consumption</a> can disrupt the balance of testosterone and estrogen leading to enlarged breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can result in the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Tampa Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes - it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and gland excision help shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It helps individuals live a more comfortable lifestyle without the restrictions imposed by enlarged breast tissue.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves able to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Tampa Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery in Tampa</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are a number of steps to follow while starting gynecomastia surgery. Every stage aims to guarantee patient safety and satisfaction while producing the best results possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon. During this meeting, patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. At this point, patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be for themselves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure involves a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> Before gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and to make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> Choosing the right spots for incisions in gynecomastia surgery is key to minimizing visible scars and for precisely removing excess breast tissue and fat. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat, using a mix of liposuction and surgical excision techniques. With this technique, the chest is shaped to suit the individual anatomy and aesthetic preferences, resulting in a more natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> During surgery, the chest is reshaped and sculpted, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgery nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, promoting optimal wound recovery and ensuring positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal occurrences. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, empowering each individual to discover their true self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Tampa, Clearwater, St. Petersburg, or other nearby areas, we invite you to schedule a <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-25 18:25:24','2024-03-25 18:25:24','',3418,'https://tampagynecomastia.com/?p=4117',0,'revision','',0),(4119,5,'2024-03-25 18:28:36','2024-03-25 18:28:36','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0ee6c0-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0ee6c0-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0ee6c0-3e\">Are you wondering whether or not you are a candidate for gynecomastia surgery? At the Tampa Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">Having enlarged breasts can be both physically uncomfortable and emotionally challenging. Our gynecomastia plastic surgeons understand this, and their primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of the condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we can better help make a decision that\'s right for you. At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, that is causing either psychological discomfort and/or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia still persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Tampa</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">that contribute to gynecomastia</a>. If you\'re an adult dealing with this issue, surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> Adolescent boys often encounter persistent gynecomastia during a crucial phase of physical and emotional growth. The enlargement of breast tissue can induce self-consciousness, which impacts both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions can be a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia becomes more prevalent as individuals age. This can be caused by hormonal shifts, medication usage, and age-related health issues at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> When bodybuilders incorporate supplements into their routines, they may inadvertently face gynecomastia. <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Anabolic steroid consumption</a> can disrupt the balance of testosterone and estrogen leading to enlarged breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can result in the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Tampa Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes - it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and gland excision help shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It helps individuals live a more comfortable lifestyle without the restrictions imposed by enlarged breast tissue.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves able to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Tampa Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery in Tampa</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are a number of steps to follow while starting gynecomastia surgery. Every stage aims to guarantee patient safety and satisfaction while producing the best results possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon. During this meeting, patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. At this point, patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be for themselves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure involves a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> Before gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and to make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> Choosing the right spots for incisions in gynecomastia surgery is key to minimizing visible scars and for precisely removing excess breast tissue and fat. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat, using a mix of liposuction and surgical excision techniques. With this technique, the chest is shaped to suit the individual anatomy and aesthetic preferences, resulting in a more natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> During surgery, the chest is reshaped and sculpted, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgery nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, promoting optimal wound recovery and ensuring positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, to empower each individual during their gynecomastia journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Tampa, Clearwater, St. Petersburg, or other nearby areas, we invite you to schedule a <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-25 18:28:36','2024-03-25 18:28:36','',3418,'https://tampagynecomastia.com/?p=4119',0,'revision','',0),(4121,5,'2024-03-25 22:50:48','2024-03-25 22:50:48','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the concept of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to acknowledge that in numerous cases, the root cause of gynecomastia remain unknown. In such cases, hormonal imbalance may not serve as the primary reasoning.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. Typically, this condition resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue typically resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Abuse of substances such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety and anti-psychotic medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels, which is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting surplus testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, aging, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of adolescents will have some signs of gyno by the age of 14, largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This represents a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist, necessitating surgical intervention to address the issue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alcoholism represents another form of substance abuse, one that is notably more widespread than illegal drug abuse.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role in this context due to its high content of phytoestrogens, plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects akin to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels, a process that typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a></strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia is commonly seen in professional bodybuilders for a common reason: the use of anabolic steroids.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may lead the body to convert excess testosterone into estrogen. This can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a> in many cases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Elevated body fat contributes to higher incidences of gynecomastia through two primary mechanisms: increased fat accumulation in the chest area and elevated estrogen levels, which enhance the likelihood of breast gland tissue development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, heightened levels of fat also precipitate a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The majority of this conversion occurs within fat tissue, accounting for approximately 85% of the process. Consequently, the greater the amount of fat tissue present, the more pronounced the elevation in estrogen levels may become.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens, the male hormones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This deficiency can stem from various causes, including damage to the testes due to factors such as radiation exposure, mechanical injury, or pathological conditions. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium, resulting in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a concurrent rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. If such effects are possible, it\'s important to note that this isn\'t necessarily a reason to discontinue your medication. Rather, being informed allows you to take appropriate measures to manage any potential hormonal changes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Tampa Gynecomastia Specialist</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Tampa, Clearwater, St. Petersburg, or any surrounding area, feel free to schedule an appointment at the Tampa Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with a Tampa gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-25 22:50:48','2024-03-25 22:50:48','',1525,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4121',0,'revision','',0),(4123,5,'2024-03-25 22:56:22','2024-03-25 22:56:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the concept of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to acknowledge that in numerous cases, the root cause of gynecomastia remain unknown. In such cases, hormonal imbalance may not serve as the primary reasoning.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. This condition typically resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue usually resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Substance abuse such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels This is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting excess testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of adolescents will have some signs of gyno by the age of 14, largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This represents a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist, necessitating surgical intervention to address the issue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alcoholism represents another form of substance abuse, one that is notably more widespread than illegal drug abuse.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role in this context due to its high content of phytoestrogens, plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects akin to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels, a process that typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a></strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia is commonly seen in professional bodybuilders for a common reason: the use of anabolic steroids.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may lead the body to convert excess testosterone into estrogen. This can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a> in many cases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Elevated body fat contributes to higher incidences of gynecomastia through two primary mechanisms: increased fat accumulation in the chest area and elevated estrogen levels, which enhance the likelihood of breast gland tissue development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, heightened levels of fat also precipitate a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The majority of this conversion occurs within fat tissue, accounting for approximately 85% of the process. Consequently, the greater the amount of fat tissue present, the more pronounced the elevation in estrogen levels may become.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens, the male hormones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This deficiency can stem from various causes, including damage to the testes due to factors such as radiation exposure, mechanical injury, or pathological conditions. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium, resulting in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a concurrent rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. If such effects are possible, it\'s important to note that this isn\'t necessarily a reason to discontinue your medication. Rather, being informed allows you to take appropriate measures to manage any potential hormonal changes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Tampa Gynecomastia Specialist</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Tampa, Clearwater, St. Petersburg, or any surrounding area, feel free to schedule an appointment at the Tampa Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with a Tampa gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-25 22:56:22','2024-03-25 22:56:22','',1525,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4123',0,'revision','',0),(4125,5,'2024-03-25 23:06:35','2024-03-25 23:06:35','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the concept of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Tampa Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to acknowledge that in numerous cases, the root cause of gynecomastia remain unknown. In such cases, hormonal imbalance may not serve as the primary reasoning.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. This condition typically resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue usually resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Substance abuse such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels This is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting excess testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of teenagers will have some signs of gynecomastia by the age of 14. It is largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This is a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist. In these cases, surgical intervention to address the issue may be necessary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another substance abuse problem that is noticeably more common than illicit drug usage is alcoholism.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role due to its high content of phytoestrogens, plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects similar to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels. This process typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a></strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Professional bodybuilders frequently experience gynecomastia due to the use of anabolic drugs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may cause the body to convert excess testosterone into estrogen. In many cases this can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Two main factors explain why there are more cases of gynecomastia in people with higher body fat. First, there is an accumulation of fat in the chest area, and second, enhanced estrogen levels increase the chance of breast gland tissue formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On top of that, heightened levels of fat also precipitate a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This conversion takes place mostly in adipose tissue, which makes up around 85% of the process. Therefore, the more fat tissue there is, the more prominent the possible increase in estrogen levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens (the male hormones).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This insufficiency may result from a number of different things, such as radiation exposure, mechanical trauma, or medical disorders that harm the testes. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium. This can result in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. It\'s crucial to remember that even if these side effects do occur, you shouldn\'t automatically stop taking your prescription. Instead, being informed enables you to handle any possible hormonal shifts with the right actions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Tampa Gynecomastia Specialist</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Tampa, Clearwater, St. Petersburg, or any surrounding area, feel free to schedule an appointment at the Tampa Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with a Tampa gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-25 23:06:35','2024-03-25 23:06:35','',1525,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4125',0,'revision','',0),(4127,5,'2024-03-25 23:44:03','2024-03-25 23:44:03','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about the condition – from gynecomastia causes to available treatment options and much more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Tampa Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize that you have all the relevant information you need to better help you understand the condition and its treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia can be caused\"]}},\" by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia can be caused\\u003c/a\\u003e by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Yes, gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Yes, gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia can be caused</a> by hormonal imbalances, medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. Estrogen and testosterone imbalance, in particular, play a significant role in the development of gynecomastia, leading to the proliferation of breast tissue in males.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is essential for comprehensive management of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, such as discontinuing the use of medications or substances that contribute to breast tissue enlargement, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals, particularly if the condition is mild or due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, the duration and likelihood of spontaneous resolution vary depending on factors such as the underlying cause and individual physiology.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery, also known as male breast reduction surgery, involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure may utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, tailored to the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia despite conservative measures, good overall health, and realistic expectations regarding the outcomes of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects or considerations after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects or considerations after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953916692\",\"question\":[\"What is the importance of follow-up appointments after gynecomastia surgery?\"],\"answer\":[\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.\"],\"jsonQuestion\":\"What is the importance of follow-up appointments after gynecomastia surgery?\",\"jsonAnswer\":\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects or considerations after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953916692\"><strong class=\"schema-faq-question\">What is the importance of follow-up appointments after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is Financing Available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is Financing Available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is Financing Available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Tampa Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Tampa Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Tampa Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-25 23:44:03','2024-03-25 23:44:03','',2743,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4127',0,'revision','',0),(4129,5,'2024-03-25 23:51:08','2024-03-25 23:51:08','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about the condition – from gynecomastia causes to available treatment options and much more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Tampa Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize that you have all the relevant information you need to better help you understand the condition and its treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia is commonly caused\"]}},\" by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia is commonly caused\\u003c/a\\u003e by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects or considerations after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects or considerations after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953916692\",\"question\":[\"What is the importance of follow-up appointments after gynecomastia surgery?\"],\"answer\":[\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.\"],\"jsonQuestion\":\"What is the importance of follow-up appointments after gynecomastia surgery?\",\"jsonAnswer\":\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity, as well as wearing compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects or considerations after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953916692\"><strong class=\"schema-faq-question\">What is the importance of follow-up appointments after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications promptly, and provide guidance on scar care and activity restrictions. Regular follow-up ensures optimal results and allows for timely intervention if any issues arise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery, but strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling, support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is Financing Available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is Financing Available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is Financing Available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Tampa Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Tampa Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Tampa Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-25 23:51:08','2024-03-25 23:51:08','',2743,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4129',0,'revision','',0);
INSERT INTO `hyu_posts` VALUES (4131,5,'2024-03-25 23:54:47','2024-03-25 23:54:47','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about the condition – from gynecomastia causes to available treatment options and much more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Tampa Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize that you have all the relevant information you need to better help you understand the condition and its treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia is commonly caused\"]}},\" by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia is commonly caused\\u003c/a\\u003e by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953916692\",\"question\":[\"What is the importance of follow-up appointments after gynecomastia surgery?\"],\"answer\":[\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.\"],\"jsonQuestion\":\"What is the importance of follow-up appointments after gynecomastia surgery?\",\"jsonAnswer\":\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953916692\"><strong class=\"schema-faq-question\">What is the importance of follow-up appointments after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is Financing Available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is Financing Available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the extent of the condition, the specific surgical approach employed, facility charges, and anesthesia expenses. Typically, the overall expense may span from a few thousand dollars to upwards of tens of thousands.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. Nonetheless, coverage eligibility hinges on individual insurance policies, and obtaining pre-authorization may be necessary.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is Financing Available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs, allowing patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Tampa Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Tampa Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Tampa Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-25 23:54:47','2024-03-25 23:54:47','',2743,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4131',0,'revision','',0),(4133,5,'2024-03-25 23:59:50','2024-03-25 23:59:50','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about the condition – from gynecomastia causes to available treatment options and much more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Tampa Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize that you have all the relevant information you need to better help you understand the condition and its treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia is commonly caused\"]}},\" by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia is commonly caused\\u003c/a\\u003e by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953916692\",\"question\":[\"What is the importance of follow-up appointments after gynecomastia surgery?\"],\"answer\":[\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.\"],\"jsonQuestion\":\"What is the importance of follow-up appointments after gynecomastia surgery?\",\"jsonAnswer\":\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953916692\"><strong class=\"schema-faq-question\">What is the importance of follow-up appointments after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is financing available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is financing available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is financing available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Tampa Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Tampa Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Tampa Gynecomastia Center for gynecomastia treatment?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Tampa Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Tampa Gynecomastia Center, we prioritize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-25 23:59:50','2024-03-25 23:59:50','',2743,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4133',0,'revision','',0),(4135,5,'2024-03-26 00:01:05','2024-03-26 00:01:05','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about the condition – from gynecomastia causes to available treatment options and much more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Tampa Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize that you have all the relevant information you need to better help you understand the condition and its treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia is commonly caused\"]}},\" by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia is commonly caused\\u003c/a\\u003e by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953916692\",\"question\":[\"What is the importance of follow-up appointments after gynecomastia surgery?\"],\"answer\":[\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.\"],\"jsonQuestion\":\"What is the importance of follow-up appointments after gynecomastia surgery?\",\"jsonAnswer\":\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953916692\"><strong class=\"schema-faq-question\">What is the importance of follow-up appointments after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is financing available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is financing available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is financing available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Tampa Gynecomastia Center?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Tampa Gynecomastia Center?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Tampa Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Tampa Gynecomastia Center, we emphazie patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Tampa Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Tampa Gynecomastia Center, we emphazie patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Tampa Gynecomastia Center?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Tampa Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Tampa Gynecomastia Center, we emphazie patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-26 00:01:05','2024-03-26 00:01:05','',2743,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4135',0,'revision','',0),(4137,5,'2024-03-26 15:45:49','2024-03-26 15:45:49','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_e25f14-1d\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_bbe3f0-60\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_bbe3f0-60\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_4a2bd1-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_4a2bd1-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_4a2bd1-56\">Gynecomastia is a condition characterized by the enlargement of breast tissue in males, and it can vary significantly in severity from one individual to another. Understanding the grading system is important in assessing and addressing this condition effectively.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_d18c4b-01\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_d18c4b-01 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_d18c4b-01\">There are four grades along the spectrum, and the gynecomastia plastic surgeons at the New Jersey Gynecomastia Center can help you gain valuable insight into creating treatment plans to suit your unique needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The severity of gynecomastia is categorized into stages ranging from grade 1 (mild) to grade 4 (severe). Each one of the stages is distinguished by specific characteristics. Treatment options and associated <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a> also vary across the stages, with stage 4 requiring a different surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages or grades of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>From a medical standpoint, it\'s also crucial to understand that gynecomastia entails the overdevelopment of breast <span style=\"text-decoration: underline;\">gland</span> tissue. However, it\'s common for excess breast <span style=\"text-decoration: underline;\">fat</span> tissue to be present as well. When the enlargement of the breast is solely due to excess fatty tissue, this is called <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During a comprehensive <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>, both excess breast gland tissue and excess fat tissue can be addressed and removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3987,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1551_c85220-4d\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_c85220-4d size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-1024x586.jpg\" alt=\"Stages and Grades of Gynecomastia\" class=\"kb-img wp-image-3987\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Four Grades of Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 1 gynecomastia experience minimal breast growth, often accompanied by nipple pain or tenderness. Swelling around the nipple is slight, and there is occasionally some discoloration. The nipple may also appear puffy and sensitive to touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Typically, stage 1 gynecomastia is not apparent when the individual is clothed. However, it may become noticeable in situations where the person is undressed, such as at the beach or swimming pool, potentially leading to feelings of embarrassment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 2 gynecomastia is characterized by a more pronounced enlargement of breast tissue that extends across the chest. This moderate growth may be noticeable even when the individual is clothed and becomes particularly prominent in bare-chested situations, which can cause embarrassment or distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to enlarged breasts, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness can persist, further adding to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 3 represents a substantial progression in gynecomastia, marked by significant breast tissue development and chest widening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become notably pronounced, often visibly protruding through clothing. Moreover, excess skin becomes evident, resulting in a droopy appearance of the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given the heightened visibility and physical changes associated with grade 3 gynecomastia, individuals may experience a significant impact on self-esteem and quality of life, prompting them to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most advanced stage of the condition, where breast enlargement is substantial and resembles female breasts in appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts become highly prominent, often dominating the individual\'s physique, even when clothed. Excess skin becomes more noticeable, contributing to a fuller, drooping appearance of the breasts. Nipple size can also increase significantly, further emphasizing feminine characteristics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals dealing with grade 4 gynecomastia may experience profound emotional distress and encounter significant social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch With a Tampa Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand the whole spectrum of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From the initial assessment to customized treatment strategies, our team is committed to delivering compassionate care, and empowering individuals to regain their confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are located around Tampa, Clearwater, St. Petersburg, or anywhere else nearby, and are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our Tampa gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-26 15:45:49','2024-03-26 15:45:49','',1551,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4137',0,'revision','',0),(4139,5,'2024-03-26 16:03:20','2024-03-26 16:03:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8d7bfa-b6\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_a9a99c-c9\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_a9a99c-c9\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_97f102-72\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_97f102-72 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_97f102-72\">If you\'re considering gynecomastia surgery, it\'s important to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d735e8-57\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d735e8-57 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d735e8-57\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_b08339-a6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_b08339-a6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_b08339-a6\">Read over the timeline below to get a better understanding of what our top <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Tampa gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate, regardless of whether you\'re undergoing grade 1 or 4 surgery. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery also varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider. As you go through your pre-op appointments, you will get a better overall sense of what to expect for your surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A thorough preparation is essential before undergoing gynecomastia surgery. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, lifestyle changes, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time as well as some other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will carefully perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate post-operative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support the newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Most patients notice a noticeable decrease in bruising and swelling by the third or fourth week after surgery, as their chest contour continues to improve.  Following your surgeon\'s guidance, light exercise and physical activities may be gradually reintroduced. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 2-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. Soon enough, you will be able to fully appreciate your new and improved chest.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_20245c-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e8c001-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e8c001-33\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_217828-aa\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_217828-aa wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_217828-aa\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_d9f72e-b2\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_d9f72e-b2 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_4c0574-b7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_4c0574-b7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics. In these cases, your surgeon may prescribe anti-nausea meds to help.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_f83497-ad\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_f83497-ad\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_0c6274-ff\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_0c6274-ff wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_0c6274-ff\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_255ae6-13\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_255ae6-13\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_545e52-1e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_545e52-1e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_545e52-1e\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening, lasting around 15 minutes. These gentle movements help promote proper blood circulation, which aid in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_878bdf-72\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_878bdf-72\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_c252cd-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_c252cd-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_e3be40-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_e3be40-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_561560-d7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_561560-d7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_18610d-8a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_18610d-8a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_8a91b0-a3\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_8a91b0-a3\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s important to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_e6169f-cd\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_e6169f-cd\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_788f10-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_788f10-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_07cfa9-17\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_07cfa9-17\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_d1b87b-5c\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_c6e786-30\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_c6e786-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Additional Things to Know During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_954f98-28\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_954f98-28 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_954f98-28\">As you recover from surgery at the Tampa Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_bf8ca5-44\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_bf8ca5-44 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_51df90-99\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_51df90-99\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_72c6dc-9f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_72c6dc-9f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_258758-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_258758-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_258758-3e\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_e33fa6-4c\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_e33fa6-4c\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_1609d4-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_1609d4-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, you should resist the urge to scratch the affected area, as it can potentially disrupt the healing process. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_3a3a26-d0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_3c7563-42\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_3c7563-42\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to recovering from gynecomastia surgery, there are a lot questions out there. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Tampa Gynecomastia Pre &amp; Post Surgery Timeline','','inherit','closed','closed','','1666-revision-v1','','','2024-03-26 16:03:20','2024-03-26 16:03:20','',1666,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4139',0,'revision','',0),(4141,5,'2024-03-26 16:15:20','2024-03-26 16:15:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Tampa Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Discover the Categories of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to help - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many cases of gynecomastia, adult gynecomastia usually stems from an imbalance between the testosterone and estrogen hormones.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_a6a290-cb\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_7f0a60-59\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_7f0a60-59\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_3373e6-75\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_3373e6-75\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Bodybuilder Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c2b8c0-86\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c2b8c0-86\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_daa92f-20\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_daa92f-20\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Revision Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_956a28-79\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_51263e-9a\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_51263e-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ef8723-86\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ef8723-86\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue but instead is caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Psuedo Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c947fa-da\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c947fa-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_d85976-8f\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_d85976-8f\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still cause a great deal of distress for those who are affected.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Puffy Nipple</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_b149ec-63\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_cfadfd-5e\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_cfadfd-5e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ff7631-0e\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ff7631-0e\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">At any age, gynecomastia may develop. However, it becomes more common among seniors due to factors such as hormonal shifts, medications, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Senior Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_fda015-8c\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_fda015-8c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_5923d4-a2\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_5923d4-a2\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Gyno After Weight Loss</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Types of Gynecomastia','','inherit','closed','closed','','1482-revision-v1','','','2024-03-26 16:15:20','2024-03-26 16:15:20','',1482,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4141',0,'revision','',0),(4142,5,'2024-03-26 16:16:01','2024-03-26 16:16:01','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Tampa Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Learn About the Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to help - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many cases of gynecomastia, adult gynecomastia usually stems from an imbalance between the testosterone and estrogen hormones.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_a6a290-cb\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_7f0a60-59\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_7f0a60-59\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_3373e6-75\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_3373e6-75\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Bodybuilder Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c2b8c0-86\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c2b8c0-86\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_daa92f-20\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_daa92f-20\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Revision Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_956a28-79\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_51263e-9a\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_51263e-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ef8723-86\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ef8723-86\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue but instead is caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Psuedo Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c947fa-da\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c947fa-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_d85976-8f\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_d85976-8f\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still cause a great deal of distress for those who are affected.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Puffy Nipple</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_b149ec-63\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_cfadfd-5e\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_cfadfd-5e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ff7631-0e\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ff7631-0e\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">At any age, gynecomastia may develop. However, it becomes more common among seniors due to factors such as hormonal shifts, medications, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Senior Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_fda015-8c\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_fda015-8c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_5923d4-a2\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_5923d4-a2\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Gyno After Weight Loss</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Types of Gynecomastia','','inherit','closed','closed','','1482-revision-v1','','','2024-03-26 16:16:01','2024-03-26 16:16:01','',1482,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4142',0,'revision','',0),(4144,5,'2024-03-26 17:04:01','2024-03-26 17:04:01','<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is committed to ensuring accessibility of its website to people with disabilities and it will endeavor to follow the federal standards regarding technology accessibility for people with disabilities (Section 508) and the Web Content Accessibility Guidelines (WCAG) 2.0 developed by the World Wide Web Consortium (W3C). This policy applies to all web content produced or updated by the Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Accessibility Help </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure your experience on the website is accessible, please use the built-in widget (full ADA/WCAG 2.1 compliant) located on the bottom right-hand corner of our website. Note that the website may contain links to external websites that are not within Atlanta Gynecomastia Center\'s control and may not follow the same accessibility policies and standards as the Center\'s website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Viewing Files </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Please download the latest versions of Adobe Reader (for PDF format) or Microsoft Office (for Word or Excel format) to ensure optimal viewing of files available on the website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Your Accessibility Concerns </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Certain pages on the website require login information or acceptance of additional terms and conditions. If you have difficulty accessing content, viewing a file on the website, or notice any accessibility issues, <a href=\"https://atlantagynecomastia.com/contact/\">please contact the Atlanta Gynecomastia Center</a> for assistance. In your message, please include the nature of the accessibility issue, the URL of the page containing the issue, the accessibility technology you are using, and an email address so that we can respond to your concern. We strive to make all content on this website accessible to all users, including those with disabilities.</p>\n<!-- /wp:paragraph -->','Accessibility Policy','','inherit','closed','closed','','2056-revision-v1','','','2024-03-26 17:04:01','2024-03-26 17:04:01','',2056,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4144',0,'revision','',0),(4146,5,'2024-03-26 17:08:31','2024-03-26 17:08:31','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0ee6c0-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0ee6c0-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0ee6c0-3e\">Are you wondering whether or not you are a candidate for gynecomastia surgery? At the Atlanta Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">Having enlarged breasts can be both physically uncomfortable and emotionally challenging. Our gynecomastia plastic surgeons understand this, and their primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of the condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we can better help make a decision that\'s right for you. At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, that is causing either psychological discomfort and/or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia still persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Atlanta</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">that contribute to gynecomastia</a>. If you\'re an adult dealing with this issue, surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> Adolescent boys often encounter persistent gynecomastia during a crucial phase of physical and emotional growth. The enlargement of breast tissue can induce self-consciousness, which impacts both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions can be a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia becomes more prevalent as individuals age. This can be caused by hormonal shifts, medication usage, and age-related health issues at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> When bodybuilders incorporate supplements into their routines, they may inadvertently face gynecomastia. <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Anabolic steroid consumption</a> can disrupt the balance of testosterone and estrogen leading to enlarged breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can result in the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Atlanta Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes - it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and gland excision help shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It helps individuals live a more comfortable lifestyle without the restrictions imposed by enlarged breast tissue.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves able to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Atlanta Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery in Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are several steps to follow while starting gynecomastia surgery. Every stage aims to guarantee patient safety and satisfaction while producing the best results possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon. During this meeting, patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. At this point, patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be for themselves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure involves a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> Before gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and to make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> Choosing the right spots for incisions in gynecomastia surgery is key to minimizing visible scars and for precisely removing excess breast tissue and fat. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat, using a mix of liposuction and surgical excision techniques. With this technique, the chest is shaped to suit the individual anatomy and aesthetic preferences, resulting in a more natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> During surgery, the chest is reshaped and sculpted, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgery nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, promoting optimal wound recovery and ensuring positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, to empower each individual during their gynecomastia journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Atlanta or other nearby areas, we invite you to schedule a <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-26 17:08:31','2024-03-26 17:08:31','',3418,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4146',0,'revision','',0),(4147,5,'2024-03-26 17:08:31','2024-03-26 17:08:31','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>100 N Ashley Dr #50K<br>Tampa, Florida 33602<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-26 17:08:31','2024-03-26 17:08:31','',2069,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4147',0,'revision','',0),(4148,5,'2024-03-26 17:09:37','2024-03-26 17:09:37','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the concept of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to acknowledge that in numerous cases, the root cause of gynecomastia remain unknown. In such cases, hormonal imbalance may not serve as the primary reasoning.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. This condition typically resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue usually resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Substance abuse such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels This is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting excess testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of teenagers will have some signs of gynecomastia by the age of 14. It is largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This is a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist. In these cases, surgical intervention to address the issue may be necessary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another substance abuse problem that is noticeably more common than illicit drug usage is alcoholism.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role due to its high content of phytoestrogens, plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects similar to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels. This process typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a></strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Professional bodybuilders frequently experience gynecomastia due to the use of anabolic drugs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may cause the body to convert excess testosterone into estrogen. In many cases this can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Two main factors explain why there are more cases of gynecomastia in people with higher body fat. First, there is an accumulation of fat in the chest area, and second, enhanced estrogen levels increase the chance of breast gland tissue formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On top of that, heightened levels of fat also precipitate a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This conversion takes place mostly in adipose tissue, which makes up around 85% of the process. Therefore, the more fat tissue there is, the more prominent the possible increase in estrogen levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens (the male hormones).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This insufficiency may result from a number of different things, such as radiation exposure, mechanical trauma, or medical disorders that harm the testes. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium. This can result in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. It\'s crucial to remember that even if these side effects do occur, you shouldn\'t automatically stop taking your prescription. Instead, being informed enables you to handle any possible hormonal shifts with the right actions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Atlanta Gynecomastia Specialist</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Atlanta or any surrounding areas, feel free to schedule an appointment at the Atlanta Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with an Atlanta gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-26 17:09:37','2024-03-26 17:09:37','',1525,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4148',0,'revision','',0),(4149,5,'2024-03-26 17:10:36','2024-03-26 17:10:36','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about the condition – from gynecomastia causes to available treatment options and much more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Atlanta Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize that you have all the relevant information you need to better help you understand the condition and its treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to an accumulation of fat. Distinguishing between the two conditions is essential for determining appropriate treatment options.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes such as hormonal imbalances or tumors. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia is commonly caused\"]}},\" by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia is commonly caused\\u003c/a\\u003e by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors. Identifying and addressing the underlying medical cause is very important for the comprehensive management of gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development or exacerbation of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, or surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve spontaneously, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953916692\",\"question\":[\"What is the importance of follow-up appointments after gynecomastia surgery?\"],\"answer\":[\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.\"],\"jsonQuestion\":\"What is the importance of follow-up appointments after gynecomastia surgery?\",\"jsonAnswer\":\"Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953916692\"><strong class=\"schema-faq-question\">What is the importance of follow-up appointments after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Follow-up appointments after gynecomastia surgery allow the surgeon to monitor healing progress, address any concerns or complications, and provide guidance on scar care and activity restrictions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is financing available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is financing available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical discomfort or psychological anguish. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is financing available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Atlanta Gynecomastia Center?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Atlanta Gynecomastia Center?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Atlanta Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Atlanta Gynecomastia Center, we emphazie patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Atlanta Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Atlanta Gynecomastia Center, we emphazie patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Atlanta Gynecomastia Center?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures, ensuring that you receive care from highly qualified and experienced professionals. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Atlanta Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Atlanta Gynecomastia Center, we emphazie patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-26 17:10:36','2024-03-26 17:10:36','',2743,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4149',0,'revision','',0),(4150,5,'2024-03-26 17:11:38','2024-03-26 17:11:38','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_e25f14-1d\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_bbe3f0-60\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_bbe3f0-60\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_4a2bd1-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_4a2bd1-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_4a2bd1-56\">Gynecomastia is a condition characterized by the enlargement of breast tissue in males, and it can vary significantly in severity from one individual to another. Understanding the grading system is important in assessing and addressing this condition effectively.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_d18c4b-01\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_d18c4b-01 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_d18c4b-01\">There are four grades along the spectrum, and the gynecomastia plastic surgeons at the Atlanta Gynecomastia Center can help you gain valuable insight into creating treatment plans to suit your unique needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The severity of gynecomastia is categorized into stages ranging from grade 1 (mild) to grade 4 (severe). Each one of the stages is distinguished by specific characteristics. Treatment options and associated <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a> also vary across the stages, with stage 4 requiring a different surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages or grades of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>From a medical standpoint, it\'s also crucial to understand that gynecomastia entails the overdevelopment of breast <span style=\"text-decoration: underline;\">gland</span> tissue. However, it\'s common for excess breast <span style=\"text-decoration: underline;\">fat</span> tissue to be present as well. When the enlargement of the breast is solely due to excess fatty tissue, this is called <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During a comprehensive <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>, both excess breast gland tissue and excess fat tissue can be addressed and removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3987,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1551_c85220-4d\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_c85220-4d size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-1024x586.jpg\" alt=\"Stages and Grades of Gynecomastia\" class=\"kb-img wp-image-3987\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Four Grades of Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 1 gynecomastia experience minimal breast growth, often accompanied by nipple pain or tenderness. Swelling around the nipple is slight, and there is occasionally some discoloration. The nipple may also appear puffy and sensitive to touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Typically, stage 1 gynecomastia is not apparent when the individual is clothed. However, it may become noticeable in situations where the person is undressed, such as at the beach or swimming pool, potentially leading to feelings of embarrassment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 2 gynecomastia is characterized by a more pronounced enlargement of breast tissue that extends across the chest. This moderate growth may be noticeable even when the individual is clothed and becomes particularly prominent in bare-chested situations, which can cause embarrassment or distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to enlarged breasts, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness can persist, further adding to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 3 represents a substantial progression in gynecomastia, marked by significant breast tissue development and chest widening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become notably pronounced, often visibly protruding through clothing. Moreover, excess skin becomes evident, resulting in a droopy appearance of the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given the heightened visibility and physical changes associated with grade 3 gynecomastia, individuals may experience a significant impact on self-esteem and quality of life, prompting them to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most advanced stage of the condition, where breast enlargement is substantial and resembles female breasts in appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts become highly prominent, often dominating the individual\'s physique, even when clothed. Excess skin becomes more noticeable, contributing to a fuller, drooping appearance of the breasts. Nipple size can also increase significantly, further emphasizing feminine characteristics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals dealing with grade 4 gynecomastia may experience profound emotional distress and encounter significant social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch With a Atlanta Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand the whole spectrum of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From the initial assessment to customized treatment strategies, our team is committed to delivering compassionate care, and empowering individuals to regain their confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are located around Atlanta, and are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our Atlanta gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-26 17:11:38','2024-03-26 17:11:38','',1551,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4150',0,'revision','',0),(4152,5,'2024-03-26 17:21:26','2024-03-26 17:21:26','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_7270da-37\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_d0f80a-c4\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_d0f80a-c4 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_47b6d8-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_47b6d8-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_47b6d8-85\">The Atlanta Gynecomastia Center is one of the best rated plastic surgery centers in Georgia and serves patients from all over the southeastern United States.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_255a4e-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_255a4e-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_255a4e-33\">100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also get started with some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>, and better understand <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">if you are a gyno candidate</a> to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_62d826-8b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_62d826-8b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_62d826-8b\">Reach out to hear what our patients have to say about the Atlanta Gynecomastia Center!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Center Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-26 17:21:26','2024-03-26 17:21:26','',2886,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4152',0,'revision','',0),(4154,5,'2024-03-26 17:23:14','2024-03-26 17:23:14','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery at the Atlanta Gynecomastia Center? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-26 17:23:14','2024-03-26 17:23:14','',1563,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4154',0,'revision','',0),(4156,5,'2024-03-26 17:28:54','2024-03-26 17:28:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Jonathan Smith MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Smith is one of the head plastic surgeons at the Atlanta Gynecomastia Center. With a significant educational background and over 30 years of experience, Dr. Smith is one of the highest regarded gynecomastia plastic surgeons in Georgia.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia_Surgeon_Tampa_Florida.jpg\",\"bgImgID\":3841,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"51% 23%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith embarked on his medical journey with an internship and general surgery training at a Hospital in Atlanta, Georgia. After he graduated, he pursued an additional two years of plastic surgery residency at a medical center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith\'s career has been marked by active engagement in education and scholarship, including delivering lectures, writing numerous articles and chapters for textbooks, and teaching residents and medical students about different facets of plastic surgery. He is board certified from the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Smith leads the Atlanta Gynecomastia Center, one of the premier gynecomastia surgery practices in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Science</strong>: <a href=\"https://www.uga.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Georgia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-26 17:28:54','2024-03-26 17:28:54','',1275,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4156',0,'revision','',0),(4158,5,'2024-03-26 17:44:05','2024-03-26 17:44:05','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">It is normal to have concerns and <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions regarding the expenses and insurance coverage of gynecomastia surgery</a> in Atlanta. These factors have the potential to greatly influence how you make decisions.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s take a closer look at these factors to alleviate any worries you might have and help you see how they apply to your specific situation. Together, we can examine these variables to make sure you start your gynecomastia journey feeling knowledgeable and confident.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is your premier destination for male breast reduction solutions in the Peach State. Knowing the costs involved with gynecomastia surgery is crucial if you\'re thinking about going down that path.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Atlanta can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Atlanta Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> The qualifications, experience, and reputation of our surgeons at the Atlanta Gynecomastia Center factor into the cost of surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery can influence the overall cost. This can come in forms of local anesthesia, intravenous sedation, or general anesthesia. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Tampa Gynecomastia Center, we provide transparent pricing structures, ensuring you have a comprehensive understanding of all expenses involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When considering gynecomastia surgery costs in the Tampa area, it\'s essential to account for various components, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: Ensuring your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: Covering the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: Including medical tests and consultations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflecting the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000. A consultation with our doctors will give you a better sense of what the cost of surgery would look like.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, the presence of excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases, consequently leading to higher costs. In such cases, a more in-depth surgical approach is required, often involving the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Tampa Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Tampa Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Navigating insurance coverage for gynecomastia surgery can be challenging, as most insurance companies categorize it as a cosmetic procedure, which typically isn\'t covered. Despite the distressing nature of gynecomastia for the patient, insurance providers often maintain this stance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, such as when gynecomastia presents as an isolated breast mass requiring excision. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ takes into account various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at The Tampa Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Tampa Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-26 17:44:05','2024-03-26 17:44:05','',1668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4158',0,'revision','',0),(4160,5,'2024-03-26 17:51:37','2024-03-26 17:51:37','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">It is normal to have concerns and <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions regarding the expenses and insurance coverage of gynecomastia surgery</a> in Atlanta. These factors have the potential to greatly influence how you make decisions.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s take a closer look at these factors to alleviate any worries you might have and help you see how they apply to your specific situation. Together, we can examine these variables to make sure you start your gynecomastia journey feeling knowledgeable and confident.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is your premier destination for male breast reduction solutions in the Peach State. Knowing the costs involved with gynecomastia surgery is crucial if you\'re thinking about going down that path.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Atlanta can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Atlanta Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> The qualifications, experience, and reputation of our surgeons at the Atlanta Gynecomastia Center factor into the cost of surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery can influence the overall cost. This can come in forms of local anesthesia, intravenous sedation, or general anesthesia. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we provide transparent pricing structures to ensure you have a comprehensive understanding of all expenses involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The following factors should be taken into account when estimating gynecomastia surgery prices in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: To ensure your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: To cover the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: This includes medical tests and consultations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflects the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000 taking everything into account. A consultation with our doctors will give you a better sense of what the cost of surgery would look like for your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000+</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases, which leads to higher costs. In such cases, a more in-depth surgical approach is required, often involving the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Atlanta Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Atlanta Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It can be difficult to navigate insurance coverage for gynecomastia surgery. This is because most insurance companies classify it as a cosmetic procedure, which means it is usually not covered. Even if gynecomastia is stressful for the patient, insurance companies frequently refuse to acknowledge this.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, so it is worth discussing with our office. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ takes into account various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at The Tampa Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Tampa Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-26 17:51:37','2024-03-26 17:51:37','',1668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4160',0,'revision','',0),(4161,5,'2024-03-26 17:53:41','2024-03-26 17:53:41','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">It is normal to have concerns and <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions regarding the expenses and insurance coverage of gynecomastia surgery</a> in Atlanta. These factors have the potential to greatly influence how you make decisions.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s take a closer look at these factors to alleviate any worries you might have and help you see how they apply to your specific situation. Together, we can examine these variables to make sure you start your gynecomastia journey feeling knowledgeable and confident.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is your premier destination for male breast reduction solutions in the Peach State. Knowing the costs involved with gynecomastia surgery is crucial if you\'re thinking about going down that path.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Atlanta can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Atlanta Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> The qualifications, experience, and reputation of our surgeons at the Atlanta Gynecomastia Center factor into the cost of surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery can influence the overall cost. This can come in forms of local anesthesia, intravenous sedation, or general anesthesia. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we provide transparent pricing structures to ensure you have a comprehensive understanding of all expenses involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The following factors should be taken into account when estimating gynecomastia surgery prices in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: To ensure your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: To cover the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: This includes medical tests and consultations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflects the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000 taking everything into account. A consultation with our doctors will give you a better sense of what the cost of surgery would look like for your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000+</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases, which leads to higher costs. In such cases, a more in-depth surgical approach is required, often involving the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Atlanta Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Atlanta Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It can be difficult to navigate insurance coverage for gynecomastia surgery. This is because most insurance companies classify it as a cosmetic procedure, which means it is usually not covered. Even if gynecomastia is stressful for the patient, insurance companies frequently refuse to acknowledge this.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, so it is worth discussing with our office. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ considers various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at The Tampa Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Tampa Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-26 17:53:41','2024-03-26 17:53:41','',1668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4161',0,'revision','',0),(4162,5,'2024-03-26 17:54:43','2024-03-26 17:54:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">It is normal to have concerns and <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions regarding the expenses and insurance coverage of gynecomastia surgery</a> in Atlanta. These factors have the potential to greatly influence how you make decisions.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s take a closer look at these factors to alleviate any worries you might have and help you see how they apply to your specific situation. Together, we can examine these variables to make sure you start your gynecomastia journey feeling knowledgeable and confident.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is your premier destination for male breast reduction solutions in the Peach State. Knowing the costs involved with gynecomastia surgery is crucial if you\'re thinking about going down that path.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Atlanta can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Atlanta Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> The qualifications, experience, and reputation of our surgeons at the Atlanta Gynecomastia Center factor into the cost of surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery can influence the overall cost. This can come in forms of local anesthesia, intravenous sedation, or general anesthesia. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we provide transparent pricing structures to ensure you have a comprehensive understanding of all expenses involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The following factors should be taken into account when estimating gynecomastia surgery prices in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: To ensure your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: To cover the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: This includes medical tests and consultations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflects the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000 taking everything into account. A consultation with our doctors will give you a better sense of what the cost of surgery would look like for your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000+</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases, which leads to higher costs. In such cases, a more in-depth surgical approach is required, often involving the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Atlanta Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Atlanta Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It can be difficult to navigate insurance coverage for gynecomastia surgery. This is because most insurance companies classify it as a cosmetic procedure, which means it is usually not covered. Even if gynecomastia is stressful for the patient, insurance companies frequently refuse to acknowledge this.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, so it is worth discussing with our office. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ considers various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at the Atlanta Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Atlanta Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-26 17:54:43','2024-03-26 17:54:43','',1668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4162',0,'revision','',0),(4167,5,'2024-03-26 18:21:05','2024-03-26 18:21:05','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a><strong>1230 Peachtree St NE #150</strong><br><strong>Atlanta, GA 30309</strong><br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-26 18:21:05','2024-03-26 18:21:05','',2069,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4167',0,'revision','',0),(4169,5,'2024-03-26 18:26:34','2024-03-26 18:26:34','<!-- wp:block {\"ref\":3071} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"3695_284f00-13\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"zIndex\":12,\"inheritMaxWidth\":true,\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_027e2e-ca\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3695_027e2e-ca\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"3695_738a43-fd\",\"zoom\":11,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"mapFilter\":\"grayscale\",\"mapFilterAmount\":100,\"kbVersion\":2} /-->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[25,25,25,25],\"uniqueID\":\"3695_7aa0e7-dc\",\"displayShadow\":true,\"rowGap\":[10,32,\"\"],\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[-50,\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"0\",\"\"],\"tabletBorderRadius\":[25,25,25,25],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3695_7aa0e7-dc\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"3695_baa505-52\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"verticalAlignment\":\"middle\",\"firstColumnWidth\":50,\"secondColumnWidth\":50,\"mobileBackground\":[{\"enable\":true,\"bgColor\":\"rgba(0,0,0,0)\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"center center\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"zIndex\":10,\"borderRadius\":[null,null,null,null],\"tabletBorderRadius\":[20,20,20,20],\"mobileBorderRadius\":[0,0,0,0],\"padding\":[\"xs\",\"\",\"xs\",\"\"],\"mobilePadding\":[\"xxs\",\"xxs\",\"xxs\",\"xxs\"],\"kbVersion\":2,\"className\":\"shadow\"} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_e9f8c2-be\",\"justifyContent\":[\"center\",\"\",\"flex-start\"],\"verticalAlignment\":\"top\",\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column3695_e9f8c2-be inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"3695_38e5a3-da\",\"linkProperty\":\"learnmore\",\"hAlign\":\"left\",\"containerBackground\":\"rgba(255, 255, 255, 0)\",\"containerHoverBackground\":\"rgba(255, 255, 255, 0)\",\"containerPadding\":[0,0,0,0],\"mediaAlign\":\"left\",\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_map\",\"size\":30,\"width\":2,\"title\":\"\",\"color\":\"palette1\",\"hoverColor\":\"palette1\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"mediaStyle\":[{\"background\":\"palette7\",\"hoverBackground\":\"palette7\",\"border\":\"#eeeeee\",\"hoverBorder\":\"#eeeeee\",\"borderRadius\":200,\"borderWidth\":[0,0,0,0],\"padding\":[18,18,18,18],\"margin\":[0,16,0,0]}],\"titleColor\":\"palette3\",\"titleFont\":[{\"level\":6,\"size\":[20,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[1.3,\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"700\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette4\",\"textFont\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"transparent\",\"border\":\"#555555\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"#ffffff\",\"backgroundHover\":\"#444444\",\"borderHover\":\"#444444\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"mediaVAlign\":\"top\",\"containerMargin\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"palette9\",\"\",\"\"],\"right\":[\"palette9\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",\"\"],\"left\":[\"palette9\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"#eeeeee\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box3695_38e5a3-da\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left kb-info-box-vertical-media-align-top\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_map\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h6 class=\"kt-blocks-info-box-title\">Address</h6><p class=\"kt-blocks-info-box-text\"><strong>1230 Peachtree St NE #150</strong><br/><strong>Atlanta, GA 30309</strong></p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_37ddc6-88\",\"justifyContent\":[\"center\",\"\",\"flex-start\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"\",\"0\"],\"mobileMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column3695_37ddc6-88 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"3695_3fcb49-c0\",\"linkProperty\":\"learnmore\",\"hAlign\":\"left\",\"containerBackground\":\"rgba(255, 255, 255, 0)\",\"containerHoverBackground\":\"rgba(255, 255, 255, 0)\",\"containerPadding\":[0,0,0,0],\"containerMobilePadding\":[\"\",\"\",\"\",\"0\"],\"mediaAlign\":\"left\",\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phoneCall\",\"size\":30,\"width\":2,\"title\":\"\",\"color\":\"palette1\",\"hoverColor\":\"palette1\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"mediaStyle\":[{\"background\":\"palette7\",\"hoverBackground\":\"palette7\",\"border\":\"#eeeeee\",\"hoverBorder\":\"#eeeeee\",\"borderRadius\":200,\"borderWidth\":[0,0,0,0],\"padding\":[18,18,18,18],\"margin\":[0,16,0,0]}],\"titleColor\":\"palette3\",\"titleFont\":[{\"level\":6,\"size\":[20,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[1.3,\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"700\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette4\",\"textFont\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"transparent\",\"border\":\"#555555\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"#ffffff\",\"backgroundHover\":\"#444444\",\"borderHover\":\"#444444\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"mediaVAlign\":\"top\",\"containerMargin\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"palette9\",\"\",\"\"],\"right\":[\"palette9\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",\"\"],\"left\":[\"palette9\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"#eeeeee\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box3695_3fcb49-c0\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left kb-info-box-vertical-media-align-top\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phoneCall\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h6 class=\"kt-blocks-info-box-title\">Phone</h6><p class=\"kt-blocks-info-box-text\">(203) 441-1113</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Free Consultation + Maps','','inherit','closed','closed','','3695-revision-v1','','','2024-03-26 18:26:34','2024-03-26 18:26:34','',3695,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4169',0,'revision','',0),(4170,5,'2024-03-26 18:27:49','2024-03-26 18:27:49','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_cf1f9b-99\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_1011bf-a3\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_1011bf-a3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_49abf1-ea\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_49abf1-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_49abf1-ea\">The Atlanta Gynecomastia Center is one of the best rated plastic surgery centers in Georgia and serves patients from all over the southeastern United States.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_8d4b36-f3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_8d4b36-f3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_8d4b36-f3\"><strong>1230 Peachtree St NE #150</strong><br><strong>Atlanta, GA 30309</strong><br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also get started with some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>, and better understand <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">if you are a gyno candidate</a> to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_6fafa0-8c\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_6fafa0-8c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_6fafa0-8c\">Reach out to hear what our patients have to say about the Atlanta Gynecomastia Center!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Center Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-26 18:27:49','2024-03-26 18:27:49','',2886,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4170',0,'revision','',0),(4171,5,'2024-03-26 18:28:08','2024-03-26 18:28:08','<!-- wp:paragraph -->\n<p>This privacy policy is designed to inform users about the handling of their \"Personally Identifiable Information\" (PII) online. PII is defined by US privacy and information security laws as data that can identify, reach, or pinpoint an individual either by itself or when combined with other accessible information. We encourage you to review this policy thoroughly to understand the ways in which we gather, employ, safeguard, and manage your PII on our website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What PII do we collect from users of our website?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When contacting us via our website, as appropriate, you may be asked to enter your name, email address, phone number or other details to help you with your experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When do we collect information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information from you when you fill out a form or enter information on our site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we use your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may use the information we collect from you when you request more information about a procedure, including to follow up with you after correspondence (email or phone inquiries).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How do we protect your information?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We do not use vulnerability scanning and/or scanning to PCI standards. We conduct malware scanning. We only provide information and we do not ask for credit card numbers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_152c51-8f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_152c51-8f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_152c51-8f\">Do we use \"cookies\"?</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Yes. Cookies are small files that a site or its service provider transfers to your computer’s hard drive through your Web browser (if you allow it) that enables the site’s or service provider’s systems to recognize your browser and capture and remember certain information. They are also used to help us understand your preferences based on previous or current site activity, which enables us to provide you with improved services. We also use cookies to help us compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We may also use trusted third-party services that track this information on our behalf.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off all cookies. You do this through your browser settings. Since every browser is different, look at your browser’s Help Menu to learn the correct way to modify your cookies. If you turn cookies off, some features will be disabled.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2396_caa05a-f8\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading2396_caa05a-f8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2396_caa05a-f8\">Third-party disclosure</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>We do not sell, trade, or otherwise transfer to outside parties your PII unless we provide users with advance notice. This does not include website hosting partners and other parties who assist us in operating our website, conducting our business, or serving our users, so long as those parties agree to keep this information confidential. We may also release information when its release is appropriate to comply with the law, enforce our site policies, or protect ours or others’ rights, property or safety.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Third-party links</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Occasionally, at our discretion, we may include or offer third-party products or services on our website. These third-party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Google</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Google’s advertising requirements can be summed up by Google’s Advertising Principles. They are put in place to provide a positive experience for users.&nbsp;<a href=\"https://support.google.com/adspolicy/answer/6008942?hl=en&amp;visit_id=638456876419726489-885632823&amp;rd=1\" target=\"_blank\" rel=\"noreferrer noopener\">Google Ads policies.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have not enabled Google AdSense on our site but we may do so in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">California Online Privacy Protection Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>CalOPPA is the first state law in the nation to require commercial websites and online services to post a privacy policy. The law’s reach stretches beyond California to require any person or company in the United States (and conceivably the world) that operates websites collecting Personally Identifiable Information from California consumers to post a conspicuous privacy policy on its website stating exactly which information is being collected and those individuals or companies with whom it is being shared. Please see: <a href=\"https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/#sthash.0FdRbT51.dpuf\" target=\"_blank\" rel=\"noreferrer noopener\">California Online Privacy Protection Act (CalOPPA)</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">According to CalOPPA, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Users may visit our site anonymously. Once this privacy policy is created, we will add a link to it on our website footer. Our Privacy Policy link includes the word ‘Privacy’ and can be easily be found on the page specified above. You will be notified of any Privacy Policy changes on our Privacy Policy Page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How does our site handle Do Not Track signals?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We honor Do Not Track (DNT) signals and do not track, plant cookies, or use advertising when a DNT browser mechanism is in place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Does our site allow third-party behavioral tracking?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">COPPA (Children\'s Online Privacy Protection Act)</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to the collection of personal information from children under the age of 13 years old, the Children’s Online Privacy Protection Act (COPPA) puts parents in control. The Federal Trade Commission, United States’ consumer protection agency, enforces the COPPA Rule, which spells out what operators of websites and online services must do to protect children’s privacy and safety online. We do not specifically market to children under the age of 13 years old.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Fair Information Practices</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Fair Information Practices Principles form the backbone of privacy law in the United States and the concepts they include have played a significant role in the development of data protection laws around the globe. Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply with the various privacy laws that protect personal information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will notify you via email within 7 business days. We also agree to the Individual Redress Principle which requires that individuals have the right to legally pursue enforceable rights against data collectors and processors who fail to adhere to the law. This principle requires not only that individuals have enforceable rights against data users, but also that individuals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">CAN-SPAM Act</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The CAN-SPAM Act is a law that sets the rules for commercial email, establishes requirements for commercial messages, gives recipients the right to have emails stopped from being sent to them, and spells out tough penalties for violations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">We collect your email address in order to:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Send information, and respond to inquiries and/or other requests or questions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">To be in compliance with CAN-SPAM, we agree to the following:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Not to use false or misleading subjects or email addresses.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Identify the message as an advertisement in some reasonable way.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Include the physical address of our business or site headquarters.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Monitor third-party email marketing services for compliance, if one is used.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Honor opt-out/unsubscribe requests quickly.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Allow users to unsubscribe by using the link at the bottom of each email.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">If at any time you would like to unsubscribe from receiving future emails</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Follow the instructions at the bottom of each email and we will promptly remove you from&nbsp;<strong>all</strong>&nbsp;correspondence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contacting Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If there are any questions regarding this privacy policy, you may contact us using the information below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>1230 Peachtree St NE #150</strong><br><strong>Atlanta, GA 30309</strong><br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','2396-revision-v1','','','2024-03-26 18:28:08','2024-03-26 18:28:08','',2396,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4171',0,'revision','',0),(4173,5,'2024-03-26 19:25:00','2024-03-26 19:25:00','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3808_b917f4-a1\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3808_ca9cbc-43\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3808_ca9cbc-43\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center covers the Atlanta area and beyond. Just some of the main cities of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Brandon</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Clearwater</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fort-meyers-florida/\">Fort Meyers</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Gainesville</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Lakeland</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Orlando</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Riverview</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">St. Petersburg</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>And <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And don\'t worry if you are situated further away from the Atlanta area. It is also possible to arrange a virtual consultation for gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Service Pages -> City Summary','','inherit','closed','closed','','3808-revision-v1','','','2024-03-26 19:25:00','2024-03-26 19:25:00','',3808,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4173',0,'revision','',0),(4174,5,'2024-03-26 19:25:00','2024-03-26 19:25:00','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">Boys experience a hormonal shift in their bodies when they approach puberty. This can occasionally result in gynecomastia, a condition where changes in testosterone and estrogen levels cause male breasts to grow. In some cases, surgery may be your best option if this doesn\'t resolve on its own.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Atlanta Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, involving both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may require intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we specialize in providing comprehensive care for adolescents dealing with gynecomastia. Our team of dedicated specialists has the expertise to address the unique concerns and challenges faced by these young individuals. With a focus on compassion and precision, we strive to offer tailored solutions to ensure optimal outcomes for our gynecomastia patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Teenage gynecomastia usually appears as a little lump under the nipple, occasionally with pain or soreness. There might also be noticeable swelling of the breast tissue. This condition is most prevalent between the ages of 10 and 13, during the early stages of puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem. They may resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer silently, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by affected individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While some instances may resolve naturally with time, there are cases of adolescent gynecomastia where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there\'s an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Atlanta Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">the candidacy of each individual</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Usually, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola. This results in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. To achieve the best possible healing results, it is advised to avoid physically demanding activities involving the upper body, such as sports and gym sessions, for about a month.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessaey. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessaey. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessaey. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Atlanta, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Atlanta Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery','','inherit','closed','closed','','1906-revision-v1','','','2024-03-26 19:25:00','2024-03-26 19:25:00','',1906,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4174',0,'revision','',0),(4176,5,'2024-03-26 19:32:16','2024-03-26 19:32:16','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">There are several reasons why people seek out gynecomastia revision surgery. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Atlanta Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically involves both excess breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. These fluctuations can impact how fat is distributed throughout the body, which can change how the chest looks. To maintain or restore the correct chest contour, revision surgery may be required to treat extra fat or loose skin brought on by weight fluctuations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can also be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic result.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Atlanta Gynecomastia Center, we\'re here to provide the support you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. For personalized insights on cost and recovery expectations, patients are encouraged to consult with their surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Tampa Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a sagging appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery','','inherit','closed','closed','','1901-revision-v1','','','2024-03-26 19:32:16','2024-03-26 19:32:16','',1901,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4176',0,'revision','',0),(4178,5,'2024-03-26 19:34:10','2024-03-26 19:34:10','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">There are several reasons why people seek out gynecomastia revision surgery. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Atlanta Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically involves both excess breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. These fluctuations can impact how fat is distributed throughout the body, which can change how the chest looks. To maintain or restore the correct chest contour, revision surgery may be required to treat extra fat or loose skin brought on by weight fluctuations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can also be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic result.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Atlanta Gynecomastia Center, we\'re here to provide the support you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a sagging appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery','','inherit','closed','closed','','1901-revision-v1','','','2024-03-26 19:34:10','2024-03-26 19:34:10','',1901,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4178',0,'revision','',0),(4180,5,'2024-03-26 19:58:34','2024-03-26 19:58:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a combination of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Atlanta Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3988,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-1024x586.jpg\" alt=\"What is Gynecomastia\" class=\"wp-image-3988\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving excess glandular tissue, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, and lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Atlanta gynecomastia specialists can help determine the underlying cause and disclose the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia is caused by several factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen levels. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia has a tremendous effect on psychological well-being in addition to its physical repercussions. Many who struggle with the condition report feeling more self-conscious, embarrassed, and having much lower self-esteem. As a result, individuals might decide to stay away from activities that require them to expose their chest, such sports or swimming.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Depending on the severity of the condition and its underlying cause, adult gynecomastia can appear with a range of symptoms. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, the asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are not uncommon due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Male breast reduction surgery</a> is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Tampa Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment, while refraining from strenuous physical activities for a few weeks ensures the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Temporary bruising, swelling, and discomfort are common post-surgery, managed effectively with prescribed pain medication and proper post-operative care. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by selecting the Tampa Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time, becoming less noticeable as the healing process progresses.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to recognize that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence, particularly if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives and expectations for the surgery. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure, ensuring that you feel fully informed and comfortable moving forward.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tampa Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia and are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adult Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1908-revision-v1','','','2024-03-26 19:58:34','2024-03-26 19:58:34','',1908,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4180',0,'revision','',0),(4182,5,'2024-03-26 20:04:01','2024-03-26 20:04:01','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a combination of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Atlanta Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3988,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-1024x586.jpg\" alt=\"What is Gynecomastia\" class=\"wp-image-3988\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving excess glandular tissue, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, and lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Atlanta gynecomastia specialists can help determine the underlying cause and disclose the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia is caused by several factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen levels. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia has a tremendous effect on psychological well-being in addition to its physical repercussions. Many who struggle with the condition report feeling more self-conscious, embarrassed, and having much lower self-esteem. As a result, individuals might decide to stay away from activities that require them to expose their chest, such sports or swimming.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Depending on the severity of the condition and its underlying cause, adult gynecomastia can appear with a range of symptoms. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, the asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are not uncommon due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Male breast reduction surgery</a> is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Atlanta Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment, and refrain from strenuous physical activities for a few weeks to ensure the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prescribed pain medication and proper post-operative care can effectively manage temporary bruising, swelling, and discomfort that are common post-surgery. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia. We are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adult Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1908-revision-v1','','','2024-03-26 20:04:01','2024-03-26 20:04:01','',1908,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4182',0,'revision','',0),(4183,5,'2024-03-26 20:08:39','2024-03-26 20:08:39','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Jonathan Smith MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Smith is one of the head plastic surgeons at the Atlanta Gynecomastia Center. With a significant educational background and over 30 years of experience, Dr. Smith is one of the highest regarded gynecomastia plastic surgeons in Georgia.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia_Surgeon_Tampa_Florida.jpg\",\"bgImgID\":3841,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"51% 23%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith embarked on his medical journey with an internship and general surgery training in Atlanta, Georgia. After he graduated, he pursued an additional two years of plastic surgery residency.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith\'s career has been marked by active engagement in education and scholarship, including delivering lectures, writing numerous articles and chapters for textbooks, and teaching residents and medical students about different facets of plastic surgery. He is board certified from the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Smith leads the Atlanta Gynecomastia Center, one of the premier gynecomastia surgery practices in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Science</strong>: <a href=\"https://www.uga.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Georgia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-26 20:08:39','2024-03-26 20:08:39','',1275,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4183',0,'revision','',0),(4185,5,'2024-03-26 20:23:34','2024-03-26 20:23:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder who is struggling with gynecomastia? At the Atlanta Gynecomastia Center, we offer tailored solutions designed specifically for individuals like you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_db0a35-4a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_db0a35-4a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_db0a35-4a\">Our team of specialists understands the distinctive needs and concerns that bodybuilders encounter with gynecomastia. We are dedicated to providing comprehensive support and care at every step of the way.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this overview, we dive into bodybuilder gynecomastia, examining its root causes, symptoms, available surgical interventions, post-operative recovery, and addressing <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">common questions surrounding gyno</a>. We\'re here to accompany you every step of the way on your journey towards resolution and renewed confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the Atlanta Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Bodybuilder Gynecomastia</strong> Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia can be a genuine concern among fitness enthusiasts. The development of enlarged breast tissue in male individuals often arises due to the use of <a href=\"https://www.dea.gov/factsheets/steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones. These substances are commonly utilized to enhance muscle growth and physical performance, albeit at the expense of disrupting the body\'s natural hormonal balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, there are risks associated with the consumption of other bodybuilding supplements. Some products marketed to enthusiasts may contain undisclosed steroid or hormone-like ingredients, further exacerbating the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When the hormonal balance is compromised, it results in the proliferation of glandular tissue beneath the areola. This results in the recognizable appearance of larger breasts in men. Understanding the impact of steroid-induced gynecomastia is crucial for those dedicated to their fitness journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The main reason bodybuilders experience gynecomastia often boils down to their use of anabolic steroids or prohormones. These substances are popular among those looking to bulk up and improve performance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But here\'s the thing: these synthetic hormones mimic testosterone, which can affect the natural balance between estrogen and testosterone in the body. This disruption can lead to the growth of breast tissue, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causing gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes, patients know they\'re taking these substances. Other times, they might be taking something they think is just a harmless supplement, not realizing it contains steroids or prohormones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Unfortunately, even if bodybuilders later quit using those substances, gynecomastia can still persist. Those in the fitness world must understand these risks and how to avoid them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying gynecomastia symptoms among bodybuilders is essential for timely intervention and management. One of the hallmark signs is the presence of firm breast tissue beneath the areola, often accompanied by tenderness or sensitivity. These symptoms parallel those seen in standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, it\'s not just physical discomfort that bodybuilders may face. Gynecomastia can take a toll on mental well-being too. Many individuals experience psychological distress and a dip in self-esteem due to the appearance of enlarged breasts, which can disrupt their confidence and hinder their performance both in and out of the gym.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In more severe instances, gynecomastia may cause asymmetry between the breasts, resulting in further discomfort and aesthetic concerns. Some individuals might even experience nipple discharge, indicating a more advanced stage of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognizing these symptoms early on is very important. It allows for prompt intervention, which can prevent the progression of gynecomastia and aid in restoring a more masculine chest contour. By staying vigilant and seeking professional guidance, bodybuilders can effectively address gynecomastia correctly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for bodybuilders typically employs a dual approach, combining liposuction with direct excision of glandular tissue to attain the desired outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The procedure begins with the removal of excess fatty tissue through liposuction, employing specialized techniques to contour the chest and refine its definition. Alongside this, direct excision of glandular tissue is carried out. This is done through a discreet incision strategically placed at the lower border of the areola, aiming for minimal scarring and a natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The surgery is usually performed under general anesthesia, and allows most patients to return home on the same day, which ensures a comfortable and efficient recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgery Gynecomastia Recovery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders should anticipate some swelling, bruising, and discomfort, which typically diminishes over the following weeks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To aid in the healing process and promote optimal contour refinement, patients are advised to wear a compression garment, providing support to the chest while minimizing swelling. It\'s crucial to refrain from engaging in strenuous upper body activities, including weightlifting, for approximately four to six weeks post-surgery. This precaution is essential to prevent complications and ensure proper tissue healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While each individual\'s recovery journey may vary, most patients can gradually resume non-strenuous activities within a few days. Under the guidance of our surgeon, they can gradually reintroduce their regular exercise routine, ensuring a safe and effective transition back to their fitness regimen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the Tampa Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance inquiries and financing options\"]}},\" to facilitate access to treatment.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance inquiries and financing options\\u003c/a\\u003e to facilitate access to treatment.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">In gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">To promote optimal healing and minimize the risk of complications, it is advisable to abstain from engaging in strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure the long-term preservation of their surgical outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on individual policies and the presence of associated symptoms such as pain or functional impairment. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance inquiries and financing options</a> to facilitate access to treatment.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident, leading to a more refined and natural appearance over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon to provide support and minimize swelling. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Reach Out Today</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our dedication lies in delivering customized care and individualized treatment strategies tailored to meet the unique needs and aspirations of bodybuilders contending with gynecomastia. Employing cutting-edge techniques and advanced technologies, our skilled team of specialists ensures safe, successful, and aesthetically pleasing outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the Tampa Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Bodybuilder Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1911-revision-v1','','','2024-03-26 20:23:34','2024-03-26 20:23:34','',1911,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4185',0,'revision','',0),(4187,5,'2024-03-26 20:28:25','2024-03-26 20:28:25','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder who is struggling with gynecomastia? At the Atlanta Gynecomastia Center, we offer tailored solutions designed specifically for individuals like you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_db0a35-4a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_db0a35-4a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_db0a35-4a\">Our team of specialists understands the distinctive needs and concerns that bodybuilders encounter with gynecomastia. We are dedicated to providing comprehensive support and care at every step of the way.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this overview, we dive into bodybuilder gynecomastia, examining its root causes, symptoms, available surgical interventions, post-operative recovery, and addressing <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">common questions surrounding gyno</a>. We\'re here to accompany you every step of the way on your journey towards resolution and renewed confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the Atlanta Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Bodybuilder Gynecomastia</strong> Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia can be a genuine concern among fitness enthusiasts. The development of enlarged breast tissue in male individuals often arises due to the use of <a href=\"https://www.dea.gov/factsheets/steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones. These substances are commonly utilized to enhance muscle growth and physical performance, albeit at the expense of disrupting the body\'s natural hormonal balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, there are risks associated with the consumption of other bodybuilding supplements. Some products marketed to enthusiasts may contain undisclosed steroid or hormone-like ingredients, further exacerbating the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When the hormonal balance is compromised, it results in the proliferation of glandular tissue beneath the areola. This results in the recognizable appearance of larger breasts in men. Understanding the impact of steroid-induced gynecomastia is crucial for those dedicated to their fitness journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The main reason bodybuilders experience gynecomastia often boils down to their use of anabolic steroids or prohormones. These substances are popular among those looking to bulk up and improve performance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But here\'s the thing: these synthetic hormones mimic testosterone, which can affect the natural balance between estrogen and testosterone in the body. This disruption can lead to the growth of breast tissue, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causing gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes, patients know they\'re taking these substances. Other times, they might be taking something they think is just a harmless supplement, not realizing it contains steroids or prohormones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Unfortunately, even if bodybuilders later quit using those substances, gynecomastia can still persist. Those in the fitness world must understand these risks and how to avoid them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying gynecomastia symptoms among bodybuilders is essential for timely intervention and management. One of the hallmark signs is the presence of firm breast tissue beneath the areola, often accompanied by tenderness or sensitivity. These symptoms parallel those seen in standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, it\'s not just physical discomfort that bodybuilders may face. Gynecomastia can take a toll on mental well-being too. Many individuals experience psychological distress and a dip in self-esteem due to the appearance of enlarged breasts, which can disrupt their confidence and hinder their performance both in and out of the gym.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In more severe instances, gynecomastia may cause asymmetry between the breasts, resulting in further discomfort and aesthetic concerns. Some individuals might even experience nipple discharge, indicating a more advanced stage of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognizing these symptoms early on is very important. It allows for prompt intervention, which can prevent the progression of gynecomastia and aid in restoring a more masculine chest contour. By staying vigilant and seeking professional guidance, bodybuilders can effectively address gynecomastia correctly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for bodybuilders typically employs a dual approach, combining liposuction with direct excision of glandular tissue to attain the desired outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The procedure begins with the removal of excess fatty tissue through liposuction, employing specialized techniques to contour the chest and refine its definition. Alongside this, direct excision of glandular tissue is carried out. This is done through a discreet incision strategically placed at the lower border of the areola, aiming for minimal scarring and a natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The surgery is usually performed under general anesthesia, and allows most patients to return home on the same day, which ensures a comfortable and efficient recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgery Gynecomastia Recovery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders should anticipate some swelling, bruising, and discomfort, which typically diminishes over the following weeks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Patients are advised to wear a compression garment to aid in the healing process and promote optimal results. This provides support to the chest while minimizing swelling. It\'s crucial to refrain from engaging in strenuous upper body activities, including weightlifting, for approximately four to six weeks post-surgery. This precaution is essential to prevent complications and ensure proper tissue healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While each individual\'s recovery may vary, most patients can gradually resume non-strenuous activities within a few days. Under the guidance of our surgeon, they can gradually reintroduce their regular exercise routine, ensuring a safe and effective transition back to their fitness regimen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the Atlanta Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance questions and financing options\"]}},\".\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance questions and financing options\\u003c/a\\u003e.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance questions and financing options</a>.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Reach Out Today</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Tampa Gynecomastia Center, our dedication lies in delivering customized care and individualized treatment strategies tailored to meet the unique needs and aspirations of bodybuilders contending with gynecomastia. Employing cutting-edge techniques and advanced technologies, our skilled team of specialists ensures safe, successful, and aesthetically pleasing outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the Tampa Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Bodybuilder Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1911-revision-v1','','','2024-03-26 20:28:25','2024-03-26 20:28:25','',1911,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4187',0,'revision','',0),(4189,5,'2024-03-26 20:29:53','2024-03-26 20:29:53','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder who is struggling with gynecomastia? At the Atlanta Gynecomastia Center, we offer tailored solutions designed specifically for individuals like you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_db0a35-4a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_db0a35-4a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_db0a35-4a\">Our team of specialists understands the distinctive needs and concerns that bodybuilders encounter with gynecomastia. We are dedicated to providing comprehensive support and care at every step of the way.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this overview, we dive into bodybuilder gynecomastia, examining its root causes, symptoms, available surgical interventions, post-operative recovery, and addressing <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">common questions surrounding gyno</a>. We\'re here to accompany you every step of the way on your journey towards resolution and renewed confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the Atlanta Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Bodybuilder Gynecomastia</strong> Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia can be a genuine concern among fitness enthusiasts. The development of enlarged breast tissue in male individuals often arises due to the use of <a href=\"https://www.dea.gov/factsheets/steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones. These substances are commonly utilized to enhance muscle growth and physical performance, albeit at the expense of disrupting the body\'s natural hormonal balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, there are risks associated with the consumption of other bodybuilding supplements. Some products marketed to enthusiasts may contain undisclosed steroid or hormone-like ingredients, further exacerbating the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When the hormonal balance is compromised, it results in the proliferation of glandular tissue beneath the areola. This results in the recognizable appearance of larger breasts in men. Understanding the impact of steroid-induced gynecomastia is crucial for those dedicated to their fitness journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The main reason bodybuilders experience gynecomastia often boils down to their use of anabolic steroids or prohormones. These substances are popular among those looking to bulk up and improve performance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But here\'s the thing: these synthetic hormones mimic testosterone, which can affect the natural balance between estrogen and testosterone in the body. This disruption can lead to the growth of breast tissue, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causing gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes, patients know they\'re taking these substances. Other times, they might be taking something they think is just a harmless supplement, not realizing it contains steroids or prohormones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Unfortunately, even if bodybuilders later quit using those substances, gynecomastia can still persist. Those in the fitness world must understand these risks and how to avoid them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying gynecomastia symptoms among bodybuilders is essential for timely intervention and management. One of the hallmark signs is the presence of firm breast tissue beneath the areola, often accompanied by tenderness or sensitivity. These symptoms parallel those seen in standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, it\'s not just physical discomfort that bodybuilders may face. Gynecomastia can take a toll on mental well-being too. Many individuals experience psychological distress and a dip in self-esteem due to the appearance of enlarged breasts, which can disrupt their confidence and hinder their performance both in and out of the gym.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In more severe instances, gynecomastia may cause asymmetry between the breasts, resulting in further discomfort and aesthetic concerns. Some individuals might even experience nipple discharge, indicating a more advanced stage of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognizing these symptoms early on is very important. It allows for prompt intervention, which can prevent the progression of gynecomastia and aid in restoring a more masculine chest contour. By staying vigilant and seeking professional guidance, bodybuilders can effectively address gynecomastia correctly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for bodybuilders typically employs a dual approach, combining liposuction with direct excision of glandular tissue to attain the desired outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The procedure begins with the removal of excess fatty tissue through liposuction, employing specialized techniques to contour the chest and refine its definition. Alongside this, direct excision of glandular tissue is carried out. This is done through a discreet incision strategically placed at the lower border of the areola, aiming for minimal scarring and a natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The surgery is usually performed under general anesthesia, and allows most patients to return home on the same day, which ensures a comfortable and efficient recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgery Gynecomastia Recovery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders should anticipate some swelling, bruising, and discomfort, which typically diminishes over the following weeks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Patients are advised to wear a compression garment to aid in the healing process and promote optimal results. This provides support to the chest while minimizing swelling. It\'s crucial to refrain from engaging in strenuous upper body activities, including weightlifting, for approximately four to six weeks post-surgery. This precaution is essential to prevent complications and ensure proper tissue healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While each individual\'s recovery may vary, most patients can gradually resume non-strenuous activities within a few days. Under the guidance of our surgeon, they can gradually reintroduce their regular exercise routine, ensuring a safe and effective transition back to their fitness regimen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the Atlanta Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance questions and financing options\"]}},\".\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance questions and financing options\\u003c/a\\u003e.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less conspicuous, resulting in a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance questions and financing options</a>.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Reach Out Today</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we deliver individualized treatment strategies tailored to meet the unique needs and aspirations of bodybuilders contending with gynecomastia. Employing cutting-edge techniques, our skilled team of specialists ensures safe, successful, and aesthetically pleasing outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Bodybuilder Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1911-revision-v1','','','2024-03-26 20:29:53','2024-03-26 20:29:53','',1911,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4189',0,'revision','',0),(4193,3,'2024-03-26 21:57:14','2024-03-26 21:57:14','','Atlanta_Gynecomastia_Center_Logo','','inherit','open','closed','','atlanta_gynecomastia_center_logo-2','','','2024-03-26 21:57:30','2024-03-26 21:57:30','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Logo-1.png',0,'attachment','image/png',0),(4199,3,'2024-03-26 22:10:02','2024-03-26 22:10:02','','Atlanta_Gynecomastia_Center_Logo_White','','inherit','open','closed','','atlanta_gynecomastia_center_logo_white','','','2024-03-26 22:10:02','2024-03-26 22:10:02','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Logo_White.png',0,'attachment','image/png',0),(4205,3,'2024-03-26 22:22:29','2024-03-26 22:22:29','','Atlanta_Gynecomastia_Center_Org_Logo','','inherit','open','closed','','atlanta_gynecomastia_center_org_logo','','','2024-03-26 22:22:42','2024-03-26 22:22:42','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Org_Logo.png',0,'attachment','image/png',0),(4206,3,'2024-03-26 22:25:04','2024-03-26 22:25:04','','Atlanta_Gynecomastia_Center_Site_Image','','inherit','open','closed','','atlanta_gynecomastia_center_site_image','','','2024-03-26 22:25:19','2024-03-26 22:25:19','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Site_Image.png',0,'attachment','image/png',0),(4224,3,'2024-03-26 23:03:09','2024-03-26 23:03:09','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the Tampa Gynecomastia Center to plan your free consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-26 23:03:09','2024-03-26 23:03:09','',3071,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4224',0,'revision','',0),(4229,3,'2024-03-27 00:40:58','2024-03-27 00:40:58','https://atlantagynecomastia.com/wp-content/uploads/2024/03/cropped-Atlanta_Gynecomastia_Center_Favicon.png','Atlanta_Gynecomastia_Center_Favicon','','inherit','open','closed','','cropped-atlanta_gynecomastia_center_favicon-png','','','2024-03-27 00:41:27','2024-03-27 00:41:27','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/cropped-Atlanta_Gynecomastia_Center_Favicon.png',0,'attachment','image/png',0),(4233,3,'2024-03-27 00:43:54','2024-03-27 00:43:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the Atlanta Gynecomastia Center to plan your free consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-27 00:43:54','2024-03-27 00:43:54','',3071,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4233',0,'revision','',0),(4237,3,'2024-03-27 00:54:58','2024-03-27 00:54:58','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Atlanta Gynecomastia Center is located near Decatur, about 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Decatur? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Decatur in Atlanta, GA.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Decatur to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Head east on E Court Square toward E Ponce de Leon Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Clairemont Ave, N Decatur Rd, E Rock Springs Rd NE and Piedmont Ave NE to The Prado NE in Atlanta</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on The Prado NE. Take Westminster Drive Northeast and Peachtree Cir NE to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Decatur','','inherit','closed','closed','','2854-revision-v1','','','2024-03-27 00:54:58','2024-03-27 00:54:58','',2854,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4237',0,'revision','',0),(4240,3,'2024-03-27 00:58:16','2024-03-27 00:58:16','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Atlanta Gynecomastia Center is located near Alpharetta, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Alpharetta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Alpharetta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Alpharetta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Haynes Bridge Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on GA-400 S to Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Alpharetta','','inherit','closed','closed','','2844-revision-v1','','','2024-03-27 00:58:16','2024-03-27 00:58:16','',2844,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4240',0,'revision','',0),(4243,3,'2024-03-27 01:00:08','2024-03-27 01:00:08','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_608038-ac\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_0c8121-68\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_0c8121-68 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_844f76-66\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_844f76-66 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_844f76-66\">The Atlanta Gynecomastia Center is located near Sandy Springs, about 2.5 hours away in Atlanta, Florida.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Sandy Springs? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just a couple hours from Sandy Springs in Atlanta, Florida.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100 N Ashley Dr #50K<br>Tampa, FL 33602<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Sandy Springs to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 N in Charlotte County from Cleveland Ave and US-41 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow&nbsp;I-75 N&nbsp;to&nbsp;Tampa. Take exit&nbsp;8&nbsp;from&nbsp;FL-618 Toll/Selmon Expy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to&nbsp;N Florida Ave</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Sandy Springs','','inherit','closed','closed','','2872-revision-v1','','','2024-03-27 01:00:08','2024-03-27 01:00:08','',2872,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4243',0,'revision','',0),(4245,3,'2024-03-27 01:02:10','2024-03-27 01:02:10','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_608038-ac\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_0c8121-68\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_0c8121-68 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_844f76-66\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_844f76-66 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_844f76-66\">The Atlanta Gynecomastia Center is located near Sandy Springs, just 15 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Sandy Springs? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Sandy Springs in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Sandy Springs to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Vernon Woods Dr NE and Mount Vernon Hwy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Sandy Springs','','inherit','closed','closed','','2872-revision-v1','','','2024-03-27 01:02:10','2024-03-27 01:02:10','',2872,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4245',0,'revision','',0),(4249,3,'2024-03-27 01:04:31','2024-03-27 01:04:31','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The Atlanta Gynecomastia Center is located near Marietta, just 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Marietta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Marietta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Marietta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 S from GA-120ALT/North Marietta Pkwy NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-75 S to Techwood Dr NW in Atlanta. Take exit 250 from I-75 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Marietta','','inherit','closed','closed','','2881-revision-v1','','','2024-03-27 01:04:31','2024-03-27 01:04:31','',2881,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4249',0,'revision','',0),(4251,3,'2024-03-27 01:06:54','2024-03-27 01:06:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_6e0083-8c\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_e03b11-f9\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_e03b11-f9 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_6de37d-d7\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_6de37d-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_6de37d-d7\">The Atlanta Gynecomastia Center is located near Roswell, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Roswell? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Roswell in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Roswell to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S in Sandy Springs from N Atlanta St and GA-9/Roswell Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Roswell','','inherit','closed','closed','','2862-revision-v1','','','2024-03-27 01:06:54','2024-03-27 01:06:54','',2862,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4251',0,'revision','',0),(4254,3,'2024-03-27 01:12:27','2024-03-27 01:12:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Riverview</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">St. Petersburg</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier Gynecomastia Surgeons in Georgia, with over 30 years of experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Atlanta (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-27 01:12:27','2024-03-27 01:12:27','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4254',0,'revision','',0),(4255,3,'2024-03-27 01:12:27','2024-03-27 01:12:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The Atlanta Gynecomastia Center is located in Fulton County, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Fulton County? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located right there in downtown Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Fulton County to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Depending on where in Fulton County you\'re located, head towards downtown Atlanta</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>From I-75 S, take I-85 S to M.L.K. Jr Dr SE. Take exit 248A from I-75 S/I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Fulton County','','inherit','closed','closed','','2868-revision-v1','','','2024-03-27 01:12:27','2024-03-27 01:12:27','',2868,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4255',0,'revision','',0),(4257,3,'2024-03-27 01:15:20','2024-03-27 01:15:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">St. Petersburg</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier Gynecomastia Surgeons in Georgia, with over 30 years of experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Atlanta (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-27 01:15:20','2024-03-27 01:15:20','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4257',0,'revision','',0),(4258,3,'2024-03-27 01:15:20','2024-03-27 01:15:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Atlanta Gynecomastia Center is located near Athens, about an hour and 15 minutes away from Athens in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Athens? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just over an hour from Athens in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Athens to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-10 Loop W/US-129 S/US-29 S/US-441 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-10 Loop W to GA-316 W/US-29 S/US-78 W in Oconee County. Take exit 1 from GA-10 Loop W/US-29 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow US-29 S and University Pkwy to GA-316 W in Lawrenceville</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take I-85 S to M.L.K. Jr Dr SE in Atlanta. Take exit 248A from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Athens','','inherit','closed','closed','','2787-revision-v1','','','2024-03-27 01:15:20','2024-03-27 01:15:20','',2787,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4258',0,'revision','',0),(4260,3,'2024-03-27 01:18:05','2024-03-27 01:18:05','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier Gynecomastia Surgeons in Georgia, with over 30 years of experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Atlanta (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-27 01:18:05','2024-03-27 01:18:05','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4260',0,'revision','',0),(4261,3,'2024-03-27 01:18:05','2024-03-27 01:18:05','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Atlanta Gynecomastia Center is located near  Columbus, about an hour and 40 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Columbus? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just under two hours from Columbus in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Columbus to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-185 N from Wynnton Rd and Macon Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-185 N and I-85 N to Fulton St SW in Atlanta. Take exit 246 from I-75 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to Capitol Ave SE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Traveling from Columbus','','inherit','closed','closed','','2858-revision-v1','','','2024-03-27 01:18:05','2024-03-27 01:18:05','',2858,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4261',0,'revision','',0),(4263,3,'2024-03-27 01:19:43','2024-03-27 01:19:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1484_6c4a42-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[40,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading1484_6c4a42-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1484_6c4a42-85\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center regularly treats patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/brandon-florida/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/riverview-florida/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/clearwater-florida/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/orlando-florida/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gainesville-florida/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, feel free to <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and better understand the <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">different types of gynecomastia</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-27 01:19:43','2024-03-27 01:19:43','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4263',0,'revision','',0),(4265,3,'2024-03-27 01:21:54','2024-03-27 01:21:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Atlanta Gynecomastia Center is located in Atlanta, Georgia, near two major airports.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Georgia and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/st-petersburg-florida/\">gynecomastia surgery near St. Petersburg</a>, we\'re located just over the Howard Frankland Bridge in Hillsborough County. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/lakeland-florida/\">surgery near Lakeland</a> or Orange County, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across central Georgia, as well as from further away, including southern Florida, Tallahassee, Jacksonville, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Atlanta, Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine whether we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in Atlanta. The length of time you\'ll need to stay depends on the type of gynecomastia procedure being performed and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your overall health may also have an impact on your surgery timeline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are two major airports just a short drive from the Atlanta Gynecomastia Center if you fly into the greater Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.tampaairport.com/\">Atlanta Airport</a></strong>: 7 miles (20 minutes by car or 40 minutes by public transport)<br><strong><a href=\"https://orlandoairports.net/\">Orlando Airport</a>:</strong> 92 miles (1 hour 40 minutes by car or 3 hours by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from any of these major airports is to take a quick Uber, Lyft, or local taxi. Busses are a more cost effective option but typically take longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Atlanta Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Atlanta, Georgia offers various accommodations to fit every budget. Below are some of the popular lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.hilton.com/en/hotels/tpanthf-hilton-tampa-downtown/\"><strong>Hilton Tampa Downtown</strong><br></a>211 N Tampa St<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/tpamd-le-meridien-tampa-the-courthouse/overview/\"><strong>Le Méridien Tampa, The Courthouse</strong><br></a>601 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hyatt Place Tampa Downtown<br></strong>325 N Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Embassy Suites by Hilton Tampa Downtown Convention Center<br></strong>513 S Florida Ave<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Westin Tampa Waterside</strong><br>725 S Harbour Island Blvd<br>Tampa, FL 33602</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Atlanta, Georgia for you and/or your companions to enjoy during your time in GA. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Columbia Cafe at the Tampa Bay History Center:</strong> 801 Water St #1905, Tampa, FL 33602</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Mise en Place</strong>: 442 W Grand Central Ave, Tampa, FL 33606</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>The Pearl Tampa</strong>: 823 Water St C100, Tampa, FL 33602</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We are conveniently located right in downtown Atlanta, near tons of exciting entertainment options. Our office is just across the bridge from Clearwater, which is another great option for beaches and entertainment. Here are some excellent local entertainment options in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Florida Aquarium</strong>: This aquarium is just a few miles away and features some incredible marine life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Curtis Hixon Waterfront Park</strong>: This beautiful park is right on the Hillsborough River and is a great way to spend an afternoon.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Clearwater Beach:</strong> Clearwater Beach is just over the bridge less than an hour away, and is consistently rated one of the best beaches in the United States.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-27 01:21:54','2024-03-27 01:21:54','',3490,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4265',0,'revision','',0),(4267,5,'2024-03-27 03:07:31','2024-03-27 03:07:31','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-27 03:07:31','2024-03-27 03:07:31','',2069,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4267',0,'revision','',0),(4268,5,'2024-03-27 03:07:31','2024-03-27 03:07:31','<!-- wp:block {\"ref\":3071} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"3695_284f00-13\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"zIndex\":12,\"inheritMaxWidth\":true,\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_027e2e-ca\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3695_027e2e-ca\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"3695_738a43-fd\",\"zoom\":11,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"mapFilter\":\"grayscale\",\"mapFilterAmount\":100,\"kbVersion\":2} /-->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[25,25,25,25],\"uniqueID\":\"3695_7aa0e7-dc\",\"displayShadow\":true,\"rowGap\":[10,32,\"\"],\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[-50,\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"0\",\"\"],\"tabletBorderRadius\":[25,25,25,25],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3695_7aa0e7-dc\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"3695_baa505-52\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"verticalAlignment\":\"middle\",\"firstColumnWidth\":50,\"secondColumnWidth\":50,\"mobileBackground\":[{\"enable\":true,\"bgColor\":\"rgba(0,0,0,0)\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"center center\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"zIndex\":10,\"borderRadius\":[null,null,null,null],\"tabletBorderRadius\":[20,20,20,20],\"mobileBorderRadius\":[0,0,0,0],\"padding\":[\"xs\",\"\",\"xs\",\"\"],\"mobilePadding\":[\"xxs\",\"xxs\",\"xxs\",\"xxs\"],\"kbVersion\":2,\"className\":\"shadow\"} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_e9f8c2-be\",\"justifyContent\":[\"center\",\"\",\"flex-start\"],\"verticalAlignment\":\"top\",\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column3695_e9f8c2-be inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"3695_38e5a3-da\",\"linkProperty\":\"learnmore\",\"hAlign\":\"left\",\"containerBackground\":\"rgba(255, 255, 255, 0)\",\"containerHoverBackground\":\"rgba(255, 255, 255, 0)\",\"containerPadding\":[0,0,0,0],\"mediaAlign\":\"left\",\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_map\",\"size\":30,\"width\":2,\"title\":\"\",\"color\":\"palette1\",\"hoverColor\":\"palette1\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"mediaStyle\":[{\"background\":\"palette7\",\"hoverBackground\":\"palette7\",\"border\":\"#eeeeee\",\"hoverBorder\":\"#eeeeee\",\"borderRadius\":200,\"borderWidth\":[0,0,0,0],\"padding\":[18,18,18,18],\"margin\":[0,16,0,0]}],\"titleColor\":\"palette3\",\"titleFont\":[{\"level\":6,\"size\":[20,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[1.3,\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"700\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette4\",\"textFont\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"transparent\",\"border\":\"#555555\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"#ffffff\",\"backgroundHover\":\"#444444\",\"borderHover\":\"#444444\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"mediaVAlign\":\"top\",\"containerMargin\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"palette9\",\"\",\"\"],\"right\":[\"palette9\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",\"\"],\"left\":[\"palette9\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"#eeeeee\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box3695_38e5a3-da\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left kb-info-box-vertical-media-align-top\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_map\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h6 class=\"kt-blocks-info-box-title\">Address</h6><p class=\"kt-blocks-info-box-text\">1230 Peachtree St NE #150<br/>Atlanta, GA 30309</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3695_37ddc6-88\",\"justifyContent\":[\"center\",\"\",\"flex-start\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"\",\"0\"],\"mobileMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column3695_37ddc6-88 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"3695_3fcb49-c0\",\"linkProperty\":\"learnmore\",\"hAlign\":\"left\",\"containerBackground\":\"rgba(255, 255, 255, 0)\",\"containerHoverBackground\":\"rgba(255, 255, 255, 0)\",\"containerPadding\":[0,0,0,0],\"containerMobilePadding\":[\"\",\"\",\"\",\"0\"],\"mediaAlign\":\"left\",\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phoneCall\",\"size\":30,\"width\":2,\"title\":\"\",\"color\":\"palette1\",\"hoverColor\":\"palette1\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\",\"tabletSize\":\"\",\"mobileSize\":\"\"}],\"mediaStyle\":[{\"background\":\"palette7\",\"hoverBackground\":\"palette7\",\"border\":\"#eeeeee\",\"hoverBorder\":\"#eeeeee\",\"borderRadius\":200,\"borderWidth\":[0,0,0,0],\"padding\":[18,18,18,18],\"margin\":[0,16,0,0]}],\"titleColor\":\"palette3\",\"titleFont\":[{\"level\":6,\"size\":[20,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[1.3,\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"700\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette4\",\"textFont\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[4,8,4,8],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"\",\"background\":\"transparent\",\"border\":\"#555555\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"#ffffff\",\"backgroundHover\":\"#444444\",\"borderHover\":\"#444444\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"mediaVAlign\":\"top\",\"containerMargin\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"palette9\",\"\",\"\"],\"right\":[\"palette9\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",\"\"],\"left\":[\"palette9\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"#eeeeee\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box3695_3fcb49-c0\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left kb-info-box-vertical-media-align-top\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phoneCall\" data-stroke=\"2\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h6 class=\"kt-blocks-info-box-title\">Phone</h6><p class=\"kt-blocks-info-box-text\">(203) 441-1113</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Free Consultation + Maps','','inherit','closed','closed','','3695-revision-v1','','','2024-03-27 03:07:31','2024-03-27 03:07:31','',3695,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4268',0,'revision','',0),(4270,3,'2024-03-27 12:20:10','2024-03-27 12:20:10','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Atlanta Gynecomastia Center is located in Atlanta, Georgia, near one of the largest airports in the country.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Georgia and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">gynecomastia surgery near Fulton County</a>, you\'ve come to the right place, as we\'re located right in downtown Atlanta. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">surgery near Sandy Springs</a> or Alpharetta, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across Georgia, as well as from further away, including Tennessee, South Carolina, Alabama, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Atlanta, Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine whether we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in Atlanta. The length of time you\'ll need to stay depends on the type of gynecomastia procedure being performed and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your overall health may also have an impact on your surgery timeline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There\'s a major airport just a short drive from the Atlanta Gynecomastia Center if you fly into the greater Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.atl.com/\">Hartsfield-Jackson Atlanta International Airport</a></strong>: 13 miles (20 minutes by car or 30 minutes by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from the airport is to take a quick Uber, Lyft, or local taxi. The MARTA train system is a more cost effective option but typically takes slightly longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Atlanta Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Atlanta, Georgia offers various accommodations to fit every budget. Below are some of the popular lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/atlms-atlanta-marriott-suites-midtown/overview/\">Atlanta Marriott Suites Midtown</a><a href=\"https://www.hilton.com/en/hotels/tpanthf-hilton-tampa-downtown/\"><br></a>35 14th St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.loewshotels.com/atlanta-hotel\">Loews Atlanta Hotel<br></a>1065 Peachtree St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Renaissance Atlanta Midtown Hotel</strong><br>866 W Peachtree St NW<br>Atlanta, GA 30308</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hilton Garden Inn Atlanta Midtown</strong><br>97 10th St NW<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Four Seasons Hotel Atlanta<br>75 14th St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Atlanta, Georgia for you and/or your companions to enjoy during your time in GA. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Flying Biscuit Cafe</strong>: 1001 Piedmont Ave NE, Atlanta, GA 30309</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>R. Thomas Deluxe Grill</strong>: 1812 Peachtree St NE, Atlanta, GA 30309</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Silver Skillet</strong>: 200 14th St NW, Atlanta, GA 30318</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We are conveniently located right in the Midtown area of Atlanta, near tons of exciting entertainment options. Our office is just a short drive from Mercedes-Benz Stadium and Centennial Olympic Park, two of the more famous entertainment areas in the city. Here are some excellent local entertainment options in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Piedmont Park</strong>: This gorgeous park is just a short walk from our office and features some amazing jogging paths, a farmers market, and plenty more. It\'s also home to the Atlanta Botanical Garden, an amazing 30-acres of lush plant life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Georgia Aquarium</strong>: This is one of the largest aquariums in the world just a few miles south of us, and is a great way to escape the Atlanta heat.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>SkyView Atlanta</strong>: This 20-store Ferris wheel is right in Centennial Olympic Park and is the best way to see views of downtown Atlanta.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-27 12:20:10','2024-03-27 12:20:10','',3490,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4270',0,'revision','',0),(4272,3,'2024-03-27 12:32:32','2024-03-27 12:32:32','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Atlanta Gynecomastia Center is located in Atlanta, Georgia, near one of the largest airports in the country.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Georgia and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">gynecomastia surgery near Fulton County</a>, you\'ve come to the right place, as we\'re located right in the Midtown area of Atlanta. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">surgery near Sandy Springs</a> or Alpharetta, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across Georgia, as well as from further away, including Tennessee, South Carolina, Alabama, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Atlanta, Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine whether we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in ATL. The length of your stay will depend on the type of gynecomastia procedure being performed and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your overall health may also have an impact on your surgery schedule.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There\'s a major airport just a short drive from the Atlanta Gynecomastia Center if you fly into the greater Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.atl.com/\">Hartsfield-Jackson Atlanta International Airport</a></strong> (ATL): 13 miles (20 minutes by car or 30 minutes by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from the airport is to take a quick Uber, Lyft, or local taxi. The MARTA train system is a more cost effective option but typically takes slightly longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you do choose to opt for public transportation, take the Gold or Red MARTA line heading north from the airport to the Arts Center MARTA Station. Our office is a 2 minute walk from that station, right next to The Woodruff Arts Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Atlanta Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Atlanta, Georgia offers various accommodations to fit every budget. Below are some of the popular lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/atlms-atlanta-marriott-suites-midtown/overview/\">Atlanta Marriott Suites Midtown</a><a href=\"https://www.hilton.com/en/hotels/tpanthf-hilton-tampa-downtown/\"><br></a>35 14th St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.loewshotels.com/atlanta-hotel\">Loews Atlanta Hotel<br></a>1065 Peachtree St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Renaissance Atlanta Midtown Hotel</strong><br>866 W Peachtree St NW<br>Atlanta, GA 30308</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hilton Garden Inn Atlanta Midtown</strong><br>97 10th St NW<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Four Seasons Hotel Atlanta<br>75 14th St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Atlanta, Georgia for you and/or your companions to enjoy during your time in GA. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Flying Biscuit Cafe</strong>: 1001 Piedmont Ave NE, Atlanta, GA 30309</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>R. Thomas Deluxe Grill</strong>: 1812 Peachtree St NE, Atlanta, GA 30309</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Silver Skillet</strong>: 200 14th St NW, Atlanta, GA 30318</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We are conveniently located right in the Midtown area of Atlanta, near tons of exciting entertainment options. Our office is just a short drive from Mercedes-Benz Stadium and Centennial Olympic Park, two of the more famous entertainment areas in the city. Here are some excellent local entertainment options in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Piedmont Park</strong>: This gorgeous park is just a short walk from our office and features some amazing jogging paths, a farmers market, and plenty more. It\'s also home to the Atlanta Botanical Garden, an amazing 30-acres of lush plant life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Georgia Aquarium</strong>: This is one of the largest aquariums in the world just a few miles south of us, and is a great way to escape the Atlanta heat.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>SkyView Atlanta</strong>: This 20-store Ferris wheel is right in Centennial Olympic Park and is the best way to see awesome views of downtown Atlanta.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-27 12:32:32','2024-03-27 12:32:32','',3490,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4272',0,'revision','',0),(4279,5,'2024-03-27 18:37:34','2024-03-27 18:37:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_77c2b8-8a\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_9184ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_9184ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_96d97f-d5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_96d97f-d5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_96d97f-d5\">Gynecomastia is a common condition where males have an excess amount of breast tissue. This can come in the form of excess gland tissue, excess fat tissue, or a combination of both. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_d7fd5a-ef\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_d7fd5a-ef wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_d7fd5a-ef\">Although gynecomastia is generally not harmful, it\'s important to understand its causes, symptoms, and available treatments. Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_ac90e4-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_ac90e4-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_ac90e4-18\">At the Atlanta Gynecomastia Center, we offer personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments customized to meet your needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_4da688-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_4da688-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_4da688-a3\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_f502d3-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8abbd4-3b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8abbd4-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, also known as \'gyno\' or man boobs, is the development of excess breast gland tissue in men. While several factors can contribute, hormonal imbalance frequently serves as the root cause. This typically involves an imbalance between estrogen and testosterone levels:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Imbalances can be caused by various factors such as puberty, aging, specific medications, health issues, substance misuse, or nutritional deficiencies. In some other cases, there is no known cause of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Despite not posing significant health risks, gynecomastia can induce discomfort and considerable embarrassment, leading to psychological distress for many individuals affected. Due to this, most men afflicted with it prioritize seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The Atlanta Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3988,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_bdb067-7a\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_bdb067-7a size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-1024x586.jpg\" alt=\"What is Gynecomastia\" class=\"kb-img wp-image-3988\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_256648-ce\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_ea3191-51\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_ea3191-51\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">What Causes Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common gynecomastia causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> by checking out the dedicated overview on the topic.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_514a59-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_97db91-40\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_97db91-40\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Gynecomastia is classified into four stages ranging from grade 1 (mild) to grade 4 (severe). Each stage has distinct characteristics that set it apart from the others. Treatment approaches also differ for each grade, with stage 4 necessitating a significantly distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this topic.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3987,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_447da6-9f\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_447da6-9f size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-1024x586.jpg\" alt=\"Stages and Grades of Gynecomastia\" class=\"kb-img wp-image-3987\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_714df7-27\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_58a29e-e8\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_58a29e-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Although true gynecomastia primarily results from excess breast gland tissue, it often involves additional fatty tissue as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong>When there is only extra fatty tissue but no extra gland tissue, this is referred to as <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The second condition, known as \'pseudo\' gynecomastia, differs from true gynecomastia as it primarily involves excess chest fat rather than breast gland tissue. While it may outwardly resemble gynecomastia and result in the appearance of \"man boobs,\" its root cause is fat deposition, which can sometimes be addressed through lifestyle modifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, pseudogynecomastia often persists despite lifestyle changes, and surgical intervention, primarily through liposuction, is frequently recommended for treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. A <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues if that is the case. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">During the surgery, both the extra breast gland tissue and excess fatty tissue are removed through a combination of excision and liposuction. If you\'re seeking clarity on what\'s causing your gynecomastia and discussing potential solutions, consider scheduling a visit to the Tampa Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_b21ad9-b7\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_b21ad9-b7 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"kb-img wp-image-3986\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia can be distressing, it\'s crucial to recognize that effective treatment options exist. At the Tampa Gynecomastia Center, our skilled doctors focus on delivering personalized care tailored to meet the unique needs of each individual (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Whether you\'re in need of medical advice, contemplating surgical options, or just seeking guidance, our team is dedicated to supporting you throughout your journey. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-27 18:37:34','2024-03-27 18:37:34','',1511,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4279',0,'revision','',0),(4281,5,'2024-03-27 18:43:26','2024-03-27 18:43:26','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_77c2b8-8a\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_9184ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_9184ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_96d97f-d5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_96d97f-d5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_96d97f-d5\">Gynecomastia is a common condition where males have an excess amount of breast tissue. This can come in the form of excess gland tissue, excess fat tissue, or a combination of both. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_d7fd5a-ef\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_d7fd5a-ef wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_d7fd5a-ef\">Although gynecomastia is generally not harmful, it\'s important to understand its causes, symptoms, and available treatments. Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_ac90e4-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_ac90e4-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_ac90e4-18\">At the Atlanta Gynecomastia Center, we offer personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments customized to meet your needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_4da688-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_4da688-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_4da688-a3\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_f502d3-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8abbd4-3b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8abbd4-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, also known as \'gyno\' or man boobs, is the development of excess breast gland tissue in men. While several factors can contribute, hormonal imbalance frequently serves as the root cause. This typically involves an imbalance between estrogen and testosterone levels:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Imbalances can be caused by various factors such as puberty, aging, specific medications, health issues, substance misuse, or nutritional deficiencies. In some other cases, there is no known cause of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Despite not posing significant health risks, gynecomastia can induce discomfort and considerable embarrassment, leading to psychological distress for many individuals affected. Due to this, most men afflicted with it prioritize seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The Atlanta Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3988,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_bdb067-7a\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_bdb067-7a size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-1024x586.jpg\" alt=\"What is Gynecomastia\" class=\"kb-img wp-image-3988\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_256648-ce\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_ea3191-51\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_ea3191-51\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">What Causes Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common gynecomastia causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> by checking out the dedicated overview on the topic.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_514a59-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_97db91-40\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_97db91-40\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Gynecomastia is classified into four stages ranging from grade 1 (mild) to grade 4 (severe). Each stage has distinct characteristics that set it apart from the others. Treatment approaches also differ for each grade, with stage 4 necessitating a significantly distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this topic.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3987,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_447da6-9f\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_447da6-9f size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-1024x586.jpg\" alt=\"Stages and Grades of Gynecomastia\" class=\"kb-img wp-image-3987\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_714df7-27\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_58a29e-e8\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_58a29e-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Although true gynecomastia is primarily made up of excess breast gland tissue, it often involves excess fatty tissue as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a> is the term used to describe the condition where there is simply additional fatty tissue without any excess gland tissue.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia differs from true gynecomastia as it primarily involves excess chest fat rather than breast gland tissue. While it may outwardly resemble gynecomastia and result in the appearance of \"man boobs,\" its root cause is fat deposition. In these cases, the condition can sometimes be addressed through lifestyle modifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, pseudogynecomastia often can persist despite lifestyle changes, and surgical intervention, primarily through liposuction, is frequently recommended for treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. If that is the case, a <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues. During the surgery, both the extra breast gland tissue and excess fatty tissue are removed through a combination of excision and liposuction. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">If you\'re seeking clarity on what\'s causing your gynecomastia and discussing potential solutions, consider scheduling a visit to the Atlanta Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_b21ad9-b7\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_b21ad9-b7 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"kb-img wp-image-3986\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia can be distressing, it\'s important to understand that effective treatment options exist. Our knowledgeable medical professionals at the Atlanta Gynecomastia Center are committed to providing individualized care that caters to each patient\'s specific needs (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>So, whether you\'re in need of medical advice, contemplating surgical options, or just seeking guidance, our team is dedicated to supporting you throughout your journey. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-27 18:43:26','2024-03-27 18:43:26','',1511,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4281',0,'revision','',0),(4283,5,'2024-03-27 18:47:09','2024-03-27 18:47:09','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_77c2b8-8a\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_9184ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_9184ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_96d97f-d5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_96d97f-d5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_96d97f-d5\">Gynecomastia is a common condition where males have an excess amount of breast tissue. This can come in the form of excess gland tissue, excess fat tissue, or a combination of both. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_d7fd5a-ef\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_d7fd5a-ef wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_d7fd5a-ef\">Although gynecomastia is generally not harmful, it\'s important to understand its causes, symptoms, and available treatments. Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_ac90e4-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_ac90e4-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_ac90e4-18\">At the Atlanta Gynecomastia Center, we offer personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments customized to meet your needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_4da688-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_4da688-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_4da688-a3\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_f502d3-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8abbd4-3b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8abbd4-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, also known as \'gyno\' or man boobs, is the development of excess breast gland tissue in men. While several factors can contribute to its development, hormonal imbalance frequently serves as the root cause. This typically involves an imbalance between estrogen and testosterone levels:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Imbalances can be caused by various factors such as puberty, aging, specific medications, health issues, substance misuse, or nutritional deficiencies. In some other cases though, there is no known cause of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Despite not posing significant health risks, gynecomastia can induce discomfort and considerable embarrassment, leading to psychological distress for many individuals affected. Due to this, most men affected by it prioritize treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The Atlanta Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3988,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_bdb067-7a\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_bdb067-7a size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-1024x586.jpg\" alt=\"What is Gynecomastia\" class=\"kb-img wp-image-3988\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_256648-ce\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_ea3191-51\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_ea3191-51\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">What Causes Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common gynecomastia causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> by checking out the dedicated overview on the topic.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_514a59-60\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_97db91-40\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_97db91-40\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Gynecomastia is classified into four stages ranging from grade 1 (mild) to grade 4 (severe). Each stage has distinct characteristics that set it apart from the others. Treatment approaches also differ for each grade, with stage 4 necessitating a significantly distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this grading system.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3987,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_447da6-9f\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_447da6-9f size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-1024x586.jpg\" alt=\"Stages and Grades of Gynecomastia\" class=\"kb-img wp-image-3987\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_714df7-27\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_58a29e-e8\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_58a29e-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Although true gynecomastia is primarily made up of excess breast gland tissue, it often involves excess fatty tissue as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a> is the term used to describe the condition where there is simply additional fatty tissue without any excess gland tissue.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it may outwardly resemble gynecomastia and result in the appearance of \"man boobs,\" its root cause is fat deposition. In these cases, the condition can sometimes be addressed through lifestyle modifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, pseudogynecomastia often can persist despite lifestyle changes. In these cases, surgical intervention, primarily through liposuction, is frequently recommended for treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. If that is the case, a <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues at once. During the surgery, both the extra breast gland tissue and excess fatty tissue are removed through a combination of excision and liposuction. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">If you\'re seeking clarity on what\'s causing your gynecomastia and discussing potential solutions, consider scheduling a visit to the Atlanta Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_b21ad9-b7\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_b21ad9-b7 size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"kb-img wp-image-3986\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia can be distressing, it\'s important to understand that effective treatment options exist. Our knowledgeable medical professionals at the Atlanta Gynecomastia Center are committed to providing individualized care that caters to each patient\'s specific needs (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So, whether you\'re in need of medical advice, contemplating surgical options, or just seeking guidance, our team is dedicated to supporting you throughout your journey. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-27 18:47:09','2024-03-27 18:47:09','',1511,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4283',0,'revision','',0),(4285,5,'2024-03-27 18:56:31','2024-03-27 18:56:31','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. These conditions might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><strong>Here at the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Atlanta Gynecomastia Center</a>, we\'re all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan of action.</strong></p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two gyno conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Gynecomastia &amp; Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s first break down the differences between gynecomastia and pseudogynecomastia, and how they cause male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> is the excess of breast gland tissue, which leads to visible breast enlargement. This usually happens because of an imbalance of hormone levels, especially when there\'s more estrogen compared to testosterone. While it\'s not physically harmful, it can have impacts on one\'s well-being. This ultimately results in many people exploring <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery options</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia is more about extra fat in the chest area, which gives off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight &amp; excess fat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gynecomastia and pseudogynecomastia share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can be caused by a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, which is often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The different underlying causes of these conditions also lead to distinct methods of treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to treating gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, surgery can be required if conservative methods are unable to produce desired outcomes. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contour the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s address some common questions that arise when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Absolutely, our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, in instances where conservative measures prove ineffective, surgical interventions such as liposuction present viable solutions for achieving desired outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths diverge.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, it\'s crucial to connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Tampa Gynecomastia Center</a>. With their support, whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and confidence, greatly improving your quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-27 18:56:31','2024-03-27 18:56:31','',2657,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4285',0,'revision','',0),(4287,5,'2024-03-27 19:00:19','2024-03-27 19:00:19','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. These conditions might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><strong>Here at the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Atlanta Gynecomastia Center</a>, we\'re all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan of action.</strong></p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two gyno conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Gynecomastia &amp; Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s first break down the differences between gynecomastia and pseudogynecomastia, and how they cause male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> is the excess of breast gland tissue, which leads to visible breast enlargement. This usually happens because of an imbalance of hormone levels, especially when there\'s more estrogen compared to testosterone. While it\'s not physically harmful, it can have impacts on one\'s well-being. This ultimately results in many people exploring <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery options</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia is more about extra fat in the chest area, which gives off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight &amp; excess fat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3986,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-1024x586.jpg\" alt=\"Gynecomastia vs. Pseudogynecomastia\" class=\"wp-image-3986\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gynecomastia and pseudogynecomastia share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can be caused by a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, which is often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The different underlying causes of these conditions also lead to distinct methods of treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to treating gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, surgery can be required if conservative methods are unable to produce desired outcomes. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contour the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s now address some common questions that come up when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths are different.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, you can connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>. Whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and greatly improve your quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-27 19:00:19','2024-03-27 19:00:19','',2657,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4287',0,'revision','',0),(4289,5,'2024-03-27 19:31:21','2024-03-27 19:31:21','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_86a1b1-31\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_86a1b1-31 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_86a1b1-31\">Puffy nipple is a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">variation of gynecomastia</a> that refers to the enlargement of the nipples and the surrounding areolae. It’s sometimes referred to as “Puffy Nipple Syndrome” or “Puffy Nipple-Areola Complex”. Although less prominent than typical gynecomastia, it can still cause significant distress for those affected.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_94da24-24\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_94da24-24 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_94da24-24\">In this overview, we\'ll explore the ins and outs of puffy nipples, discussing their causes, how they\'re diagnosed, and what treatment options are available.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, often associated with gynecomastia, refer to the swelling and protrusion of the nipple-areolar complex in males. This condition, while not medically harmful, can significantly impact self-esteem and quality of life due to its effect on physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples are typically caused by an imbalance in hormone levels, particularly an <a href=\"https://www.healthline.com/health/estrogen-in-men\" target=\"_blank\" rel=\"noreferrer noopener\">excess of estrogen</a> relative to testosterone. This hormonal imbalance can disrupt normal breast tissue development, resulting in the appearance of puffy nipples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While puffy nipples share similarities with <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">gynecomastia</a>, which involves the enlargement of male breast tissue, they represent a distinct presentation where the swelling is concentrated around the nipple area. For a proper diagnosis and efficient treatment, it is crucial to understand the connection between the two.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Puffy Nipples</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy Nipples can stem from various underlying hormonal, genetic, and environmental factors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, notably an excess of estrogen compared to testosterone, disrupt normal breast tissue development. This can lead to the swelling and protrusion of the nipple area. Genetic predisposition also plays a significant role, influencing hormone metabolism and receptor sensitivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle habits such as poor diet, sedentary lifestyles, and obesity exacerbate hormonal imbalances and promote excess chest adipose tissue. Excessive alcohol consumption and substance abuse further disrupt hormonal balance, and can contribute to puffy nipple formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to understand these factors to make an accurate diagnosis and implement focused treatment plans that target the underlying causes of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Surgical Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Liposuction entails gently agitating fat cells before suctioning them out using a cannula. This is effective for cases primarily caused by excess fatty tissue behind the nipple.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: In cases where puffy nipples result from excess breast gland tissue behind the nipple/areola, surgical removal of the excess breast gland tissue is recommended to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: Offering optimal post-surgery aesthetics, this comprehensive procedure removes both excess fat tissue and breast gland tissue.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the Atlanta Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"children\":[\"consult our doctors\"]}},\" for proper evaluation and guidance.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\\u0022\\u003econsult our doctors\\u003c/a\\u003e for proper evaluation and guidance.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for ama accurate diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for ama accurate diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">consult our doctors</a> for proper evaluation and guidance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for ama accurate diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While Puffy Nipple Syndrome can be psychologically upsetting, numerous treatments exist for those affected.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the cases where diet and exercise don\'t solve the issue, surgery is always an option for chronic cases of puffy nipples. By choosing a surgical approach, it is bound to better help you get the results you want.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples Surgery in Atlanta','','inherit','closed','closed','','2668-revision-v1','','','2024-03-27 19:31:21','2024-03-27 19:31:21','',2668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4289',0,'revision','',0),(4291,5,'2024-03-27 19:59:11','2024-03-27 19:59:11','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">Gynecomastia is characterized by enlarged male breast tissue, and it often leads to distress and self-consciousness among men. While it is commonly linked to hormonal imbalances or medical conditions, it can also affect adult males post-weight loss. In such cases, excess skin and tissue may remain, which can contribute to the appearance of enlarged breasts.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery offers a transformative solution for men after weight loss. By addressing excess tissue and restoring a more masculine chest contour, this surgical approach enhances physical appearance and empowers individuals to regain their confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by a hormonal imbalance between testosterone and estrogen, resulting in the growth of breast gland tissue in males. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the context of weight loss, gynecomastia can become more pronounced as the excess fat decreases, revealing the presence of excess breast tissue and skin. This can be particularly frustrating for men who have worked hard to shed pounds and improve their overall health, only to be left with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Impacts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Living with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> goes beyond physical discomfort as it can deeply affects a man\'s self-esteem. Enlarged breasts often trigger feelings of embarrassment and self-consciousness. This emotional burden can affect other aspects of life, including relationships, work, and overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Men who have undergone weight loss may find gynecomastia to be an unexpected setback. Despite their hard work and physical transformation, enlarged breasts undermine their sense of achievement, overshadowing progress and leaving them grappling with renewed self-doubt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also referred to as male breast reduction surgery, is a viable solution for addressing lingering issues of excess breast tissue and skin following weight loss. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This transformative procedure involves the careful removal of glandular tissue and surplus skin through surgical excision. It is complemented by the precision of liposuction techniques to eliminate excess fat. The combination of these techniques results in a flatter, more defined chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you think about gynecomastia surgery, the Atlanta Gynecomastia Center offers a comprehensive approach to care. Whether through <a href=\"https://atlantagynecomastia.com/contact/\">in-person or virtual consultations</a>, our skilled surgeons assess the extent of gynecomastia, carefully review the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and aspirations</a>, and collaboratively come up with a surgical plan that produces the best outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Post Surgery Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Understanding the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">postoperative care protocol</a> and adhering to your surgeon\'s instructions are paramount for a smooth and successful recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After gynecomastia surgery, patients are advised to wear a compression garment to provide support to the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common, most individuals can resume light activities within a few days. Return to work is usually possible within a week or two, although the timeframe may vary based on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To ensure proper healing and minimize complications, it is essential to follow your surgeon\'s postoperative instructions diligently. This may include avoiding strenuous exercise and refraining from lifting heavy objects for several weeks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Regular follow-up appointments will allow your surgeon to monitor your progress closely and address any concerns that may arise during the recovery process. This collaborative approach ensures that you receive optimal care and achieve the desired outcome from your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Long Term Results</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The effects of gynecomastia surgery are typically visible right away, with further enhancements becoming evident as swelling decreases and tissue settles over time. Patients can anticipate a flatter, firmer chest contour that looks better with their overall physique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, individuals need to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercising, and avoiding factors that contribute to gynecomastia recurrence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery after weight loss offers a transformative solution for men seeking to address the physical and emotional burdens of enlarged breasts. By removing excess tissue and sculpting a more masculine chest contour, this procedure can help individuals regain confidence in their appearance and embrace their newfound sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those contemplating gynecomastia surgery, it\'s crucial to seek guidance from a board-certified plastic surgeon that is an expert in male breast reduction techniques. At the Atlanta Gynecomastia Center, we stand ready to provide expert assistance and support throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Post Weight Loss Gynecomastia Surgery','','inherit','closed','closed','','3473-revision-v1','','','2024-03-27 19:59:11','2024-03-27 19:59:11','',3473,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4291',0,'revision','',0),(4293,5,'2024-03-27 20:05:27','2024-03-27 20:05:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\", is the enlargement of breast gland tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">doctors at the Atlanta Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur. This usually includes a decrease in testosterone levels and an increase in estrogen levels. The hormonal imbalance can disrupt the normal levels of testosterone and estrogen, leading to an excess of breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging can contribute to the development of gynecomastia in older men. These can include prostate enlargement, liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can also exacerbate hormonal imbalances. These can contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to undergoing gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, a prevalent and frequently troubling condition among seniors, can significantly impact quality of life. It\'s crucial to comprehend its root causes, available treatment modalities, and associated risks for effective management. By seeking guidance from our skilled healthcare providers and <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">determining suitability for gynecomastia treatment</a>, seniors can alleviate symptoms and restore confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[\"Can gynecomastia go away on its own? \"],\"answer\":[\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"],\"jsonQuestion\":\"Can gynecomastia go away on its own? \",\"jsonAnswer\":\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">As men age, the prevalence of gynecomastia, the enlargement of breast tissue, increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\">Can gynecomastia go away on its own? </strong> <p class=\"schema-faq-answer\">In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks, but these typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and asymmetry. It\'s imperative for seniors to have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with any surgical procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery provides seniors with a transformative solution, offering relief from the physical and emotional burdens of enlarged breasts. Through the removal of excess tissue and the sculpting of a more masculine chest contour, this procedure empowers individuals to reclaim confidence in their appearance and embrace a renewed sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For seniors contemplating gynecomastia surgery, it\'s vital to seek consultation with a board-certified plastic surgeon proficient in male breast reduction procedures. At the Tampa Gynecomastia Center, we are ready to assist you on your journey to enhanced well-being and self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','3481-revision-v1','','','2024-03-27 20:05:27','2024-03-27 20:05:27','',3481,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4293',0,'revision','',0),(4295,5,'2024-03-27 20:13:04','2024-03-27 20:13:04','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3808_b917f4-a1\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3808_ca9cbc-43\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3808_ca9cbc-43\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center covers the Atlanta area and beyond. Just some of the main cities of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out-of-town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And don\'t worry if you are situated further away from the Atlanta area. It is also possible to arrange a virtual consultation for gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Service Pages -> City Summary','','inherit','closed','closed','','3808-revision-v1','','','2024-03-27 20:13:04','2024-03-27 20:13:04','',3808,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4295',0,'revision','',0),(4296,5,'2024-03-27 20:13:04','2024-03-27 20:13:04','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\", is the enlargement of breast gland tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">doctors at the Atlanta Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur. This usually includes a decrease in testosterone levels and an increase in estrogen levels. The hormonal imbalance can disrupt the normal levels of testosterone and estrogen, leading to an excess of breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging can contribute to the development of gynecomastia in older men. These can include prostate enlargement, liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can also exacerbate hormonal imbalances. These can contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia is a prevalent condition among seniors, and it can significantly impact quality of life. It\'s crucial to comprehend its root causes, available treatments, and associated risks for effective management. By seeking guidance from our skilled healthcare providers and <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">determining suitability for gynecomastia treatment</a>, seniors can alleviate symptoms and restore confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"As men age, the prevalence of gynecomastia increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"As men age, the prevalence of gynecomastia increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[\"Can gynecomastia go away on its own? \"],\"answer\":[\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"],\"jsonQuestion\":\"Can gynecomastia go away on its own? \",\"jsonAnswer\":\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">As men age, the prevalence of gynecomastia increases significantly, impacting around one-third of older men. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\">Can gynecomastia go away on its own? </strong> <p class=\"schema-faq-answer\">In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery provides seniors with a transformative solution, offering relief from the physical and emotional burdens of enlarged breasts. Through the removal of excess tissue and the sculpting of a more masculine chest contour, this procedure lets patients reclaim confidence in their appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For seniors thinking about gynecomastia surgery, it\'s vital to seek consultation with a board-certified plastic surgeon proficient in male breast reduction procedures. At the Atlanta Gynecomastia Center, we are ready to assist you on your journey to enhanced well-being and self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','3481-revision-v1','','','2024-03-27 20:13:04','2024-03-27 20:13:04','',3481,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4296',0,'revision','',0),(4300,3,'2024-03-27 20:18:49','2024-03-27 20:18:49','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1484_6c4a42-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[40,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading1484_6c4a42-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1484_6c4a42-85\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center regularly treats patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, feel free to <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and better understand the <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">different types of gynecomastia</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-27 20:18:49','2024-03-27 20:18:49','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4300',0,'revision','',0),(4303,5,'2024-03-27 20:25:23','2024-03-27 20:25:23','','Gynecomastia vs. Pseudogynecomastia Atlanta','','inherit','open','closed','','gynecomastia-vs-pseudogynecomastia-atlanta','','','2024-03-27 20:26:21','2024-03-27 20:26:21','',1511,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta.png',0,'attachment','image/png',0),(4304,5,'2024-03-27 20:25:27','2024-03-27 20:25:27','','Stages and Grades of Gynecomastia Atlanta','','inherit','open','closed','','stages-and-grades-of-gynecomastia-atlanta','','','2024-03-27 20:26:07','2024-03-27 20:26:07','',1511,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png',0,'attachment','image/png',0),(4305,5,'2024-03-27 20:25:31','2024-03-27 20:25:31','','What is Gynecomastia Atlanta','','inherit','open','closed','','what-is-gynecomastia-atlanta','','','2024-03-27 20:25:53','2024-03-27 20:25:53','',1511,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta.png',0,'attachment','image/png',0),(4307,5,'2024-03-27 20:26:24','2024-03-27 20:26:24','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_3e4ba6-c1\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_4ce970-cb\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_4ce970-cb\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_32aca6-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_32aca6-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_32aca6-18\">Gynecomastia is a common condition where males have an excess amount of breast tissue. This can come in the form of excess gland tissue, excess fat tissue, or a combination of both. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_822af6-4f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_822af6-4f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_822af6-4f\">Although gynecomastia is generally not harmful, it\'s important to understand its causes, symptoms, and available treatments. Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_238746-50\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_238746-50 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_238746-50\">At the Atlanta Gynecomastia Center, we offer personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments customized to meet your needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_f79620-27\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_f79620-27 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_f79620-27\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_27b0c1-ac\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_699bed-53\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_699bed-53\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, also known as \'gyno\' or man boobs, is the development of excess breast gland tissue in men. While several factors can contribute to its development, hormonal imbalance frequently serves as the root cause. This typically involves an imbalance between estrogen and testosterone levels:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Imbalances can be caused by various factors such as puberty, aging, specific medications, health issues, substance misuse, or nutritional deficiencies. In some other cases though, there is no known cause of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Despite not posing significant health risks, gynecomastia can induce discomfort and considerable embarrassment, leading to psychological distress for many individuals affected. Due to this, most men affected by it prioritize treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The Atlanta Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4305,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_f1dcc6-ab\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_f1dcc6-ab size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta-1024x586.png\" alt=\"What is Gynecomastia Atlanta\" class=\"kb-img wp-image-4305\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_b18812-cc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8d5432-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8d5432-98\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">What Causes Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common gynecomastia causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> by checking out the dedicated overview on the topic.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_176ee2-e7\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_7e9be4-63\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_7e9be4-63\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Gynecomastia is classified into four stages ranging from grade 1 (mild) to grade 4 (severe). Each stage has distinct characteristics that set it apart from the others. Treatment approaches also differ for each grade, with stage 4 necessitating a significantly distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this grading system.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4304,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_2e3ad2-1e\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_2e3ad2-1e size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta-1024x586.png\" alt=\"Stages and Grades of Gynecomastia Atlanta\" class=\"kb-img wp-image-4304\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_88fda6-a2\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_27bb6f-57\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_27bb6f-57\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Although true gynecomastia is primarily made up of excess breast gland tissue, it often involves excess fatty tissue as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a> is the term used to describe the condition where there is simply additional fatty tissue without any excess gland tissue.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it may outwardly resemble gynecomastia and result in the appearance of \"man boobs,\" its root cause is fat deposition. In these cases, the condition can sometimes be addressed through lifestyle modifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, pseudogynecomastia often can persist despite lifestyle changes. In these cases, surgical intervention, primarily through liposuction, is frequently recommended for treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. If that is the case, a <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues at once. During the surgery, both the extra breast gland tissue and excess fatty tissue are removed through a combination of excision and liposuction. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">If you\'re seeking clarity on what\'s causing your gynecomastia and discussing potential solutions, consider scheduling a visit to the Atlanta Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_5f8d30-9b\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_5f8d30-9b size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"kb-img wp-image-4303\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia can be distressing, it\'s important to understand that effective treatment options exist. Our knowledgeable medical professionals at the Atlanta Gynecomastia Center are committed to providing individualized care that caters to each patient\'s specific needs (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So, whether you\'re in need of medical advice, contemplating surgical options, or just seeking guidance, our team is dedicated to supporting you throughout your journey. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-27 20:26:24','2024-03-27 20:26:24','',1511,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4307',0,'revision','',0),(4308,3,'2024-03-27 20:26:58','2024-03-27 20:26:58','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier Gynecomastia Surgeons in Georgia, with over 30 years of experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Atlanta (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-27 20:26:58','2024-03-27 20:26:58','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4308',0,'revision','',0),(4309,5,'2024-03-27 20:26:59','2024-03-27 20:26:59','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_e25f14-1d\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_bbe3f0-60\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_bbe3f0-60\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_4a2bd1-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_4a2bd1-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_4a2bd1-56\">Gynecomastia is a condition characterized by the enlargement of breast tissue in males, and it can vary significantly in severity from one individual to another. Understanding the grading system is important in assessing and addressing this condition effectively.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_d18c4b-01\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_d18c4b-01 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_d18c4b-01\">There are four grades along the spectrum, and the gynecomastia plastic surgeons at the Atlanta Gynecomastia Center can help you gain valuable insight into creating treatment plans to suit your unique needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The severity of gynecomastia is categorized into stages ranging from grade 1 (mild) to grade 4 (severe). Each one of the stages is distinguished by specific characteristics. Treatment options and associated <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a> also vary across the stages, with stage 4 requiring a different surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages or grades of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>From a medical standpoint, it\'s also crucial to understand that gynecomastia entails the overdevelopment of breast <span style=\"text-decoration: underline;\">gland</span> tissue. However, it\'s common for excess breast <span style=\"text-decoration: underline;\">fat</span> tissue to be present as well. When the enlargement of the breast is solely due to excess fatty tissue, this is called <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During a comprehensive <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>, both excess breast gland tissue and excess fat tissue can be addressed and removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4304,\"linkDestination\":\"none\",\"uniqueID\":\"1551_c85220-4d\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_c85220-4d\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png\" alt=\"Stages and Grades of Gynecomastia Atlanta\" class=\"kb-img wp-image-4304\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Four Grades of Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 1 gynecomastia experience minimal breast growth, often accompanied by nipple pain or tenderness. Swelling around the nipple is slight, and there is occasionally some discoloration. The nipple may also appear puffy and sensitive to touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Typically, stage 1 gynecomastia is not apparent when the individual is clothed. However, it may become noticeable in situations where the person is undressed, such as at the beach or swimming pool, potentially leading to feelings of embarrassment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 2 gynecomastia is characterized by a more pronounced enlargement of breast tissue that extends across the chest. This moderate growth may be noticeable even when the individual is clothed and becomes particularly prominent in bare-chested situations, which can cause embarrassment or distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to enlarged breasts, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness can persist, further adding to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 3 represents a substantial progression in gynecomastia, marked by significant breast tissue development and chest widening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become notably pronounced, often visibly protruding through clothing. Moreover, excess skin becomes evident, resulting in a droopy appearance of the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given the heightened visibility and physical changes associated with grade 3 gynecomastia, individuals may experience a significant impact on self-esteem and quality of life, prompting them to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most advanced stage of the condition, where breast enlargement is substantial and resembles female breasts in appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts become highly prominent, often dominating the individual\'s physique, even when clothed. Excess skin becomes more noticeable, contributing to a fuller, drooping appearance of the breasts. Nipple size can also increase significantly, further emphasizing feminine characteristics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals dealing with grade 4 gynecomastia may experience profound emotional distress and encounter significant social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch With a Atlanta Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand the whole spectrum of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From the initial assessment to customized treatment strategies, our team is committed to delivering compassionate care, and empowering individuals to regain their confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are located around Atlanta, and are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our Atlanta gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-27 20:26:59','2024-03-27 20:26:59','',1551,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4309',0,'revision','',0),(4310,5,'2024-03-27 20:28:16','2024-03-27 20:28:16','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. These conditions might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><strong>Here at the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Atlanta Gynecomastia Center</a>, we\'re all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan of action.</strong></p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two gyno conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Gynecomastia &amp; Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s first break down the differences between gynecomastia and pseudogynecomastia, and how they cause male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> is the excess of breast gland tissue, which leads to visible breast enlargement. This usually happens because of an imbalance of hormone levels, especially when there\'s more estrogen compared to testosterone. While it\'s not physically harmful, it can have impacts on one\'s well-being. This ultimately results in many people exploring <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery options</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia is more about extra fat in the chest area, which gives off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight &amp; excess fat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"wp-image-4303\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gynecomastia and pseudogynecomastia share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can be caused by a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, which is often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The different underlying causes of these conditions also lead to distinct methods of treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to treating gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, surgery can be required if conservative methods are unable to produce desired outcomes. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contour the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s now address some common questions that come up when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths are different.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, you can connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>. Whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and greatly improve your quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-27 20:28:16','2024-03-27 20:28:16','',2657,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4310',0,'revision','',0),(4312,5,'2024-03-27 20:28:39','2024-03-27 20:28:39','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a combination of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Atlanta Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4305,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta-1024x586.png\" alt=\"What is Gynecomastia Atlanta\" class=\"wp-image-4305\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving excess glandular tissue, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, and lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Atlanta gynecomastia specialists can help determine the underlying cause and disclose the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"wp-image-4303\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia is caused by several factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen levels. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia has a tremendous effect on psychological well-being in addition to its physical repercussions. Many who struggle with the condition report feeling more self-conscious, embarrassed, and having much lower self-esteem. As a result, individuals might decide to stay away from activities that require them to expose their chest, such sports or swimming.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Depending on the severity of the condition and its underlying cause, adult gynecomastia can appear with a range of symptoms. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, the asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are not uncommon due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Male breast reduction surgery</a> is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Atlanta Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment, and refrain from strenuous physical activities for a few weeks to ensure the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prescribed pain medication and proper post-operative care can effectively manage temporary bruising, swelling, and discomfort that are common post-surgery. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several weeks or even months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team are key to achieving the best results from gynecomastia surgery.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia. We are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adult Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1908-revision-v1','','','2024-03-27 20:28:39','2024-03-27 20:28:39','',1908,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4312',0,'revision','',0),(4313,3,'2024-03-27 20:36:44','2024-03-27 20:36:44','','Atlanta_Gynecomastia_Center_Doctor','','inherit','open','closed','','atlanta_gynecomastia_center_doctor','','','2024-03-27 20:36:59','2024-03-27 20:36:59','',1275,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Doctor.jpg',0,'attachment','image/jpeg',0),(4314,3,'2024-03-27 20:37:07','2024-03-27 20:37:07','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Jonathan Smith MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Smith is one of the head plastic surgeons at the Atlanta Gynecomastia Center. With a significant educational background and over 30 years of experience, Dr. Smith is one of the highest regarded gynecomastia plastic surgeons in Georgia.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Doctor.jpg\",\"bgImgID\":4313,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"51% 23%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith embarked on his medical journey with an internship and general surgery training in Atlanta, Georgia. After he graduated, he pursued an additional two years of plastic surgery residency.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith\'s career has been marked by active engagement in education and scholarship, including delivering lectures, writing numerous articles and chapters for textbooks, and teaching residents and medical students about different facets of plastic surgery. He is board certified from the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Smith leads the Atlanta Gynecomastia Center, one of the premier gynecomastia surgery practices in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Science</strong>: <a href=\"https://www.uga.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Georgia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-27 20:37:07','2024-03-27 20:37:07','',1275,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4314',0,'revision','',0),(4316,3,'2024-03-27 20:37:40','2024-03-27 20:37:40','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Jonathan Smith MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Smith is one of the head plastic surgeons at the Atlanta Gynecomastia Center. With a significant educational background and over 30 years of experience, Dr. Smith is one of the highest regarded gynecomastia plastic surgeons in Georgia.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Doctor.jpg\",\"bgImgID\":4313,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"54% 18%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith embarked on his medical journey with an internship and general surgery training in Atlanta, Georgia. After he graduated, he pursued an additional two years of plastic surgery residency.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith\'s career has been marked by active engagement in education and scholarship, including delivering lectures, writing numerous articles and chapters for textbooks, and teaching residents and medical students about different facets of plastic surgery. He is board certified from the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Smith leads the Atlanta Gynecomastia Center, one of the premier gynecomastia surgery practices in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Science</strong>: <a href=\"https://www.uga.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Georgia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-03-27 20:37:40','2024-03-27 20:37:40','',1275,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4316',0,'revision','',0),(4317,5,'2024-03-27 20:56:20','2024-03-27 20:56:20','','What is Gynecomastia','','inherit','open','closed','','what-is-gynecomastia','','','2024-03-27 21:09:11','2024-03-27 21:09:11','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/What-is-Gynecomastia.jpg',0,'attachment','image/jpeg',0),(4318,5,'2024-03-27 20:56:21','2024-03-27 20:56:21','','Types of Gynecomastia Atlanta','','inherit','open','closed','','types-of-gynecomastia-atlanta','','','2024-03-27 21:04:45','2024-03-27 21:04:45','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Types-of-Gynecomastia-Atlanta.jpg',0,'attachment','image/jpeg',0),(4319,5,'2024-03-27 20:56:23','2024-03-27 20:56:23','','Senior Gynecomastia Surgery Atlanta','','inherit','open','closed','','senior-gynecomastia-surgery-atlanta','','','2024-03-27 21:06:45','2024-03-27 21:06:45','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg',0,'attachment','image/jpeg',0),(4320,5,'2024-03-27 20:56:25','2024-03-27 20:56:25','','Puffy Nipple Treatment','','inherit','open','closed','','puffy-nipple-treatment','','','2024-03-27 21:06:32','2024-03-27 21:06:32','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg',0,'attachment','image/jpeg',0),(4321,5,'2024-03-27 20:56:26','2024-03-27 20:56:26','','Post Weight Loss Gynecomastia','','inherit','open','closed','','post-weight-loss-gynecomastia','','','2024-03-27 21:06:19','2024-03-27 21:06:19','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg',0,'attachment','image/jpeg',0),(4322,5,'2024-03-27 20:56:28','2024-03-27 20:56:28','','Out of Town Patients Atlanta Gynecomastia Center','','inherit','open','closed','','out-of-town-patients-atlanta-gynecomastia-center','','','2024-03-27 21:01:23','2024-03-27 21:01:23','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Out-of-Town-Patients-Atlanta-Gynecomastia-Center.jpg',0,'attachment','image/jpeg',0),(4323,5,'2024-03-27 20:56:30','2024-03-27 20:56:30','','Gynecomastia Surgery Candidate','','inherit','open','closed','','gynecomastia-surgery-candidate','','','2024-03-27 20:58:06','2024-03-27 20:58:06','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Gynecomastia-Surgery-Candidate.jpg',0,'attachment','image/jpeg',0),(4324,5,'2024-03-27 20:56:31','2024-03-27 20:56:31','','Gynecomastia Surgery Atlanta','','inherit','open','closed','','gynecomastia-surgery-atlanta','','','2024-03-27 21:04:12','2024-03-27 21:04:12','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Gynecomastia-Surgery-Atlanta.jpg',0,'attachment','image/jpeg',0),(4325,5,'2024-03-27 20:56:33','2024-03-27 20:56:33','','Gynecomastia Revision Surgery','','inherit','open','closed','','gynecomastia-revision-surgery','','','2024-03-27 21:05:44','2024-03-27 21:05:44','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg',0,'attachment','image/jpeg',0),(4326,5,'2024-03-27 20:56:34','2024-03-27 20:56:34','','Gynecomastia Frequently Asked Questions','','inherit','open','closed','','gynecomastia-frequently-asked-questions-2','','','2024-03-27 21:02:55','2024-03-27 21:02:55','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Gynecomastia-Frequently-Asked-Questions.jpg',0,'attachment','image/jpeg',0),(4327,5,'2024-03-27 20:56:36','2024-03-27 20:56:36','','Gynecomastia Doctors Atlanta','','inherit','open','closed','','gynecomastia-doctors-atlanta','','','2024-03-27 21:03:08','2024-03-27 21:03:08','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Gynecomastia-Doctors-Atlanta.jpg',0,'attachment','image/jpeg',0),(4328,5,'2024-03-27 20:56:38','2024-03-27 20:56:38','','Gynecomastia Cost Atlanta','','inherit','open','closed','','gynecomastia-cost-atlanta','','','2024-03-27 20:58:39','2024-03-27 20:58:39','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Gynecomastia-Cost-Atlanta.jpg',0,'attachment','image/jpeg',0),(4329,5,'2024-03-27 20:56:40','2024-03-27 20:56:40','','Gynecomastia Causes','','inherit','open','closed','','gynecomastia-causes','','','2024-03-27 20:59:08','2024-03-27 20:59:08','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Gynecomastia-Causes.jpg',0,'attachment','image/jpeg',0),(4330,5,'2024-03-27 20:56:42','2024-03-27 20:56:42','','Contact Atlanta Gynecomastia Center','','inherit','open','closed','','contact-atlanta-gynecomastia-center','','','2024-03-27 20:59:18','2024-03-27 20:59:18','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',0,'attachment','image/jpeg',0),(4331,5,'2024-03-27 20:56:43','2024-03-27 20:56:43','','Bodybuilder Gynecomastia Atlanta','','inherit','open','closed','','bodybuilder-gynecomastia-atlanta','','','2024-03-27 21:05:30','2024-03-27 21:05:30','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg',0,'attachment','image/jpeg',0),(4332,5,'2024-03-27 20:56:45','2024-03-27 20:56:45','','Before and After Results Gynecomastia Atlanta','','inherit','open','closed','','before-and-after-results-gynecomastia-atlanta','','','2024-03-27 20:58:52','2024-03-27 20:58:52','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Before-and-After-Results-Gynecomastia-Atlanta.jpg',0,'attachment','image/jpeg',0),(4333,5,'2024-03-27 20:56:47','2024-03-27 20:56:47','','Atlanta Gynecomastia Center Reviews','','inherit','open','closed','','atlanta-gynecomastia-center-reviews','','','2024-03-27 20:58:22','2024-03-27 20:58:22','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Center-Reviews.jpg',0,'attachment','image/jpeg',0),(4334,5,'2024-03-27 20:56:49','2024-03-27 20:56:49','','Adult Gynecomastia Atlanta','','inherit','open','closed','','adult-gynecomastia-atlanta','','','2024-03-27 21:05:10','2024-03-27 21:05:10','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg',0,'attachment','image/jpeg',0),(4335,5,'2024-03-27 20:56:50','2024-03-27 20:56:50','','Adolescent Gynecomastia Atlanta','','inherit','open','closed','','adolescent-gynecomastia-atlanta','','','2024-03-27 21:04:59','2024-03-27 21:04:59','',0,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg',0,'attachment','image/jpeg',0),(4339,5,'2024-03-27 21:09:58','2024-03-27 21:09:58','','What is Pseudogynecomastia','','inherit','open','closed','','what-is-pseudogynecomastia','','','2024-03-27 21:10:05','2024-03-27 21:10:05','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg',0,'attachment','image/jpeg',0),(4340,5,'2024-03-27 21:13:58','2024-03-27 21:13:58','','Atlanta Gynecomastia Homepage','','inherit','open','closed','','atlanta-gynecomastia-homepage','','','2024-03-27 21:14:05','2024-03-27 21:14:05','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Homepage.jpg',0,'attachment','image/jpeg',0),(4343,5,'2024-03-27 21:17:24','2024-03-27 21:17:24','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3490_74cc33-31\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3490_2e642d-99\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3490_2e642d-99 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3490_b5bf5c-84\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3490_b5bf5c-84 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_b5bf5c-84\">The Atlanta Gynecomastia Center is located in Atlanta, Georgia, near one of the largest airports in the country.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>At the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>, our dedicated team of plastic surgeons and staff are committed to providing exceptional care not only to our local patients, but also to those from around the entire state of Georgia and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">gynecomastia surgery near Fulton County</a>, you\'ve come to the right place, as we\'re located right in the Midtown area of Atlanta. If you\'re considering <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">surgery near Sandy Springs</a> or Alpharetta, we are just a short car ride away. We\'re proud to have earned a reputation that draws patients from across Georgia, as well as from further away, including Tennessee, South Carolina, Alabama, and across the country.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>People seek out the skills of <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a>, renowned among the country\'s leading gynecomastia surgeons. For our out-of-town patients, we do whatever we can to make sure you feel welcome and comfortable at our state-of-the-art surgery center in Atlanta, Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it\'s your free virtual consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered, no matter where you call home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your free virtual consultation</a> today with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3490_0b3f0b-94\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3490_0b3f0b-94 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3490_0b3f0b-94\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling from Out of Town</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are committed to meeting both your needs and those of any people you may be traveling with. We offer the convenience of <a href=\"https://atlantagynecomastia.com/contact/\">free phone or video consultations</a>, offering you a chance to understand our practice better and determine whether we align with your expectations before you commit to any travel arrangements. These consultations serve as an opportunity to learn about Dr. Smith’s education, medical training, and treatment philosophy, and to get acquainted with our team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During your virtual consultation, whether it\'s over the phone or via video, our surgeons will provide an estimated timeline for your stay in ATL. The length of your stay will depend on the type of gynecomastia procedure being performed and its associated <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgery timeline</a>. Your overall health may also have an impact on your surgery schedule.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-md-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-md-25-font-size\">Traveling via Air</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There\'s a major airport just a short drive from the Atlanta Gynecomastia Center if you fly into the greater Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><a href=\"https://www.atl.com/\">Hartsfield-Jackson Atlanta International Airport</a></strong> (ATL): 13 miles (20 minutes by car or 30 minutes by public transport)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The quickest and easiest way to get to our office from the airport is to take a quick Uber, Lyft, or local taxi. The MARTA train system is a more cost effective option but typically takes slightly longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you do choose to opt for public transportation, take the Gold or Red MARTA line heading north from the airport to the Arts Center MARTA Station. Our office is a 2 minute walk from that station, right next to The Woodruff Arts Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Nearby Hotels to the Atlanta Gynecomastia Center:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Atlanta, Georgia offers various accommodations to fit every budget. Below are some of the popular lodging options among our out-of-town patients. Should you need more recommendations, don\'t hesitate to reach out and we\'ll help find the best option for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.marriott.com/en-us/hotels/atlms-atlanta-marriott-suites-midtown/overview/\" target=\"_blank\" rel=\"noreferrer noopener\">Atlanta Marriott Suites Midtown</a><br>35 14th St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.loewshotels.com/atlanta-hotel\" target=\"_blank\" rel=\"noreferrer noopener\">Loews Atlanta Hotel<br></a>1065 Peachtree St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Renaissance Atlanta Midtown Hotel</strong><br>866 W Peachtree St NW<br>Atlanta, GA 30308</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Hilton Garden Inn Atlanta Midtown</strong><br>97 10th St NW<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Four Seasons Hotel Atlanta<br>75 14th St NE<br>Atlanta, GA 30309</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Restaurants &amp; Entertainment Nearby:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are various restaurant and entertainment options in and near Atlanta, Georgia for you and/or your companions to enjoy during your time in GA. Here are some nearby restaurants right in the local area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>The Flying Biscuit Cafe</strong>: 1001 Piedmont Ave NE, Atlanta, GA 30309</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>R. Thomas Deluxe Grill</strong>: 1812 Peachtree St NE, Atlanta, GA 30309</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Silver Skillet</strong>: 200 14th St NW, Atlanta, GA 30318</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We are conveniently located right in the Midtown area of Atlanta, near tons of exciting entertainment options. Our office is just a short drive from Mercedes-Benz Stadium and Centennial Olympic Park, two of the more famous entertainment areas in the city. Here are some excellent local entertainment options in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Piedmont Park</strong>: This gorgeous park is just a short walk from our office and features some amazing jogging paths, a farmers market, and plenty more. It\'s also home to the Atlanta Botanical Garden, an amazing 30-acres of lush plant life.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Georgia Aquarium</strong>: This is one of the largest aquariums in the world just a few miles south of us, and is a great way to escape the Atlanta heat.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>SkyView Atlanta</strong>: This 20-store Ferris wheel is right in Centennial Olympic Park and is the best way to see awesome views of downtown Atlanta.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Out of Town Patients','','inherit','closed','closed','','3490-revision-v1','','','2024-03-27 21:17:24','2024-03-27 21:17:24','',3490,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4343',0,'revision','',0);
INSERT INTO `hyu_posts` VALUES (4345,5,'2024-03-27 21:18:37','2024-03-27 21:18:37','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8d7bfa-b6\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_a9a99c-c9\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_a9a99c-c9\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_97f102-72\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_97f102-72 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_97f102-72\">If you\'re considering gynecomastia surgery, it\'s important to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d735e8-57\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d735e8-57 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d735e8-57\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_b08339-a6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_b08339-a6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_b08339-a6\">Read over the timeline below to get a better understanding of what our top <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Atlanta gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate, regardless of whether you\'re undergoing grade 1 or 4 surgery. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery also varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider. As you go through your pre-op appointments, you will get a better overall sense of what to expect for your surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A thorough preparation is essential before undergoing gynecomastia surgery. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, lifestyle changes, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time as well as some other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will carefully perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate post-operative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support the newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Most patients notice a noticeable decrease in bruising and swelling by the third or fourth week after surgery, as their chest contour continues to improve.  Following your surgeon\'s guidance, light exercise and physical activities may be gradually reintroduced. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 2-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. Soon enough, you will be able to fully appreciate your new and improved chest.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_20245c-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e8c001-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e8c001-33\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_217828-aa\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_217828-aa wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_217828-aa\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_d9f72e-b2\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_d9f72e-b2 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_4c0574-b7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_4c0574-b7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics. In these cases, your surgeon may prescribe anti-nausea meds to help.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_f83497-ad\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_f83497-ad\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_0c6274-ff\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_0c6274-ff wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_0c6274-ff\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_255ae6-13\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_255ae6-13\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_545e52-1e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_545e52-1e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_545e52-1e\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening, lasting around 15 minutes. These gentle movements help promote proper blood circulation, which aid in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_878bdf-72\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_878bdf-72\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_c252cd-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_c252cd-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_e3be40-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_e3be40-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_561560-d7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_561560-d7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_18610d-8a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_18610d-8a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_8a91b0-a3\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_8a91b0-a3\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s important to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_e6169f-cd\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_e6169f-cd\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_788f10-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_788f10-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_07cfa9-17\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_07cfa9-17\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_d1b87b-5c\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_c6e786-30\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_c6e786-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Additional Things to Know During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_954f98-28\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_954f98-28 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_954f98-28\">As you recover from surgery at the Atlanta Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_bf8ca5-44\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_bf8ca5-44 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_51df90-99\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_51df90-99\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_72c6dc-9f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_72c6dc-9f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_258758-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_258758-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_258758-3e\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_e33fa6-4c\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_e33fa6-4c\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_1609d4-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_1609d4-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, you should resist the urge to scratch the affected area, as it can potentially disrupt the healing process. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_3a3a26-d0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_3c7563-42\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_3c7563-42\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to recovering from gynecomastia surgery, there are a lot questions out there. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Pre & Post Surgery Timeline','','inherit','closed','closed','','1666-revision-v1','','','2024-03-27 21:18:37','2024-03-27 21:18:37','',1666,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4345',0,'revision','',0),(4346,5,'2024-03-27 21:19:25','2024-03-27 21:19:25','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Atlanta Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Learn About the Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to help - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many cases of gynecomastia, adult gynecomastia usually stems from an imbalance between the testosterone and estrogen hormones.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_a6a290-cb\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_7f0a60-59\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_7f0a60-59\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_3373e6-75\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_3373e6-75\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Bodybuilder Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c2b8c0-86\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c2b8c0-86\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_daa92f-20\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_daa92f-20\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Revision Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_956a28-79\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_51263e-9a\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_51263e-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ef8723-86\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ef8723-86\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue but instead is caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Psuedo Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c947fa-da\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c947fa-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_d85976-8f\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_d85976-8f\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still cause a great deal of distress for those who are affected.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Puffy Nipple</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_b149ec-63\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_cfadfd-5e\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_cfadfd-5e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ff7631-0e\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ff7631-0e\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">At any age, gynecomastia may develop. However, it becomes more common among seniors due to factors such as hormonal shifts, medications, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Senior Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_fda015-8c\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_fda015-8c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_5923d4-a2\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_5923d4-a2\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Gyno After Weight Loss</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Types of Gynecomastia','','inherit','closed','closed','','1482-revision-v1','','','2024-03-27 21:19:25','2024-03-27 21:19:25','',1482,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4346',0,'revision','',0),(4347,5,'2024-03-27 21:22:36','2024-03-27 21:22:36','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">Boys experience a hormonal shift in their bodies when they approach puberty. This can occasionally result in gynecomastia, a condition where changes in testosterone and estrogen levels cause male breasts to grow. In some cases, surgery may be your best option if this doesn\'t resolve on its own.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Atlanta Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, involving both physical and hormonal changes. It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may require intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we specialize in providing comprehensive care for adolescents dealing with gynecomastia. Our team of dedicated specialists has the expertise to address the unique concerns and challenges faced by these young individuals. With a focus on compassion and precision, we strive to offer tailored solutions to ensure optimal outcomes for our gynecomastia patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Teenage gynecomastia usually appears as a little lump under the nipple, occasionally with pain or soreness. There might also be noticeable swelling of the breast tissue. This condition is most prevalent between the ages of 10 and 13, during the early stages of puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem. They may resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer silently, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by affected individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While some instances may resolve naturally with time, there are cases of adolescent gynecomastia where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there\'s an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Atlanta Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">the candidacy of each individual</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to adolescent gynecomastia, just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Usually, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola. This results in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. To achieve the best possible healing results, it is advised to avoid physically demanding activities involving the upper body, such as sports and gym sessions, for about a month.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessaey. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessaey. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography may be suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessaey. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Atlanta, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Atlanta Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1906-revision-v1','','','2024-03-27 21:22:36','2024-03-27 21:22:36','',1906,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4347',0,'revision','',0),(4351,5,'2024-03-28 20:05:22','2024-03-28 20:05:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Atlanta Gynecomastia Center<br>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-28 20:05:22','2024-03-28 20:05:22','',2069,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4351',0,'revision','',0),(4352,5,'2024-03-28 21:00:50','2024-03-28 21:00:50','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1484_6c4a42-85\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[40,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading1484_6c4a42-85 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1484_6c4a42-85\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬<br><br><strong><span style=\"text-decoration: underline;\">Hours of Operation<br></span></strong>Monday: 9:00 AM - 5:00 PM<br>Tuesday: 9:00 AM - 5:00 PM<br>Wednesday: 9:00 AM - 5:00 PM<br>Thursday: 9:00 AM - 5:00 PM<br>Friday: 9:00 AM - 5:00 PM</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center regularly treats patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, feel free to <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and better understand the <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">different types of gynecomastia</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-28 21:00:50','2024-03-28 21:00:50','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4352',0,'revision','',0),(4353,5,'2024-03-28 21:06:14','2024-03-28 21:06:14','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the concept of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to acknowledge that in numerous cases, the root cause of gynecomastia remain unknown. In such cases, hormonal imbalance may not serve as the primary reasoning.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. This condition typically resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue usually resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Substance abuse such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels This is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting excess testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of teenagers will have some signs of gynecomastia by the age of 14. It is largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This is a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist. In these cases, surgical intervention to address the issue may be necessary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another substance abuse problem that is noticeably more common than illicit drug usage is alcoholism.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role due to its high content of phytoestrogens, plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects similar to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels. This process typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Professional bodybuilders frequently experience gynecomastia due to the use of anabolic drugs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may cause the body to convert excess testosterone into estrogen. In many cases this can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Two main factors explain why there are more cases of gynecomastia in people with higher body fat. First, there is an accumulation of fat in the chest area, and second, enhanced estrogen levels increase the chance of breast gland tissue formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On top of that, heightened levels of fat also precipitate a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This conversion takes place mostly in adipose tissue, which makes up around 85% of the process. Therefore, the more fat tissue there is, the more prominent the possible increase in estrogen levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens (the male hormones).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This insufficiency may result from a number of different things, such as radiation exposure, mechanical trauma, or medical disorders that harm the testes. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium. This can result in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. It\'s crucial to remember that even if these side effects do occur, you shouldn\'t automatically stop taking your prescription. Instead, being informed enables you to handle any possible hormonal shifts with the right actions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Atlanta Gynecomastia Specialist</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Atlanta or any surrounding areas, feel free to schedule an appointment at the Atlanta Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with an Atlanta gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-28 21:06:14','2024-03-28 21:06:14','',1525,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4353',0,'revision','',0),(4354,5,'2024-03-28 21:11:02','2024-03-28 21:11:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">There are several reasons why people seek out gynecomastia revision surgery. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Atlanta Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically involves both excess breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. These fluctuations can impact how fat is distributed throughout the body, which can change how the chest looks. To maintain or restore the correct chest contour, revision surgery may be required to treat extra fat or loose skin brought on by weight fluctuations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can also be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic result.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Atlanta Gynecomastia Center, we\'re here to provide the support you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve the results you desire.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a sagging appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery in Atlanta','','inherit','closed','closed','','1901-revision-v1','','','2024-03-28 21:11:02','2024-03-28 21:11:02','',1901,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4354',0,'revision','',0),(4355,5,'2024-03-28 21:11:42','2024-03-28 21:11:42','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. These conditions might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\">Here at the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Atlanta Gynecomastia Center</a>, we\'re all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan of action.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two gyno conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Gynecomastia &amp; Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s first break down the differences between gynecomastia and pseudogynecomastia, and how they cause male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> is the excess of breast gland tissue, which leads to visible breast enlargement. This usually happens because of an imbalance of hormone levels, especially when there\'s more estrogen compared to testosterone. While it\'s not physically harmful, it can have impacts on one\'s well-being. This ultimately results in many people exploring <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery options</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia is more about extra fat in the chest area, which gives off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight &amp; excess fat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"wp-image-4303\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gynecomastia and pseudogynecomastia share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can be caused by a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, which is often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The different underlying causes of these conditions also lead to distinct methods of treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to treating gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, surgery can be required if conservative methods are unable to produce desired outcomes. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contour the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s now address some common questions that come up when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths are different.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, you can connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>. Whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and greatly improve your quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-28 21:11:42','2024-03-28 21:11:42','',2657,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4355',0,'revision','',0),(4356,5,'2024-03-28 21:12:48','2024-03-28 21:12:48','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. These conditions might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our doctors at the Atlanta Gynecomastia Center</a> are all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan of action.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two gyno conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Gynecomastia &amp; Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s first break down the differences between gynecomastia and pseudogynecomastia, and how they cause male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> is the excess of breast gland tissue, which leads to visible breast enlargement. This usually happens because of an imbalance of hormone levels, especially when there\'s more estrogen compared to testosterone. While it\'s not physically harmful, it can have impacts on one\'s well-being. This ultimately results in many people exploring <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery options</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia is more about extra fat in the chest area, which gives off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight &amp; excess fat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"wp-image-4303\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gynecomastia and pseudogynecomastia share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can be caused by a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, which is often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The different underlying causes of these conditions also lead to distinct methods of treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to treating gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, surgery can be required if conservative methods are unable to produce desired outcomes. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contour the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s now address some common questions that come up when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths are different.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, you can connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>. Whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and greatly improve your quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-28 21:12:48','2024-03-28 21:12:48','',2657,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4356',0,'revision','',0),(4357,5,'2024-03-28 21:15:11','2024-03-28 21:15:11','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2886_cf1f9b-99\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2886_1011bf-a3\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2886_1011bf-a3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_49abf1-ea\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_49abf1-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_49abf1-ea\">The Atlanta Gynecomastia Center is one of the best rated plastic surgery centers in Georgia and serves patients from all over the southeastern United States.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2886_8d4b36-f3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2886_8d4b36-f3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_8d4b36-f3\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your in-person or virtual consultation</a> with Dr. Smith to get you started on your transformation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also get started with some <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>, and better understand <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">if you are a gyno candidate</a> to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2886_6fafa0-8c\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2886_6fafa0-8c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2886_6fafa0-8c\">Reach out to hear what our patients have to say about the Atlanta Gynecomastia Center!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Center Surgery Reviews','','inherit','closed','closed','','2886-revision-v1','','','2024-03-28 21:15:11','2024-03-28 21:15:11','',2886,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4357',0,'revision','',0),(4361,3,'2024-03-28 23:59:43','2024-03-28 23:59:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction, as needed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to empower you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gyno Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"padding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost effective as possible. Patient safety is  always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">Here, you will undergo a more comprehensive procedure, which will likely involve the removal of any excess skin around the breast as well.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gyno Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith has many satisfied gynecomastia patients in the Atlanta area. Check out just some of the highlights. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-28 23:59:43','2024-03-28 23:59:43','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4361',0,'revision','',0),(4363,3,'2024-03-29 00:05:18','2024-03-29 00:05:18','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction, as needed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to empower you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gyno Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"padding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost effective as possible. Patient safety is  always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gyno Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-29 00:05:18','2024-03-29 00:05:18','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4363',0,'revision','',0),(4365,3,'2024-03-29 00:08:13','2024-03-29 00:08:13','<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p><strong><span style=\"text-decoration: underline;\">Hours of Operation<br></span></strong>Monday: 9:00 AM - 5:00 PM<br>Tuesday: 9:00 AM - 5:00 PM<br>Wednesday: 9:00 AM - 5:00 PM<br>Thursday: 9:00 AM - 5:00 PM<br>Friday: 9:00 AM - 5:00 PM</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta. We regularly treat patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, feel free to <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and better understand the <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">different types of gynecomastia</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-29 00:08:13','2024-03-29 00:08:13','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4365',0,'revision','',0),(4366,3,'2024-03-29 00:11:47','2024-03-29 00:11:47','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction, as needed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to empower you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gyno Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost effective as possible. Patient safety is  always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gyno Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-29 00:11:47','2024-03-29 00:11:47','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4366',0,'revision','',0),(4367,3,'2024-03-29 00:13:20','2024-03-29 00:13:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Atlanta Gynecomastia Center is located near Alpharetta, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Alpharetta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Alpharetta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Alpharetta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Haynes Bridge Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on GA-400 S to Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery near Alpharetta','','inherit','closed','closed','','2844-revision-v1','','','2024-03-29 00:13:20','2024-03-29 00:13:20','',2844,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4367',0,'revision','',0),(4368,3,'2024-03-29 00:13:37','2024-03-29 00:13:37','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Atlanta Gynecomastia Center is located near Athens, about an hour and 15 minutes away from Athens in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Athens? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just over an hour from Athens in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Athens to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-10 Loop W/US-129 S/US-29 S/US-441 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-10 Loop W to GA-316 W/US-29 S/US-78 W in Oconee County. Take exit 1 from GA-10 Loop W/US-29 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow US-29 S and University Pkwy to GA-316 W in Lawrenceville</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take I-85 S to M.L.K. Jr Dr SE in Atlanta. Take exit 248A from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgeon near Athens','','inherit','closed','closed','','2787-revision-v1','','','2024-03-29 00:13:37','2024-03-29 00:13:37','',2787,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4368',0,'revision','',0),(4369,3,'2024-03-29 00:14:22','2024-03-29 00:14:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Atlanta Gynecomastia Center is located near Alpharetta, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Alpharetta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Alpharetta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Alpharetta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Haynes Bridge Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on GA-400 S to Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Alpharetta','','inherit','closed','closed','','2844-revision-v1','','','2024-03-29 00:14:22','2024-03-29 00:14:22','',2844,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4369',0,'revision','',0),(4370,3,'2024-03-29 00:14:30','2024-03-29 00:14:30','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Atlanta Gynecomastia Center is located near Athens, about an hour and 15 minutes away from Athens in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Athens? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just over an hour from Athens in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Athens to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-10 Loop W/US-129 S/US-29 S/US-441 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-10 Loop W to GA-316 W/US-29 S/US-78 W in Oconee County. Take exit 1 from GA-10 Loop W/US-29 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow US-29 S and University Pkwy to GA-316 W in Lawrenceville</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take I-85 S to M.L.K. Jr Dr SE in Atlanta. Take exit 248A from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgeon Near Athens','','inherit','closed','closed','','2787-revision-v1','','','2024-03-29 00:14:30','2024-03-29 00:14:30','',2787,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4370',0,'revision','',0),(4371,3,'2024-03-29 00:14:36','2024-03-29 00:14:36','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Atlanta Gynecomastia Center is located near  Columbus, about an hour and 40 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Columbus? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just under two hours from Columbus in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Columbus to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-185 N from Wynnton Rd and Macon Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-185 N and I-85 N to Fulton St SW in Atlanta. Take exit 246 from I-75 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to Capitol Ave SE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Male Breast Reduction Near Columbus','','inherit','closed','closed','','2858-revision-v1','','','2024-03-29 00:14:36','2024-03-29 00:14:36','',2858,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4371',0,'revision','',0),(4373,3,'2024-03-29 00:14:52','2024-03-29 00:14:52','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Atlanta Gynecomastia Center is located near Decatur, about 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Decatur? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Decatur in Atlanta, GA.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Decatur to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Head east on E Court Square toward E Ponce de Leon Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Clairemont Ave, N Decatur Rd, E Rock Springs Rd NE and Piedmont Ave NE to The Prado NE in Atlanta</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on The Prado NE. Take Westminster Drive Northeast and Peachtree Cir NE to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Decatur','','inherit','closed','closed','','2854-revision-v1','','','2024-03-29 00:14:52','2024-03-29 00:14:52','',2854,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4373',0,'revision','',0),(4374,3,'2024-03-29 00:15:24','2024-03-29 00:15:24','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The Atlanta Gynecomastia Center is located in Fulton County, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Fulton County? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located right there in downtown Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Fulton County to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Depending on where in Fulton County you\'re located, head towards downtown Atlanta</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>From I-75 S, take I-85 S to M.L.K. Jr Dr SE. Take exit 248A from I-75 S/I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery in Fulton County','','inherit','closed','closed','','2868-revision-v1','','','2024-03-29 00:15:24','2024-03-29 00:15:24','',2868,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4374',0,'revision','',0),(4375,3,'2024-03-29 00:15:38','2024-03-29 00:15:38','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The Atlanta Gynecomastia Center is located near Marietta, just 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Marietta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Marietta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Marietta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 S from GA-120ALT/North Marietta Pkwy NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-75 S to Techwood Dr NW in Atlanta. Take exit 250 from I-75 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgeon Near Marietta','','inherit','closed','closed','','2881-revision-v1','','','2024-03-29 00:15:38','2024-03-29 00:15:38','',2881,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4375',0,'revision','',0),(4376,3,'2024-03-29 00:15:49','2024-03-29 00:15:49','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_6e0083-8c\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_e03b11-f9\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_e03b11-f9 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_6de37d-d7\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_6de37d-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_6de37d-d7\">The Atlanta Gynecomastia Center is located near Roswell, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Roswell? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Roswell in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Roswell to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S in Sandy Springs from N Atlanta St and GA-9/Roswell Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery near Roswell','','inherit','closed','closed','','2862-revision-v1','','','2024-03-29 00:15:49','2024-03-29 00:15:49','',2862,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4376',0,'revision','',0),(4377,3,'2024-03-29 00:15:54','2024-03-29 00:15:54','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_6e0083-8c\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_e03b11-f9\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_e03b11-f9 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_6de37d-d7\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_6de37d-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_6de37d-d7\">The Atlanta Gynecomastia Center is located near Roswell, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Roswell? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Roswell in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Roswell to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S in Sandy Springs from N Atlanta St and GA-9/Roswell Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Roswell','','inherit','closed','closed','','2862-revision-v1','','','2024-03-29 00:15:54','2024-03-29 00:15:54','',2862,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4377',0,'revision','',0),(4379,3,'2024-03-29 00:16:07','2024-03-29 00:16:07','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_608038-ac\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_0c8121-68\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_0c8121-68 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_844f76-66\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_844f76-66 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_844f76-66\">The Atlanta Gynecomastia Center is located near Sandy Springs, just 15 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Sandy Springs? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Sandy Springs in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Sandy Springs to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Vernon Woods Dr NE and Mount Vernon Hwy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Sandy Springs','','inherit','closed','closed','','2872-revision-v1','','','2024-03-29 00:16:07','2024-03-29 00:16:07','',2872,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4379',0,'revision','',0),(4381,3,'2024-03-29 00:32:40','2024-03-29 00:32:40','<!-- wp:kadence/rowlayout {\"uniqueID\":\"4381_c2fe62-5e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"4381_da29f0-7c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column4381_da29f0-7c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"4381_47c15c-5f\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading4381_47c15c-5f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading4381_47c15c-5f\">The Atlanta Gynecomastia Center is located near Buckhead, just 15 minutes from Buckhead in Midtown Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Buckhead? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just 15 minutes from Buckhead in Midtown Atlanta.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"4381_93adee-2d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading4381_93adee-2d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading4381_93adee-2d\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Buckhead to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take Arden Rd NW to US-41 S/Northside Dr NW</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on US-41 S/Northside Dr NW. Take I-75 S to 15th St NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Buckhead, Georgia','','publish','closed','closed','','buckhead-georgia','','','2024-03-29 22:17:38','2024-03-29 22:17:38','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?page_id=4381',0,'page','',0),(4382,3,'2024-03-29 00:32:38','2024-03-29 00:32:38','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Buckhead</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier Gynecomastia Surgeons in Georgia, with over 30 years of experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Atlanta (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-29 00:32:38','2024-03-29 00:32:38','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4382',0,'revision','',0),(4383,3,'2024-03-29 00:32:39','2024-03-29 00:32:39','<!-- wp:kadence/rowlayout {\"uniqueID\":\"4381_c2fe62-5e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"4381_da29f0-7c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column4381_da29f0-7c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"4381_47c15c-5f\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading4381_47c15c-5f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading4381_47c15c-5f\">The Atlanta Gynecomastia Center is located near Buckhead, just 15 minutes from Buckhead in Midtown Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Buckhead? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just 15 minutes from Buckhead in Midtown Atlanta.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"4381_93adee-2d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading4381_93adee-2d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading4381_93adee-2d\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Buckhead to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take Arden Rd NW to US-41 S/Northside Dr NW</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on US-41 S/Northside Dr NW. Take I-75 S to 15th St NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgeon Near Buckhead','','inherit','closed','closed','','4381-revision-v1','','','2024-03-29 00:32:39','2024-03-29 00:32:39','',4381,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4383',0,'revision','',0),(4384,3,'2024-03-29 00:32:58','2024-03-29 00:32:58','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/gynecomastia-surgeon-near-buckhead/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier Gynecomastia Surgeons in Georgia, with over 30 years of experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Atlanta (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-29 00:32:58','2024-03-29 00:32:58','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4384',0,'revision','',0),(4386,3,'2024-03-29 00:38:34','2024-03-29 00:38:34','<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p><strong><span style=\"text-decoration: underline;\">Hours of Operation<br></span></strong>Monday: 9:00 AM - 5:00 PM<br>Tuesday: 9:00 AM - 5:00 PM<br>Wednesday: 9:00 AM - 5:00 PM<br>Thursday: 9:00 AM - 5:00 PM<br>Friday: 9:00 AM - 5:00 PM</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta. We regularly treat patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, feel free to <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and better understand the <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">different types of gynecomastia</a>.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-29 00:38:34','2024-03-29 00:38:34','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4386',0,'revision','',0),(4387,3,'2024-03-29 00:39:22','2024-03-29 00:39:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier Gynecomastia Surgeons in Georgia, with over 30 years of experience. Each <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia surgery</a> is performed at our&nbsp;private ambulatory surgery center on-site in Atlanta (not in a hospital), which is accredited by the Joint Commission and meets the highest standards of excellence for patient care, comfort, and privacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-29 00:39:22','2024-03-29 00:39:22','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4387',0,'revision','',0),(4388,3,'2024-03-29 00:41:21','2024-03-29 00:41:21','','From Buckhead','','publish','closed','closed','','from-buckhead','','','2024-03-29 00:41:21','2024-03-29 00:41:21','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4388',30,'nav_menu_item','',0),(4389,3,'2024-03-29 00:42:06','2024-03-29 00:42:06','','Traveling from Buckhead','','publish','closed','closed','','traveling-from-buckhead','','','2024-03-29 00:42:06','2024-03-29 00:42:06','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4389',10,'nav_menu_item','',0),(4390,3,'2024-03-29 00:51:18','2024-03-29 00:51:18','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the Atlanta Gynecomastia Center to plan your free consultation and see if surgery is the right option for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-29 00:51:18','2024-03-29 00:51:18','',3071,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4390',0,'revision','',0),(4391,5,'2024-03-29 15:38:06','2024-03-29 15:38:06','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction, as needed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to empower you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gyno Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost effective as possible. Patient safety is  always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gyno Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-29 15:38:06','2024-03-29 15:38:06','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4391',0,'revision','',0),(4393,5,'2024-03-29 15:40:32','2024-03-29 15:40:32','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3808_b917f4-a1\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3808_ca9cbc-43\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3808_ca9cbc-43\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center covers the Atlanta area and beyond. Just some of the main cities of service include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out-of-town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And don\'t worry if you are situated further away from the Atlanta area. It is also possible to arrange a virtual consultation for gynecomastia surgery, allowing you to speak with our doctors and get you started in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Service Pages -> City Summary','','inherit','closed','closed','','3808-revision-v1','','','2024-03-29 15:40:32','2024-03-29 15:40:32','',3808,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4393',0,'revision','',0);
INSERT INTO `hyu_posts` VALUES (4394,5,'2024-03-29 15:41:10','2024-03-29 15:41:10','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction, as needed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to empower you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gyno Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost effective as possible. Patient safety is  always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gyno Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, Alpharetta, <a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a>, Fulton County, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-29 15:41:10','2024-03-29 15:41:10','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4394',0,'revision','',0),(4396,5,'2024-03-29 22:11:21','2024-03-29 22:11:21','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2858_03b32c-ed\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2858_808954-af\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2858_808954-af inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2858_c1d850-e0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2858_c1d850-e0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_c1d850-e0\">The Atlanta Gynecomastia Center is located near  Columbus, about an hour and 40 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Columbus? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just under two hours from Columbus in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2858_07a0ba-0b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2858_07a0ba-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2858_07a0ba-0b\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation discussing your <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">gynecomastia candidacy</a>, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Columbus to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-185 N from Wynnton Rd and Macon Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-185 N and I-85 N to Fulton St SW in Atlanta. Take exit 246 from I-75 N</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Drive to Capitol Ave SE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Columbus, Georgia','','inherit','closed','closed','','2858-revision-v1','','','2024-03-29 22:11:21','2024-03-29 22:11:21','',2858,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4396',0,'revision','',0),(4397,5,'2024-03-29 22:11:21','2024-03-29 22:11:21','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2069_f1e531-05\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2069_dbf87e-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2069_dbf87e-98\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"2069_7f10a4-79\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-2069_7f10a4-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2069_4c3402-5b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2069_4c3402-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2069_4c3402-5b\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Bottom Page Summary','','inherit','closed','closed','','2069-revision-v1','','','2024-03-29 22:11:21','2024-03-29 22:11:21','',2069,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4397',0,'revision','',0),(4398,5,'2024-03-29 22:12:41','2024-03-29 22:12:41','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2872_608038-ac\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2872_0c8121-68\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2872_0c8121-68 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2872_844f76-66\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2872_844f76-66 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2872_844f76-66\">The Atlanta Gynecomastia Center is located near Sandy Springs, just 15 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Sandy Springs? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Sandy Springs in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Sandy Springs to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Vernon Woods Dr NE and Mount Vernon Hwy</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Sandy Springs, Georgia','','inherit','closed','closed','','2872-revision-v1','','','2024-03-29 22:12:41','2024-03-29 22:12:41','',2872,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4398',0,'revision','',0),(4400,5,'2024-03-29 22:13:28','2024-03-29 22:13:28','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2862_6e0083-8c\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2862_e03b11-f9\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2862_e03b11-f9 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2862_6de37d-d7\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2862_6de37d-d7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2862_6de37d-d7\">The Atlanta Gynecomastia Center is located near Roswell, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Roswell? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Roswell in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Roswell to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S in Sandy Springs from N Atlanta St and GA-9/Roswell Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-400 S and I-85 S to Techwood Dr NW in Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Roswell, Georgia','','inherit','closed','closed','','2862-revision-v1','','','2024-03-29 22:13:28','2024-03-29 22:13:28','',2862,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4400',0,'revision','',0),(4401,5,'2024-03-29 22:13:55','2024-03-29 22:13:55','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2854_e8a258-b2\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2854_5802e3-1c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2854_5802e3-1c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2854_04c68c-e6\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2854_04c68c-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2854_04c68c-e6\">The Atlanta Gynecomastia Center is located near Decatur, about 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Decatur? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Decatur in Atlanta, GA.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Decatur to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Head east on E Court Square toward E Ponce de Leon Ave</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Clairemont Ave, N Decatur Rd, E Rock Springs Rd NE and Piedmont Ave NE to The Prado NE in Atlanta</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on The Prado NE. Take Westminster Drive Northeast and Peachtree Cir NE to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Decatur, Georgia','','inherit','closed','closed','','2854-revision-v1','','','2024-03-29 22:13:55','2024-03-29 22:13:55','',2854,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4401',0,'revision','',0),(4403,5,'2024-03-29 22:14:24','2024-03-29 22:14:24','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2844_6d7984-e1\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2844_1dce7e-db\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2844_1dce7e-db inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2844_647bf5-d0\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2844_647bf5-d0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2844_647bf5-d0\">The Atlanta Gynecomastia Center is located near Alpharetta, about 25 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Alpharetta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Alpharetta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Alpharetta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-400 S/US-19 S from Haynes Bridge Rd</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on GA-400 S to Atlanta. Take exit 84 from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Alpharetta, Georgia','','inherit','closed','closed','','2844-revision-v1','','','2024-03-29 22:14:24','2024-03-29 22:14:24','',2844,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4403',0,'revision','',0),(4404,5,'2024-03-29 22:15:02','2024-03-29 22:15:02','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2868_91eee6-9f\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2868_90ed55-f0\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2868_90ed55-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2868_21a4ba-64\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2868_21a4ba-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_21a4ba-64\">The Atlanta Gynecomastia Center is located in Fulton County, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Fulton County? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located right there in downtown Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2868_fa1aae-4b\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2868_fa1aae-4b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2868_fa1aae-4b\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Fulton County to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Depending on where in Fulton County you\'re located, head towards downtown Atlanta</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>From I-75 S, take I-85 S to M.L.K. Jr Dr SE. Take exit 248A from I-75 S/I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery in Fulton County, Georgia','','inherit','closed','closed','','2868-revision-v1','','','2024-03-29 22:15:02','2024-03-29 22:15:02','',2868,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4404',0,'revision','',0),(4405,5,'2024-03-29 22:15:49','2024-03-29 22:15:49','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The Atlanta Gynecomastia Center is located near Marietta, just 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Marietta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Marietta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Marietta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 S from GA-120ALT/North Marietta Pkwy NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-75 S to Techwood Dr NW in Atlanta. Take exit 250 from I-75 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgeon Near Marietta, Georgia','','inherit','closed','closed','','2881-revision-v1','','','2024-03-29 22:15:49','2024-03-29 22:15:49','',2881,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4405',0,'revision','',0),(4407,5,'2024-03-29 22:16:34','2024-03-29 22:16:34','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Atlanta Gynecomastia Center is located near Athens, about an hour and 15 minutes away from Athens in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Athens? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just over an hour from Athens in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Athens to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-10 Loop W/US-129 S/US-29 S/US-441 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-10 Loop W to GA-316 W/US-29 S/US-78 W in Oconee County. Take exit 1 from GA-10 Loop W/US-29 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow US-29 S and University Pkwy to GA-316 W in Lawrenceville</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take I-85 S to M.L.K. Jr Dr SE in Atlanta. Take exit 248A from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgeon Near Athens, Georgia','','inherit','closed','closed','','2787-revision-v1','','','2024-03-29 22:16:34','2024-03-29 22:16:34','',2787,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4407',0,'revision','',0),(4408,5,'2024-03-29 22:16:48','2024-03-29 22:16:48','<!-- wp:kadence/rowlayout {\"uniqueID\":\"4381_c2fe62-5e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"4381_da29f0-7c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column4381_da29f0-7c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"4381_47c15c-5f\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading4381_47c15c-5f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading4381_47c15c-5f\">The Atlanta Gynecomastia Center is located near Buckhead, just 15 minutes from Buckhead in Midtown Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Buckhead? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just 15 minutes from Buckhead in Midtown Atlanta.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"4381_93adee-2d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading4381_93adee-2d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading4381_93adee-2d\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Buckhead to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take Arden Rd NW to US-41 S/Northside Dr NW</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on US-41 S/Northside Dr NW. Take I-75 S to 15th St NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgeon Near Buckhead, Georgia','','inherit','closed','closed','','4381-revision-v1','','','2024-03-29 22:16:48','2024-03-29 22:16:48','',4381,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4408',0,'revision','',0),(4409,5,'2024-03-29 22:17:29','2024-03-29 22:17:29','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2787_62ebbb-05\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2787_29a24f-5d\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2787_29a24f-5d inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2787_272dd0-b3\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2787_272dd0-b3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_272dd0-b3\">The Atlanta Gynecomastia Center is located near Athens, about an hour and 15 minutes away from Athens in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Athens? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just over an hour from Athens in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2787_8936d7-37\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading2787_8936d7-37 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2787_8936d7-37\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Athens to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on GA-10 Loop W/US-129 S/US-29 S/US-441 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow GA-10 Loop W to GA-316 W/US-29 S/US-78 W in Oconee County. Take exit 1 from GA-10 Loop W/US-29 S/US-78 W</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow US-29 S and University Pkwy to GA-316 W in Lawrenceville</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take I-85 S to M.L.K. Jr Dr SE in Atlanta. Take exit 248A from I-85 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Take Capitol Sq SW to Capitol Ave SW</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Athens, Georgia','','inherit','closed','closed','','2787-revision-v1','','','2024-03-29 22:17:29','2024-03-29 22:17:29','',2787,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4409',0,'revision','',0),(4410,5,'2024-03-29 22:17:30','2024-03-29 22:17:30','<!-- wp:kadence/rowlayout {\"uniqueID\":\"4381_c2fe62-5e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"4381_da29f0-7c\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column4381_da29f0-7c inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"4381_47c15c-5f\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading4381_47c15c-5f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading4381_47c15c-5f\">The Atlanta Gynecomastia Center is located near Buckhead, just 15 minutes from Buckhead in Midtown Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Buckhead? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just 15 minutes from Buckhead in Midtown Atlanta.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"4381_93adee-2d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading4381_93adee-2d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading4381_93adee-2d\">1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Buckhead to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Take Arden Rd NW to US-41 S/Northside Dr NW</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on US-41 S/Northside Dr NW. Take I-75 S to 15th St NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Turn right onto 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Buckhead, Georgia','','inherit','closed','closed','','4381-revision-v1','','','2024-03-29 22:17:30','2024-03-29 22:17:30','',4381,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4410',0,'revision','',0),(4411,5,'2024-03-29 22:17:33','2024-03-29 22:17:33','<!-- wp:kadence/rowlayout {\"uniqueID\":\"2881_fce416-1e\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2881_20ab11-22\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column2881_20ab11-22 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"2881_56d66d-5b\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",40,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[28,null,25],\"fontHeight\":[1.3,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading2881_56d66d-5b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2881_56d66d-5b\">The Atlanta Gynecomastia Center is located near Marietta, just 20 minutes away in Atlanta, Georgia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p>Are you looking for a gynecomastia surgeon near Marietta? The <a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center</a> is located just minutes from Marietta in Atlanta, Georgia.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1230 Peachtree St NE #150<br>Atlanta, GA 30309<br>‪(203) 441-1113‬</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#schedule-consultation\">Schedule your consultation</a> with Dr. Smith and read some <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">gynecomastia reviews</a> to get you started on your transformative journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has-20-25-font-size\"} -->\n<h2 class=\"wp-block-heading has-20-25-font-size\">Driving Directions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-20-25-font-size\"} -->\n<p class=\"has-20-25-font-size\">From Marietta to the Atlanta Gynecomastia Center:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Get on I-75 S from GA-120ALT/North Marietta Pkwy NE</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Follow I-75 S to Techwood Dr NW in Atlanta. Take exit 250 from I-75 S</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Continue on Techwood Dr NW. Take 14th St NW/U.S. Hwy 19 N to 15th St NE</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":3725} /-->\n\n<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Surgery Near Marietta, Georgia','','inherit','closed','closed','','2881-revision-v1','','','2024-03-29 22:17:33','2024-03-29 22:17:33','',2881,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4411',0,'revision','',0),(4413,5,'2024-03-29 22:31:45','2024-03-29 22:31:45','<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:paragraph -->\n<p><strong><span style=\"text-decoration: underline;\">Hours of Operation<br></span></strong>Monday: 9:00 AM - 5:00 PM<br>Tuesday: 9:00 AM - 5:00 PM<br>Wednesday: 9:00 AM - 5:00 PM<br>Thursday: 9:00 AM - 5:00 PM<br>Friday: 9:00 AM - 5:00 PM</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta. We regularly treat patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, feel free to <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and better understand the <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">different types of gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, our <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the best gynecomastia surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all types of gynecomastia surgery, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: One of the most common surgeries performed is a standard adult gynecomastia procedure. Adult gyno is commonly a result of a hormonal imbalance between estrogen and testosterone. While there can be several causes of this, sometimes the reasons are unknown.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: As young boys go through puberty, there are changes in the natural levels of testosterone and estrogen in the body. While many of these cases resolve over time, some individuals may need to resort to surgery in order to get rid of the condition for good.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: A common theme in anabolic steroids and prohormone users is bodybuilder gynecomastia. The use of these drugs can trigger the onset of enlarged breasts, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-29 22:31:45','2024-03-29 22:31:45','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4413',0,'revision','',0),(4415,5,'2024-03-29 22:48:09','2024-03-29 22:48:09','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the premier Gynecomastia Surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gynecomastia surgery</a>, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition is usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive male breast reduction surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-29 22:48:09','2024-03-29 22:48:09','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4415',0,'revision','',0),(4416,5,'2024-03-29 22:53:06','2024-03-29 22:53:06','<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How to Reach Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Feel free to call the Atlanta Gynecomastia Center at (203) 441-1113 to book your free consultation. We are easily accessible from many nearby cities, and eager to help you with your gynecomastia questions and concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><span style=\"text-decoration: underline;\">Hours of Operation<br></span></strong>Monday: 9:00 AM - 5:00 PM<br>Tuesday: 9:00 AM - 5:00 PM<br>Wednesday: 9:00 AM - 5:00 PM<br>Thursday: 9:00 AM - 5:00 PM<br>Friday: 9:00 AM - 5:00 PM</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta. We regularly treat patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, you can <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and browse some <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia photos</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your male breast reduction surgery will be performed by one of the best gynecomastia surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gynecomastia surgery</a>, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: One of the most common surgeries performed is a standard adult gynecomastia procedure. Adult gyno is commonly a result of a hormonal imbalance between estrogen and testosterone that creates excess breast gland tissue. While there can be several causes of this, sometimes the reasons are unknown.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: As young boys go through puberty, there are changes in the natural levels of testosterone and estrogen in the body. While many of these cases resolve over time, some teenagers may need to resort to surgery in order to get rid of the condition for good.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: A common theme in anabolic steroids and prohormone users is bodybuilder gynecomastia. The use of these drugs can trigger the onset of enlarged breasts, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery would be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Not all enlarged male breasts are due to excess glandular tissue. There are times when simply excess breast fat tissue is the culprit. In these cases, the condition is called pseudogynecomastia. While this is possible, often individuals have a combination of both excess gland and excess fat breast tissue.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it. This is usually a mild form of gynecomastia that surgery can remedy.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: Although gynecomastia can occur at any age, it becomes increasingly common among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males, who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>No matter what type of gynecomastia you are experiencing, the Atlanta Gynecomastia Center is here to help. Be sure to schedule your appointment today and get started on your journey.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-29 22:53:06','2024-03-29 22:53:06','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4416',0,'revision','',0),(4418,5,'2024-03-30 22:21:07','2024-03-30 22:21:07','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3418_88ec3d-37\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3418_faea3d-2d\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3418_faea3d-2d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_0ee6c0-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_0ee6c0-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_0ee6c0-3e\">Are you wondering whether or not you are a candidate for gynecomastia surgery? At the Atlanta Gynecomastia Center, we\'re here to offer guidance and support.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_d60c57-c0\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_d60c57-c0 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_d60c57-c0\">It can be both physically uncomfortable and emotionally challenging to have enlarged breasts. Our gynecomastia plastic surgeons understand this, and their primary goal is to provide you with clarity about your options. We take a personalized approach, considering factors like the severity of the condition, your overall health, and what you realistically hope to achieve.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3418_4e8d0f-13\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3418_4e8d0f-13 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3418_4e8d0f-13\">By working through these important factors together, we can better help make a decision that\'s right for you. At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who is a Candidate for Gynecomastia Surgery? </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery may be recommended for individuals facing significant enlargement of breast tissue, which is causing psychological discomfort and/or physical limitations. Suitable candidates for gynecomastia surgery typically include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Persistent gynecomastia despite lifestyle changes</strong>: If you\'ve tried diet and exercise but haven\'t seen improvement in the appearance of your chest, surgery may offer a more effective solution.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Realistic expectations about the outcomes of the surgery</strong>: It\'s essential to have a clear understanding of what gynecomastia surgery can and cannot achieve. Our team will work closely with you to ensure you have realistic expectations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Individuals who are in good overall health</strong>: Good physical health is crucial for a safe surgery and optimal recovery. Your surgeon will assess your medical history and current health status to determine if you\'re a suitable candidate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Men with stabilized breast development</strong>: Gynecomastia surgery is typically recommended for individuals whose breast development has stabilized. Adolescents may be considered for surgery after puberty has concluded and gynecomastia persists.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\"><strong>Types of Candidates</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There can be a variety of candidates out there looking for <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia surgery near Atlanta</a>. Just some of the main <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gyno</a> candidates include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adult Men:</strong> Many adults consider gynecomastia surgery to address the challenge of enlarged male breasts. This demographic often experiences hormonal imbalances, aging, or medication effects <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">that contribute to gynecomastia</a>. If you\'re an adult dealing with this issue, surgical intervention can effectively restore a more masculine chest contour and alleviate any associated distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Adolescents:</strong> Adolescent boys often encounter persistent gynecomastia during a crucial phase of physical and emotional growth. The enlargement of breast tissue can induce self-consciousness, which impacts both social interactions and self-esteem. Although <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a> might naturally resolve, surgical interventions can be a viable solution when the condition lingers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Seniors</strong>: Among seniors, gynecomastia becomes more prevalent as individuals age. This can be caused by hormonal shifts, medication usage, and age-related health issues at more <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">senior stages of life</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bodybuilders:</strong> When bodybuilders incorporate supplements into their routines, they may inadvertently face gynecomastia. <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Anabolic steroid consumption</a> can disrupt the balance of testosterone and estrogen leading to enlarged breast tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Post Weight Loss</strong>: Gynecomastia isn\'t solely confined to puberty or specific medical conditions. It can also affect adult males, especially those who\'ve <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">undergone substantial weight loss</a>. In such cases, lingering excess skin and tissue can result in the appearance of enlarged breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the unique needs and motivations of each group of candidates is crucial for tailoring surgical approaches to address their concerns effectively. At the Atlanta Gynecomastia Center, we\'re here to assist you in finding the best path forward.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benefits from Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery offers more than just physical transformations. It can also bring about significant improvements in emotional well-being and overall quality of life. Here are some of the advantages it provides:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Improved Self-Confidence and Body Image:</strong> Correcting gynecomastia isn\'t just about physical changes - it\'s about boosting self-confidence and feeling better about your body. With surgery, you can achieve a more masculine chest shape, which gives you the confidence to handle social situations with ease.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduction of Excess Breast Tissue:</strong> Gynecomastia surgery gets to the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">root of the issue</a> by reducing enlarged breast tissue, leading to a flatter, more sculpted chest. Besides the visual improvements, this reduction also relieves physical discomfort, making everyday activities more comfortable.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Enhanced Chest Contour and Symmetry:</strong> When it comes to gynecomastia surgery, techniques like liposuction and gland excision help shape the chest for a more balanced look. This isn\'t just about improving how it looks - it\'s about creating symmetry and proportion that contribute to an overall balanced physique.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Relief from Physical Discomfort or Pain:</strong> For many dealing with gynecomastia, the weight and volume of excess breast tissue can cause physical discomfort or pain. Gynecomastia surgery offers a solution, providing much-needed relief from these issues. It helps individuals live a more comfortable lifestyle without the restrictions imposed by enlarged breast tissue.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Increased Ability to Participate in Physical Activities:</strong> After surgery, individuals find themselves able to participate in physical activities and exercises without the limitations imposed by gynecomastia. With a flatter, more contoured chest, they can pursue fitness goals and outdoor adventures with a fresh sense of enthusiasm.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Knowing about these advantages gives individuals the confidence to make informed choices about gynecomastia surgery. At the Atlanta Gynecomastia Center, our process involves several important stages. From your first consultation to your post-operative care, each step is carefully planned to guarantee a safe, comfortable, and satisfying journey for our patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery in Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are several steps to follow while starting gynecomastia surgery. Every stage aims to guarantee patient safety and satisfaction while producing the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Consultation:</strong> The journey begins with an <a href=\"https://atlantagynecomastia.com/contact/\">initial consultation</a> with a board-certified plastic surgeon. During this meeting, patients articulate their goals, medical history, and concerns regarding gynecomastia. This collaborative exchange lays the foundation for personalized treatment plans tailored to address individual needs and expectations. At this point, patients will also get a better sense of what the overall <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">cost of gynecomastia surgery</a> will be for themselves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pre-operative Assessment:</strong> Before proceeding with surgery, a thorough evaluation of breast tissue, chest anatomy, and overall health is carried out to determine the most appropriate surgical approach. This careful assessment allows our surgical team to develop a personalized strategy aimed at achieving the best results while minimizing any potential risks or complications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> The surgical procedure involves a range of techniques tailored to meet the unique needs of individual patients. Depending on the severity of gynecomastia, surgical interventions may include liposuction, excision of glandular tissue, or a combination of both. The aim is to achieve optimal chest contour and symmetry for each patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia:</strong> Before gynecomastia surgery, patients are typically given either <a href=\"https://emedicine.medscape.com/article/1271543-overview\">general anesthesia</a> or local anesthesia with sedation to keep them comfortable and safe. Anesthesia experts carefully watch over the process to manage any risks and make sure patients have the best possible results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Incision Placement:</strong> Choosing the right spots for incisions in gynecomastia surgery is key to minimizing visible scars and for precisely removing excess breast tissue and fat. Surgeons use advanced techniques to hide incisions in natural body lines, so the <a href=\"https://atlantagynecomastia.com/before-after-results/\">results look good</a> and there\'s hardly any sign of surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tissue Removal:</strong> We carefully remove excess glandular tissue and fat, using a mix of liposuction and surgical excision techniques. With this technique, the chest is shaped to suit the individual anatomy and aesthetic preferences, resulting in a more natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Chest Contouring:</strong> During surgery, the chest is reshaped and sculpted, aiming for ideal symmetry and proportion. Surgeons use their expertise and artistic eye to sculpt the chest contours, ensuring they blend seamlessly with surrounding anatomical features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Closure:</strong> As the surgery nears its end, the final step involves carefully closing incisions with sutures and applying dressings or compression garments. These measures support healing and reduce post-operative swelling, helping to ensure positive long-term results for patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post-Surgery Expectations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you decide to move forward with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, there are a handful of things to consider once it is complete.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>After gynecomastia surgery, temporary swelling, bruising, and discomfort are normal. However, these symptoms can be effectively managed with prescribed pain medication and by wearing compression garments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Patients are encouraged to follow activity restrictions and refrain from engaging in strenuous exercise for a specified period. This helps promote proper healing and reduces the risk of complications.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Regular follow-up appointments with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our gynecomastia doctors</a> are essential to monitor progress, remove sutures, and address any concerns or questions that may arise during the recovery process.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You can anticipate a gradual improvement in chest contour and a reduction in swelling over the course of several weeks to months following surgery. Final results usually become evident around six to twelve months post-surgery. Additionally, scars from incisions tend to fade over time and become less noticeable with proper care and protection from the sun.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize the significant impact gynecomastia surgery can have on confidence and overall well-being. Our team is dedicated to providing personalized care and exceptional results, to empower each individual during their gynecomastia journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in the Atlanta or other nearby areas, we invite you to schedule a <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Are You a Candidate for Gynecomastia Surgery?','','inherit','closed','closed','','3418-revision-v1','','','2024-03-30 22:21:07','2024-03-30 22:21:07','',3418,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4418',0,'revision','',0),(4420,5,'2024-03-30 22:27:09','2024-03-30 22:27:09','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">It is normal to have concerns and <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions regarding the expenses and insurance coverage of gynecomastia surgery</a> in Atlanta. These factors have the potential to greatly influence how you make decisions.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s take a look at these factors to ease your concerns and show you how they relate to your situation. Together, we can examine these variables to make sure you start your gynecomastia journey feeling knowledgeable and confident.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is your premier destination for male breast reduction surgery in the Peach State. If you\'re thinking about going down the procedure path, knowing the costs involved with gynecomastia surgery is crucial </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Atlanta can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Atlanta Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> The qualifications, experience, and reputation of our surgeons at the Atlanta Gynecomastia Center factor into the cost of surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery can influence the overall cost. This can come in forms of local anesthesia, intravenous sedation, or general anesthesia. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we provide transparent pricing structures to ensure you have a comprehensive understanding of all expenses involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The following factors should be taken into account when estimating gynecomastia surgery prices in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: To ensure your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: To cover the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: This includes medical tests and consultations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflects the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000 taking everything into account. A consultation with our doctors will give you a better sense of what the cost of surgery would look like for your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000+</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases, which leads to higher costs. In such cases, a more in-depth surgical approach is required, often involving the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Atlanta Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Atlanta Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It can be difficult to navigate insurance coverage for gynecomastia surgery. This is because most insurance companies classify it as a cosmetic procedure, which means it is usually not covered. Even if gynecomastia is stressful for the patient, insurance companies frequently refuse to acknowledge this.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, so it is worth discussing with our office. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ considers various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at the Atlanta Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Atlanta Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-30 22:27:09','2024-03-30 22:27:09','',1668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4420',0,'revision','',0),(4421,3,'2024-03-30 22:33:10','2024-03-30 22:33:10','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Top]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction, as needed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to empower you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gyno Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost effective as possible. Patient safety is  always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gyno Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, Alpharetta, <a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a>, Fulton County, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-30 22:33:10','2024-03-30 22:33:10','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4421',0,'revision','',0),(4422,3,'2024-03-30 22:33:31','2024-03-30 22:33:31','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Top]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction, as needed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to empower you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gyno Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost effective as possible. Patient safety is  always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gyno Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Bottom]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, Alpharetta, <a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a>, Fulton County, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-30 22:33:31','2024-03-30 22:33:31','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4422',0,'revision','',0),(4424,3,'2024-03-30 22:34:05','2024-03-30 22:34:05','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_adaea6-e8\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_300c7c-6d\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_300c7c-6d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_4cd47a-64\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_4cd47a-64 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_4cd47a-64\">Get in contact with the Atlanta Gynecomastia Center to plan your free consultation and see if surgery is the right option for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_27a8f8-f9\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Contact]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_27a8f8-f9 kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_27a8f8-f9_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_27a8f8-f9_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_27a8f8-f9_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_27a8f8-f9_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_27a8f8-f9_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_27a8f8-f9\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-03-30 22:34:05','2024-03-30 22:34:05','',3071,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4424',0,'revision','',0),(4425,3,'2024-03-30 22:36:15','2024-03-30 22:36:15','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Top]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction, as needed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to empower you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can manifest at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gyno Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost effective as possible. Patient safety is  always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gyno Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Bottom]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, Alpharetta, <a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a>, Fulton County, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-30 22:36:15','2024-03-30 22:36:15','',1329,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4425',0,'revision','',0),(4426,5,'2024-03-30 22:38:24','2024-03-30 22:38:24','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">It is normal to have concerns and <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions regarding the expenses and insurance coverage of gynecomastia surgery</a> in Atlanta. These factors have the potential to greatly influence how you make decisions.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s take a look at these factors to ease your concerns and show you how they relate to your situation. Together, we can examine these variables to make sure you start your gynecomastia journey feeling knowledgeable and confident.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is your premier destination for male breast reduction surgery in the Peach State. If you\'re thinking about going down the procedure path, knowing the costs involved with gynecomastia surgery is crucial </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Atlanta can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Atlanta Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> The qualifications, experience, and reputation of our surgeons at the Atlanta Gynecomastia Center factor into the cost of surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery can influence the overall cost. This can come in forms of local anesthesia, intravenous sedation, or general anesthesia. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we provide transparent pricing structures to ensure you have a comprehensive understanding of all the expenses included.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The following factors should be taken into account when estimating gynecomastia surgery prices in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: To ensure your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: To cover the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: This includes medical tests and consultations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflects the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000 taking everything into account. A consultation with our doctors will give you a better sense of what the cost of surgery would look like for your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000+</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases. This in turn leads to higher costs. In such cases, a more in-depth surgical approach is required, which involves the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Atlanta Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Atlanta Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It can be difficult to navigate insurance coverage for gynecomastia surgery. This is because most insurance companies classify it as a cosmetic procedure, which means it is usually not covered. Even if gynecomastia is stressful for the patient, insurance companies frequently refuse to acknowledge this.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, so it is worth discussing with our office. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ considers various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at the Atlanta Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Atlanta Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-30 22:38:24','2024-03-30 22:38:24','',1668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4426',0,'revision','',0),(4429,5,'2024-03-30 22:51:57','2024-03-30 22:51:57','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8d7bfa-b6\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_a9a99c-c9\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_a9a99c-c9\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_97f102-72\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_97f102-72 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_97f102-72\">If you\'re considering gynecomastia surgery, it\'s important to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d735e8-57\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d735e8-57 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d735e8-57\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_b08339-a6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_b08339-a6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_b08339-a6\">Read over the timeline below to get a better understanding of what our top <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Atlanta gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery also varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider. As you go through your pre-op appointments, you will get a better overall sense of what to expect for your surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A thorough preparation is essential before undergoing gynecomastia surgery. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, lifestyle changes, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time, as well as some other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will carefully perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate postoperative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support your newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Most patients notice a noticeable decrease in bruising and swelling by the third or fourth week after surgery, as their chest contour continues to improve.  Following your surgeon\'s guidance, light exercise and physical activities may be gradually reintroduced. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 2-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. Soon enough, you will be able to fully appreciate your new and improved chest.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_20245c-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e8c001-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e8c001-33\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_217828-aa\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_217828-aa wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_217828-aa\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_d9f72e-b2\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_d9f72e-b2 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_4c0574-b7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_4c0574-b7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics. In these cases, your surgeon may prescribe anti-nausea meds to help.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_f83497-ad\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_f83497-ad\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_0c6274-ff\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_0c6274-ff wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_0c6274-ff\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_255ae6-13\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_255ae6-13\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_545e52-1e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_545e52-1e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_545e52-1e\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening. These gentle movements help promote proper blood circulation, which aids in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_878bdf-72\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_878bdf-72\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_c252cd-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_c252cd-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_e3be40-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_e3be40-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_561560-d7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_561560-d7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_18610d-8a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_18610d-8a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_8a91b0-a3\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_8a91b0-a3\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s important to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_e6169f-cd\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_e6169f-cd\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_788f10-f6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_788f10-f6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_07cfa9-17\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_07cfa9-17\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_d1b87b-5c\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_c6e786-30\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_c6e786-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Additional Things to Know During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_954f98-28\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_954f98-28 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_954f98-28\">As you recover from surgery at the Atlanta Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_bf8ca5-44\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_bf8ca5-44 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_51df90-99\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_51df90-99\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_72c6dc-9f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_72c6dc-9f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_258758-3e\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_258758-3e wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_258758-3e\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_e33fa6-4c\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_e33fa6-4c\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_1609d4-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_1609d4-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, you should resist the urge to scratch the affected area, as it can potentially disrupt the healing process. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_3a3a26-d0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_3c7563-42\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_3c7563-42\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to recovering from gynecomastia surgery, there are a lot questions out there. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Pre & Post Surgery Timeline','','inherit','closed','closed','','1666-revision-v1','','','2024-03-30 22:51:57','2024-03-30 22:51:57','',1666,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4429',0,'revision','',0),(4431,5,'2024-03-30 22:53:20','2024-03-30 22:53:20','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery at the Atlanta Gynecomastia Center? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our Atlanta gynecomastia doctors</a>. This can also give you a better sense if you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-30 22:53:20','2024-03-30 22:53:20','',1563,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4431',0,'revision','',0),(4433,5,'2024-03-30 22:57:26','2024-03-30 22:57:26','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the subject of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to understand that in numerous cases, the root cause of gynecomastia remains unknown. In such cases, hormonal imbalance may not serve as the primary reason.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. This condition typically resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue usually resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Substance abuse such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels This is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting excess testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of teenagers will have some signs of gynecomastia by the age of 14. It is largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This is a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist. In these cases, surgical intervention to address the issue may be necessary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another substance abuse problem that is noticeably more common than illicit drug usage is alcoholism.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role due to its high content of phytoestrogens, plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects similar to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels. This process typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Professional bodybuilders frequently experience gynecomastia due to the use of anabolic drugs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may cause the body to convert excess testosterone into estrogen. In many cases this can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Two main factors explain why there are more cases of gynecomastia in people with higher body fat. First, there is an accumulation of fat in the chest area, and second, enhanced estrogen levels increase the chance of breast gland tissue formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On top of that, heightened levels of fat also precipitate a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This conversion takes place mostly in adipose tissue, which makes up around 85% of the process. Therefore, the more fat tissue there is, the more prominent the possible increase in estrogen levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens (the male hormones).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This insufficiency may result from a number of different things, such as radiation exposure, mechanical trauma, or medical disorders that harm the testes. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium. This can result in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. It\'s crucial to remember that even if these side effects do occur, you shouldn\'t automatically stop taking your prescription. Instead, being informed enables you to handle any possible hormonal shifts with the right actions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Atlanta Gynecomastia Specialist</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Atlanta or any surrounding areas, feel free to schedule an appointment at the Atlanta Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with an Atlanta gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-30 22:57:26','2024-03-30 22:57:26','',1525,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4433',0,'revision','',0),(4434,3,'2024-03-30 22:57:31','2024-03-30 22:57:31','<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How to Reach Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Feel free to call the Atlanta Gynecomastia Center at (203) 441-1113 to book your free consultation. We are easily accessible from many nearby cities, and eager to help you with your gynecomastia questions and concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><span style=\"text-decoration: underline;\">Hours of Operation<br></span></strong>Monday: 9:00 AM - 5:00 PM<br>Tuesday: 9:00 AM - 5:00 PM<br>Wednesday: 9:00 AM - 5:00 PM<br>Thursday: 9:00 AM - 5:00 PM<br>Friday: 9:00 AM - 5:00 PM</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta. We regularly treat patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, you can <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and browse some <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia photos</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your male breast reduction surgery will be performed by one of the&nbsp;best gynecomastia surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gynecomastia surgery</a>, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: One of the most common surgeries performed is a standard adult gynecomastia procedure. Adult gyno is commonly a result of a hormonal imbalance between estrogen and testosterone that creates excess breast gland tissue. While there can be several causes of this, sometimes the reasons are unknown.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: As young boys go through puberty, there are changes in the natural levels of testosterone and estrogen in the body. While many of these cases resolve over time, some teenagers may need to resort to surgery in order to get rid of the condition for good.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: Bodybuilder gynecomastia is a common theme among people who use anabolic steroids and prohormones. These drugs can trigger the onset of enlarged breasts, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery might be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Not all enlarged male breasts are due to excess glandular tissue. There are times when simply excess breast fat is the culprit. In these cases, the condition is called pseudogynecomastia. While this is sometimes the case, often individuals have a combination of both excess gland tissue and excess breast fat.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it. This is usually a mild form of gynecomastia that surgery can resolve.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: Although gynecomastia can occur at any age, it becomes increasingly common among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>No matter what type of gynecomastia you are experiencing, the Atlanta Gynecomastia Center is here to help. Schedule a free consultation today and get started on your journey to a more confident and comfortable self.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-30 22:57:31','2024-03-30 22:57:31','',1484,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4434',0,'revision','',0),(4436,5,'2024-03-30 22:59:39','2024-03-30 22:59:39','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the subject of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to understand that in numerous cases, the root cause of gynecomastia remains unknown. In such cases, hormonal imbalance may not serve as the primary reason.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. This condition typically resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue usually resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Substance abuse such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels This is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting excess testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of teenagers will have some signs of gynecomastia by the age of 14. It is largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This is a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist. In these cases, surgical intervention to address the issue may be necessary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another substance abuse problem that is noticeably more common than illicit drug usage is alcoholism.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role due to its high content of phytoestrogens. These are plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects similar to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels. This process typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Professional bodybuilders frequently experience gynecomastia due to the use of anabolic drugs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may cause the body to convert excess testosterone into estrogen. In many cases, this can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Two main factors explain why there are more cases of gynecomastia in people with higher body fat. First, there is an accumulation of fat in the chest area, and second, enhanced estrogen levels increase the chance of breast gland tissue formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On top of that, heightened levels of fat also can cause a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This conversion takes place mostly in adipose tissue, which makes up around 85% of the process. Therefore, the more fat tissue there is, the more prominent the possible increase in estrogen levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens (the male hormones).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This insufficiency may result from a number of different things, such as radiation exposure, mechanical trauma, or medical disorders that harm the testes. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium. This can result in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. It\'s crucial to remember that even if these side effects do occur, you shouldn\'t automatically stop taking your prescription. Instead, being informed enables you to handle any possible hormonal shifts with the right actions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Atlanta Gynecomastia Specialist</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Atlanta or any surrounding areas, feel free to schedule an appointment at the Atlanta Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with an Atlanta gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-30 22:59:39','2024-03-30 22:59:39','',1525,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4436',0,'revision','',0),(4438,5,'2024-03-30 23:00:57','2024-03-30 23:00:57','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_604d9d-fc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_e87d4a-48\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_e87d4a-48\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_6e7ad2-dd\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_6e7ad2-dd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_6e7ad2-dd\">Gynecomastia is caused by a variety of factors, including medical conditions, medications, substance use, aging, and several others. However, at the core of these causes is the subject of hormonal imbalance. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_587469-47\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_587469-47 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_587469-47\">Fluctuations in testosterone and estrogen levels can upset the body\'s balance, resulting in male breast development. Understanding this fundamental principle and the factors that contribute to it is crucial in effectively managing gynecomastia.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_62af47-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1525_62af47-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_62af47-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">What Causes Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> stems from an imbalance of estrogen and testosterone. This involves an excess of estrogen, a deficiency of testosterone, or a combination of both. It is important to understand this imbalance when thinking about ways to reduce gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Enlargement of male breast tissue, which is frequently caused by this hormonal imbalance, is the main sign of gynecomastia.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, it\'s essential to understand that in numerous cases, the root cause of gynecomastia remains unknown. In such cases, hormonal imbalance may not serve as the primary reason.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also important to consider that man boobs can also be caused by excess adipose (fatty) tissue in the breast. This can be a standalone issue (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>), or it can frequently be an issue in combination with excess breast gland tissue. If excess fat accumulation is the only problem in your chest area, true gynecomastia causes may not be the primary culprit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_36adf2-a9\",\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_d405ee-21\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_d405ee-21\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_4d1751-3d\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_4d1751-3d kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_7bf356-cc\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_7bf356-cc\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Infancy</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_f51903-d9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_f51903-d9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_f51903-d9\">Male infants might experience transient gynecomastia due to residual estrogen passed from their mothers during pregnancy. This condition typically resolves over time.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1525_83d3c4-b1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1525_83d3c4-b1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Adolescence</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ecfb2b-f6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ecfb2b-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ecfb2b-f6\">During puberty, hormonal fluctuations can trigger temporary gynecomastia. Fortunately, this issue usually resolves within a span of six months to two years as the body adjusts to hormonal changes.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1525_979bc9-74\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1525_979bc9-74\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Substance Abuse</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_248f84-81\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_248f84-81 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_248f84-81\">Substance abuse such as alcohol, methamphetamine, marijuana, heroin, and methadone.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_4af130-27\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_4af130-27\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Medications</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_83ccfb-c3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_83ccfb-c3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_83ccfb-c3\">Various medications, including but not limited to anti-androgens, HIV treatments, anabolic steroids, anti-anxiety medications, chemotherapy drugs, ulcer medications, heart medications, and specific antibiotics.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_3f7222-2e\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_3f7222-2e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/accordion {\"uniqueID\":\"1525_fefaf2-b0\",\"paneCount\":5,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBgColor\":\"palette9\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"contentMobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"titleStyles\":[{\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"600\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"marginTop\":16,\"color\":\"palette3\",\"background\":\"palette7\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette7\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[\"sm\",\"sm\",\"sm\",\"sm\"]}],\"titleBorder\":[{\"top\":[\"palette9\",\"\",0],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette9\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"#eeeeee\",\"\",\"\"],\"left\":[\"#0e9cd1\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette9\"}} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1525_fefaf2-b0 kt-accordion-has-5-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1525_2fb961-ea\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1525_2fb961-ea\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Aging</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_56f9f2-ee\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[null,\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"rem\"} -->\n<p class=\"kt-adv-heading1525_56f9f2-ee wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_56f9f2-ee\">As men age, there\'s a gradual decline in testosterone levels This is a common occurrence, particularly after the age of 50.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1525_8c3c37-97\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1525_8c3c37-97\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Anabolic Steroids</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_ce761e-75\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_ce761e-75 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_ce761e-75\">While steroids can elevate testosterone levels, the body might react by converting excess testosterone into estrogen.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1525_e260f1-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1525_e260f1-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>High Body Fat %</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_90d242-e2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_90d242-e2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_90d242-e2\">High body fat percentage can result in heightened fat accumulation in the chest area and elevated estrogen levels.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1525_1711ea-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1525_1711ea-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\"><strong><strong>Underlying Health Conditions</strong></strong></span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1525_acf7c5-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1525_acf7c5-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1525_acf7c5-a9\">Various health conditions can contribute to or worsen gynecomastia. These include hypogonadism, specific cancers, hyperthyroidism, kidney or liver failure, cirrhosis, and malnutrition or starvation.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1525_a1b47a-a0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1525_5e9c03-49\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1525_5e9c03-49\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Infancy and Puberty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Infant boys and adolescents entering puberty may experience transient gynecomastia. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In infants, this is attributed to residual maternal estrogen and typically resolves within a few months. For adolescents, hormonal fluctuations during puberty lead to the condition, which generally resolves within 6 months to 2 years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\"><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Gynecomastia is common in adolescent boys</a>. As many as 60% of teenagers will have some signs of gynecomastia by the age of 14. It is largely due to the hormonal changes we all undergo during puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">This is a typical phase of puberty, and the symptoms typically subside within a span of two years. However, in some instances, the symptoms of gynecomastia may persist. In these cases, surgical intervention to address the issue may be necessary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Substance Abuse &amp; Alcoholism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">The excessive use of certain <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/\" target=\"_blank\" rel=\"noreferrer noopener\">substances can lead to cases of gynecomastia</a>. Such substances include heroin, methadone, marijuana, methamphetamine, and other members of the amphetamine family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another substance abuse problem that is noticeably more common than illicit drug usage is alcoholism.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beer, in particular, plays a significant role due to its high content of phytoestrogens. These are plant-based compounds known for their estrogen-mimicking effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While not conclusively proven, some scientists speculate that excessive intake of phytoestrogens may result in effects similar to those induced by elevated levels of true estrogen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Aging</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As men age, there\'s a gradual decline in testosterone levels. This process typically initiates around the age of 30 and persists throughout life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals over the age of 50 are especially susceptible to developing gynecomastia. It\'s estimated that up to 65% of men in this age bracket may <a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">develop senior gyno</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Anabolic Steroids</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Professional bodybuilders frequently experience gynecomastia due to the use of anabolic drugs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">These steroids encourage testosterone production, which in turn may cause the body to convert excess testosterone into estrogen. In many cases, this can lead to <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">bodybuilder gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">High Body Fat Percentage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Two main factors explain why there are more cases of gynecomastia in people with higher body fat. First, there is an accumulation of fat in the chest area, and second, enhanced estrogen levels increase the chance of breast gland tissue formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On top of that, heightened levels of fat also can cause a decrease in testosterone and an elevation in estrogen levels. This is facilitated by an enzyme called aromatase, responsible for converting testosterone into estrogen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This conversion takes place mostly in adipose tissue, which makes up around 85% of the process. Therefore, the more fat tissue there is, the more prominent the possible increase in estrogen levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Hypogonadism</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Hypogonadism refers to a condition characterized by insufficient levels of androgens (the male hormones).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This insufficiency may result from a number of different things, such as radiation exposure, mechanical trauma, or medical disorders that harm the testes. Alternatively, it may result from impairment of the pituitary gland or hypothalamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Chronic Diseases</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Disorders affecting the liver and kidneys, along with hyperthyroidism, have the potential to disrupt hormonal equilibrium. This can result in elevated estrogen levels and diminished androgens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, hyperthyroidism can induce an upsurge in androgen levels, which paradoxically triggers a rise in estrogen. This occurs as the excess androgens undergo conversion by the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has--font-size\">Prescription Medications</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Many cases of gynecomastia can be attributed to the use of prescription medications. These include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/iconlist {\"uniqueID\":\"1525_d98fac-2a\",\"icon\":\"fe_check\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1525_d98fac-2a kt-svg-icon-list-columns-1 alignnone\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1525_a2e104-d1\",\"icon\":\"fe_check\",\"text\":\"Ulcer medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_a2e104-d1\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Ulcer medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f3382a-1a\",\"text\":\"HIV medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f3382a-1a\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">HIV medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_5d34bd-69\",\"text\":\"Antipsychotics\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_5d34bd-69\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antipsychotics</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_aa5428-95\",\"text\":\"Antidepressants\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_aa5428-95\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antidepressants</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_b084af-f3\",\"text\":\"Certain heart disease medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_b084af-f3\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Certain heart disease medications</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_f931eb-da\",\"text\":\"Antiandrogens\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_f931eb-da\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Antiandrogens</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1525_ba59ad-ef\",\"text\":\"Hypertension medications\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1525_ba59ad-ef\"><span data-name=\"USE_PARENT_DEFAULT_ICON\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Hypertension medications</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Consult with your doctor to determine whether the medications you are taking could potentially decrease testosterone levels or elevate estrogen production. It\'s crucial to remember that even if these side effects do occur, you shouldn\'t automatically stop taking your prescription. Instead, staying informed enables you to handle any possible hormonal shifts with the right actions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact a Atlanta Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you are in Atlanta or any surrounding areas, feel free to schedule an appointment at the Atlanta Gynecomastia Center and let us help you <a href=\"https://atlantagynecomastia.com/before-after-results/\">achieve your ideal results</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our compassionate team is here to provide personalized care and effective solutions tailored to your needs. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule your consultation with an Atlanta gyno surgeon</a> and take the first step towards addressing your gynecomastia.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Causes of Gynecomastia','','inherit','closed','closed','','1525-revision-v1','','','2024-03-30 23:00:57','2024-03-30 23:00:57','',1525,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4438',0,'revision','',0),(4439,3,'2024-03-30 23:01:47','2024-03-30 23:01:47','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the premier gynecomastia surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gynecomastia surgery</a>, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery might be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of genuine gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive male breast reduction surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-30 23:01:47','2024-03-30 23:01:47','',3725,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4439',0,'revision','',0),(4441,5,'2024-03-30 23:48:46','2024-03-30 23:48:46','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2743_a53603-80\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2743_a53603-80\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_3508b0-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_3508b0-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_3508b0-e3\">When it comes to gynecomastia, there are many frequently asked questions out there. We\'re here to help answer all of your questions about the condition – from gynecomastia causes to available treatment options and much more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_02193c-71\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_02193c-71 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_02193c-71\">At the Atlanta Gynecomastia Center, <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our doctors</a> specialize in providing personalized care for each patient. We prioritize that you have all the relevant information you need to better help you understand the condition and its treatment.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2743_29b44d-3c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2743_29b44d-3c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2743_29b44d-3c\">Whether you\'re considering surgery or simply want to learn more, our team is committed to supporting you every step of the way on your gynecomastia journey.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910677156\",\"question\":[\"What is gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/what-is-gyno/\",\"children\":[\"Gynecomastia\"]}},\" refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\",\"children\":[\"nipple area\"]}},\". The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"],\"jsonQuestion\":\"What is gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/what-is-gyno/\\u0022\\u003eGynecomastia\\u003c/a\\u003e refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\\u0022\\u003enipple area\\u003c/a\\u003e. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.\"},{\"id\":\"faq-question-1709910685355\",\"question\":[\"How does gynecomastia differ from pseudo-gynecomastia?\"],\"answer\":[\"While gynecomastia involves the growth of glandular breast tissue, \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\" refers to the enlargement of the breasts due to excess fatty tissue. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"],\"jsonQuestion\":\"How does gynecomastia differ from pseudo-gynecomastia?\",\"jsonAnswer\":\"While gynecomastia involves the growth of glandular breast tissue, \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e refers to the enlargement of the breasts due to excess fatty tissue. Distinguishing between the two conditions is essential for determining appropriate treatment options.\"},{\"id\":\"faq-question-1709910693736\",\"question\":[\"Is gynecomastia a serious medical condition?\"],\"answer\":[\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\",\"children\":[\"adolescent males\"]}},\" to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"],\"jsonQuestion\":\"Is gynecomastia a serious medical condition?\",\"jsonAnswer\":\"While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\\u0022\\u003eadolescent males\\u003c/a\\u003e to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.\"},{\"id\":\"faq-question-1710953681359\",\"question\":[\"Is gynecomastia common?\"],\"answer\":[\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"],\"jsonQuestion\":\"Is gynecomastia common?\",\"jsonAnswer\":\"Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.\"},{\"id\":\"faq-question-1710953692814\",\"question\":[\"How is gynecomastia diagnosed?\"],\"answer\":[\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"],\"jsonQuestion\":\"How is gynecomastia diagnosed?\",\"jsonAnswer\":\"Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910677156\"><strong class=\"schema-faq-question\">What is gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> refers to the enlargement of breast tissue in males. This often causes a noticeable swelling or protrusion in the chest and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple area</a>. The condition can occur at any age and is typically benign, though it may cause physical discomfort and psychological distress.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910685355\"><strong class=\"schema-faq-question\">How does gynecomastia differ from pseudo-gynecomastia?</strong> <p class=\"schema-faq-answer\">While gynecomastia involves the growth of glandular breast tissue, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a> refers to the enlargement of the breasts due to excess fatty tissue. Distinguishing between the two conditions is essential for determining appropriate treatment options.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910693736\"><strong class=\"schema-faq-question\">Is gynecomastia a serious medical condition?</strong> <p class=\"schema-faq-answer\">While gynecomastia itself isn\'t usually a serious health risk, it can cause emotional distress, discomfort, or embarrassment for those affected (anyone from <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent males</a> to seniors). However, underlying conditions that contribute to gynecomastia may require medical attention.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953681359\"><strong class=\"schema-faq-question\">Is gynecomastia common?</strong> <p class=\"schema-faq-answer\">Yes, gynecomastia is relatively common, affecting up to 65% of adolescent males and a significant percentage of adult men as well. While it often resolves on its own, some cases may require medical intervention, such as surgery, to address the excess breast tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953692814\"><strong class=\"schema-faq-question\">How is gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Diagnosis of gynecomastia involves a physical examination by a healthcare professional. These examinations may include blood tests and imaging studies to rule out underlying causes. Additionally, a detailed medical history and discussion of symptoms are essential for accurate diagnosis.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Causes of Gynecomastia</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953726656\",\"question\":[\"What are the common causes of gynecomastia?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"Gynecomastia is commonly caused\"]}},\" by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"],\"jsonQuestion\":\"What are the common causes of gynecomastia?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eGynecomastia is commonly caused\\u003c/a\\u003e by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.\"},{\"id\":\"faq-question-1710953773062\",\"question\":[\"Can medications induce gynecomastia?\"],\"answer\":[\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\",\"children\":[\"anabolic steroids\"]}},\". Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"],\"jsonQuestion\":\"Can medications induce gynecomastia?\",\"jsonAnswer\":\"Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\\u0022\\u003eanabolic steroids\\u003c/a\\u003e. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.\"},{\"id\":\"faq-question-1710953784230\",\"question\":[\"Is gynecomastia associated with specific medical conditions?\"],\"answer\":[\"Gynecomastia may occur as a symptom of various medical conditions such as \",{\"type\":\"a\",\"props\":{\"href\":\"https://pubmed.ncbi.nlm.nih.gov/2310274/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"liver disease\"]}},\", hyperthyroidism, and certain types of tumors.\"],\"jsonQuestion\":\"Is gynecomastia associated with specific medical conditions?\",\"jsonAnswer\":\"Gynecomastia may occur as a symptom of various medical conditions such as \\u003ca href=\\u0022https://pubmed.ncbi.nlm.nih.gov/2310274/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eliver disease\\u003c/a\\u003e, hyperthyroidism, and certain types of tumors.\"},{\"id\":\"faq-question-1710953794577\",\"question\":[\"Can lifestyle factors contribute to gynecomastia?\"],\"answer\":[\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"],\"jsonQuestion\":\"Can lifestyle factors contribute to gynecomastia?\",\"jsonAnswer\":\"Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953726656\"><strong class=\"schema-faq-question\">What are the common causes of gynecomastia?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by hormonal imbalance between estrogen and testosterone levels. This imbalance can be due to medications, certain medical conditions, and lifestyle factors such as obesity or excessive alcohol consumption. In other cases, there are simply unknown reasons behind gynecomastia.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953773062\"><strong class=\"schema-faq-question\">Can medications induce gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, several medications are known to cause or exacerbate gynecomastia, including certain antidepressants, antipsychotics, antiandrogens, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>. Understanding the potential side effects of medications and discussing alternatives with a healthcare provider is crucial for managing gynecomastia effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953784230\"><strong class=\"schema-faq-question\">Is gynecomastia associated with specific medical conditions?</strong> <p class=\"schema-faq-answer\">Gynecomastia may occur as a symptom of various medical conditions such as <a href=\"https://pubmed.ncbi.nlm.nih.gov/2310274/\" target=\"_blank\" rel=\"noreferrer noopener\">liver disease</a>, hyperthyroidism, and certain types of tumors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953794577\"><strong class=\"schema-faq-question\">Can lifestyle factors contribute to gynecomastia?</strong> <p class=\"schema-faq-answer\">Yes, lifestyle factors such as obesity, excessive alcohol consumption, and illicit drug use can contribute to the development of gynecomastia. Adopting a healthy lifestyle, including regular exercise and balanced nutrition, may help prevent or mitigate gynecomastia in some cases.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710953822720\",\"question\":[\"Does gynecomastia always require treatment?\"],\"answer\":[\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"],\"jsonQuestion\":\"Does gynecomastia always require treatment?\",\"jsonAnswer\":\"No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.\"},{\"id\":\"faq-question-1709910790680\",\"question\":[\"What are the treatment options for gynecomastia?\"],\"answer\":[\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, and surgical procedures like liposuction or excision of glandular tissue.\"],\"jsonQuestion\":\"What are the treatment options for gynecomastia?\",\"jsonAnswer\":\"Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, and surgical procedures like liposuction or excision of glandular tissue.\"},{\"id\":\"faq-question-1709910796611\",\"question\":[\"Is surgery the only solution for gynecomastia?\"],\"answer\":[\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"],\"jsonQuestion\":\"Is surgery the only solution for gynecomastia?\",\"jsonAnswer\":\"While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.\"},{\"id\":\"faq-question-1710953848802\",\"question\":[\"Can gynecomastia resolve on its own?\"],\"answer\":[\"Yes, in many cases, gynecomastia may resolve on its own, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"],\"jsonQuestion\":\"Can gynecomastia resolve on its own?\",\"jsonAnswer\":\"Yes, in many cases, gynecomastia may resolve on its own, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710953822720\"><strong class=\"schema-faq-question\">Does gynecomastia always require treatment?</strong> <p class=\"schema-faq-answer\">No, not all cases of gynecomastia require treatment, especially if the condition is mild and does not cause significant physical discomfort or psychological distress. However, individuals experiencing bothersome symptoms or seeking cosmetic improvement may opt for treatment options such as surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910790680\"><strong class=\"schema-faq-question\">What are the treatment options for gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options vary depending on the underlying cause and severity of gynecomastia. They may include lifestyle changes, discontinuing the use of medications or substances, hormone therapy, and surgical procedures like liposuction or excision of glandular tissue.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910796611\"><strong class=\"schema-faq-question\">Is surgery the only solution for gynecomastia?</strong> <p class=\"schema-faq-answer\">While surgery, such as glandular incision or liposuction, is often considered for severe or persistent cases of gynecomastia, it\'s not the only option. Less invasive treatments, such as hormone therapy or lifestyle modifications, may be effective for some individuals. This is mostly the case if the condition is mild or if it is due to reversible factors.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953848802\"><strong class=\"schema-faq-question\">Can gynecomastia resolve on its own?</strong> <p class=\"schema-faq-answer\">Yes, in many cases, gynecomastia may resolve on its own, particularly during adolescence or within a few years of onset. However, factors including the root cause and individual physiology affect the length of time and chance of quick resolution.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedures</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910857245\",\"question\":[\"What is gynecomastia surgery?\"],\"answer\":[\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"],\"jsonQuestion\":\"What is gynecomastia surgery?\",\"jsonAnswer\":\"Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.\"},{\"id\":\"faq-question-1709910862706\",\"question\":[\"What are the potential risks and complications of gynecomastia surgery?\"],\"answer\":[\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"],\"jsonQuestion\":\"What are the potential risks and complications of gynecomastia surgery?\",\"jsonAnswer\":\"Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.\"},{\"id\":\"faq-question-1710953878859\",\"question\":[\"Who is a candidate for gynecomastia surgery?\"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia surgery\"]}},\" typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"],\"jsonQuestion\":\"Who is a candidate for gynecomastia surgery?\",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia surgery\\u003c/a\\u003e typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910857245\"><strong class=\"schema-faq-question\">What is gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery involves the removal of excess breast tissue and fat to achieve a flatter, more masculine chest contour. This procedure can utilize techniques such as liposuction, excision of glandular tissue, or a combination of both, depending on the individual\'s specific needs.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910862706\"><strong class=\"schema-faq-question\">What are the potential risks and complications of gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Like any surgical procedure, gynecomastia surgery carries risks, including infection, bleeding, changes in nipple sensation, scarring, and asymmetry. It\'s essential to discuss these potential risks with our qualified surgeon and weigh them against the potential benefits of the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953878859\"><strong class=\"schema-faq-question\">Who is a candidate for gynecomastia surgery?</strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia surgery</a> typically include individuals who have persistent gynecomastia, good overall health, and realistic expectations regarding the outcome of the procedure. A thorough evaluation by a qualified plastic surgeon is essential to determine candidacy and to plan an appropriate treatment approach.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Recovery and Follow-Up</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910882168\",\"question\":[\"What is the recovery process like after gynecomastia surgery?\"],\"answer\":[\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery?\",\"jsonAnswer\":\"Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.\"},{\"id\":\"faq-question-1709910887685\",\"question\":[\"Are there any long-term effects after gynecomastia surgery?\"],\"answer\":[\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"],\"jsonQuestion\":\"Are there any long-term effects after gynecomastia surgery?\",\"jsonAnswer\":\"While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.\"},{\"id\":\"faq-question-1710953910505\",\"question\":[\"How long does it take to see the final results after gynecomastia surgery?\"],\"answer\":[\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"],\"jsonQuestion\":\"How long does it take to see the final results after gynecomastia surgery?\",\"jsonAnswer\":\"While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.\"},{\"id\":\"faq-question-1710953929868\",\"question\":[\"Can gynecomastia recur after surgery?\"],\"answer\":[\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"],\"jsonQuestion\":\"Can gynecomastia recur after surgery?\",\"jsonAnswer\":\"While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.\"},{\"id\":\"faq-question-1710954111126\",\"question\":[\"When can I resume normal activities after gynecomastia surgery?\"],\"answer\":[\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"],\"jsonQuestion\":\"When can I resume normal activities after gynecomastia surgery?\",\"jsonAnswer\":\"Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.\"},{\"id\":\"faq-question-1710954127862\",\"question\":[\"Will I need to wear a compression garment after surgery?\"],\"answer\":[\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"],\"jsonQuestion\":\"Will I need to wear a compression garment after surgery?\",\"jsonAnswer\":\"Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910882168\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Recovery following gynecomastia surgery typically involves a period of rest and limited physical activity. In addition, patients will wear compression garments to minimize swelling and support healing. Most patients can resume normal activities within a few weeks, although full recovery may take several months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910887685\"><strong class=\"schema-faq-question\">Are there any long-term effects after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia surgery can provide significant improvement in the appearance of the chest, it\'s important to maintain a healthy lifestyle to prevent the recurrence of breast tissue enlargement. Regular follow-up appointments with your surgeon are also recommended to monitor healing and address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953910505\"><strong class=\"schema-faq-question\">How long does it take to see the final results after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">While initial improvements may be noticeable soon after surgery, it may take several months for swelling to fully resolve and for the final results of gynecomastia surgery to become apparent. Following post-operative care instructions and attending follow-up appointments with the surgeon are crucial for optimizing outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710953929868\"><strong class=\"schema-faq-question\">Can gynecomastia recur after surgery?</strong> <p class=\"schema-faq-answer\">While gynecomastia recurrence after surgery is relatively uncommon, it is possible, especially if underlying hormonal imbalances or other predisposing factors are not addressed. Maintaining a healthy lifestyle and attending regular follow-up appointments with the surgeon can help detect and address any recurrence early on.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954111126\"><strong class=\"schema-faq-question\">When can I resume normal activities after gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Most patients can gradually resume light activities within a few days to a week after surgery. However, strenuous exercise and heavy lifting should be avoided for several weeks to ensure proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954127862\"><strong class=\"schema-faq-question\">Will I need to wear a compression garment after surgery?</strong> <p class=\"schema-faq-answer\">Yes, wearing a compression garment as instructed by your surgeon is essential to minimize swelling. It will also support the surgical area, and promote optimal healing during the initial recovery period.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cost and Insurance Coverage</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709910903667\",\"question\":[\"How much does gynecomastia surgery typically cost?\"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"price of gynecomastia surgery\"]}},\" fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"],\"jsonQuestion\":\"How much does gynecomastia surgery typically cost?\",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003eprice of gynecomastia surgery\\u003c/a\\u003e fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.\"},{\"id\":\"faq-question-1709910914981\",\"question\":[\"Is gynecomastia surgery covered by insurance?\"],\"answer\":[\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical or psychological discomfort. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance?\",\"jsonAnswer\":\"Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical or psychological discomfort. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.\"},{\"id\":\"faq-question-1710954004734\",\"question\":[\"Is financing available?\"],\"answer\":[\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \",{\"type\":\"a\",\"props\":{\"href\":\"https://www.carecredit.com/\",\"target\":\"_blank\",\"rel\":\"noreferrer noopener\",\"children\":[\"CareCredit\"]}},\". These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"],\"jsonQuestion\":\"Is financing available?\",\"jsonAnswer\":\"Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and \\u003ca href=\\u0022https://www.carecredit.com/\\u0022 target=\\u0022_blank\\u0022 rel=\\u0022noreferrer noopener\\u0022\\u003eCareCredit\\u003c/a\\u003e. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709910903667\"><strong class=\"schema-faq-question\">How much does gynecomastia surgery typically cost?</strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">price of gynecomastia surgery</a> fluctuates based on multiple factors, including the severity of the condition, the specific surgical approach, facility charges, and anesthesia expenses. Typically, the total cost could range from a few thousand to several thousand dollars.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709910914981\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance?</strong> <p class=\"schema-faq-answer\">Gynecomastia surgery might be eligible for insurance coverage in very select instances where it\'s deemed medically necessary to alleviate physical or psychological discomfort. However, eligibility for coverage depends on certain insurance policies, and getting pre-authorization can be required.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710954004734\"><strong class=\"schema-faq-question\">Is financing available?</strong> <p class=\"schema-faq-answer\">Patients seeking financing options for gynecomastia surgery can explore options like PatientFi and <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CareCredit</a>. These platforms offer flexible payment plans tailored to individual needs. This allows patients to manage the cost of surgery over time with convenient monthly payments. By utilizing these financing solutions, individuals can undergo gynecomastia surgery without facing a significant financial burden upfront.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709911025675\",\"question\":[\"Why should I choose the Atlanta Gynecomastia Center?\"],\"answer\":[\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"],\"jsonQuestion\":\"Why should I choose the Atlanta Gynecomastia Center?\",\"jsonAnswer\":\"Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.\"},{\"id\":\"faq-question-1709911031003\",\"question\":[\"What sets the Atlanta Gynecomastia Center apart from other facilities?\"],\"answer\":[\"At the Atlanta Gynecomastia Center, we emphasize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/before-after-results/\",\"children\":[\"natural-looking results\"]}},\" with minimal scarring and downtime.\",{\"type\":\"br\",\"props\":{\"children\":[]}},\"Reach out today to schedule your \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/contact/\",\"children\":[\"free in-person or virtual consultation\"]}},\" to get you started on your journey.\"],\"jsonQuestion\":\"What sets the Atlanta Gynecomastia Center apart from other facilities?\",\"jsonAnswer\":\"At the Atlanta Gynecomastia Center, we emphasize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring \\u003ca href=\\u0022https://atlantagynecomastia.com/before-after-results/\\u0022\\u003enatural-looking results\\u003c/a\\u003e with minimal scarring and downtime.\\u003cbr/\\u003eReach out today to schedule your \\u003ca href=\\u0022https://atlantagynecomastia.com/contact/\\u0022\\u003efree in-person or virtual consultation\\u003c/a\\u003e to get you started on your journey.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709911025675\"><strong class=\"schema-faq-question\">Why should I choose the Atlanta Gynecomastia Center?</strong> <p class=\"schema-faq-answer\">Our center is led by board-certified plastic surgeons who specialize in male breast reduction procedures. Additionally, our team has extensive expertise in gynecomastia treatment, employing advanced surgical techniques tailored to each patient\'s unique needs. We prioritize patient safety, satisfaction, and privacy, providing comprehensive support throughout every step of the treatment journey.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709911031003\"><strong class=\"schema-faq-question\">What sets the Atlanta Gynecomastia Center apart from other facilities?</strong> <p class=\"schema-faq-answer\">At the Atlanta Gynecomastia Center, we emphasize patient education, providing comprehensive consultations to discuss treatment options, expectations, and potential outcomes. Our surgeons utilize advanced surgical techniques tailored to each patient\'s unique anatomy, ensuring <a href=\"https://atlantagynecomastia.com/before-after-results/\">natural-looking results</a> with minimal scarring and downtime.<br/>Reach out today to schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free in-person or virtual consultation</a> to get you started on your journey.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Frequently Asked Questions','','inherit','closed','closed','','2743-revision-v1','','','2024-03-30 23:48:46','2024-03-30 23:48:46','',2743,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4441',0,'revision','',0);
INSERT INTO `hyu_posts` VALUES (4443,5,'2024-03-30 23:52:31','2024-03-30 23:52:31','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1551_e25f14-1d\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1551_bbe3f0-60\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1551_bbe3f0-60\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_4a2bd1-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_4a2bd1-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_4a2bd1-56\">Gynecomastia is a condition characterized by the enlargement of breast tissue in males, and it can vary significantly in severity from one individual to another. Understanding the grading system is important in assessing and addressing this condition effectively.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1551_d18c4b-01\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1551_d18c4b-01 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1551_d18c4b-01\">There are four grades along the spectrum, and the gynecomastia plastic surgeons at the Atlanta Gynecomastia Center can help you gain valuable insight into creating treatment plans to suit your unique needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Grades of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The severity of gynecomastia is categorized into stages ranging from grade 1 (mild) to grade 4 (severe). Each one of the stages is distinguished by specific characteristics. Treatment options and associated <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">surgery costs</a> also vary across the stages, with stage 4 requiring a different surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The four stages or grades of gynecomastia are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>From a medical standpoint, it\'s also crucial to understand that gynecomastia entails the overdevelopment of breast <span style=\"text-decoration: underline;\">gland</span> tissue. However, it\'s common for excess breast <span style=\"text-decoration: underline;\">fat</span> tissue to be present as well. When the enlargement of the breast is solely due to excess fatty tissue, this is called <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During a comprehensive <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia procedure</a>, both excess breast gland tissue and excess fat tissue can be addressed and removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4304,\"linkDestination\":\"none\",\"uniqueID\":\"1551_c85220-4d\"} -->\n<figure class=\"wp-block-kadence-image kb-image1551_c85220-4d\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png\" alt=\"Stages and Grades of Gynecomastia Atlanta\" class=\"kb-img wp-image-4304\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\" id=\"overview-of-the-4-grades-of-gynecomastia\">Four Grades of Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let’s take a look in more detail at each stage of <a href=\"https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">gynecomastia</a> and what they entail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-1-gynecomastia-small-growth-without-excess-skin\">Grade 1 Gynecomastia: Small Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Individuals with grade 1 gynecomastia experience minimal breast growth, often accompanied by nipple pain or tenderness. Swelling around the nipple is slight, and there is occasionally some discoloration. The nipple may also appear puffy and sensitive to touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Typically, stage 1 gynecomastia is not apparent when the individual is clothed. However, it may become noticeable in situations where the person is undressed, such as at the beach or swimming pool.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-2-gynecomastia-moderate-growth-without-excess-skin\">Grade 2 Gynecomastia: Moderate Growth without Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 2 gynecomastia is characterized by a more pronounced enlargement of breast tissue that extends across the chest. This moderate growth may be noticeable even when the individual is clothed and becomes particularly prominent in bare-chested situations, which can cause embarrassment or distress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to enlarged breasts, <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">nipple puffiness</a> and tenderness can persist, further adding to the physical and emotional burden of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-3-gynecomastia-moderate-growth-with-excess-skin\">Grade 3 Gynecomastia: Moderate Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Advancing to grade 3 represents a substantial progression in gynecomastia, marked by significant breast tissue development and chest widening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The enlarged breasts become notably pronounced, often visibly protruding through clothing. Moreover, excess skin becomes evident, resulting in a droopy appearance of the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given the heightened visibility and physical changes associated with grade 3 gynecomastia, individuals may experience a significant impact on self-esteem and quality of life, prompting them to seek intervention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\" id=\"grade-4-gynecomastia-significant-growth-with-excess-skin\">Grade 4 Gynecomastia: Significant Growth with Excess Skin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Grade 4 gynecomastia represents the most advanced stage of the condition, where breast enlargement is substantial and resembles female breasts in appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The breasts become highly prominent, often dominating the individual\'s physique, even when clothed. Excess skin becomes more noticeable, contributing to a fuller, drooping appearance of the breasts. Nipple size can also increase significantly, further emphasizing feminine characteristics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Individuals dealing with grade 4 gynecomastia may experience profound emotional distress and encounter significant social challenges, necessitating comprehensive treatment and support.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Get in Touch With an Atlanta Gynecomastia Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand the whole spectrum of gynecomastia and <a href=\"https://atlantagynecomastia.com/before-after-results/\">tailor our approach to address each patient\'s unique needs</a>. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From the initial assessment to customized treatment strategies, our team is committed to delivering compassionate care and empowering individuals to regain their confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are located around Atlanta and are experiencing any sort of gynecomastia symptoms, feel free to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free consultation</a> with our Atlanta gyno plastic surgeon specialists. We are here to help guide you in your decision process and get you going in the right direction.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Grades &amp; Stages','','inherit','closed','closed','','1551-revision-v1','','','2024-03-30 23:52:31','2024-03-30 23:52:31','',1551,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4443',0,'revision','',0),(4445,5,'2024-03-31 00:00:57','2024-03-31 00:00:57','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Atlanta Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Learn About the Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to help - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many cases of gynecomastia, adult gynecomastia usually stems from a hormonal imbalance between testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_a6a290-cb\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_7f0a60-59\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_7f0a60-59\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_3373e6-75\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_3373e6-75\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Bodybuilder Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c2b8c0-86\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c2b8c0-86\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_daa92f-20\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_daa92f-20\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Revision Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_956a28-79\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_51263e-9a\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_51263e-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ef8723-86\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ef8723-86\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue. Instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Psuedo Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c947fa-da\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c947fa-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_d85976-8f\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_d85976-8f\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still cause a great deal of distress for those who are affected.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Puffy Nipple</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_b149ec-63\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_cfadfd-5e\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_cfadfd-5e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ff7631-0e\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ff7631-0e\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">At any age, gynecomastia may develop. However, it becomes more common among seniors due to factors such as hormonal shifts, medications, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Senior Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_fda015-8c\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_fda015-8c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_5923d4-a2\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_5923d4-a2\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Gyno After Weight Loss</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Types of Gynecomastia','','inherit','closed','closed','','1482-revision-v1','','','2024-03-31 00:00:57','2024-03-31 00:00:57','',1482,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4445',0,'revision','',0),(4447,5,'2024-03-31 00:11:11','2024-03-31 00:11:11','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1906_7a5e16-7e\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1906_627159-3c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1906_627159-3c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_e11dac-e9\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_e11dac-e9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_e11dac-e9\">Boys experience a hormonal shift in their bodies when they approach puberty. This can occasionally result in gynecomastia, a condition where changes in testosterone and estrogen levels cause male breasts to grow. In some cases, surgery may be your best option if this doesn\'t resolve on its own.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1906_cf5619-44\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1906_cf5619-44 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1906_cf5619-44\">Contact the Atlanta Gynecomastia Center and <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Adolescent Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adolescence marks a significant phase of development for young boys, involving both physical and hormonal changes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is during this transformative period that fluctuations in testosterone and estrogen levels may contribute to the onset of gynecomastia, a condition characterized by the enlargement of male breast tissue. While many cases of adolescent gynecomastia may naturally resolve over time, persistent symptoms may require intervention, such as surgical correction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we specialize in providing comprehensive care for adolescents dealing with gynecomastia. Our team of dedicated specialists has the expertise to address the unique concerns and challenges faced by these young individuals. With a focus on compassion and precision, we strive to offer tailored solutions to ensure optimal outcomes for our gynecomastia patients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Understanding Adolescent Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Teenage gynecomastia usually appears as a little lump under the nipple, occasionally with pain or soreness. There might also be noticeable swelling of the breast tissue. This condition is most prevalent between the ages of 10 and 13, during the early stages of puberty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The psychological toll of adolescent gynecomastia is significant. Teenagers dealing with this condition often grapple with diminished self-esteem. They may resort to various measures to hide their chests, avoiding activities like swimming or participating in sports. Many suffer on their own, hesitant to confide their concerns with parents or healthcare providers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistent gynecomastia during adolescence may require surgical intervention to alleviate both the physical discomfort and emotional distress experienced by these teenagers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgery Decision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While some instances may resolve naturally with time, there are cases of adolescent gynecomastia where surgery becomes necessary. This is especially true when the condition persists and significantly impacts the individual\'s daily life. Contrary to popular belief, relying solely on <a href=\"https://www.webmd.com/men/best-exercises-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">diet and exercise</a> isn\'t always effective, particularly when there is an excess of glandular tissue involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here at the Atlanta Gynecomastia Center, our team of seasoned gynecomastia surgeons is well-equipped to evaluate the severity of the condition and recommend the most suitable course of action based on <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">the candidacy of each individual</a>. We recognize the delicacy of addressing gynecomastia in teenagers and offer personalized care tailored to each patient\'s unique needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery for Adolescents</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Just like in <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult cases</a>, when it comes to adolescent gynecomastia, the surgical approach varies depending on the specifics of the condition. Typically, adolescent gynecomastia involves an excess of both gland tissue and fatty tissue, sometimes more of one than the other. In certain instances, the issue may be isolated to excess gland tissue alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Addressing adolescent gynecomastia often entails a combination of techniques, such as <a href=\"https://www.plasticsurgery.org/cosmetic-procedures/liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a> to remove excess fatty tissue and direct excision of gland tissue. Usually, the surgical procedure can be conducted with a discreet incision along the lower edge of the areola. This results in minimal scarring, if any, which is often barely noticeable (as you can see in some of the <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after photos</a>).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For adolescents undergoing gynecomastia surgery, the impact on their self-esteem can be immediate and profound. With a restored sense of normalcy in their chest appearance, they no longer feel self-conscious about going shirtless, whether it\'s at the gym, pool, or beach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recovery from gynecomastia surgery in adolescents is usually swift, with most returning to school within days and experiencing minimal discomfort. To achieve the best possible healing results, it is advised to avoid physically demanding activities involving the upper body, such as sports and gym sessions, for about a month.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before we finish up, take a moment to check out some of the <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions that often come up about adolescent gynecomastia</a> and how our team of experts can help with male breast reduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709937434682\",\"question\":[\"What is adolescent gynecomastia?\"],\"answer\":[\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.\"],\"jsonQuestion\":\"What is adolescent gynecomastia?\",\"jsonAnswer\":\"Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.\"},{\"id\":\"faq-question-1709937440273\",\"question\":[\"What causes adolescent gynecomastia?\"],\"answer\":[\"Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/causes-of-gynecomastia/\",\"children\":[\"primary cause of adolescent gynecomastia\"]}},\". However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"],\"jsonQuestion\":\"What causes adolescent gynecomastia?\",\"jsonAnswer\":\"Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the \\u003ca href=\\u0022https://atlantagynecomastia.com/causes-of-gynecomastia/\\u0022\\u003eprimary cause of adolescent gynecomastia\\u003c/a\\u003e. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.\"},{\"id\":\"faq-question-1709937446698\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Is adolescent gynecomastia permanent?\"]}}],\"answer\":[\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eIs adolescent gynecomastia permanent?\\u003c/strong\\u003e\",\"jsonAnswer\":\"While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.\"},{\"id\":\"faq-question-1709937459942\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"When should I seek medical advice for adolescent gynecomastia?\"]}}],\"answer\":[\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eWhen should I seek medical advice for adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.\"},{\"id\":\"faq-question-1709937468303\",\"question\":[\"Can adolescent gynecomastia be prevented?\"],\"answer\":[\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\",\"children\":[\"pseudogynecomastia\"]}},\").\"],\"jsonQuestion\":\"Can adolescent gynecomastia be prevented?\",\"jsonAnswer\":\"Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\\u0022\\u003epseudogynecomastia\\u003c/a\\u003e).\"},{\"id\":\"faq-question-1709937481460\",\"question\":[\"How is adolescent gynecomastia diagnosed?\"],\"answer\":[\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography are suggested to rule out any other potential underlying causes.\"],\"jsonQuestion\":\"How is adolescent gynecomastia diagnosed?\",\"jsonAnswer\":\"Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography are suggested to rule out any other potential underlying causes.\"},{\"id\":\"faq-question-1709937489510\",\"question\":[\"What are the treatment options for adolescent gynecomastia?\"],\"answer\":[\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.\"],\"jsonQuestion\":\"What are the treatment options for adolescent gynecomastia?\",\"jsonAnswer\":\"Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.\"},{\"id\":\"faq-question-1709937501070\",\"question\":[{\"type\":\"strong\",\"props\":{\"children\":[\"Are there any complications associated with adolescent gynecomastia?\"]}}],\"answer\":[\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.\"],\"jsonQuestion\":\"\\u003cstrong\\u003eAre there any complications associated with adolescent gynecomastia?\\u003c/strong\\u003e\",\"jsonAnswer\":\"Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.\"},{\"id\":\"faq-question-1709937515986\",\"question\":[\"Is surgery necessary for adolescent gynecomastia?\"],\"answer\":[\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessary. However, it\'s typically advised after attempting and exhausting other conservative measures.\"],\"jsonQuestion\":\"Is surgery necessary for adolescent gynecomastia?\",\"jsonAnswer\":\"In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessary. However, it\'s typically advised after attempting and exhausting other conservative measures.\"},{\"id\":\"faq-question-1709937522158\",\"question\":[\"What is the prognosis for adolescent gynecomastia?\"],\"answer\":[\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"],\"jsonQuestion\":\"What is the prognosis for adolescent gynecomastia?\",\"jsonAnswer\":\"While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709937434682\"><strong class=\"schema-faq-question\">What is adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Adolescent gynecomastia occurs when boys experience enlargement of breast tissue during puberty. It\'s a frequent occurrence due to hormonal fluctuations and it may clear up on its own within several months to a couple of years.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937440273\"><strong class=\"schema-faq-question\">What causes adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Hormonal imbalance, specifically an increase in estrogen relative to testosterone during puberty, is the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">primary cause of adolescent gynecomastia</a>. However, other factors such as certain medications, genetics, obesity, and underlying medical conditions can contribute to its development.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937446698\"><strong class=\"schema-faq-question\"><strong>Is adolescent gynecomastia permanent?</strong></strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia often fades away on its own as hormone levels stabilize, there are instances where the breast tissue persists. In these cases, additional evaluation and potential treatment are recommended.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937459942\"><strong class=\"schema-faq-question\"><strong>When should I seek medical advice for adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">If gynecomastia persists for over two years, is accompanied by discomfort, tenderness, puffy nipple discharge, or significantly impacts emotional well-being or self-esteem, it\'s recommended to seek consultation with our plastic surgeons at the Atlanta Gynecomastia Center.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937468303\"><strong class=\"schema-faq-question\">Can adolescent gynecomastia be prevented?</strong> <p class=\"schema-faq-answer\">Prevention of adolescent gynecomastia is challenging as it is primarily hormonally driven. However, maintaining a healthy lifestyle, including regular exercise and a balanced diet, can help minimize the risk of developing gynecomastia associated with obesity (<a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>).</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937481460\"><strong class=\"schema-faq-question\">How is adolescent gynecomastia diagnosed?</strong> <p class=\"schema-faq-answer\">Our gynecomastia surgery experts usually conduct a thorough physical examination and review the medical history as part of the diagnosis process. In certain cases, additional imaging studies like ultrasound or mammography are suggested to rule out any other potential underlying causes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937489510\"><strong class=\"schema-faq-question\">What are the treatment options for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">Treatment options for gynecomastia are tailored to the underlying cause and severity of the condition. Gynecomastia frequently resolves on its own, so in certain cases, observation and assurance are adequate. However, in persistent cases, surgery may be necessary for a permanent fix.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937501070\"><strong class=\"schema-faq-question\"><strong>Are there any complications associated with adolescent gynecomastia?</strong></strong> <p class=\"schema-faq-answer\">Although adolescent gynecomastia isn\'t typically harmful physically, it can provoke emotional distress, self-esteem challenges, and psychological issues. Managing underlying medical conditions that trigger gynecomastia may also be necessary to avert potential complications.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937515986\"><strong class=\"schema-faq-question\">Is surgery necessary for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">In cases where gynecomastia persists beyond puberty or causes substantial physical or emotional discomfort, surgery like liposuction or breast gland removal may be necessary. However, it\'s typically advised after attempting and exhausting other conservative measures.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709937522158\"><strong class=\"schema-faq-question\">What is the prognosis for adolescent gynecomastia?</strong> <p class=\"schema-faq-answer\">While adolescent gynecomastia may resolve on its own within a few months to a couple of years without intervention, it\'s important to maintain regular follow-up appointments with our expert gynecomastia specialists. This allows for diligent monitoring of any changes or potential complications, ensuring prompt and appropriate management if necessary.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Free Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your teenager is struggling with gynecomastia near Atlanta, don\'t hesitate to <a href=\"https://atlantagynecomastia.com/contact/\">reach out to the Atlanta Gynecomastia Center</a>. Our dedicated team of specialists is committed to providing compassionate care, and guiding you through each step of your treatment journey. Take the initiative today by scheduling a consultation with us to explore your options and regain confidence in your appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adolescent Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1906-revision-v1','','','2024-03-31 00:11:11','2024-03-31 00:11:11','',1906,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4447',0,'revision','',0),(4449,3,'2024-03-31 00:20:09','2024-03-31 00:20:09','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_29c445-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"padding\":[\"0\",\"\",\"sm\",\"\"],\"margin\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_141269-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_141269-47\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_518c14-3f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_518c14-3f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_518c14-3f\">Are you wondering what your chest may look like after having gynecomastia surgery at the Atlanta Gynecomastia Center? </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_9c317a-55\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_9c317a-55 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_9c317a-55\">Please reach out for our latest before and after photos of our patients who have recently had surgery with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">our Atlanta gynecomastia doctors</a>. This can also give you a better sense of whether you are a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gyno surgery</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1563_3726e8-f6\",\"margin\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1563_3726e8-f6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1563_3726e8-f6\">Feel free to learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages of gynecomastia</a> to understand where you fall on the spectrum, and take a look at what some of our former patients have had to say about <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">their experiences</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1563_3335eb-36\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1563_c00eda-26\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1563_c00eda-26\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Surgery: Before & After Results','','inherit','closed','closed','','1563-revision-v1','','','2024-03-31 00:20:09','2024-03-31 00:20:09','',1563,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4449',0,'revision','',0),(4450,5,'2024-03-31 00:22:43','2024-03-31 00:22:43','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1908_156a45-7f\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1908_119e9b-ae\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1908_119e9b-ae\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_e759fd-33\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_e759fd-33 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_e759fd-33\">In adults, gynecomastia is commonly triggered by hormone imbalances, particularly between testosterone and estrogen. Whether it\'s a shortage of testosterone, an excess of estrogen, or a combination of both, gynecomastia can be an issue for many adults.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1908_4f2d5d-69\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1908_4f2d5d-69 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1908_4f2d5d-69\">If you are suffering from the condition, feel free to reach out to the Atlanta Gynecomastia Center to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free in-person or virtual consultation today</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Adult Gynecomastia?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult gynecomastia is characterized by the abnormal enlargement of breast tissue in males. While it can occur at any age, it often becomes more noticeable during adulthood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, particularly between testosterone and estrogen, are a primary cause. These two hormones regulate breast tissue growth in both men and women. When there\'s an imbalance between them, it can lead to the development of excess glandular tissue in the breasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4305,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta-1024x586.png\" alt=\"What is Gynecomastia Atlanta\" class=\"wp-image-4305\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to distinguish between true gynecomastia, involving excess glandular tissue, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">pseudogynecomastia</a>, characterized by excess fat accumulation in the chest area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>True gynecomastia typically results from hormonal imbalances, while pseudogynecomastia is often associated with factors such as obesity, poor diet, and lack of exercise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A thorough evaluation by our qualified Atlanta gynecomastia specialists can help determine the underlying cause and disclose the most appropriate treatment approach.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"wp-image-4303\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adult <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">gynecomastia is caused by several factors</a>, including hormonal fluctuations, medication side effects, metabolic irregularities, and lifestyle elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One significant contributor is hormonal imbalance, particularly when <a href=\"https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia\" target=\"_blank\" rel=\"noreferrer noopener\">testosterone levels</a> decline in relation to estrogen levels. This shift can occur naturally as men age or due to various medical conditions, medications, or substance use, such as anabolic steroids or marijuana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia has a tremendous effect on psychological well-being in addition to its physical repercussions. Many who struggle with the condition report feeling more self-conscious, embarrassed, and having much lower self-esteem. As a result, individuals might decide to stay away from activities that require them to expose their chest, such as sports or swimming.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Symptoms</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Depending on the severity of the condition and its underlying cause, adult gynecomastia can appear with a range of symptoms. Common signs include the enlargement of breast tissue, tenderness or sensitivity in the nipples, the asymmetrical appearance of the chest, and the presence of palpable breast lumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these physical symptoms, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">individuals affected by gynecomastia</a> may also experience psychological distress. Feelings of anxiety, depression, or social withdrawal are common due to the emotional impact of dealing with gynecomastia. These psychological symptoms can significantly affect a person\'s mental well-being and quality of life. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s important to address both the physical and emotional aspects of gynecomastia when seeking treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Surgical Procedure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Male breast reduction surgery</a> is an effective treatment for persistent gynecomastia. It involves a combination of liposuction to remove excess fat and direct excision of glandular tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the surgery, incisions are strategically placed along the lower edge of the areola to minimize scarring. Our surgeons remove excess glandular tissue and fat deposits to achieve a more masculine chest contour. Depending on the patient\'s goals, additional techniques like skin tightening may be used to enhance the results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What to Expect After Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing adult male breast reduction surgery at the Atlanta Gynecomastia Center, patients can anticipate a swift recovery period, often resuming their usual activities within a few days. To aid in healing and reduce swelling, patients wear a compression garment and refrain from strenuous physical activities for a few weeks to ensure the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prescribed pain medication and proper post-operative care can effectively manage temporary bruising, swelling, and discomfort that are common post-surgery. Adhering closely to our surgeon\'s guidance and attending follow-up appointments is crucial for monitoring progress and addressing any concerns that may arise during the recovery phase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more, you can check out the results comparing <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia surgery</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">FAQs for Adult Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1709940332453\",\"question\":[\"What are the potential risks associated with surgery? \"],\"answer\":[\"Adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications. However, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"],\"jsonQuestion\":\"What are the potential risks associated with surgery? \",\"jsonAnswer\":\"Adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications. However, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.\"},{\"id\":\"faq-question-1709940337693\",\"question\":[\"How long does the recovery period typically last? \"],\"answer\":[\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"],\"jsonQuestion\":\"How long does the recovery period typically last? \",\"jsonAnswer\":\"Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.\"},{\"id\":\"faq-question-1709940343437\",\"question\":[\"Will there be visible scarring after surgery? \"],\"answer\":[\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.\"],\"jsonQuestion\":\"Will there be visible scarring after surgery? \",\"jsonAnswer\":\"Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.\"},{\"id\":\"faq-question-1709940348718\",\"question\":[\"When will I see the final results of the surgery? \"],\"answer\":[\"Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"],\"jsonQuestion\":\"When will I see the final results of the surgery? \",\"jsonAnswer\":\"Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.\"},{\"id\":\"faq-question-1709940362463\",\"question\":[\"Are there any lifestyle changes I need to make before surgery? \"],\"answer\":[\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"],\"jsonQuestion\":\"Are there any lifestyle changes I need to make before surgery? \",\"jsonAnswer\":\"In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.\"},{\"id\":\"faq-question-1709940368435\",\"question\":[\"Can gynecomastia return after surgery? \"],\"answer\":[\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"],\"jsonQuestion\":\"Can gynecomastia return after surgery? \",\"jsonAnswer\":\"While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.\"},{\"id\":\"faq-question-1709940375834\",\"question\":[\"What should I expect during the initial consultation? \"],\"answer\":[\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.\"],\"jsonQuestion\":\"What should I expect during the initial consultation? \",\"jsonAnswer\":\"During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.\"},{\"id\":\"faq-question-1709940386208\",\"question\":[\"How can I ensure the best possible outcome from surgery? \"],\"answer\":[\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team is key to achieving the best results from gynecomastia surgery.\"],\"jsonQuestion\":\"How can I ensure the best possible outcome from surgery? \",\"jsonAnswer\":\"Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team is key to achieving the best results from gynecomastia surgery.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1709940332453\"><strong class=\"schema-faq-question\">What are the potential risks associated with surgery? </strong> <p class=\"schema-faq-answer\">Adult gynecomastia surgery, like any surgical procedure, carries potential risks and complications. However, they are rare and can be minimized by choosing the Atlanta Gynecomastia Center and adhering closely to pre-operative and post-operative instructions.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940337693\"><strong class=\"schema-faq-question\">How long does the recovery period typically last? </strong> <p class=\"schema-faq-answer\">Following surgery, most patients can anticipate returning to their daily routines within a few days. However, to facilitate optimal healing, it\'s advisable to refrain from engaging in strenuous physical activities for several weeks.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940343437\"><strong class=\"schema-faq-question\">Will there be visible scarring after surgery? </strong> <p class=\"schema-faq-answer\">Our skilled surgeons strategically place surgical incisions along the lower edge of the areola to minimize visible scarring, ensuring optimal aesthetic outcomes. With diligent post-operative care and proper healing, these scars tend to fade gradually over time. As the healing process progresses they become less and less noticeable.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940348718\"><strong class=\"schema-faq-question\">When will I see the final results of the surgery? </strong> <p class=\"schema-faq-answer\">Although initial results may be noticeable shortly after surgery, it\'s important to understand that it can take several months for swelling to fully subside and for the final results to become apparent. Patience and strict adherence to post-operative instructions are crucial to achieving the best possible outcomes.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940362463\"><strong class=\"schema-faq-question\">Are there any lifestyle changes I need to make before surgery? </strong> <p class=\"schema-faq-answer\">In addition to surgical intervention, our gynecomastia surgeon specialists may suggest lifestyle adjustments to optimize healing and enhance overall outcomes. These modifications may include quitting smoking, adopting a nutritious diet, and avoiding specific medications or substances known to impede the healing process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940368435\"><strong class=\"schema-faq-question\">Can gynecomastia return after surgery? </strong> <p class=\"schema-faq-answer\">While adult gynecomastia surgery typically yields long-lasting results, there is a slight possibility of recurrence. This can be the case if underlying hormonal imbalances or lifestyle factors remain unaddressed. Therefore, it\'s important for patients to collaborate closely with our medical team to identify and manage any contributing factors to minimize the risk of recurrence.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940375834\"><strong class=\"schema-faq-question\">What should I expect during the initial consultation? </strong> <p class=\"schema-faq-answer\">During your consultation, our surgeon will conduct a comprehensive assessment, which includes reviewing your medical history, performing a physical examination, and engaging in a discussion about your objectives. This consultation serves as an opportunity for you to ask any questions or address any concerns you may have regarding the procedure.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1709940386208\"><strong class=\"schema-faq-question\">How can I ensure the best possible outcome from surgery? </strong> <p class=\"schema-faq-answer\">Following your surgeon\'s instructions, maintaining a healthy lifestyle, attending appointments, and communicating openly with our healthcare team is key to achieving the best results from gynecomastia surgery.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Adult Gynecomastia Recap</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand the physical and emotional impact of adult gynecomastia. We are dedicated to providing personalized treatment solutions tailored to each patient\'s unique needs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to take the first step towards reclaiming your confidence, <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a> with our experienced gynecomastia specialists today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Adult Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1908-revision-v1','','','2024-03-31 00:22:43','2024-03-31 00:22:43','',1908,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4450',0,'revision','',0),(4453,3,'2024-03-31 00:25:01','2024-03-31 00:25:01','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_8f1d9d-b0\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_0bb6e4-04\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_0bb6e4-04\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d0e935-a9\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d0e935-a9 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_d0e935-a9\">If you\'re considering gynecomastia surgery, it\'s important to understand the entire journey - from getting ready for the operation to recovering afterward. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_481c4b-15\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_481c4b-15 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_481c4b-15\">In this overview, we\'ll take you through the entire process, highlighting the important steps before and after surgery. By giving you insight into <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">what to expect</a> and how to navigate your transformation, we aim to help you feel more confident about your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_2f4e7c-64\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_2f4e7c-64 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_2f4e7c-64\">Read over the timeline below to get a better understanding of what our top <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Atlanta gynecomastia doctors</a> will walk you through - before, during, and after surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although each gynecomastia surgery case is unique, there\'s a general timeline you can anticipate. This timeline is pretty consistent across various types of gynecomastia surgeries you might undergo, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gyno Revision Surgery</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia Post Weight Loss</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery also varies according to several factors – for instance, your <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia stage</a> and the <a href=\"https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/\" target=\"_blank\" rel=\"noreferrer noopener\">anesthetic used</a> can be two of the biggest variables to consider. As you go through your pre-op appointments, you will get a better overall sense of what to expect for your surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Pre-Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A thorough preparation is essential before undergoing gynecomastia surgery. This phase involves <a href=\"https://atlantagynecomastia.com/contact/\">consultations with our board-certified plastic surgeon</a> to discuss expectations, medical history, and surgical options. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your surgeon will conduct a physical examination and may recommend additional tests to ensure you are a suitable candidate for surgery. Pre-operative instructions will cover aspects such as medication adjustments, lifestyle changes, and dietary considerations to optimize your surgical outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before the big day, you will also have your <a href=\"https://atlantagynecomastia.com/before-after-results/\">pre-op photos taken</a> and ensure that you’re properly prepared for surgery. You may be given a compression vest during this time, as well as some other items to help with surgical recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Surgery Day</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Preparation</strong><em><strong>:</strong></em> On the day of your surgery, you\'ll arrive at the surgical facility prepared for the procedure. Pre-operative protocols may include fasting before surgery and abstaining from certain medications, as instructed by your surgeon. You\'ll be greeted by the surgical team, including nurses and anesthesiologists, who will guide you through the final pre-operative checks and preparations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Anesthesia</strong><em><strong>:</strong></em> Anesthesia plays a crucial role in ensuring a comfortable and safe surgical experience. Most gynecomastia surgeries are performed under general anesthesia, allowing you to remain unconscious throughout the procedure. Your anesthesiologist will administer the anesthesia intravenously and monitor your vital signs closely throughout the surgery to ensure your safety and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgical Procedure:</strong> The surgical approach for gynecomastia varies depending on the extent of tissue enlargement and the desired outcome. Common techniques include liposuction, excision of glandular tissue, or a combination of both. Your surgeon will carefully perform the planned procedure, sculpting the chest to achieve a more masculine contour while minimizing scarring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Recovery Room</strong><em><strong>:</strong></em> After the completion of the surgery, you\'ll be transferred to a recovery area where you\'ll gradually wake up from anesthesia under the supervision of trained medical staff. Pain management protocols will be initiated to ensure your comfort during the initial recovery period. You may experience some swelling, bruising, and discomfort, which are typical after gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post- Op</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h3 class=\"wp-block-heading has--font-size\">One Day Post-Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In the immediate postoperative period, rest and gentle movement are crucial for a smooth recovery. You\'ll be advised to wear a compression garment to minimize swelling and support your newly contoured chest. Pain medications prescribed by your surgeon will help manage any discomfort as you begin your recovery journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 1-2: </h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>During the first week following surgery, you\'ll gradually transition back to your normal activities, avoiding strenuous exercise and heavy lifting as instructed. Follow-up appointments with your surgeon will allow for an assessment of your progress. Swelling and bruising will gradually subside, revealing the initial results of your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Week 3-4</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Most patients notice a noticeable decrease in bruising and swelling by the third or fourth week after surgery, as their chest contour continues to improve.  Following your surgeon\'s guidance, light exercise and physical activities may be gradually reintroduced. It\'s essential to maintain regular communication with your doctor to address any concerns and ensure a successful recovery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Months 2-6</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As you progress into the months following surgery, the final results of gynecomastia surgery will become more apparent. The chest contour will continue to improve, and any residual swelling or firmness will gradually diminish. Soon enough, you will be able to fully appreciate your new and improved chest.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_9d9696-09\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_540f9e-64\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_540f9e-64\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_d55d18-ac\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_d55d18-ac wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_d55d18-ac\">Although the above gives a general overview of a post-gynecomastia-surgery timeline, it doesn’t account for everything that might happen after your surgery. Here is some more helpful information.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_cf4cc7-ed\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_cf4cc7-ed kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_3d441c-84\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_3d441c-84\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nausea</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>While surgeons often opt for anti-nausea anesthesia, nausea can still occur due to medications like painkillers and antibiotics. In these cases, your surgeon may prescribe anti-nausea meds to help.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_b75693-4a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_b75693-4a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Hydration</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_1e16cd-bc\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_1e16cd-bc wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_1e16cd-bc\">During your gynecomastia surgery recovery, maintaining proper hydration is key. Be sure to drink plenty of fluids, especially during the initial weeks post-surgery. Keeping yourself well-hydrated supports your body\'s healing process and overall recovery.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_c480e1-57\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_c480e1-57\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Limit Physical Output</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_54d8d7-a2\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_54d8d7-a2 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_54d8d7-a2\">For the first two weeks post-surgery, it\'s crucial to refrain from strenuous activities, including lifting, exercise, and sexual activity. However, it\'s beneficial to engage in light activities such as short walks in the evening. These gentle movements help promote proper blood circulation, which aids in your recovery process.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_4c6fb2-e7\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_4c6fb2-e7\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Showering</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>In the initial 2-3 days following surgery, it\'s advisable to refrain from showering altogether. After this period, you can resume showering, but remember to remove your compression vest beforehand.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"1666_210852-34\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane1666_210852-34\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Driving</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>It\'s important to refrain from driving for at least three days following your surgery. Additionally, if you\'re still taking pain medication beyond this period, it\'s advisable to continue avoiding driving until you\'ve stopped taking the medication altogether.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"1666_6e71d2-80\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane1666_6e71d2-80\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Incision</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, the incisions made by your surgeon will typically be sutured. In many cases, surgeons use sutures that are designed to dissolve on their own over time, eliminating the need for removal. Additionally, surgical tape is often applied over the incisions to provide further support and protection during the initial stages of healing.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"1666_140359-5a\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane1666_140359-5a\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Aspirin</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Aspirin is known to act as a blood thinner, which can interfere with the healing process following gynecomastia surgery. Therefore, it\'s advised to avoid using aspirin for at least a week post-surgery. Instead, you can safely use alternatives such as Tylenol or prescription pain medications as directed by your surgeon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":8,\"uniqueID\":\"1666_ffb01e-fe\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-8 kt-pane1666_ffb01e-fe\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Work</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to work after gynecomastia surgery depends on the nature of your job. For office or remote work, you may resume within three days post-surgery. However, if your job involves physical activity, it may require a bit more time. Depending on the intensity, it could take up to two weeks before returning to work.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":9,\"uniqueID\":\"1666_c7303d-f0\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-9 kt-pane1666_c7303d-f0\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Exercise</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Returning to exercise after gynecomastia surgery requires a gradual approach. Lower-body exercises can resume in about two weeks, while upper-body exercises may need to wait 6-8 weeks. After three months, all exercises, including high-impact ones, are typically permitted. It\'s important to listen to your body and avoid overdoing it. If you feel chest discomfort during exercise, take it as a sign to slow down.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":10,\"uniqueID\":\"1666_1e337d-d6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-10 kt-pane1666_1e337d-d6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Medication</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Always follow your surgeon\'s instructions regarding medication intake after gynecomastia surgery. If you experience any adverse effects, contact your surgeon for guidance. Additionally, be vigilant about checking for any contraindications before starting new medications.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":11,\"uniqueID\":\"1666_59c10d-e2\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-11 kt-pane1666_59c10d-e2\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Sunlight</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>To promote optimal healing, it\'s best to avoid direct sunlight on your incisions for at least three months post-surgery. While it\'s possible to expose the wounds to sunlight after six weeks, it\'s not recommended. If unavoidable, apply sunscreen with at least SPF15 to the incisions to protect them from potential damage.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":12,\"uniqueID\":\"1666_438f5c-b5\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-12 kt-pane1666_438f5c-b5\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Bruising</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Post-surgery bruising is a common occurrence and is typically a natural part of the healing process. While it may be concerning, especially in the early stages of recovery, rest assured that bruising usually resolves on its own over time as your body heals. However, if you notice any unusual or prolonged bruising, it\'s important to consult with your surgeon for further evaluation and guidance to ensure a smooth recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_138bcc-01\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_e9eeb5-dc\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_e9eeb5-dc\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Additional Things to Know During Gynecomastia Surgery Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_e3f05a-43\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"lg\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[760,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1666_e3f05a-43 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1666_e3f05a-43\">As you recover from surgery at the Atlanta Gynecomastia Center, you may notice or experience the following:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/accordion {\"uniqueID\":\"1666_04d408-f0\",\"paneCount\":12,\"startCollapsed\":true,\"textColor\":\"palette3\",\"linkColor\":\"palette1\",\"linkHoverColor\":\"palette2\",\"contentBorderStyle\":[{\"top\":[\"\",\"\",0],\"right\":[\"\",\"\",0],\"bottom\":[\"palette5\",\"\",0],\"left\":[\"\",\"\",0],\"unit\":\"px\"}],\"contentPadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"contentMobilePadding\":[\"sm\",\"sm\",\"0\",\"md\"],\"titleStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"sm\",\"md\",\"0\",\"0\"],\"marginTop\":18,\"color\":\"palette3\",\"background\":\"palette9\",\"border\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"palette3\",\"backgroundHover\":\"\",\"borderHover\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"\",\"borderActive\":[\"\",\"\",\"\",\"\"],\"textTransform\":\"\",\"paddingMobile\":[18,10,0,10]}],\"titleBorder\":[{\"top\":[\"palette3\",\"\",1],\"right\":[\"#eeeeee\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",0],\"left\":[\"#eeeeee\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderHover\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderActive\":[{\"top\":[\"palette3\",\"\",\"\"],\"right\":[\"palette3\",\"\",\"\"],\"bottom\":[\"palette3\",\"\",\"\"],\"left\":[\"palette3\",\"\",\"\"],\"unit\":\"px\"}],\"titleBorderRadius\":[0,0,0,0],\"iconStyle\":\"arrow\",\"iconColor\":{\"standard\":\"palette6\",\"active\":\"palette6\",\"hover\":\"palette5\"},\"iconSide\":\"left\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-id1666_04d408-f0 kt-accordion-has-12-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrow kt-accodion-icon-side-left\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\"><!-- wp:kadence/pane {\"uniqueID\":\"1666_c60d33-bb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane1666_c60d33-bb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Swelling in the Chest</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Following gynecomastia surgery, it\'s common to experience mild swelling and tenderness in the treated area. This natural physiological response to trauma is nothing to be alarmed about. Swelling can persist for up to three months post-surgery and may even be asymmetrical, with one breast appearing more swollen than the other. While this may seem concerning, it\'s typically part of the healing process and should gradually improve over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"1666_87a51c-08\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane1666_87a51c-08\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Scarring and Scar Tissue</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1666_9352af-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1666_9352af-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1666_9352af-ea\">Ideally, the scars from your gynecomastia surgery will gradually fade within about a year after the procedure. Your doctor will closely monitor the progression of your scars during follow-up appointments to assess their healing and determine if any additional scar treatment is necessary. With proper care and monitoring, most patients achieve excellent scar outcomes over time, allowing them to enjoy the full benefits of their surgery with minimal visible reminders.</p>\n<!-- /wp:kadence/advancedheading --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"1666_b1a1f7-b6\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane1666_b1a1f7-b6\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Nipple Sensitivity</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>After gynecomastia surgery, changes in nipple sensitivity are common. Initially, you may experience hypersensitivity or temporary loss of sensation, which typically resolves over a few months. Sharp shooting pains in the nipples may occur occasionally, signaling nerve healing, and usually diminish over time.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane -->\n\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"1666_87532f-8f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane1666_87532f-8f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">Itching</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\"><!-- wp:paragraph -->\n<p>Itching is a common occurrence after surgical procedures as the body heals. However, you should resist the urge to scratch the affected area, as it can potentially disrupt the healing process. Instead, gentle measures like applying cool compresses or using prescribed anti-itch medications can help alleviate discomfort without compromising your recovery.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:kadence/pane --></div></div></div>\n<!-- /wp:kadence/accordion --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1666_0a9ad7-c3\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1666_05cf5d-47\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1666_05cf5d-47\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Recovery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We get a lot of questions around what recovering from gynecomastia surgery is like. Here are some answers to the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1706820717127\",\"question\":[\"How Long Does it Take to Heal After Gynecomastia Surgery?\"],\"answer\":[\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"],\"jsonQuestion\":\"How Long Does it Take to Heal After Gynecomastia Surgery?\",\"jsonAnswer\":\"While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.\"},{\"id\":\"faq-question-1706820730860\",\"question\":[\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\"],\"answer\":[\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"],\"jsonQuestion\":\"How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?\",\"jsonAnswer\":\"You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.\"},{\"id\":\"faq-question-1706820740973\",\"question\":[\"How Long Does Swelling Last After Gyno Surgery?\"],\"answer\":[\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"],\"jsonQuestion\":\"How Long Does Swelling Last After Gyno Surgery?\",\"jsonAnswer\":\"With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.\"},{\"id\":\"faq-question-1706820752562\",\"question\":[\"How Do You Sleep After Gynecomastia Surgery?\"],\"answer\":[\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"],\"jsonQuestion\":\"How Do You Sleep After Gynecomastia Surgery?\",\"jsonAnswer\":\"Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.\"},{\"id\":\"faq-question-1706820769758\",\"question\":[\"How Long After Gyno Surgery Can I Work Out?\"],\"answer\":[\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"],\"jsonQuestion\":\"How Long After Gyno Surgery Can I Work Out?\",\"jsonAnswer\":\"The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.\"},{\"id\":\"faq-question-1706820779596\",\"question\":[\"How Can You Shape Your Chest After Gynecomastia Surgery?\"],\"answer\":[\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"],\"jsonQuestion\":\"How Can You Shape Your Chest After Gynecomastia Surgery?\",\"jsonAnswer\":\"Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.\"},{\"id\":\"faq-question-1706820797560\",\"question\":[\"What Can You Not Do After Gyno Surgery?\"],\"answer\":[\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"],\"jsonQuestion\":\"What Can You Not Do After Gyno Surgery?\",\"jsonAnswer\":\"After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1706820717127\"><strong class=\"schema-faq-question\">How Long Does it Take to Heal After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">While you may start feeling better within a few weeks after gynecomastia surgery, full recovery typically takes several months. However, you can usually resume your normal daily activities within 4-6 weeks post-surgery. Note that you might need to wait a little while longer to engage in extensive exercise.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820730860\"><strong class=\"schema-faq-question\">How Long Do I Have to Wear a Compression Garment After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">You should wear your compression garment continuously, except during showers, for at least 4 weeks post-surgery. For optimal results, continue wearing it half-day for an additional 2 weeks. This garment aids in reducing swelling and supports proper healing.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820740973\"><strong class=\"schema-faq-question\">How Long Does Swelling Last After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">With the use of a compression garment, you should notice a gradual decrease in swelling during the 4-6 weeks following gynecomastia surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820752562\"><strong class=\"schema-faq-question\">How Do You Sleep After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, it\'s crucial to sleep on your back for at least three days to promote optimal healing and minimize discomfort in the treated area. Sleeping at a 45-degree angle can further support the healing process and alleviate any potential discomfort. This position helps reduce pressure on the surgical site and ensures proper blood circulation.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820769758\"><strong class=\"schema-faq-question\">How Long After Gyno Surgery Can I Work Out?</strong> <p class=\"schema-faq-answer\">The timeline for resuming exercise after gynecomastia surgery varies depending on the intensity of the activity. Lower-body exercises can typically be resumed around two weeks post-surgery, while upper-body and high-intensity activities may need to wait until around two months.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820779596\"><strong class=\"schema-faq-question\">How Can You Shape Your Chest After Gynecomastia Surgery?</strong> <p class=\"schema-faq-answer\">Once fully healed, you can start chest exercises like flys, bench presses, and push-ups to sculpt your chest. Cardio activities such as running, swimming, or HIIT can also help tone your physique overall.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1706820797560\"><strong class=\"schema-faq-question\">What Can You Not Do After Gyno Surgery?</strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, it\'s important to avoid strenuous exercise, heavy lifting, and direct sun exposure. Additionally, refrain from scratching or picking at incisions and be sure to wear the compression garment as directed by your surgeon.</p> </div> </div>\n<!-- /wp:yoast/faq-block --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Pre & Post Surgery Timeline','','inherit','closed','closed','','1666-revision-v1','','','2024-03-31 00:25:01','2024-03-31 00:25:01','',1666,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4453',0,'revision','',0),(4454,5,'2024-03-31 00:29:36','2024-03-31 00:29:36','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1911_02131a-dc\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1911_04f87e-da\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1911_04f87e-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_851a0b-a3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_851a0b-a3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_851a0b-a3\">Are you a bodybuilder who is struggling with gynecomastia? At the Atlanta Gynecomastia Center, we offer tailored solutions designed specifically for individuals like you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_db0a35-4a\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_db0a35-4a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_db0a35-4a\">Our team of specialists understands the distinctive needs and concerns that bodybuilders encounter with gynecomastia. We are dedicated to providing comprehensive support and care at every step of the way.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_b09326-b7\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_b09326-b7 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_b09326-b7\">In this overview, we dive into bodybuilder gynecomastia, examining its root causes, symptoms, available surgical interventions, post-operative recovery, and addressing common questions surrounding gyno. We\'re here to accompany you every step of the way on your journey toward resolution and renewed confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1911_9e7485-ae\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1911_9e7485-ae wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1911_9e7485-ae\">Contact the Atlanta Gynecomastia Center today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free virtual or in-person consultation</a>.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Bodybuilder Gynecomastia</strong> Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bodybuilder gynecomastia can be a genuine concern among fitness enthusiasts. The development of enlarged breast tissue in male individuals often arises due to the use of <a href=\"https://www.dea.gov/factsheets/steroids\" target=\"_blank\" rel=\"noreferrer noopener\">anabolic steroids</a> or prohormones. These substances are commonly utilized to enhance muscle growth and physical performance, albeit at the expense of disrupting the body\'s natural hormonal balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, there are risks associated with the consumption of other bodybuilding supplements. Some products marketed to enthusiasts may contain undisclosed steroid or hormone-like ingredients, further exacerbating the risk of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When the hormonal balance is compromised, excess glandular tissue beneath the areola can appear. This results in the recognizable appearance of larger breasts in men. Understanding the impact of steroid-induced gynecomastia is crucial for those dedicated to their fitness journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Understanding the Causes</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The main reason bodybuilders experience gynecomastia often boils down to their use of anabolic steroids or prohormones. These substances are popular among those looking to bulk up and improve performance. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But here\'s the thing: these synthetic hormones mimic testosterone, which can affect the natural balance between estrogen and testosterone in the body. This disruption can lead to the growth of breast tissue, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causing gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes, patients know they\'re taking these substances. Other times, they might be taking something they think is just a harmless supplement, not realizing it contains steroids or prohormones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Unfortunately, even if bodybuilders later quit using those substances, gynecomastia can persist. Those in the fitness world must understand these risks and how to avoid them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Symptoms</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying gynecomastia symptoms among bodybuilders is essential for timely intervention and management. One of the hallmark signs is the presence of firm breast tissue beneath the areola, often accompanied by tenderness or sensitivity. These symptoms parallel those seen in standard <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gynecomastia</a> and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">adolescent gynecomastia</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, it\'s not just physical discomfort that bodybuilders may face. Gynecomastia can take a toll on mental well-being too. Many individuals experience psychological distress and a dip in self-esteem due to the appearance of enlarged breasts. This can disrupt their confidence and hinder their performance both in and out of the gym.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In more severe instances, gynecomastia may cause asymmetry between the breasts, resulting in further discomfort and aesthetic concerns. Some individuals might even experience nipple discharge, indicating a more advanced stage of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognizing these symptoms early on is very important. It allows for prompt intervention, which can prevent the progression of gynecomastia and aid in restoring a more masculine chest contour. By staying vigilant and seeking professional guidance, bodybuilders can effectively address gynecomastia correctly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Surgical Procedure</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery for bodybuilders typically employs a dual approach, combining liposuction with direct excision of glandular tissue to attain the desired outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The procedure begins with the removal of excess fatty tissue through liposuction, employing specialized techniques to contour the chest and refine its definition. Alongside this, direct excision of glandular tissue is carried out. This is done through a discreet incision strategically placed at the lower border of the areola, aiming for minimal scarring and a natural appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The surgery is usually performed under general anesthesia and allows most patients to return home on the same day, which ensures a comfortable and efficient recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Post-Surgery Gynecomastia Recovery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After undergoing <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery</a>, bodybuilders should anticipate some swelling, bruising, and discomfort, which typically diminishes over the following weeks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Patients are advised to wear a compression garment to aid in the healing process and promote optimal results. This provides support to the chest while minimizing swelling. It\'s crucial to refrain from engaging in strenuous upper body activities, including weightlifting, for approximately four to six weeks post-surgery. This precaution is essential to prevent complications and ensure proper tissue healing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While each individual\'s recovery may vary, most patients can gradually resume non-strenuous activities within a few days. Under the guidance of our surgeon, they can gradually reintroduce their regular exercise routine, ensuring a safe and effective transition back to their fitness regimen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check out some more <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gyno surgery photos</a> to see what the Atlanta Gynecomastia Center can do for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to bodybuilder gynecomastia and the effects of steroids on male breasts, there are many questions to be answered. Below are some of the most frequently asked ones:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710006904080\",\"question\":[\"Will there be visible scars after surgery? \"],\"answer\":[\"During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less visible, resulting in a discreet aesthetic outcome.\"],\"jsonQuestion\":\"Will there be visible scars after surgery? \",\"jsonAnswer\":\"During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less visible, resulting in a discreet aesthetic outcome.\"},{\"id\":\"faq-question-1710006910198\",\"question\":[\"When can I return to weightlifting? \"],\"answer\":[\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"],\"jsonQuestion\":\"When can I return to weightlifting? \",\"jsonAnswer\":\"To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.\"},{\"id\":\"faq-question-1710006923468\",\"question\":[\"Are the results permanent? \"],\"answer\":[\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires a commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.\"],\"jsonQuestion\":\"Are the results permanent? \",\"jsonAnswer\":\"Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires a commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.\"},{\"id\":\"faq-question-1710006932916\",\"question\":[\"Is gynecomastia surgery covered by insurance? \"],\"answer\":[\"Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance questions and financing options\"]}},\".\"],\"jsonQuestion\":\"Is gynecomastia surgery covered by insurance? \",\"jsonAnswer\":\"Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance questions and financing options\\u003c/a\\u003e.\"},{\"id\":\"faq-question-1710006945280\",\"question\":[\"Can gynecomastia come back after surgery? \"],\"answer\":[\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"],\"jsonQuestion\":\"Can gynecomastia come back after surgery? \",\"jsonAnswer\":\"Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.\"},{\"id\":\"faq-question-1710006960004\",\"question\":[\"How soon will I see the results? \"],\"answer\":[\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.\"],\"jsonQuestion\":\"How soon will I see the results? \",\"jsonAnswer\":\"Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.\"},{\"id\":\"faq-question-1710006967851\",\"question\":[\"What post-operative care is required? \"],\"answer\":[\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"],\"jsonQuestion\":\"What post-operative care is required? \",\"jsonAnswer\":\"After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.\"},{\"id\":\"faq-question-1710006989780\",\"question\":[\"Can I combine gynecomastia surgery with other procedures? \"],\"answer\":[\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"assess your candidacy\"]}},\" for combination procedures during the consultation process.\"],\"jsonQuestion\":\"Can I combine gynecomastia surgery with other procedures? \",\"jsonAnswer\":\"Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eassess your candidacy\\u003c/a\\u003e for combination procedures during the consultation process.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710006904080\"><strong class=\"schema-faq-question\">Will there be visible scars after surgery? </strong> <p class=\"schema-faq-answer\">During gynecomastia surgery, the incisions are carefully positioned to minimize their visibility. As time progresses, the scars typically fade and become less visible, resulting in a discreet aesthetic outcome.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006910198\"><strong class=\"schema-faq-question\">When can I return to weightlifting? </strong> <p class=\"schema-faq-answer\">To promote optimal healing and minimize the risk of complications, it is advisable to abstain from strenuous upper body activities, such as weightlifting, for a period of approximately four to six weeks following surgery. This precaution allows the body ample time to heal and ensures a smooth recovery process.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006923468\"><strong class=\"schema-faq-question\">Are the results permanent? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery offers lasting improvements in chest contour and appearance for the majority of patients. However, maintaining these results requires a commitment to a stable weight and avoiding future steroid or hormone use. By following these recommendations, individuals can ensure long-term positive results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006932916\"><strong class=\"schema-faq-question\">Is gynecomastia surgery covered by insurance? </strong> <p class=\"schema-faq-answer\">Insurance coverage for gynecomastia surgery varies depending on the situation but it is rather rare to be fully covered. Our team can assist you in navigating <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance questions and financing options</a>.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006945280\"><strong class=\"schema-faq-question\">Can gynecomastia come back after surgery? </strong> <p class=\"schema-faq-answer\">Although gynecomastia recurrence is uncommon, it\'s crucial to uphold a healthy lifestyle and steer clear of factors known to contribute to its onset, such as steroid or hormone use. By doing so, individuals can mitigate the likelihood of recurrence and sustain the results of their treatment over the long term.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006960004\"><strong class=\"schema-faq-question\">How soon will I see the results? </strong> <p class=\"schema-faq-answer\">Following gynecomastia surgery, patients typically notice immediate improvements in their chest contour. As swelling diminishes and tissues settle in the weeks and months following the procedure, further enhancement becomes evident. This leads to a more refined and natural appearance over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006967851\"><strong class=\"schema-faq-question\">What post-operative care is required? </strong> <p class=\"schema-faq-answer\">After gynecomastia surgery, post-operative care is essential for a successful recovery. This usually entails wearing a compression garment as instructed by your surgeon. It\'s also crucial to attend follow-up appointments for close monitoring of your progress and to address any concerns.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710006989780\"><strong class=\"schema-faq-question\">Can I combine gynecomastia surgery with other procedures? </strong> <p class=\"schema-faq-answer\">Gynecomastia surgery can be combined with other aesthetic procedures such as liposuction or abdominoplasty. This allows for addressing additional concerns and achieving comprehensive body contouring results. Your surgeon will <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">assess your candidacy</a> for combination procedures during the consultation process.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Reach Out Today</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we deliver individualized treatment strategies tailored to meet the unique needs and aspirations of bodybuilders dealing with gynecomastia. Employing cutting-edge techniques, our skilled team of specialists ensures safe, successful, and aesthetically pleasing outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re ready to reclaim confidence in your appearance and say goodbye to bodybuilder gynecomastia, <a href=\"https://atlantagynecomastia.com/contact/\">contact us today to schedule your consultation</a>. Let us help you achieve the sculpted, masculine chest contour you desire with gynecomastia surgery at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Bodybuilder Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','1911-revision-v1','','','2024-03-31 00:29:36','2024-03-31 00:29:36','',1911,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4454',0,'revision','',0),(4457,5,'2024-03-31 00:34:37','2024-03-31 00:34:37','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1901_21e731-a5\",\"columns\":1,\"colLayout\":\"equal\",\"padding\":[\"sm\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1901_67d471-33\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1901_67d471-33\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_e49d6a-e6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_e49d6a-e6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_e49d6a-e6\">There are several reasons why people seek out gynecomastia revision surgery. Sometimes, individuals require revision surgery due to errors or incomplete procedures in their initial surgery. Other times, complications during healing may lead to less than optimal results. Additionally, changes in the chest over time, such as those caused by weight fluctuations or the natural aging process, may necessitate further intervention. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_d2c5d8-10\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_d2c5d8-10 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_d2c5d8-10\">In this overview, we\'ll explore the details of gynecomastia revision surgery, including its indications, procedures, and what patients can expect from the process.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1901_f75b74-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1901_f75b74-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1901_f75b74-80\">Our plastic surgeons at the Atlanta Gynecomastia Center are here to help. Reach out today and <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free virtual or in-person consultation</a> to better understand if revision gynecomastia surgery is right for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">When is Gyno Revision Needed?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia typically involves both excess breast gland tissue and fatty tissue. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgical treatment</a> often involves a combination of liposuction to remove excess fat and gland excision to address the excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Liposuction Revision</strong>: If the initial gynecomastia surgery leaves behind uneven fat distribution or persistent bulges due to incomplete or improper <a href=\"https://my.clevelandclinic.org/health/treatments/11009-liposuction\" target=\"_blank\" rel=\"noreferrer noopener\">liposuction</a>, a revision surgery may involve additional liposuction to achieve a smoother chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Gland Tissue Removal Revision</strong>: In cases where the initial removal of breast gland tissue is incomplete, it can result in persistent lumps of tissue. Additional excision of breast gland tissue may be necessary in such instances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Excess Tissue Correction</strong>: Occasionally, excessive tissue removal during surgery can lead to sunken nipples/areolas or an uneven chest contour. Revision surgery may involve re-arranging breast tissue and/or fat grafting to address these issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Other Gynecomastia Revision Reasons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Weight Fluctuations</strong>: significant weight fluctuations post-gynecomastia surgery can impact the results. These fluctuations can alter how fat is distributed throughout the body, which can change how the chest looks. To maintain or restore the correct chest contour, revision surgery may be required to treat extra fat or loose skin brought on by weight fluctuations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dissatisfaction</strong>: Patients may seek revision surgery due to dissatisfaction with the initial results. Despite best efforts, factors like unrealistic expectations, changes in aesthetic preferences, or unforeseen complications can lead to dissatisfaction. Revision surgery may be recommended to address these concerns and achieve the desired aesthetic outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Scars</strong>: Scar formation can also be a reason for revision gynecomastia surgery. Poor scar formation or abnormal scarring post-surgery can detract from the aesthetic outcome. In such cases, scar revision techniques may be employed to improve the appearance of scars and achieve a more pleasing cosmetic result.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Gynecomastia Revision Surgery FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While undergoing a second surgery is not the preferred course of action, rest assured that at the Atlanta Gynecomastia Center, we\'re here to provide the support you need. Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gyno questions</a> when it comes to the surgery and what to expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007075507\",\"question\":[\"What is gynecomastia revision surgery? \"],\"answer\":[\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve your desired results.\"],\"jsonQuestion\":\"What is gynecomastia revision surgery? \",\"jsonAnswer\":\"Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve your desired results.\"},{\"id\":\"faq-question-1710007082804\",\"question\":[\"Who is a suitable candidate for gynecomastia revision surgery? \"],\"answer\":[{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"children\":[\"Candidates for gynecomastia revision surgery\"]}},\" are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"],\"jsonQuestion\":\"Who is a suitable candidate for gynecomastia revision surgery? \",\"jsonAnswer\":\"\\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-candidates/\\u0022\\u003eCandidates for gynecomastia revision surgery\\u003c/a\\u003e are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.\"},{\"id\":\"faq-question-1710007090500\",\"question\":[\"What are the common reasons for needing a revision surgery?\"],\"answer\":[\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"],\"jsonQuestion\":\"What are the common reasons for needing a revision surgery?\",\"jsonAnswer\":\"Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.\"},{\"id\":\"faq-question-1710007100871\",\"question\":[\"How long should one wait before considering gyno revision surgery after the initial procedure? \"],\"answer\":[\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"],\"jsonQuestion\":\"How long should one wait before considering gyno revision surgery after the initial procedure? \",\"jsonAnswer\":\"It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.\"},{\"id\":\"faq-question-1710007115357\",\"question\":[\"How does the recovery process differ between the initial surgery and revision surgery? \"],\"answer\":[\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"],\"jsonQuestion\":\"How does the recovery process differ between the initial surgery and revision surgery? \",\"jsonAnswer\":\"The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.\"},{\"id\":\"faq-question-1710007124823\",\"question\":[\"Can gynecomastia revision surgery achieve better results than the initial procedure? \"],\"answer\":[\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"],\"jsonQuestion\":\"Can gynecomastia revision surgery achieve better results than the initial procedure? \",\"jsonAnswer\":\"Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.\"},{\"id\":\"faq-question-1710007141225\",\"question\":[\"Is gynecomastia revision surgery typically covered by insurance? \"],\"answer\":[\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"children\":[\"insurance\"]}},\". Patients should check with their insurance provider to determine coverage.\"],\"jsonQuestion\":\"Is gynecomastia revision surgery typically covered by insurance? \",\"jsonAnswer\":\"Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\\u0022\\u003einsurance\\u003c/a\\u003e. Patients should check with their insurance provider to determine coverage.\"},{\"id\":\"faq-question-1710007150931\",\"question\":[\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \"],\"answer\":[\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.\"],\"jsonQuestion\":\"What should patients expect in terms of recovery time for gynecomastia revision surgery? \",\"jsonAnswer\":\"Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007075507\"><strong class=\"schema-faq-question\">What is gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is a specialized procedure designed to address concerns or complications stemming from a previous gynecomastia surgery. Its goal is to enhance the appearance of the chest by addressing issues like excess glandular tissue, asymmetry, or irregular contours, ensuring you achieve your desired results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007082804\"><strong class=\"schema-faq-question\">Who is a suitable candidate for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\"><a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">Candidates for gynecomastia revision surgery</a> are typically individuals who have undergone a previous gynecomastia procedure but are dissatisfied with the outcomes or have experienced complications. They should be in good overall health and have realistic expectations about the potential results of the revision surgery.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007090500\"><strong class=\"schema-faq-question\">What are the common reasons for needing a revision surgery?</strong> <p class=\"schema-faq-answer\">Common reasons for revision surgery include insufficient glandular tissue removal, asymmetry, contour irregularities, excessive scarring, or gynecomastia recurrence. These factors may affect the aesthetic outcome and patient satisfaction, underscoring the importance of precise surgical techniques and thorough assessment for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007100871\"><strong class=\"schema-faq-question\">How long should one wait before considering gyno revision surgery after the initial procedure? </strong> <p class=\"schema-faq-answer\">It\'s typically advised to wait six months to one year following the initial gynecomastia surgery before considering revision. This timeframe allows for proper healing, stabilization of chest tissues, and resolution of post-operative swelling.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007115357\"><strong class=\"schema-faq-question\">How does the recovery process differ between the initial surgery and revision surgery? </strong> <p class=\"schema-faq-answer\">The recovery period for gynecomastia revision surgery may mirror or slightly exceed that of the initial procedure, depending on the extent of revision required. Patients can anticipate receiving similar post-operative instructions, including activity limitations, pain management strategies, and follow-up appointments.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007124823\"><strong class=\"schema-faq-question\">Can gynecomastia revision surgery achieve better results than the initial procedure? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery frequently yields enhanced outcomes compared to the initial procedure, particularly when conducted by an experienced surgeon at the Atlanta Gynecomastia Center. However, the degree of improvement varies based on factors such as the extent of the required revision and the individual\'s anatomical characteristics.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007141225\"><strong class=\"schema-faq-question\">Is gynecomastia revision surgery typically covered by insurance? </strong> <p class=\"schema-faq-answer\">Gynecomastia revision surgery is often considered a cosmetic procedure and may not be covered by <a href=\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\">insurance</a>. Patients should check with their insurance provider to determine coverage.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007150931\"><strong class=\"schema-faq-question\">What should patients expect in terms of recovery time for gynecomastia revision surgery? </strong> <p class=\"schema-faq-answer\">Recovery duration can fluctuate but typically spans from several days to a few weeks, with complete results emerging gradually over several months as swelling subsides and tissues settle. Patients are encouraged to consult with their surgeon for personalized insights on cost and recovery expectations.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Choosing the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper gynecomastia surgery requires a meticulous approach, ensuring precise removal of excess fat and gland tissue. It\'s crucial to entrust this procedure to an experienced surgeon who understands the nuances of tissue removal and contouring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In some cases, excess skin may contribute to a drooping appearance of the breast. Inadequate removal of this skin could lead to persistent sagginess, potentially necessitating a revision surgery to address it effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, our team of experienced and skilled surgeons is well-versed in the techniques required to achieve optimal results. We understand how to address excess skin and sculpt the chest to achieve the desired shape, ensuring our patients achieve the best possible outcome.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule your free consultation</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia Revision Surgery in Atlanta','','inherit','closed','closed','','1901-revision-v1','','','2024-03-31 00:34:37','2024-03-31 00:34:37','',1901,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4457',0,'revision','',0),(4459,5,'2024-03-31 00:38:28','2024-03-31 00:38:28','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2657_ad7ce5-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2657_ad7ce5-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_af6d13-91\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_af6d13-91 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_af6d13-91\">When it comes to male breast enlargement, figuring out whether it\'s gynecomastia or pseudogynecomastia is pretty important. These conditions might look alike, but they\'re actually caused by different things.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_a8791a-3d\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_a8791a-3d wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_a8791a-3d\"><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our doctors at the Atlanta Gynecomastia Center</a> are all about helping people understand what\'s going on with their bodies and finding the best way to deal with it. We\'ll walk you through the differences between gynecomastia and pseudogynecomastia, and together, we\'ll figure out the best plan of action.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2657_68a706-56\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2657_68a706-56 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2657_68a706-56\">Read on to learn more about these two conditions, and how each one may be treated.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What is Gynecomastia &amp; Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s first break down the differences between gynecomastia and pseudogynecomastia, and how they cause male breast-related issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Gynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/what-is-gyno/\">Gynecomastia</a> is the excess of breast gland tissue, which leads to visible breast enlargement. This usually happens because of an imbalance of hormone levels, especially when there\'s more estrogen in relation to testosterone. While it\'s not physically harmful, it can have an impact on one\'s well-being. This ultimately results in many people exploring <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">gynecomastia surgery options</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">What is Pseudogynecomastia</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now, pseudogynecomastia is more about extra fat in the chest area, which gives off a similar look to true gynecomastia. Unlike gynecomastia, which involves actual glandular tissue growth, pseudogynecomastia is closely tied to weight &amp; excess fat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"wp-image-4303\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Gynecomastia and Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although both gynecomastia and pseudogynecomastia share similar visual characteristics, their <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">underlying causes</a> differ significantly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia can be caused by a range of factors, including aging, substance abuse (like marijuana or <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">anabolic steroids</a>), hormonal imbalances due to kidney or liver issues, obesity, natural <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">hormone fluctuations during infancy or puberty</a>, testicular problems, and certain medications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Causes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pseudogynecomastia is mainly caused by an accumulation of excess fat tissue, which is often linked to obesity. This key distinction emphasizes the significance of addressing weight-related concerns in managing pseudogynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Treatment Approaches</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The different underlying causes of these conditions also lead to distinct methods of treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Gynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to treating gynecomastia, the approach often begins with addressing hormonal imbalances. This can be achieved through medication or lifestyle adjustments aimed at restoring the equilibrium between estrogen and testosterone levels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, surgery can be required if conservative methods are unable to produce desired outcomes. Procedures such as the excision of excess breast tissue, often complemented by liposuction to sculpt the chest area, can provide significant relief and restore a more masculine contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Pseudogynecomastia Treatment</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In contrast, treating pseudogynecomastia primarily involves lifestyle modifications focused on weight reduction. Incorporating regular exercise routines that combine both resistance and <a href=\"https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">cardiovascular training</a> can help burn off excess fat in the chest region. Pairing these workouts with a balanced diet rich in nutritious foods can further support weight loss efforts and contribute to a leaner physique. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now, in the cases where lifestyle changes do not solve the issue, liposuction treatment can be applied to remove the excess fat and contour the overall chest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia vs. Pseudogynecomastia FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let\'s now address some common questions that come up when discussing these conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007192607\",\"question\":[\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\"],\"answer\":[\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"],\"jsonQuestion\":\"Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?\",\"jsonAnswer\":\"Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.\"},{\"id\":\"faq-question-1710007199472\",\"question\":[\"Can Pseudogynecomastia Be Eliminated?\"],\"answer\":[\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"],\"jsonQuestion\":\"Can Pseudogynecomastia Be Eliminated?\",\"jsonAnswer\":\"Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.\"},{\"id\":\"faq-question-1710007207406\",\"question\":[\"Will Pseudogynecomastia Come Back?\"],\"answer\":[\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"],\"jsonQuestion\":\"Will Pseudogynecomastia Come Back?\",\"jsonAnswer\":\"Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.\"},{\"id\":\"faq-question-1710007220734\",\"question\":[\"How Long Does it Take to Get Rid of Pseudogynecomastia?\"],\"answer\":[\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"],\"jsonQuestion\":\"How Long Does it Take to Get Rid of Pseudogynecomastia?\",\"jsonAnswer\":\"The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.\"},{\"id\":\"faq-question-1710007227613\",\"question\":[\"How Common is Pseudogynecomastia?\"],\"answer\":[\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"],\"jsonQuestion\":\"How Common is Pseudogynecomastia?\",\"jsonAnswer\":\"Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.\"},{\"id\":\"faq-question-1710007237124\",\"question\":[\"What Does Pseudogynecomastia Look Like?\"],\"answer\":[\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"],\"jsonQuestion\":\"What Does Pseudogynecomastia Look Like?\",\"jsonAnswer\":\"Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007192607\"><strong class=\"schema-faq-question\">Is There a Diagnostic Test for Gynecomastia vs. Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Our physicians frequently employ the \'pinch test\' as part of the diagnostic process to distinguish between true gynecomastia and pseudogynecomastia. This straightforward examination serves as a valuable tool in evaluating the composition of chest tissue, enabling us to make precise diagnoses and tailor appropriate treatment plans for our patients.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007199472\"><strong class=\"schema-faq-question\">Can Pseudogynecomastia Be Eliminated?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia can often be effectively managed through lifestyle modifications aimed at reducing weight. However, surgical procedures like liposuction offer viable alternatives for attaining desired results in situations where conservative approaches prove inadequate.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007207406\"><strong class=\"schema-faq-question\">Will Pseudogynecomastia Come Back?</strong> <p class=\"schema-faq-answer\">Just like with any excess fat accumulation, there\'s a risk of pseudogynecomastia recurrence if healthy lifestyle habits aren\'t upheld. Consistently prioritizing a balanced diet and regular exercise is crucial for preventing its resurgence and maintaining a lean, masculine chest appearance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007220734\"><strong class=\"schema-faq-question\">How Long Does it Take to Get Rid of Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">The timeline for resolving pseudogynecomastia varies from person to person, depending on individual factors like starting weight, adherence to lifestyle changes, and metabolic rate. By consistently following a structured diet and exercise regimen, individuals can expect gradual but sustainable improvement over time.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007227613\"><strong class=\"schema-faq-question\">How Common is Pseudogynecomastia?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia is widespread, especially in areas where sedentary lifestyles and unhealthy dietary habits contribute to high rates of obesity. Research suggests that a considerable number of men globally are likely to encounter pseudogynecomastia at some stage in their lives.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007237124\"><strong class=\"schema-faq-question\">What Does Pseudogynecomastia Look Like?</strong> <p class=\"schema-faq-answer\">Pseudogynecomastia bears visual resemblances to true gynecomastia, both featuring enlarged breast tissue in males. However, a thorough assessment by a healthcare professional is essential to accurately differentiate between the two conditions.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Book Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia and pseudogynecomastia may appear similar on the surface, their origins and treatment paths are different.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For accurate diagnosis and personalized treatment advice, you can connect with the specialists at the <a href=\"https://atlantagynecomastia.com/contact/\">Atlanta Gynecomastia Center</a>. Whether it\'s addressing hormone imbalances or dealing with weight issues, you can find customized solutions that restore comfort and greatly improve your quality of life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Gynecomastia vs. Pseudogynecomastia','','inherit','closed','closed','','2657-revision-v1','','','2024-03-31 00:38:28','2024-03-31 00:38:28','',2657,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4459',0,'revision','',0),(4461,3,'2024-03-31 00:41:27','2024-03-31 00:41:27','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1668_ce65a4-0d\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"topSep\":\"\",\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1668_66f7b2-c2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1668_66f7b2-c2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_fd89e1-43\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_fd89e1-43 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_fd89e1-43\">It\'s normal to have <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">questions about the expenses and insurance coverage of gynecomastia surgery</a> in Atlanta. These are some of the biggest factors in the decision to undergo surgery.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1668_c3f70e-c6\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1668_c3f70e-c6 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1668_c3f70e-c6\">Let\'s take a look at these factors to ease your concerns and show you how they relate to your specific situation. Together, we can make sure you start your gynecomastia journey feeling knowledgeable about the process and confident in your decision.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Gynecomastia Surgery Costs in </strong>Atlanta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is your premier destination for male breast reduction surgery in the Peach State. If you\'re thinking about going down the procedure path, knowing the costs involved with gynecomastia surgery is crucial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost of gynecomastia surgery in Atlanta can vary widely and can be dependent on the exact procedure, and the type of anesthesia required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In general, there are different <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">stages and types of gynecomastia</a>. Depending on how minor or severe your gynecomastia is will dictate how expensive your surgery may be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, treatment with liposuction alone would be less expensive than procedures requiring both liposuction and gland excision, or those also requiring skin excision. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">type of gynecomastia</a> you may have, or if you are coming in for a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">gynecomastia revision surgery</a>, the Atlanta Gynecomastia Center can help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Cost Factors</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we recognize that several factors contribute to the overall cost of gynecomastia surgery:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise and Experience:</strong> The qualifications, experience, and reputation of our surgeons at the Atlanta Gynecomastia Center factor into the cost of surgery. <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Our surgeons</a> boast extensive expertise and a high level of skill, including specialized training and a track record of highly successful outcomes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgical Facility Fees:</strong> The location and prestige of the surgical facility where the procedure is performed can also affect the cost of gynecomastia surgery. Facilities offering state-of-the-art equipment, accredited operating rooms, and luxurious amenities may charge higher fees compared to less upscale alternatives.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Anesthesia Fees:</strong> The type of anesthesia administered during gynecomastia surgery can influence the overall cost. This can come in the form of local anesthesia, intravenous sedation, or general anesthesia. Anesthesia fees often vary based on the anesthesiologist\'s expertise and the duration of anesthesia required for the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Geographic Location:</strong> The cost of gynecomastia surgery can vary significantly based on the geographical location of the surgical facility. Generally, procedures performed in urban areas or regions with a higher cost of living tend to be more expensive than those in rural or less affluent areas.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery Costs - What\'s Included</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we provide transparent pricing structures to ensure you have a comprehensive understanding of all the expenses included.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The following factors should be taken into account when estimating gynecomastia surgery prices in the Atlanta area:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Anesthesia Fees</strong>: To ensure your comfort and safety during the procedure.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Facility Charges</strong>: To cover the use of our state-of-the-art surgical facilities.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Pre-Surgery Evaluations</strong>: This includes medical tests and consultations after your initial free consultation.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Post-Surgery Care</strong>: Such as compression garments and follow-up visits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Surgeon\'s Expertise</strong>: Reflects the skill and experience of our gynecomastia specialists.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the total cost is approximately $5,000 to $15,000 taking everything into account. A consultation with our doctors will give you a better sense of what the cost of surgery would look like for your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Liposuction Only: $5,000 - $7,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where male breasts are primarily due to an excess of breast fat tissue, a simpler liposuction surgery may suffice. In such instances, excess breast gland tissue is not a concern for the patient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 1-2 Gyno: $7,000 - $12,000</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When addressing gynecomastia resulting from excess breast gland tissue, a more intricate surgical approach is necessary. This standard gynecomastia surgery typically involves a breast gland tissue excision performed by your surgeon. Additionally, liposuction may be utilized if there is any accompanying excess fat tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Stage 3-4 Gyno: $12,000 - $17,000+</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As gynecomastia becomes more severe, the complexity of the surgical procedure increases. This in turn leads to higher costs. In such cases, a more in-depth surgical approach is required, which involves the removal of excess breast gland tissue as well as any accompanying excess skin around the breast. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This comprehensive procedure aims to achieve optimal chest contouring and symmetry, addressing both the glandular and adipose components contributing to gynecomastia. Due to the intricacies involved and the need for specialized techniques, the cost of surgery is typically higher for more severe cases of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be sure to <a href=\"https://atlantagynecomastia.com/contact/\">discuss pricing with the Atlanta Gynecomastia Center</a> to better understand how much a specialized surgery for yourself will cost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Atlanta Gynecomastia Insurance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It can be difficult to navigate insurance coverage for gynecomastia surgery. This is because most insurance companies classify it as a cosmetic procedure, which means it is usually not covered. Even if gynecomastia is stressful for the patient, insurance companies frequently refuse to acknowledge this.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, there are occasional exceptions, so it is worth discussing with our office. Even in such cases, coverage is not guaranteed, and patients may find themselves responsible for the full cost of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s essential for patients to thoroughly review their insurance policy and consult with their provider to understand coverage limitations and potential out-of-pocket expenses related to gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Financing Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we understand that affordability is key to accessing life-changing treatments. Our competitive pricing and flexible financing options ensure that cost is not a barrier to achieving your desired <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia results</a>. Whether you opt for cash, credit card payments, or financing plans, we strive to make gynecomastia surgery accessible to all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">PatientFi™: Personalized Financing Solutions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are proud to partner with <a href=\"https://patientfi.com/\" target=\"_blank\" rel=\"noreferrer noopener\">PatientFi</a>™, an innovative health, beauty, and wellness care financing company. PatientFi™ specializes in providing personalized financing plans tailored to individual needs. Unlike traditional financing options, PatientFi™ considers various factors beyond credit scores, ensuring fair and accessible financing for qualified applicants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The online application process is simple and efficient, with quick decisions and flexible financing terms. With PatientFi™, patients can choose from a variety of plans that comfortably fit their budget, making cosmetic procedures more accessible than ever before.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">CareCredit: Your Health and Beauty Credit Card</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For those seeking cosmetic and surgical procedure financing, CareCredit offers a convenient solution. As your dedicated health, wellness, and beauty credit card, CareCredit allows you to say \"Yes\" to recommended procedures without worrying about payment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accepted at the Atlanta Gynecomastia Center and numerous healthcare providers nationwide, CareCredit offers flexible payment options tailored to your financial situation. With a quick and easy application process and immediate decisions, you can schedule your procedures promptly, even before receiving your card.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 21 million accounts opened over nearly 30 years, CareCredit is a trusted source for healthcare credit cards, providing peace of mind and financial flexibility to patients seeking cosmetic enhancements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more about the card and explore your financing options, <a href=\"https://www.carecredit.com/\" target=\"_blank\" rel=\"noreferrer noopener\">visit CareCredit\'s website</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we believe that everyone deserves to feel confident and comfortable in their own skin. Our commitment to affordable financing ensures that cost is never a barrier to achieving your cosmetic goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Make Your Appointment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/contact/\">Schedule your appointment</a> at the Atlanta Gynecomastia Center, where you will learn more about the condition and whether surgery is the best option for you. We are here to help!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, we prioritize delivering <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">exceptional care and expertise</a> to those seeking solutions for male breast reduction. We offer comprehensive consultations to help you understand the factors affecting surgery costs and explore potential insurance coverage. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, we provide flexible financing options to ensure that cost is not a barrier to your journey toward a more confident self. Schedule a complimentary in-person or virtual consultation with our gynecomastia specialists today, and let us guide you through your transformation.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Atlanta Gynecomastia Cost & Insurance','','inherit','closed','closed','','1668-revision-v1','','','2024-03-31 00:41:27','2024-03-31 00:41:27','',1668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4461',0,'revision','',0),(4462,5,'2024-03-31 00:42:35','2024-03-31 00:42:35','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3473_332641-9d\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3473_64b5dd-e2\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3473_64b5dd-e2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_082b82-e3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_082b82-e3 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_082b82-e3\">Gynecomastia is characterized by enlarged male breast tissue, and it often leads to distress and self-consciousness among men. While it is commonly linked to hormonal imbalances or medical conditions, it can also affect adult males post-weight loss. In such cases, excess skin and tissue may remain, which can contribute to the appearance of enlarged breasts.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_6c1dd5-df\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_6c1dd5-df wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_6c1dd5-df\">Gynecomastia surgery offers a transformative solution for men after weight loss. By addressing excess tissue and restoring a more masculine chest contour, this surgical approach enhances physical appearance and empowers individuals to regain their confidence.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3473_ec887b-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3473_ec887b-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3473_ec887b-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule a free virtual or in-person consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What are the Causes of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">Gynecomastia is commonly caused</a> by a hormonal imbalance between testosterone and estrogen, resulting in the growth of breast gland tissue in males.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia can occur <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">during puberty due to hormonal changes</a>, it can also develop later in life. This can be due to factors such as obesity, certain medications, hormone imbalances, or underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the context of weight loss, gynecomastia can become more pronounced as the excess fat decreases, revealing the presence of excess breast tissue and skin. This can be particularly frustrating for men who have worked hard to shed pounds and improve their overall health, only to be left with a lingering cosmetic concern.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Impacts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Living with <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia</a> goes beyond physical discomfort as it can deeply affect a man\'s self-esteem. Enlarged breasts often trigger feelings of embarrassment and self-consciousness. This emotional burden can affect other aspects of life, including relationships, work, and overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Men who have undergone weight loss may find gynecomastia to be an unexpected setback. Despite their hard work and physical transformation, enlarged breasts undermine their sense of achievement, overshadowing progress and leaving them grappling with renewed self-doubt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Gynecomastia Surgery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Gynecomastia surgery</a>, also referred to as male breast reduction surgery, is a viable solution for addressing lingering issues of excess breast tissue and skin following weight loss.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This transformative procedure involves the careful removal of glandular tissue and excess skin through surgical excision. It is complemented by liposuction techniques to eliminate excess fat. The combination of these techniques results in a flatter, more defined chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you think about gynecomastia surgery, the Atlanta Gynecomastia Center offers a comprehensive approach to care. Whether through <a href=\"https://atlantagynecomastia.com/contact/\">in-person or virtual consultations</a>, our skilled surgeons assess the extent of gynecomastia, carefully review the <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">patient\'s medical history and aspirations</a>, and collaboratively come up with a surgical plan that produces the best outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recovery and Post Surgery Care</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Understanding the <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">postoperative care protocol</a> and adhering to your surgeon\'s instructions is paramount for a smooth and successful recovery process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After gynecomastia surgery, patients are advised to wear a compression garment to provide support to the chest and minimize swelling during the initial healing phase. While discomfort and mild bruising are common, most individuals can resume light activities within a few days. Return to work is usually possible within a week or two, although the timeframe may vary based on the extent of the procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To ensure proper healing and minimize complications, it is essential to follow your surgeon\'s postoperative instructions diligently. This may include avoiding strenuous exercise and refraining from lifting heavy objects for several weeks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Regular follow-up appointments will allow your surgeon to monitor your progress closely and address any concerns that may arise during the recovery process. This collaborative approach ensures that you receive optimal care and achieve the desired outcome from your gynecomastia surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Long Term Results</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The effects of gynecomastia surgery are typically visible right away, with further enhancements becoming evident as swelling decreases and tissue settles over time. Patients can anticipate a flatter, firmer chest contour that looks better with their overall physique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While gynecomastia surgery offers a permanent solution, individuals need to maintain a <a href=\"https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits\" target=\"_blank\" rel=\"noreferrer noopener\">healthy lifestyle</a> to ensure long-term satisfaction with their results. This includes maintaining a stable weight, regular exercising, and avoiding factors that contribute to gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery after weight loss offers a transformative solution for men seeking to address the physical and emotional burdens of enlarged breasts. By removing excess tissue and sculpting a more masculine chest contour, this procedure can help individuals regain confidence in their appearance and embrace their newfound sense of self.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those contemplating gynecomastia surgery, it\'s crucial to seek guidance from a board-certified plastic surgeon that is an expert in male breast reduction techniques. At the Atlanta Gynecomastia Center, we stand ready to provide expert assistance and support throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">candidate for gynecomastia surgery</a> or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Post Weight Loss Gynecomastia Surgery','','inherit','closed','closed','','3473-revision-v1','','','2024-03-31 00:42:35','2024-03-31 00:42:35','',3473,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4462',0,'revision','',0),(4464,5,'2024-03-31 00:47:16','2024-03-31 00:47:16','<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"2668_a569e7-e0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column2668_a569e7-e0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_86a1b1-31\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_86a1b1-31 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_86a1b1-31\">Puffy nipple is a <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">variation of gynecomastia</a> that refers to the enlargement of the nipples and the surrounding areolae. It’s sometimes referred to as “Puffy Nipple Syndrome” or “Puffy Nipple-Areola Complex”. Although less prominent than typical gynecomastia, it can still cause significant distress for those affected.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"2668_94da24-24\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading2668_94da24-24 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading2668_94da24-24\">In this overview, we\'ll explore the ins and outs of puffy nipples, discussing their causes, how they\'re diagnosed, and what treatment options are available.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples, often associated with gynecomastia, refer to the swelling and protrusion of the nipple-areolar complex in males. This condition, while not medically harmful, can significantly impact self-esteem and quality of life due to its effect on physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Puffy nipples are typically caused by an imbalance in hormone levels, particularly an <a href=\"https://www.healthline.com/health/estrogen-in-men\" target=\"_blank\" rel=\"noreferrer noopener\">excess of estrogen</a> relative to testosterone. The hormonal imbalance can disrupt normal breast tissue development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While puffy nipples share similarities with <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">gynecomastia</a>, which involves the enlargement of male breast tissue, they represent a distinct presentation where the swelling is concentrated around the nipple area. For a proper diagnosis and efficient treatment, it is crucial to understand the connection between the two.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also learn more about the various <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">grades and stages of gynecomastia</a> to see where you fall on the spectrum.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Causes of Puffy Nipples</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puffy Nipples can stem from various underlying hormonal, genetic, and environmental factors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hormonal imbalances, notably an excess of estrogen compared to testosterone, disrupt normal breast tissue development. This can lead to the swelling and protrusion of the nipple area. Genetic predisposition also plays a significant role in influencing hormone metabolism and receptor sensitivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle habits such as poor diet, sedentary lifestyles, and obesity exacerbate hormonal imbalances and promote excess chest adipose tissue. Excessive alcohol consumption and substance abuse further disrupt hormonal balance, and can contribute to puffy nipple formation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to understand these factors to make an accurate diagnosis and implement focused treatment plans that target the underlying causes of the condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple Surgical Options</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In cases where conservative measures fail to address puffy nipples, <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">surgical interventions may be considered for candidates</a>. Several surgical options are available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><!-- wp:list-item -->\n<li><strong>Liposuction</strong>: Liposuction entails gently agitating fat cells before suctioning them out using a cannula. This is effective for cases primarily caused by excess fatty tissue behind the nipple.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Excision of Gland</strong>: In cases where puffy nipples result from excess breast gland tissue behind the nipple/areola, surgical removal of the excess breast gland tissue is recommended to prevent recurrence.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Combination Excision/Liposuction</strong>: Offering optimal post-surgery aesthetics, this comprehensive procedure removes both excess fat tissue and breast gland tissue.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Learn more about your puffy nipple surgical options by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling a virtual or in-person consultation at the Atlanta Gynecomastia Center</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Puffy Nipple FAQs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Common questions regarding puffy nipples include concerns about reducing nipple size, <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of nipple enlargement</a>, nipple pain, and ideal nipple size.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710007360687\",\"question\":[\"Can You Reduce Male Nipple Size?\"],\"answer\":[\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.\"],\"jsonQuestion\":\"Can You Reduce Male Nipple Size?\",\"jsonAnswer\":\"If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.\"},{\"id\":\"faq-question-1710007368322\",\"question\":[\"Why Do Men’s Nipples Get Larger?\"],\"answer\":[\"Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"children\":[\"consult our doctors\"]}},\" for proper evaluation and guidance.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Get Larger?\",\"jsonAnswer\":\"Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\\u0022\\u003econsult our doctors\\u003c/a\\u003e for proper evaluation and guidance.\"},{\"id\":\"faq-question-1710007376042\",\"question\":[\"Why Do Men’s Nipples Become Painful?\"],\"answer\":[\"Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for an accurate diagnosis.\"],\"jsonQuestion\":\"Why Do Men’s Nipples Become Painful?\",\"jsonAnswer\":\"Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for an accurate diagnosis.\"},{\"id\":\"faq-question-1710007389106\",\"question\":[\"What Size Should Men’s Nipples Be?\"],\"answer\":[\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"],\"jsonQuestion\":\"What Size Should Men’s Nipples Be?\",\"jsonAnswer\":\"Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710007360687\"><strong class=\"schema-faq-question\">Can You Reduce Male Nipple Size?</strong> <p class=\"schema-faq-answer\">If the enlarged nipples are caused by Puffy Nipple Syndrome or gynecomastia, and are therefore not due to natural nipple size, following some diet and exercise recommendations may help reduce swelling and nipple size. However, if that does not do the trick, then surgery may be your next best option.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007368322\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Get Larger?</strong> <p class=\"schema-faq-answer\">Typically, nipples don’t get larger. If you\'ve noticed an increase in nipple size, it\'s likely due to gynecomastia or Puffy Nipple Syndrome. It’s advisable to <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">consult our doctors</a> for proper evaluation and guidance.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007376042\"><strong class=\"schema-faq-question\">Why Do Men’s Nipples Become Painful?</strong> <p class=\"schema-faq-answer\">Your nipples may be chafing against your clothing if you\'re a runner or if you engage in strenuous physical activity. It\'s also possible that you\'re suffering from gynecomastia or Puffy Nipple Syndrome. Either way, scheduling a consultation with our gynecomastia specialists is recommended for an accurate diagnosis.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710007389106\"><strong class=\"schema-faq-question\">What Size Should Men’s Nipples Be?</strong> <p class=\"schema-faq-answer\">Answering this question can be challenging as everyone\'s nipples and areolae vary. However, as a general guideline, nipples should be around 2cm in length, while the areola should have a diameter of 2.5-3cm.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contact Us Today</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While Puffy Nipple Syndrome can be psychologically upsetting, numerous treatments exist for those affected.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the cases where diet and exercise don\'t solve the issue, surgery is always an option for chronic cases of puffy nipples. By choosing a surgical approach, it is bound to better help you get the results you want.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:block {\"ref\":2069} /-->','Puffy Nipples Surgery in Atlanta','','inherit','closed','closed','','2668-revision-v1','','','2024-03-31 00:47:16','2024-03-31 00:47:16','',2668,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4464',0,'revision','',0),(4466,5,'2024-03-31 00:53:00','2024-03-31 00:53:00','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3481_50ff7a-16\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3481_700fe4-69\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3481_700fe4-69\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_33140e-80\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_33140e-80 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_33140e-80\">Gynecomastia is a medical condition characterized by the enlargement of male breast tissue. While it can occur at any age, it becomes increasingly prevalent among seniors. This can be due to various factors, including hormonal changes, medications, and age-related health conditions. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_a9261c-b5\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_a9261c-b5 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_a9261c-b5\">In this comprehensive overview, we will talk more about what gynecomastia is, how aging can result in gynecomastia, treatment options, risks associated with surgery, frequently asked questions, and more.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3481_69575a-ea\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading3481_69575a-ea wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3481_69575a-ea\">At the Atlanta Gynecomastia Center, we are here to help get you going in the right direction. <a href=\"https://atlantagynecomastia.com/contact/\">Schedule an in-person or virtual consultation today</a> to meet with our doctors.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>What is Gynecomastia?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, often referred to as \"man boobs\", is the enlargement of breast gland tissue in males. It can affect one or both breasts, resulting in a swollen appearance, and <a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">puffy nipples</a>. This condition can cause psychological distress and self-consciousness in affected individuals, impacting their quality of life and self-esteem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is also possible that male breasts develop due to excess fatty tissue (either in addition to the gland tissue, or a combination of both). Our <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">doctors at the Atlanta Gynecomastia Center</a> will walk you through your personalized treatment plans based on your condition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Aging </strong>and Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aging is a significant factor in the development of gynecomastia in seniors. As men age, hormonal changes occur. This usually includes a decrease in testosterone levels and an increase in estrogen levels. In turn, this hormonal imbalance can lead to excess breast gland tissue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, certain medical conditions and medications commonly associated with aging can contribute to the development of gynecomastia in older men. These can include prostate enlargement, liver disease, and the use of medications like anti-androgens, anabolic steroids, or certain antidepressants. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifestyle factors such as excessive alcohol consumption, obesity, and sedentary behavior can also exacerbate hormonal imbalances. These can contribute to the accumulation of excess fat in the chest area, further worsening the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are many <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a>, there are a few surgical treatment options that can help solve the condition for good. The next section will dive into more detail about these and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Treatment Options</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Treatment options for gynecomastia vary depending on the <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">severity of the condition</a>, underlying causes, and individual preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Lifestyle Modifications:</strong> Encouraging seniors to maintain a healthy weight through regular exercise and a balanced diet can help reduce excess fat in the chest area and alleviate the appearance of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Surgery:</strong> For severe or persistent cases of gynecomastia, surgical intervention may be necessary. Procedures such as liposuction or gland excision (surgical removal of breast tissue) can effectively reduce breast size and improve chest contour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Counseling and Support:</strong> Psychological counseling and support groups can be valuable resources for seniors struggling with the emotional impact of gynecomastia. Addressing body image concerns and building self-confidence are important aspects of comprehensive treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Risks Associated with Surgery</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While treatment options for senior gynecomastia can be effective, they are not without risks. Surgical procedures carry inherent risks such as infection, bleeding, scarring, and adverse reactions to anesthesia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seniors may face heightened surgical risks due to age-related factors such as impaired <a href=\"https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age\" target=\"_blank\" rel=\"noreferrer noopener\">wound healing</a>, reduced skin elasticity, and underlying medical conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prior to gynecomastia surgery, seniors should undergo a thorough medical evaluation to assess their overall health status and suitability for the procedure. Our qualified and experienced plastic surgeons can tailor treatment plans to meet individual needs and minimize the risks associated with surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia is a prevalent condition among seniors, and it can significantly impact quality of life. It\'s crucial to understand its root causes, available treatments, and associated risks for effective management. By seeking guidance from our skilled healthcare providers and <a href=\"https://atlantagynecomastia.com/gynecomastia-candidates/\">determining suitability for gynecomastia treatment</a>, seniors can alleviate symptoms and restore confidence in their physical appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:yoast/faq-block {\"questions\":[{\"id\":\"faq-question-1710459167714\",\"question\":[\"Is gynecomastia common in seniors?\"],\"answer\":[\"As men age, the prevalence of gynecomastia increases significantly. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"],\"jsonQuestion\":\"Is gynecomastia common in seniors?\",\"jsonAnswer\":\"As men age, the prevalence of gynecomastia increases significantly. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.\"},{\"id\":\"faq-question-1710459181231\",\"question\":[\"Can gynecomastia go away on its own? \"],\"answer\":[\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"],\"jsonQuestion\":\"Can gynecomastia go away on its own? \",\"jsonAnswer\":\"In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.\"},{\"id\":\"faq-question-1710459194788\",\"question\":[\"Are there non-surgical treatments for gynecomastia? \"],\"answer\":[\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"],\"jsonQuestion\":\"Are there non-surgical treatments for gynecomastia? \",\"jsonAnswer\":\"Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.\"},{\"id\":\"faq-question-1710459207089\",\"question\":[\"What is the recovery process like after gynecomastia surgery? \"],\"answer\":[\"The \",{\"type\":\"a\",\"props\":{\"href\":\"https://atlantagynecomastia.com/gynecomastia-surgery/\",\"children\":[\"recovery process following gynecomastia surgery\"]}},\" varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"],\"jsonQuestion\":\"What is the recovery process like after gynecomastia surgery? \",\"jsonAnswer\":\"The \\u003ca href=\\u0022https://atlantagynecomastia.com/gynecomastia-surgery/\\u0022\\u003erecovery process following gynecomastia surgery\\u003c/a\\u003e varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.\"},{\"id\":\"faq-question-1710459219027\",\"question\":[\"Are there any long-term complications associated with gynecomastia surgery?\"],\"answer\":[\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.\"],\"jsonQuestion\":\"Are there any long-term complications associated with gynecomastia surgery?\",\"jsonAnswer\":\"Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.\"}]} -->\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1710459167714\"><strong class=\"schema-faq-question\">Is gynecomastia common in seniors?</strong> <p class=\"schema-faq-answer\">As men age, the prevalence of gynecomastia increases significantly. This condition is commonly linked to hormonal fluctuations, the use of certain medications, and the presence of age-related health issues.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459181231\"><strong class=\"schema-faq-question\">Can gynecomastia go away on its own? </strong> <p class=\"schema-faq-answer\">In some instances, mild gynecomastia may resolve on its own, especially if it is caused by temporary hormonal fluctuations. However, persistent or severe gynecomastia typically requires medical intervention to address underlying causes and alleviate symptoms effectively.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459194788\"><strong class=\"schema-faq-question\">Are there non-surgical treatments for gynecomastia? </strong> <p class=\"schema-faq-answer\">Non-surgical treatments, including hormone therapy, medication adjustments, and lifestyle modifications, may effectively manage gynecomastia symptoms, especially in seniors with mild to moderate cases. However, these approaches may not yield permanent results and are often less effective for significant breast enlargement.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459207089\"><strong class=\"schema-faq-question\">What is the recovery process like after gynecomastia surgery? </strong> <p class=\"schema-faq-answer\">The <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">recovery process following gynecomastia surgery</a> varies depending on the type of procedure performed and individual healing characteristics. Following surgery, seniors may experience discomfort, swelling, and bruising during the initial weeks. These typically improve gradually over several months. Adhering to post-operative instructions from the surgeon and attending follow-up appointments are crucial for achieving optimal results.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1710459219027\"><strong class=\"schema-faq-question\">Are there any long-term complications associated with gynecomastia surgery?</strong> <p class=\"schema-faq-answer\">Although gynecomastia surgery is generally safe and well-tolerated, some individuals may experience long-term complications such as scarring, alterations in nipple sensation, and chest asymmetry. Seniors must have a thorough discussion about potential risks and outcomes with our surgeon before proceeding with the procedure.</p> </div> </div>\n<!-- /wp:yoast/faq-block -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule Your Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia surgery provides seniors with a transformative solution, offering relief from the physical and emotional burdens of enlarged breasts. Through the removal of excess tissue and the sculpting of a more masculine chest contour, this procedure lets patients reclaim confidence in their appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For seniors thinking about gynecomastia surgery, it\'s vital to seek consultation with a board-certified plastic surgeon proficient in male breast reduction procedures. At the Atlanta Gynecomastia Center, we are ready to assist you on your journey to enhanced well-being and self-assurance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe you may be a candidate for gynecomastia surgery or would like to learn more about our services, we invite you to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a free in person or virtual consultation</a> and take the first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have more questions? Check out some of the most <a href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">frequently asked gynecomastia questions</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Senior Gynecomastia Surgery in Atlanta','','inherit','closed','closed','','3481-revision-v1','','','2024-03-31 00:53:00','2024-03-31 00:53:00','',3481,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4466',0,'revision','',0),(4468,5,'2024-03-31 00:57:32','2024-03-31 00:57:32','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_3e4ba6-c1\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_4ce970-cb\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_4ce970-cb\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_32aca6-18\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_32aca6-18 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_32aca6-18\">Gynecomastia is a common condition where males have an excess amount of breast tissue. This can come in the form of excess gland tissue, excess fat tissue, or a combination of both. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_822af6-4f\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_822af6-4f wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_822af6-4f\">Although gynecomastia is generally not harmful, it\'s important to understand its causes, symptoms, and available treatments. Whether it is <a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">adult gyno</a>, adolescent gyno, or even <a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">gynecomastia caused by steroids</a>, we are here to help.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_238746-50\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_238746-50 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_238746-50\">At the Atlanta Gynecomastia Center, we offer personalized solutions to address your concerns. With our experienced team and advanced facilities, we provide a range of treatments customized to meet your needs.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1511_f79620-27\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1511_f79620-27 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1511_f79620-27\">Schedule your <a href=\"https://atlantagynecomastia.com/contact/\">free consultation today</a> to get yourself started.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_27b0c1-ac\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_699bed-53\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_699bed-53\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has\\u002d\\u002dfont-size\"} -->\n<h2 class=\"wp-block-heading has--font-size\">Gynecomastia Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gynecomastia, also known as \'gyno\' or man boobs, is the development of excess breast gland tissue in men. While several factors can contribute to its development, hormonal imbalance frequently serves as the root cause. This typically involves an imbalance between estrogen and testosterone levels:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Excess of Estrogen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lack of Testosterone</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of Both</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Imbalances can be caused by various factors such as puberty, aging, specific medications, health issues, substance misuse, or nutritional deficiencies. In some other cases though, there is no known cause of gynecomastia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Despite not posing significant health risks, gynecomastia can induce discomfort and considerable embarrassment, leading to psychological distress for many individuals. Due to this, most men affected by it prioritize treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">The Atlanta Gynecomastia Center can help - reach out today to schedule a free consultation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4305,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_f1dcc6-ab\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_f1dcc6-ab size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta-1024x586.png\" alt=\"What is Gynecomastia Atlanta\" class=\"kb-img wp-image-4305\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_b18812-cc\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_8d5432-98\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_8d5432-98\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">What Causes Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">When it comes to the causes of this hormonal imbalance, there can be a variety of reasons at play. Some of the most common gynecomastia causes include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Infancy and Puberty</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Substance Abuse and Alcoholism</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Aging</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Anabolic Steroids</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>High Body Fat Percentage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism\">Hypogonadism</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Chronic Diseases</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Prescription Medications</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reasons Unknown</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>You can learn more about the <a href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">causes of gynecomastia</a> by checking out the dedicated overview on the topic.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_176ee2-e7\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_7e9be4-63\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_7e9be4-63\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gynecomastia Stages</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Gynecomastia is classified into four stages ranging from grade 1 (mild) to grade 4 (severe). Each stage has distinct characteristics that set it apart from the others. Treatment approaches also differ for each grade, with stage 4 necessitating a significantly distinct surgical approach compared to stage 1.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Grade 1</strong>: small growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 2</strong>: moderate growth without excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 3</strong>: moderate growth with excess skin</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grade 4</strong>: significant growth with excess skin</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>The <a href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">gynecomastia grades and stages</a> overview goes into more detail about this grading system.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4304,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_2e3ad2-1e\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_2e3ad2-1e size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta-1024x586.png\" alt=\"Stages and Grades of Gynecomastia Atlanta\" class=\"kb-img wp-image-4304\"/></figure>\n<!-- /wp:kadence/image --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1511_88fda6-a2\",\"columns\":1,\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1511_27bb6f-57\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1511_27bb6f-57\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Pseudogynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">Although true gynecomastia is primarily made up of excess breast gland tissue, it often involves excess fatty tissue as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\"><strong><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a> is the term used to describe the condition where there is simply additional fatty tissue without any excess gland tissue.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it may outwardly resemble gynecomastia and result in the appearance of \"man boobs,\" its root cause is fat deposition. In these cases, the condition can sometimes be addressed through lifestyle modifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, pseudogynecomastia often can persist despite lifestyle changes. In these cases, surgical intervention, primarily through liposuction, is frequently recommended for treatment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">It should be noted that for many cases of gynecomastia, there is both extra gland tissue and extra fatty tissue. If that is the case, a <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">surgical procedure</a> will resolve both of these issues at once. During the surgery, both the extra breast gland tissue and excess fatty tissue are removed through a combination of excision and liposuction. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"has-md-font-size\"} -->\n<p class=\"has-md-font-size\">If you\'re seeking clarity on what\'s causing your gynecomastia and discussing potential solutions, consider scheduling a visit to the Atlanta Gynecomastia Center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/image {\"id\":4303,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"uniqueID\":\"1511_5f8d30-9b\"} -->\n<figure class=\"wp-block-kadence-image kb-image1511_5f8d30-9b size-large\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png\" alt=\"Gynecomastia vs. Pseudogynecomastia Atlanta\" class=\"kb-img wp-image-4303\"/></figure>\n<!-- /wp:kadence/image -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Although gynecomastia can be distressing, it\'s important to understand that effective treatment options exist. Our knowledgeable medical professionals at the Atlanta Gynecomastia Center are committed to providing individualized care that caters to each patient\'s specific needs (such as in these <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after results</a>). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So, whether you\'re in need of medical advice, contemplating surgical options, or just seeking guidance, our team is dedicated to supporting you throughout your journey. Take the first step towards a more confident you by <a href=\"https://atlantagynecomastia.com/contact/\">scheduling an appointment</a> with our experts today.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','What is Gynecomastia?','','inherit','closed','closed','','1511-revision-v1','','','2024-03-31 00:57:32','2024-03-31 00:57:32','',1511,'https://atlantagynecomastiacom.bigscoots-staging.com/?p=4468',0,'revision','',0),(4470,5,'2024-03-31 14:16:21','2024-03-31 14:16:21','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidth\":100,\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Top]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to educate you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can appear at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\",\"text\":\"At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\",\"text\":\"Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\",\"text\":\"Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gynecomastia Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\",\"text\":\"Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\",\"text\":\"Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\",\"text\":\"Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\",\"text\":\"Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost-effective as possible. Patient safety is always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gynecomastia Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Bottom]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, Alpharetta, <a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a>, Fulton County, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-03-31 14:16:21','2024-03-31 14:16:21','',1329,'https://atlantagynecomastia.com/?p=4470',0,'revision','',0),(4472,5,'2024-03-31 14:21:13','2024-03-31 14:21:13','<!-- wp:block {\"ref\":3695} /-->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1484_1f57f6-c8\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1484_ce94a3-e2\",\"padding\":[40,40,40,40],\"tabletPadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"mobilePadding\":[0,0,0,0],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1484_ce94a3-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How to Reach Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Feel free to call the Atlanta Gynecomastia Center at (203) 441-1113 to book your free consultation. We are easily accessible from many nearby cities, and eager to help you with your gynecomastia questions and concerns.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><span style=\"text-decoration: underline;\">Hours of Operation<br></span></strong>Monday: 9:00 AM - 5:00 PM<br>Tuesday: 9:00 AM - 5:00 PM<br>Wednesday: 9:00 AM - 5:00 PM<br>Thursday: 9:00 AM - 5:00 PM<br>Friday: 9:00 AM - 5:00 PM</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta. We regularly treat patients from all over Georgia including but not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>and <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town patients</a>!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Whether it is your free consultation, pre-op or post-op appointments, or the surgery itself, the Atlanta Gynecomastia Center has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Schedule your in-person or virtual consultation with <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\">Dr. Smith</a> to get you started on your transformative journey. In the meantime, you can <a href=\"https://atlantagynecomastia.com/gynecomastia-reviews/\">read through some reviews</a> and browse some <a href=\"https://atlantagynecomastia.com/before-after-results/\">before and after gynecomastia photos</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Atlanta Gynecomastia Surgery Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your male breast reduction surgery will be performed by one of the&nbsp;best gynecomastia surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gynecomastia surgery</a>, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: One of the most common surgeries performed is a standard adult gynecomastia procedure. Adult gyno is commonly a result of a hormonal imbalance between estrogen and testosterone that creates excess breast gland tissue. While there can be several causes of this, sometimes the reasons are unknown.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: As young boys go through puberty, there are changes in the natural levels of testosterone and estrogen in the body. While many of these cases resolve over time, some teenagers may need to resort to surgery in order to get rid of the condition for good.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: Bodybuilder gynecomastia is a common theme among people who use anabolic steroids and prohormones. These drugs can trigger the onset of enlarged breasts, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery might be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Not all enlarged male breasts are due to excess glandular tissue. There are times when simply excess breast fat is the culprit. In these cases, the condition is called pseudogynecomastia. While this is sometimes the case, individuals often have a combination of both excess gland tissue and excess fat tissue.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it. This is usually a mild form of gynecomastia that surgery can resolve.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: Although gynecomastia can occur at any age, it becomes increasingly common among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>No matter what type of gynecomastia you are experiencing, the Atlanta Gynecomastia Center is here to help. Schedule a free consultation today and get started on your journey to a more confident and comfortable self.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Contact the Atlanta Gynecomastia Center','','inherit','closed','closed','','1484-revision-v1','','','2024-03-31 14:21:13','2024-03-31 14:21:13','',1484,'https://atlantagynecomastia.com/?p=4472',0,'revision','',0),(4473,5,'2024-03-31 14:23:58','2024-03-31 14:23:58','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3725_c6a6e1-d3\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"tabletPadding\":[0,0,0,0],\"inheritMaxWidth\":true,\"padding\":[\"0\",\"0\",0,\"0\"],\"mobilePadding\":[\"\",0,\"\",0],\"margin\":[0,\"\",0,\"\"],\"tabletMargin\":[0,\"\",0,\"\"],\"mobileMargin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3725_799f36-e2\",\"padding\":[40,40,0,40],\"tabletPadding\":[\"xxs\",\"0\",\"sm\",\"0\"],\"mobilePadding\":[\"xxs\",\"0\",\"\",\"0\"],\"mobileMargin\":[0,0,0,0],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column3725_799f36-e2 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"3725_f496e8-c8\",\"lineType\":\"em\",\"fontWeight\":\"600\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[20,null,25],\"fontHeight\":[1,null,null],\"fontHeightType\":\"em\"} -->\n<p class=\"kt-adv-heading3725_f496e8-c8 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading3725_f496e8-c8\">Traveling from somewhere else? Here\'s how to get to the Atlanta Gynecomastia Center from:</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/decatur-georgia/\">Decatur</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/athens-georgia/\">Athens</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/alpharetta-georgia/\">Alpharetta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/columbus-georgia/\">Columbus</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/roswell-georgia/\">Roswell</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/fulton-county-georgia/\">Fulton County</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">Out of Town Patients</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your <a href=\"https://atlantagynecomastia.com/what-is-gyno/\">gynecomastia (male breast reduction)</a> surgery will be performed by one of the&nbsp;premier gynecomastia surgeons in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Jonathan Smith has deep expertise in all <a href=\"https://atlantagynecomastia.com/gynecomastia-types/\">types of gynecomastia surgery</a>, including:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia Surgery</a>: Adult gynecomastia is a condition usually attributed to a hormonal imbalance between testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia Surgery</a>: Adolescent gynecomastia occurs in boys going through puberty and is caused by fluctuations in the natural levels of testosterone and estrogen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia Surgery</a>: The use of anabolic steroids or prohormones can trigger the onset of gynecomastia, which can be remedied through gynecomastia surgery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision Surgery</a>: If you have undergone an initial gynecomastia surgery that was either performed improperly or healed poorly, gynecomastia revision surgery might be a great option for you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Psuedogynecomastia Surgery</a>: Pseudogynecomastia is characterized by an excess buildup of fatty tissue in the chest, which closely resembles the look of actual gynecomastia.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipple Gynecomastia Surgery</a>: \"Puffy nipple\" describes the swelling of the nipples and the adjacent areolar regions. While it may be less noticeable, it can nonetheless lead to considerable discomfort for individuals experiencing it.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a>: While gynecomastia can occur at any age, it becomes increasingly prevalent among seniors due to various factors, including hormonal changes, medications, and age-related health conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Gynecomastia After Weight Loss</a>: Gynecomastia can also be found in adult males who have undergone significant weight loss. In such cases, excess skin and tissue may remain, contributing to the appearance of enlarged breasts.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As one of the forefront leaders in gynecomastia treatment, we utilize the latest techniques in <a href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">minimally invasive male breast reduction surgery</a> to ensure superior surgical results and make the recovery process as swift and smooth as possible.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Location Page Service Summary','','inherit','closed','closed','','3725-revision-v1','','','2024-03-31 14:23:58','2024-03-31 14:23:58','',3725,'https://atlantagynecomastia.com/?p=4473',0,'revision','',0),(4486,5,'2024-06-05 22:08:00','2024-06-05 22:08:00','<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">COMING SOON!</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_63f8f3-6e\",\"tabletLayout\":\"row\",\"tabletRowGutter\":\"none\",\"customRowGutter\":[30,\"\",\"\"],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"align\":\"full\",\"topSep\":\"\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"sm\",\"\",\"0\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_40d1a0-66\",\"textAlign\":[\"center\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"xxl\",\"lg\",\"xxl\",\"0\"],\"tabletPadding\":[\"sm\",\"md\",\"lg\",\"md\"],\"mobilePadding\":[\"\",\"xs\",\"\",\"xs\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_40d1a0-66 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_96922b-ca\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}]} -->\n<h2 class=\"kt-adv-heading1275_96922b-ca wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1275_96922b-ca\">Jonathan Smith MD</h2>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1275_a7df92-46\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\",\"className\":\"has-md-font-size\"} -->\n<p class=\"kt-adv-heading1275_a7df92-46 has-md-font-size wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1275_a7df92-46\">Dr. Smith is one of the head plastic surgeons at the Atlanta Gynecomastia Center. With a significant educational background and over 30 years of experience, Dr. Smith is one of the highest regarded gynecomastia plastic surgeons in Georgia.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_c84dc5-7d\",\"backgroundImg\":[{\"bgImg\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta_Gynecomastia_Center_Doctor.jpg\",\"bgImgID\":4313,\"bgImgSize\":\"cover\",\"bgImgPosition\":\"54% 18%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\"}],\"textAlign\":[\"\",null,\"\"],\"direction\":[\"vertical\",\"vertical\",\"\"],\"verticalAlignmentTablet\":\"\",\"overlayOpacity\":0,\"height\":[680,400,300],\"tabletPadding\":[\"\",\"0\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1275_c84dc5-7d kb-section-dir-vertical kb-section-md-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1275_817d67-13\",\"columns\":1,\"colLayout\":\"equal\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1275_2ce07e-72\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1275_2ce07e-72\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith embarked on his medical journey with an internship and general surgery training in Atlanta, Georgia. After he graduated, he pursued an additional two years of plastic surgery residency.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Smith\'s career has been marked by active engagement in education and scholarship, including delivering lectures, writing numerous articles and chapters for textbooks, and teaching residents and medical students about different facets of plastic surgery. He is board certified from the American Board of Plastic Surgery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today, Dr. Smith leads the Atlanta Gynecomastia Center, one of the premier gynecomastia surgery practices in Georgia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>Bachelor of Science</strong>: <a href=\"https://www.uga.edu/\" target=\"_blank\" rel=\"noreferrer noopener\">University of Georgia</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Doctor of Medicine</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Post Graduate Education</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><strong>General Surgery</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Plastic Surgery Residency</strong>: Emory School of Medicine</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Medical Boards &amp; Societies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li><a href=\"https://www.plasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Society of Plastic Surgeons</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><a href=\"https://www.abplasticsurgery.org/\" target=\"_blank\" rel=\"noreferrer noopener\">American Board of Plastic Surgery</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Meet the Doctors','','inherit','closed','closed','','1275-revision-v1','','','2024-06-05 22:08:00','2024-06-05 22:08:00','',1275,'https://atlantagynecomastia.com/?p=4486',0,'revision','',0),(4490,5,'2024-07-11 22:56:22','2024-07-11 22:56:22','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_688689-25\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_ec038e-ba\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_ec038e-ba\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_31c1f7-49\",\"align\":\"center\",\"color\":\"palette4\",\"letterSpacing\":2,\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette4\",\"htmlTag\":\"div\",\"fontSize\":[\"sm\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1482_31c1f7-49 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1482_31c1f7-49\">The Atlanta Gynecomastia Center</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Learn About the Types of Gynecomastia</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1482_036f4a-eb\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1482_036f4a-eb wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1482_036f4a-eb\">Read about the different types of gynecomastia and understand why you may be experiencing this condition. If surgery is the right choice for you, we\'re here to help - <a href=\"https://atlantagynecomastia.com/contact/\">contact us today</a>.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_38cf60-00\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_8db1da-e8\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_8db1da-e8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_be84af-07\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_be84af-07\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Similar to many cases of gynecomastia, adult gynecomastia usually stems from a hormonal imbalance between testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adult Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_f6ebee-26\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_f6ebee-26\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_639feb-d8\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_639feb-d8\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Adolescent Gynecomastia</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_a6a290-cb\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_7f0a60-59\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_7f0a60-59\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_3373e6-75\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_3373e6-75\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Bodybuilder Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c2b8c0-86\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c2b8c0-86\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_daa92f-20\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_daa92f-20\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h2><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Revision Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_956a28-79\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_51263e-9a\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_51263e-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ef8723-86\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ef8723-86\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Psuedogynecomastia</h2><p class=\"kt-blocks-info-box-text\">It\'s possible that male breast enlargement may not be due to excess gland tissue. Instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Pseudo Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_c947fa-da\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_c947fa-da\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_d85976-8f\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_d85976-8f\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Puffy Nipple</h2><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still cause a great deal of distress for those who are affected.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Puffy Nipple</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_b149ec-63\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_cfadfd-5e\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_cfadfd-5e\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_ff7631-0e\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_ff7631-0e\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h2><p class=\"kt-blocks-info-box-text\">At any age, gynecomastia may develop. However, it becomes more common among seniors due to factors such as hormonal shifts, medications, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Senior Gyno</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"background\":\"palette1\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_fda015-8c\",\"backgroundHover\":\"palette2\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1482_fda015-8c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1482_5923d4-a2\",\"containerBackground\":\"palette1\",\"containerHoverBackground\":\"palette2\",\"containerPadding\":[\"sm\",\"xs\",\"sm\",\"xs\"],\"mediaType\":\"none\",\"titleColor\":\"palette9\",\"titleFont\":[{\"level\":2,\"size\":[\"lg\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"textColor\":\"palette9\",\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[8,15,8,15],\"paddingControl\":\"individual\",\"margin\":[25,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette3\",\"background\":\"palette9\",\"border\":\"\",\"borderRadius\":6,\"borderWidth\":[0,0,0,0],\"borderControl\":\"linked\",\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1482_5923d4-a2\"><a class=\"kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\"><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">After Weight Loss</h2><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><span class=\"kt-blocks-info-box-learnmore\">Gyno After Weight Loss</span></div></div></a></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1482_8dc843-97\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayFirstOpacity\":1,\"align\":\"full\",\"bgColorClass\":\"theme-palette9\",\"padding\":[\"sm\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1482_201a86-26\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1482_201a86-26 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Schedule a Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:block {\"ref\":3808} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:block {\"ref\":2069} /-->','Types of Gynecomastia','','inherit','closed','closed','','1482-revision-v1','','','2024-07-11 22:56:22','2024-07-11 22:56:22','',1482,'https://atlantagynecomastia.com/?p=4490',0,'revision','',0),(4491,3,'2024-10-10 21:09:01','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-10-10 21:09:01','0000-00-00 00:00:00','',0,'https://atlantagynecomastia.com/?p=4491',0,'post','',0),(4492,3,'2024-10-10 21:09:37','2024-10-10 21:09:37','<!-- wp:kadence/rowlayout {\"uniqueID\":\"3071_16f9d3-a0\",\"columns\":1,\"colLayout\":\"equal\",\"borderRadius\":[2,2,2,2],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#038387\",\"\",\"\"],\"right\":[\"#038387\",\"\",\"\"],\"bottom\":[\"#038387\",\"\",\"\"],\"left\":[\"#038387\",\"\",\"\"],\"unit\":\"px\"}],\"anchor\":\"schedule-consultation\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"3071_4b06ab-30\",\"justifyContent\":[null,\"\",\"\"],\"padding\":[\"0\",\"xs\",\"\",\"xs\"],\"mobilePadding\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column3071_4b06ab-30\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule a FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"3071_5cb9af-f9\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading3071_5cb9af-f9 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading3071_5cb9af-f9\">Get in contact with the Atlanta Gynecomastia Center to plan your free consultation and see if surgery is the right option for you.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"3071_f4ff7d-ac\",\"postID\":\"3071\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[4,16,4,16],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"actions\":[\"email\",\"entry\"],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Contact]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-3071_f4ff7d-ac kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_f4ff7d-ac_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_3071_f4ff7d-ac_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_f4ff7d-ac_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_3071_f4ff7d-ac_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_f4ff7d-ac_2\">Phone<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_3071_f4ff7d-ac_2\" data-label=\"Phone\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_3071_f4ff7d-ac_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_3071_f4ff7d-ac_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"3071_f4ff7d-ac\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"3071\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','FREE Consultation Form (On page)','','inherit','closed','closed','','3071-revision-v1','','','2024-10-10 21:09:37','2024-10-10 21:09:37','',3071,'https://atlantagynecomastia.com/?p=4492',0,'revision','',0),(4493,3,'2024-10-10 21:09:56','2024-10-10 21:09:56','<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f799d9-27\",\"collapseGutter\":\"none\",\"customRowGutter\":[0,\"\",\"\"],\"columnGutter\":\"custom\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"minHeight\":674,\"maxWidth\":1242,\"bgColor\":\"palette7\",\"bgImgPosition\":\"10% 52%\",\"overlayFirstOpacity\":1,\"overlayOpacity\":26,\"overlayBlendMode\":\"normal\",\"topSep\":\"mtns\",\"topSepColor\":\"palette3\",\"topSepHeight\":105,\"topSepHeightTab\":106,\"topSepHeightMobile\":50,\"bottomSep\":\"mtns\",\"bottomSepHeight\":92,\"bottomSepWidthMobile\":109,\"bottomSepHeightTab\":69,\"bottomSepHeightMobile\":81,\"tabletPadding\":[100,20,100,20],\"columnsUnlocked\":true,\"tabletBackground\":[{\"enable\":false,\"bgColor\":\"palette3\",\"bgImg\":\"\",\"bgImgID\":\"\",\"bgImgSize\":\"cover\",\"bgImgPosition\":\"47% 32%\",\"bgImgAttachment\":\"scroll\",\"bgImgRepeat\":\"no-repeat\",\"forceOverDesk\":false}],\"topSepWidthMobile\":109,\"inheritMaxWidth\":true,\"minHeightMobile\":225,\"bgColorClass\":\"theme-palette7\",\"gradient\":\"linear-gradient(135deg,var(\\u002d\\u002dglobal-palette5,var(\\u002d\\u002dglobal-palette5)) 0%,rgb(20,39,109) 100%)\",\"padding\":[\"xs\",\"\",\"sm\",\"\"],\"mobilePadding\":[10,15,0,15],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_46fa70-bc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"verticalAlignment\":\"middle\",\"padding\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"lg\",\"\",\"\",\"\"],\"tabletMargin\":[\"\",\"\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_46fa70-bc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_79ae4b-59\",\"color\":\"palette3\",\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"0\"],\"mobilePadding\":[\"0\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"xl\",\"\",\"\"]} -->\n<h1 class=\"kt-adv-heading1329_79ae4b-59 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_79ae4b-59\">Atlanta Gynecomastia Center</h1>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_0f4357-0b\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_0f4357-0b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a451ac-ad\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[28,\"\",\"md\"],\"fontHeight\":[40,40,30],\"fontHeightType\":\"px\"} -->\n<p class=\"kt-adv-heading1329_a451ac-ad wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a451ac-ad\">Welcome to the Atlanta Gynecomastia Center, where our board-certified plastic surgeons specialize in transformative male breast reduction surgery.<br><br>Reach out today to schedule your free consultation to understand whether surgery is right for you!</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ab7bd7-ac\",\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"mobilePadding\":[\"\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ab7bd7-ac kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"background\":\"#ffffff\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9c33a-31\",\"textAlign\":[\"left\",\"\",\"\"],\"displayShadow\":true,\"shadow\":[{\"color\":\"#000000\",\"opacity\":0.3,\"spread\":0,\"blur\":25,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"direction\":[\"vertical\",\"\",\"\"],\"justifyContent\":[\"flex-start\",\"\",\"\"],\"gutter\":[0,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"rowGap\":[0,\"\",\"\"],\"rowGapVariable\":[\"none\",\"\",\"\"],\"verticalAlignment\":\"top\",\"padding\":[\"md\",\"md\",\"md\",\"md\"],\"mobilePadding\":[\"xs\",\"xs\",\"xs\",\"xs\"],\"margin\":[75,\"\",75,\"\"],\"tabletMargin\":[\"md\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9c33a-31 kb-section-dir-vertical inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_64a779-cd\",\"align\":\"left\",\"color\":\"\",\"fontWeight\":\"700\",\"margin\":[\"xs\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\",\"fontSize\":[20,\"\",\"lg\"],\"fontHeight\":[1.1,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_64a779-cd wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_64a779-cd\">Request a Free Consultation</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_895fac-0b\",\"color\":\"\",\"fontWeight\":\"inherit\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_895fac-0b wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_895fac-0b\">Fill out this quick form and the Atlanta Gynecomastia Center will get back to you as soon as possible.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_8cc225-8a\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"100\",\"\",\"100\"],\"auto\":\"\",\"errorMessage\":\"\",\"requiredMessage\":\"\",\"slug\":\"\",\"ariaLabel\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"small\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette3\",\"requiredColor\":\"#af1818\",\"background\":\"\",\"border\":\"\",\"backgroundOpacity\":0,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[0,0,3,0],\"colorActive\":\"\",\"backgroundActive\":\"\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":\"\",\"gutterType\":\"px\",\"tabletRowGap\":\"\",\"mobileRowGap\":\"\",\"tabletGutter\":\"\",\"mobileGutter\":\"\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"400\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\\u003cstrong\\u003eRequest today\\u003c/strong\\u003e\",\"width\":[\"100\",\"\",\"\"],\"size\":\"standard\",\"widthType\":\"full\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette1\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":5,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"submitFont\":[{\"size\":[\"sm\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":1,\"textTransform\":\"uppercase\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"actions\":[\"email\",\"entry\"],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Top]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"tabletContainerMargin\":[\"\",\"\",\"0\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_8cc225-8a kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_0\">Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_8cc225-8a_0\" data-label=\"Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_8cc225-8a_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-100 kb-field-mobile-width-100 kb-input-size-small\"><label for=\"kb_field_1329_8cc225-8a_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_8cc225-8a_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_8cc225-8a\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-standard kb-button-width-full\"><strong>Request today</strong></button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_56bc26-fc\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"bgImgAttachment\":\"fixed\",\"overlayFirstOpacity\":1,\"overlayOpacity\":80,\"align\":\"full\",\"textColor\":\"palette3\",\"linkColor\":\"palette4\",\"linkHoverColor\":\"palette5\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba012a-ab\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba012a-ab\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Top Rated Atlanta Gynecomastia Plastic Surgeon</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Atlanta Gynecomastia Center is situated in the heart of Atlanta, Georgia. We are your one-stop shop for gynecomastia focused specialty plastic surgery (also known as male breast reduction). Our goal is to help you become your best, most confident self, guided by the precision and care of our skilled board-certified plastic surgeon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the Atlanta Gynecomastia Center, your overall health and well-being are our top priorities. We want to ensure you have a smooth, comfortable experience with us - from your first consultation to post-operative care. With the help of our skilled physicians and devoted staff, we\'re committed to treating gynecomastia with the best service possible. Your confidence and comfort matter most to us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As pioneers in gynecomastia surgery, we take great satisfaction in offering individualized, all-encompassing treatment that is tailored to your unique needs. Whether you\'re looking for answers or are prepared to begin your journey, we encourage you to get in touch with our renowned Atlanta, Georgia practice. Are you ready to take that step toward confidence? We are here to help you out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_6c6a58-8f\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_6c6a58-8f\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_b6f514-20\",\"text\":\"Contact Us Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dfdc74-e9\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_bd037e-da\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bd037e-da inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Gynecomastia, often referred to as gyno, occurs when men develop excess breast gland tissue. In many cases, the gland development is due to hormonal imbalances. These imbalances typically involve an excess of estrogen, a deficiency in testosterone, or a combination of both.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">In addition to excess breast gland tissue, many individuals also have excess fatty tissue that contributes to this condition. Successful gynecomastia surgery involves the removal of both glandular and fatty tissue through excision and liposuction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Embarking on a gynecomastia surgery journey can be truly transformative, offering both physical and emotional benefits. By sculpting a more contoured chest, the procedure can significantly boost your confidence and improve your body image. Our dedicated team is here to provide support and guidance throughout your journey, helping you feel comfortable and confident in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Explore the resources below to learn more about gynecomastia, its causes, frequently asked questions, and the different grades of the condition. We\'re here to educate you with the knowledge you need to make informed decisions about your health and well-being.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_b38998-d1\",\"columns\":4,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"\",\"\",\"md\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_80a40b-0c\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_80a40b-0c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_84cd0c-1f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[7,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_84cd0c-1f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Overview</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, also known as \'Man Boobs,\' is a condition characterized by the development of excess breast tissue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/what-is-gyno/\">Learn More About Gyno</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_67cba5-3b\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_67cba5-3b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_770a88-f5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_770a88-f5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gyno Causes</h3><p class=\"kt-blocks-info-box-text\">Hormonal imbalance, particularly between estrogen and testosterone, stands as one of the primary drivers behind gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/causes-of-gynecomastia/\">What Causes Gyno?</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_d34283-fe\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_d34283-fe\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_c0f26e-2b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_c0f26e-2b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Grades &amp; Stages</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can be categorized into different grades or stages, each reflecting the severity of the condition.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-grades-stages/\">Gyno Grades</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"background\":\"palette9\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_56003b-4d\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_56003b-4d\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_ba0a3d-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[6,6,6,6],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_ba0a3d-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia FAQs</h3><p class=\"kt-blocks-info-box-text\">Feel free to browse through some of the most commonly asked questions regarding gynecomastia surgery in Atlanta, Georgia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/\">Gyno FAQs</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_37f662-74\",\"customRowGutter\":[30,\"\",\"\"],\"tabletGutter\":\"default\",\"customGutter\":[32,32,\"\"],\"colLayout\":\"row\",\"bgImgPosition\":\"54% 49%\",\"overlay\":\"palette8\",\"overlayFirstOpacity\":1,\"overlayOpacity\":40,\"overlayBlendMode\":\"normal\",\"align\":\"full\",\"tabletPadding\":[\"\",\"sm\",\"md\",\"sm\"],\"inheritMaxWidth\":true,\"gradient\":\"linear-gradient(180deg,var(u002du002dglobal-palette4,#2D3748) 30%,var(u002du002dglobal-palette9,#ffffff) 30%)\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"xxl\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_f7b2a0-cd\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f7b2a0-cd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Are You a Candidate?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Are you thinking about gynecomastia surgery in Atlanta? We get it – dealing with this condition can really affect your livelihood and overall well-being. Here at the Atlanta Gynecomastia Center, we\'re all about helping people like you find the right surgical solutions for male breast reduction. Wondering if you\'re a good fit for the procedure? Let\'s dive into what it entails...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_e3f190-56\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_e3f190-56\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2818d3-dd\",\"textAlign\":[null,\"\",\"\"],\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2818d3-dd inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_f04df7-25\",\"columns\":3,\"tabletLayout\":\"first-row\",\"tabletRowGutter\":\"none\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[\"\",0,\"\"],\"colLayout\":\"equal\",\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_140c32-f3\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_140c32-f3 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Ongoing Problem</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_c66884-ef\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_c66884-ef wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_c66884-ef\">If you\'ve tried other treatments for gynecomastia without success, male breast reduction surgery could be the solution you\'re looking for.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_503bf4-ae\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_503bf4-ae inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Constant Discomfort</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_addcc1-4a\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_addcc1-4a wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_addcc1-4a\">Do you feel uncomfortable, both physically and mentally, due to the size of your breasts? This surgery offers you the chance to lead a more comfortable life.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_9f10c0-fb\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_9f10c0-fb inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Optimal Health</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_52e17c-4e\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_52e17c-4e wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_52e17c-4e\">We recommend candidates to be in good overall health, without any conditions that may affect healing. Speak with our doctors to determine if you\'re eligible for surgery.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_14f2a2-cc\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_14f2a2-cc inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Practical Outlook</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_3bf98d-35\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_3bf98d-35 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_3bf98d-35\">Recognizing that gynecomastia surgery can greatly improve chest appearance is important. But it is also essential to have realistic expectations. Absolute perfection may not be achievable due to individual anatomical variations and other factors.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1b9672-f0\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1b9672-f0 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\"><strong>Adolescents</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_65a720-5c\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_65a720-5c wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_65a720-5c\">While gynecomastia surgeries are commonly performed on adult men, adolescents dealing with severe cases may also find them beneficial. However, it\'s important to understand the potential need for additional surgeries as their bodies continue to develop.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c82ea9-33\",\"textAlign\":[null,\"\",\"\"],\"textColor\":\"palette3\",\"paddingType\":\"%\",\"tabletPadding\":[\"0\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c82ea9-33 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-md-font-size\"} -->\n<h3 class=\"wp-block-heading has-md-font-size\">Visit Us!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d082da-16\",\"color\":\"palette4\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_d082da-16 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d082da-16\">Ready to start your journey towards greater confidence? Reach out today to <a href=\"https://atlantagynecomastia.com/contact/\">schedule a consultation</a> with our team. Don\'t let gynecomastia stand in your way any longer. Let us guide you towards the chest you\'ve been dreaming of.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_63bf41-a2\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_63bf41-a2\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_7e6a6d-be\",\"text\":\"Gyno Candidacy Overview\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-candidates/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c19bd2-21\",\"columns\":1,\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"bgColor\":\"palette8\",\"tabletPadding\":[30,100,0,100],\"bgColorClass\":\"theme-palette8\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",20,\"\",20],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_841539-37\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_841539-37 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_dd30ea-a7\",\"columns\":1,\"collapseGutter\":\"none\",\"columnGutter\":\"none\",\"colLayout\":\"equal\",\"currentTab\":\"mobile\",\"maxWidth\":1242,\"padding\":[0,0,0,0],\"mobilePadding\":[0,0,0,0],\"margin\":[0,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_944a68-ac\",\"padding\":[10,10,10,10],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_944a68-ac inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/spacer {\"spacerHeight\":20,\"dividerColor\":\"palette6\",\"dividerWidth\":100,\"uniqueID\":\"1329_6d160a-ab\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_6d160a-ab\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_5b7023-dc\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1242,\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"margin\":[40,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_15b320-aa\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_15b320-aa inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_31fccd-20\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_31fccd-20\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\" alt=\"Adult Gynecomastia Atlanta\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4334\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adult Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Similar to many instances of gynecomastia, adult gynecomastia usually results from an imbalance between the hormones testosterone and estrogen.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/\">Adult Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f944da-a1\",\"textColor\":\"palette3\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"justifyContent\":[null,\"\",\"\"],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f944da-a1 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_fb772c-4e\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_fb772c-4e\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\" alt=\"Adolescent Gynecomastia Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4335\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Adolescent Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Throughout puberty in boys, shifts in the natural production of testosterone and estrogen can lead to the development of gynecomastia.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/\">Adolescent Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_6712e0-a6\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-2\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6712e0-a6 inner-column-2\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_573845-bf\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"width\":1280,\"height\":852,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_573845-bf\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\" alt=\"Bodybuilder Gynecomastia Atlanta\" width=\"1280\" height=\"852\" class=\"kt-info-box-image wp-image-4331\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Bodybuilder Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">The use of anabolic steroids or prohormones by bodybuilders can potentially lead to the development of gynecomastia. If the condition persists, surgical treatment can offer a long-term solution.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/\">Bodybuilder Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_e3240e-3b\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e3240e-3b inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_cae549-9b\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_cae549-9b\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\" alt=\"Gynecomastia Revision Surgery\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4325\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Revision</h3><p class=\"kt-blocks-info-box-text\">Revision surgery for gynecomastia may be necessary for various reasons. Sometimes, the initial surgery may have been performed improperly, or complications during healing may have led to unsatisfactory results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/\">Gynecomastia Revision</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4a1f93-1f\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4a1f93-1f inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0870a0-9f\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\",\"id\":4339,\"alt\":\"What is Pseudogynecomastia\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0870a0-9f\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg\" alt=\"What is Pseudogynecomastia\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4339\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Pseudogynecomastia</h3><p class=\"kt-blocks-info-box-text\">In certain instances, male breast enlargement may not be primarily due to excess gland tissue but instead, it may be caused by an accumulation of excess adipose tissue. In such cases, liposuction can effectively address the issue.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/\">Pseudogynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_abb51a-a5\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_abb51a-a5 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_484bdd-77\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_484bdd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\" alt=\"Puffy Nipple Treatment\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4320\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Puffy Nipples</h3><p class=\"kt-blocks-info-box-text\">Puffy nipple, a subtype of gynecomastia, is the enlargement of nipples and the surrounding areolae. Though it may be less pronounced, it can still evoke considerable distress for individuals experiencing it.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/\">Puffy Nipples</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_f588ca-9c\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_f588ca-9c inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_8fae6a-21\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"width\":1280,\"height\":853,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_8fae6a-21\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\" alt=\"Senior Gynecomastia Surgery Atlanta\" width=\"1280\" height=\"853\" class=\"kt-info-box-image wp-image-4319\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Senior Gynecomastia</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia can appear at any age, but it becomes more common among seniors due to a combination of factors such as hormonal shifts, medication usage, and age-related health conditions.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/\">Senior Gynecomastia</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_04ee5d-46\",\"padding\":[0,0,0,0],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2,\"className\":\"inner-column-3\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_04ee5d-46 inner-column-3\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_60316a-13\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"rgba(248, 247, 243, 0)\",\"containerBorderOpacity\":0,\"mediaType\":\"image\",\"mediaImage\":[{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"width\":1280,\"height\":854,\"maxWidth\":300,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"jpeg\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"\",\"size\":50,\"width\":2,\"title\":\"\",\"color\":\"#444444\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"transparent\",\"hoverBackground\":\"transparent\",\"border\":\"#444444\",\"hoverBorder\":\"#444444\",\"borderRadius\":15,\"borderWidth\":[0,0,0,0],\"padding\":[10,10,10,10],\"margin\":[0,15,0,15]}],\"titleFont\":[{\"level\":3,\"size\":[24,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"textColor\":\"palette3\",\"textFont\":[{\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[31,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"textSpacing\":[{\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[0,0,20,0],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[0,0,0,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette8\",\"border\":\"#555555\",\"borderRadius\":5,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\"}],\"borderStyle\":[{\"top\":[\"palette4\",\"\",\"\"],\"right\":[\"palette4\",\"\",\"\"],\"bottom\":[\"palette4\",\"\",\"\"],\"left\":[\"palette4\",\"\",\"\"],\"unit\":\"px\"}],\"borderHoverStyle\":[{\"top\":[\"palette6\",\"\",\"\"],\"right\":[\"palette6\",\"\",\"\"],\"bottom\":[\"palette6\",\"\",\"\"],\"left\":[\"palette6\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[5,5,5,5],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_60316a-13\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic-container\"><div class=\"kadence-info-box-image-intrisic kt-info-animate-none\"><div class=\"kadence-info-box-image-inner-intrisic\"><img src=\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\" alt=\"Post Weight Loss Gynecomastia\" width=\"1280\" height=\"854\" class=\"kt-info-box-image wp-image-4321\"/></div></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">After Weight Loss</h3><p class=\"kt-blocks-info-box-text\">Gynecomastia, particularly noticeable in adult males, may occur after significant weight loss. In such cases, leftover excess skin and tissue can contribute to the appearance of enlarged breasts.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/\">Post Weight Loss</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_fbdc0b-d3\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"topSep\":\"sltl\",\"topSepColor\":\"palette9\",\"bottomSep\":\"sltl\",\"bottomSepColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1048df-db\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1048df-db\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Gynecomastia Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_393b04-78\",\"align\":\"center\",\"margin\":[\"xxs\",\"\",\"\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"maxWidth\":[700,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_393b04-78 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_393b04-78\">At the Atlanta Gynecomastia Center, our friendly staff will warmly welcome you and ensure your comfort and privacy. Our experienced gynecomastia surgeon will conduct a thorough evaluation during your free in-person or virtual consultation. This includes discussing your medical history, addressing any concerns you have, and understanding your desired outcomes.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_adfb8e-8b\",\"columns\":3,\"tabletLayout\":\"two-grid\",\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_799e9e-a8\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_799e9e-a8\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_3d49f6-d5\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_phone\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":1,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_3d49f6-d5\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_phone\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Open Discussion</h3><p class=\"kt-blocks-info-box-text\">Please feel free to ask questions and share any concerns you may have with our doctors. Our team is here to have a conversation with you about gynecomastia surgery, its procedures, and whether it aligns with your needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_4f313f-87\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_4f313f-87\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_4ffc4e-58\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_search\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_4ffc4e-58\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_search\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Physical Examination</h3><p class=\"kt-blocks-info-box-text\">The surgeon will conduct a physical examination to assess the extent of the condition. This evaluation helps in determining the most suitable treatment options tailored to your individual needs.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_c9d573-10\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c9d573-10\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_9f8edb-23\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_bookOpen\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_9f8edb-23\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_bookOpen\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Treatment Options</h3><p class=\"kt-blocks-info-box-text\">You will receive comprehensive information about both surgical and non-surgical treatment options. This ensures that you are well-informed and empowered to make the best decision for yourself.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_7962f8-5b\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7962f8-5b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_761881-08\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_alertCircle\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_761881-08\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_alertCircle\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Risks &amp; Expectations</h3><p class=\"kt-blocks-info-box-text\">We\'ll give you thorough details about the procedure, potential risks, and expected results. This way, you\'ll have realistic expectations and be fully prepared for what lies ahead.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_bbe699-00\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_bbe699-00\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_0000f8-d6\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_thumbsUp\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_0000f8-d6\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_thumbsUp\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Personalized Care</h3><p class=\"kt-blocks-info-box-text\">At our center, the consultation process emphasizes patient education and personalized care. We are dedicated to ensuring that your experience is positive and that you achieve a successful outcome.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":3,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[5,5,5,5],\"uniqueID\":\"1329_2a664a-a7\",\"displayShadow\":true,\"shadow\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"borderHoverRadius\":[5,5,5,5],\"displayHoverShadow\":true,\"shadowHover\":[{\"color\":\"#d1d4dd\",\"opacity\":1,\"spread\":0,\"blur\":14,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2a664a-a7\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_890033-f3\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerHoverBackground\":\"palette9\",\"containerPadding\":[\"sm\",\"sm\",\"sm\",\"sm\"],\"mediaImage\":[{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"width\":\"\",\"height\":\"\",\"maxWidth\":100,\"hoverAnimation\":\"none\",\"flipUrl\":\"\",\"flipId\":\"\",\"flipAlt\":\"\",\"flipWidth\":\"\",\"flipHeight\":\"\",\"subtype\":\"\",\"flipSubtype\":\"\"}],\"mediaIcon\":[{\"icon\":\"fe_check\",\"size\":40,\"width\":1.5,\"title\":\"\",\"color\":\"#2d3748\",\"hoverColor\":\"#444444\",\"hoverAnimation\":\"none\",\"flipIcon\":\"\"}],\"mediaStyle\":[{\"background\":\"\",\"hoverBackground\":\"\",\"border\":\"\",\"hoverBorder\":\"\",\"borderRadius\":0,\"borderWidth\":[0,0,0,0],\"padding\":[0,0,0,0],\"margin\":[10,0,10,0]}],\"titleFont\":[{\"level\":3,\"size\":[\"md\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"300\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[0,0,0,0],\"paddingControl\":\"linked\",\"margin\":[5,0,10,0],\"marginControl\":\"individual\"}],\"displayShadow\":true,\"shadow\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0}],\"shadowHover\":[{\"color\":\"#1b202c\",\"opacity\":0.2,\"spread\":0,\"blur\":0,\"hOffset\":0,\"vOffset\":0,\"inset\":false}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_890033-f3\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span data-name=\"fe_check\" data-stroke=\"1.5\" data-class=\"kt-info-svg-icon\" class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Book a Consultation</h3><p class=\"kt-blocks-info-box-text\">The Atlanta Gynecomastia Center is here to assist you. Don\'t hesitate to contact us today to schedule your complimentary consultation and begin your journey towards male breast reduction.</p></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_2e7d53-c9\",\"padding\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_2e7d53-c9\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_856dfe-bf\",\"text\":\"Schedule a Consultation Today!\",\"link\":\"https://atlantagynecomastia.com/contact/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_298e6f-f5\",\"columns\":1,\"customRowGutter\":[30,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"overlayBgImg\":\"https://xoeyed-bear-defo.instawp.xyz/wp-content/uploads/2021/10/lines.jpeg\",\"overlayOpacity\":100,\"overlayBlendMode\":\"multiply\",\"verticalAlignment\":\"middle\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"lg\",\"\",\"sm\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_e50dec-63\",\"textAlign\":[\"center\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_e50dec-63 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-xl-font-size\">Gyno Surgery &amp; Recovery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">When considering surgery day and post-surgery, there are several crucial aspects to consider. Our doctors will thoroughly explain these and more during the initial consultations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">What to Anticipate During Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_41c35b-af\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_41c35b-af\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_877dd4-35\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_877dd4-35 kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_49890a-e2\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_49890a-e2\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">At the Atlanta Gynecomastia Center, male breast reduction surgery is a meticulous process tailored to each patient\'s unique needs. The procedure will be performed while you\'re under anesthesia, ensuring complete comfort throughout the duration of the surgery. Depending on the patient\'s condition, our surgeon may perform gland excision, liposuction, or a combination of both.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_29d58f-21\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_29d58f-21\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Gland excision involves the removal of excess glandular tissue through discreet incisions strategically placed to minimize scarring. Liposuction targets surplus fat deposits, particularly effective for patients with pseudogynecomastia or excess fatty tissue.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_11d6e6-8f\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_11d6e6-8f\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Throughout the procedure, our surgical team uses precision and finesse to ensure optimal outcomes while prioritizing patient safety and comfort. With advanced techniques and personalized care, patients can anticipate a smoother, more contoured chest following gynecomastia surgery at our Atlanta location.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-left\">Recovery After Gynecomastia Surgery</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1652ec-9b\",\"padding\":[\"md\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"0\",\"\"],\"mobileMargin\":[\"\",\"\",\"0\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1652ec-9b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/iconlist {\"listStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"color\":\"palette3\",\"textTransform\":\"\"}],\"listGap\":24,\"listLabelGap\":24,\"uniqueID\":\"1329_ed4d71-8b\",\"iconAlign\":\"top\",\"iconSize\":[null,\"\",\"\"],\"icon\":\"fe_check\",\"color\":\"palette5\"} -->\n<div class=\"wp-block-kadence-iconlist kt-svg-icon-list-items kt-svg-icon-list-items1329_ed4d71-8b kt-svg-icon-list-columns-1 alignnone kt-list-icon-aligntop\"><ul class=\"kt-svg-icon-list\"><!-- wp:kadence/listitem {\"uniqueID\":\"1329_08d7f7-d0\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_08d7f7-d0\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Following surgery, you will be closely monitored before being discharged with specific instructions for recovery.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2010ea-60\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2010ea-60\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Expect some discomfort and swelling initially, which can be managed with prescribed medications. It is essential to wear a compression garment as directed to support healing and minimize swelling.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_2cb8ab-01\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_2cb8ab-01\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Most patients can resume light activities within a few days but should refrain from strenuous exercise for several weeks. Regular follow-up appointments will monitor progress and ensure optimal results.</span></li>\n<!-- /wp:kadence/listitem -->\n\n<!-- wp:kadence/listitem {\"uniqueID\":\"1329_454ee8-88\",\"icon\":\"fe_check\"} -->\n<li class=\"wp-block-kadence-listitem kt-svg-icon-list-item-wrap kt-svg-icon-list-item-1329_454ee8-88\"><span data-name=\"fe_check\" data-stroke=\"USE_PARENT_DEFAULT_WIDTH\" data-class=\"kt-svg-icon-list-single\" class=\"kadence-dynamic-icon\"></span><span class=\"kt-svg-icon-list-text\">Taking proper care of your body post surgery, and adhering to our post-operative instructions will go a long way towards achieving great results and the chest you\'ve always wanted.</span></li>\n<!-- /wp:kadence/listitem --></ul></div>\n<!-- /wp:kadence/iconlist --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_3a76ee-07\",\"collapseGutter\":\"skinny\",\"customRowGutter\":[10,\"\",\"\"],\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"currentTab\":\"tablet\",\"maxWidth\":1253,\"tabletPadding\":[0,20,0,20],\"columnsInnerHeight\":true,\"inheritMaxWidth\":true,\"padding\":[0,0,0,0],\"mobilePadding\":[\"xs\",\"\",\"lg\",\"\"],\"margin\":[\"lg\",\"\",\"lg\",\"\"],\"mobileMargin\":[1,\"\",0,\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_2b52a1-b5\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_2b52a1-b5\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_b32531-af\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"borderRadius\":[0,0,0,0],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_b32531-af\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Gynecomastia Surgery</h3><p class=\"kt-blocks-info-box-text\">Preparing for gynecomastia surgery involves a lot of important details. Take a look through the timeline below for helpful information.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/gynecomastia-surgery/\">Surgery Timeline</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_ba0a29-b6\",\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",1],\"right\":[\"#2d3748\",\"\",1],\"bottom\":[\"#2d3748\",\"\",1],\"left\":[\"#2d3748\",\"\",1],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_ba0a29-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/infobox {\"uniqueID\":\"1329_a8eeeb-bb\",\"linkProperty\":\"learnmore\",\"containerBackground\":\"palette9\",\"containerPadding\":[\"md\",\"xs\",\"md\",\"xs\"],\"mediaType\":\"none\",\"titleFont\":[{\"level\":3,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"paddingControl\":\"linked\",\"margin\":[\"\",\"\",\"\",\"\"],\"marginControl\":\"individual\"}],\"displayLearnMore\":true,\"learnMoreStyles\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[6,12,6,12],\"paddingControl\":\"individual\",\"margin\":[10,0,10,0],\"marginControl\":\"individual\",\"color\":\"palette2\",\"background\":\"palette9\",\"border\":\"palette4\",\"borderRadius\":6,\"borderWidth\":[1,1,1,1],\"borderControl\":\"linked\",\"colorHover\":\"palette9\",\"backgroundHover\":\"palette4\",\"borderHover\":\"palette4\",\"hoverEffect\":\"revealBorder\",\"paddingTablet\":[\"\",\"\",\"\",\"\"],\"paddingMobile\":[\"\",\"\",\"\",\"\"],\"paddingType\":\"px\",\"textTransform\":\"\"}],\"borderStyle\":[{\"top\":[\"#2d3748\",\"\",\"\"],\"right\":[\"#2d3748\",\"\",\"\"],\"bottom\":[\"#2d3748\",\"\",\"\"],\"left\":[\"#2d3748\",\"\",\"\"],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-infobox kt-info-box1329_a8eeeb-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-top kt-info-halign-center\"><div class=\"kt-infobox-textcontent\"><h3 class=\"kt-blocks-info-box-title\">Before &amp; After</h3><p class=\"kt-blocks-info-box-text\">Interested in some before and after photos of gynecomastia surgery? Browse through our latest procedure results.</p><div class=\"kt-blocks-info-box-learnmore-wrap\"><a class=\"kt-blocks-info-box-learnmore info-box-link\" href=\"https://atlantagynecomastia.com/before-after-results/\">Before &amp; After Photos</a></div></div></div></div>\n<!-- /wp:kadence/infobox --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_0c48fd-63\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"row\",\"bgColor\":\"palette9\",\"align\":\"full\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_adb7ab-b6\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_adb7ab-b6\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_a56ad3-b3\",\"textAlign\":[\"center\",\"\",\"\"],\"maxWidth\":[750,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_a56ad3-b3\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta, Georgia Gynecomastia Cost</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"level\":1,\"uniqueID\":\"1329_18d62c-df\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_18d62c-df wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_18d62c-df\">The cost of gynecomastia surgery in Atlanta and nearby areas can vary due to several factors. Anesthesia fees, facility charges, pre and post-surgery evaluations, and the surgical procedure itself are the biggest line items that determine total cost. We personalize the specifics of each individual procedure and work to make the surgery as efficient and cost-effective as possible. Patient safety is always our number one priority.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cf40c1-9a\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cf40c1-9a\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_43f28d-6c\",\"columns\":3,\"tabletRowGutter\":\"default\",\"mobileRowGutter\":\"default\",\"customRowGutter\":[\"\",30,30],\"mobileGutter\":\"none\",\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_547f4c-2c\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_547f4c-2c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_571358-37\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_571358-37 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_571358-37\">Liposuction only</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_7f2292-a6\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_7f2292-a6 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_7f2292-a6\">$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1c0740-7e\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_1c0740-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_1c0740-7e\">If male breasts are primarily caused by an excess of breast fat tissue, a less complex liposuction surgery may be performed.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8aa83f-8b\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8aa83f-8b\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_11bb3f-93\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_11bb3f-93 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_11bb3f-93\">Stage 1-2 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_897350-80\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_897350-80 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_897350-80\">$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_aba8f3-e3\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_aba8f3-e3 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_aba8f3-e3\">In cases of gynecomastia caused by excess breast gland tissue, a more intricate surgery involving gland excision will be necessary.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_7d758b-85\",\"textAlign\":[\"center\",\"\",\"\"],\"padding\":[\"md\",\"\",\"md\",\"\"],\"mobileMargin\":[\"0\",\"\",\"\",\"\"],\"borderStyle\":[{\"top\":[\"palette3\",\"\",2],\"right\":[\"palette3\",\"\",2],\"bottom\":[\"palette3\",\"\",2],\"left\":[\"palette3\",\"\",2],\"unit\":\"px\"}],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_7d758b-85\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a85366-14\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontSize\":[\"sm\",\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_a85366-14 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a85366-14\">Stage 3-4 gyno</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"level\":3,\"uniqueID\":\"1329_d6a476-1a\",\"align\":\"center\",\"color\":\"palette3\",\"margin\":[\"0\",\"\",\"xxs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"fontSize\":[\"lg\",\"\",\"\"],\"fontHeight\":[1,\"\",\"\"]} -->\n<h3 class=\"kt-adv-heading1329_d6a476-1a wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d6a476-1a\">$$$</h3>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_43ac5b-22\",\"align\":\"center\",\"color\":\"palette3\",\"padding\":[\"\",\"lg\",\"\",\"lg\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_43ac5b-22 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_43ac5b-22\">For more severe cases, a comprehensive procedure would also likely involve the removal of any excess skin around the breast.</p>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_1d258f-1e\"} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_1d258f-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_6c62d0-71\",\"text\":\"See Gynecomastia Plans \\u0026amp; Pricing\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-pricing-insurance/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_14d342-df\",\"columns\":1,\"customGutter\":[32,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"xs\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_03a2c4-85\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"wrapContent\":[\"wrap\",\"\",\"\"],\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_03a2c4-85 kb-section-dir-vertical inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_c50868-29\",\"columns\":1,\"colLayout\":\"equal\",\"maxWidth\":760,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3eba14-5c\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3eba14-5c\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_bb8483-15\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"textTransform\":\"uppercase\",\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontSize\":[\"md\",\"\",\"\"],\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_bb8483-15 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_bb8483-15\">meet our doctors</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Jonathan Smith MD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_618984-dc\",\"align\":\"center\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"0\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"p\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_618984-dc wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_618984-dc\">Dr. Smith is one of the top plastic surgeons serving the Atlanta area. Schedule your free consultation today at the Atlanta Gynecomastia Center.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_7f9f2a-02\",\"btns\":[]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_7f9f2a-02\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_ddde8d-64\",\"text\":\"Meet the Doctors\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-surgery-doctors/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"inheritStyles\":\"inherit\",\"typography\":[{\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"\",\"letterSpacing\":[\"\",\"\",\"\"],\"letterType\":\"px\",\"family\":\"\",\"google\":false,\"style\":\"normal\",\"weight\":\"regular\",\"variant\":\"\",\"subset\":\"\",\"textTransform\":\"\",\"loadGoogle\":true}],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}],\"noCustomDefaults\":true} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_06a3d7-9f\",\"collapseGutter\":\"wider\",\"mobileRowGutter\":\"none\",\"customRowGutter\":[60,\"\",0],\"columnGutter\":\"none\",\"customGutter\":[0,\"\",\"\"],\"colLayout\":\"equal\",\"columnsInnerHeight\":true,\"padding\":[\"sm\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"\",\"lg\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00b723-f4\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00b723-f4\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_c7cd2a-b4\",\"direction\":[\"horizontal\",\"\",\"\"],\"justifyContent\":[\"center\",\"\",\"\"],\"rowGap\":[10,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_c7cd2a-b4 kb-section-dir-horizontal\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/column {\"id\":2,\"background\":\"palette8\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_cbf8e6-fd\",\"linkColor\":\"palette3\",\"linkHoverColor\":\"palette4\",\"direction\":[\"vertical\",\"\",\"\"],\"padding\":[\"lg\",\"lg\",\"lg\",\"lg\"],\"mobilePadding\":[\"md\",\"md\",\"md\",\"md\"],\"margin\":[\"\",100,\"\",-80],\"tabletMargin\":[\"\",\"0\",\"\",\"0\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_cbf8e6-fd kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"level\":3,\"className\":\"has-lg-font-size\"} -->\n<h3 class=\"wp-block-heading has-lg-font-size\">Jonathan Smith MD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_519ece-7e\",\"align\":\"left\",\"color\":\"palette3\",\"letterSpacingType\":\"em\",\"margin\":[\"\",\"\",\"sm\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\",\"fontHeight\":[null,\"\",\"\"],\"fontHeightType\":\"em\",\"maxWidth\":[null,\"\",\"\"]} -->\n<div class=\"kt-adv-heading1329_519ece-7e wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_519ece-7e\"></div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_4a5d4d-f1\",\"columns\":1,\"colLayout\":\"equal\",\"align\":\"full\",\"inheritMaxWidth\":true,\"vsdesk\":true,\"vstablet\":true,\"vsmobile\":true,\"padding\":[\"md\",\"\",\"md\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_8ee58e-f6\",\"kbVersion\":2,\"className\":\"inner-column-1\"} -->\n<div class=\"wp-block-kadence-column kadence-column1329_8ee58e-f6 inner-column-1\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Atlanta Gynecomastia Center Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_ee44ff-5a\",\"align\":\"center\",\"fontWeight\":\"normal\",\"margin\":[\"\",\"\",\"lg\",\"\"],\"markFontWeight\":\"regular\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\",\"fontSize\":[17,null,null],\"maxWidth\":[600,\"\",\"\"]} -->\n<p class=\"kt-adv-heading1329_ee44ff-5a wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_ee44ff-5a\">Dr. Smith strives for complete patient satisfaction, from your free consultation  to your post-op follow-up. Check out just some of the highlights from our patients in the Atlanta area. </p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/testimonials {\"uniqueID\":\"1329_b7d077-34\",\"columns\":[2,2,2,2,1,1],\"gap\":[30,\"\",\"\"],\"containerMaxWidth\":775,\"containerBorder\":\"#eeeeee\",\"borderStyle\":[{\"top\":[\"palette7\",\"\",1],\"right\":[\"palette7\",\"\",1],\"bottom\":[\"palette7\",\"\",1],\"left\":[\"palette7\",\"\",1],\"unit\":\"px\"}],\"responsiveContainerBorderRadius\":[8,8,8,8],\"containerPadding\":[\"md\",\"lg\",\"md\",\"lg\"],\"testimonials\":[],\"mediaStyles\":[{\"width\":50,\"backgroundSize\":\"cover\",\"background\":\"\",\"backgroundOpacity\":1,\"border\":\"#555555\",\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"],\"ratio\":\"\"}],\"mediaPadding\":[0,0,0,0],\"mediaBorderStyle\":[{\"top\":[\"#555555\",\"\",0],\"right\":[\"#555555\",\"\",0],\"bottom\":[\"#555555\",\"\",0],\"left\":[\"#555555\",\"\",0],\"unit\":\"px\"}],\"displayTitle\":false,\"titleFont\":[{\"color\":\"\",\"level\":2,\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":false,\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"contentFont\":[{\"color\":\"palette5\",\"size\":[22,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[35,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"nameFont\":[{\"color\":\"palette4\",\"size\":[17,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[26,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"occupationFont\":[{\"color\":\"palette6\",\"size\":[13,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true}],\"displayRating\":true,\"ratingStyles\":[{\"color\":\"#f0ad4e\",\"size\":16,\"margin\":[\"\",\"\",\"\",\"\"],\"iconSpacing\":\"\",\"icon\":\"fas_star\",\"stroke\":2}],\"ratingPadding\":[\"\",\"\",\"xs\",\"\"],\"iconStyles\":[{\"size\":30,\"margin\":[\"\",\"\",\"\",\"\"],\"padding\":[\"\",\"\",\"\",\"\"],\"borderWidth\":[\"\",\"\",\"\",\"\"],\"borderRadius\":\"\",\"border\":\"\",\"borderOpacity\":1,\"color\":\"\",\"background\":\"\",\"backgroundOpacity\":1,\"title\":\"\",\"icon\":\"fas_star-half\",\"stroke\":2}],\"kbVersion\":2} -->\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_e670ba-bf\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Friendly staff, great physicians. They take care of you from beginning to end and treat you like royalty.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_c28438-b4\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I have experienced two procedures with Dr. Smith and both have had fantastic results. I highly recommend his practice, a fantastic team.”\\u003cbr\\u003e\",\"name\":\"Healthgrades\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_65158b-54\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“I’m extremely grateful to you all! And it\'s not just the fantastic results Dr. Smith gave me, but all of your kindness throughout the process.”\",\"name\":\"Vitals\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n\n<!-- wp:kadence/testimonial {\"uniqueID\":\"1329_008d20-c1\",\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"id\":2867,\"subtype\":\"jpeg\",\"media\":\"icon\",\"icon\":\"fe_thumbsUp\",\"isize\":35,\"color\":\"#555555\",\"content\":\"“Amazing experience, Dr Smith is awesome. Would recommend him to all of my family and friends.”\\u003cbr\\u003e\",\"name\":\"Google\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"https://patterns.startertemplatecloud.com/wp-content/uploads/2023/02/Example-Portrait-Image-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":683,\"width\":1024,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Example-Portrait-Image-1024x683-1.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/01/Example-Portrait-Image-scaled-1.jpg\",\"height\":1707,\"width\":2560,\"orientation\":\"landscape\"}}} /-->\n<!-- /wp:kadence/testimonials -->\n\n<!-- wp:kadence/advancedbtn {\"uniqueID\":\"1329_a36235-1e\",\"padding\":[\"sm\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns1329_a36235-1e\"><!-- wp:kadence/singlebtn {\"uniqueID\":\"1329_70b939-92\",\"text\":\"Check Out Some More Reviews\",\"link\":\"https://atlantagynecomastia.com/gynecomastia-reviews/\",\"padding\":[\"xs\",\"sm\",\"xs\",\"sm\"],\"shadowHover\":[{\"color\":\"#000000\",\"opacity\":0.4,\"spread\":0,\"blur\":5,\"hOffset\":1,\"vOffset\":1,\"inset\":false}]} /--></div>\n<!-- /wp:kadence/advancedbtn --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_e97410-c1\",\"columns\":1,\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"maxWidthUnit\":\"%\",\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"responsiveMaxWidth\":[85,100],\"padding\":[\"lg\",\"\",\"lg\",\"\"],\"mobilePadding\":[\"\",\"sm\",\"\",\"sm\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_001970-1d\",\"justifyContent\":[null,\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_001970-1d\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"has-xl-font-size\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xl-font-size\">Schedule Your FREE Consultation</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_0fd77d-37\",\"align\":\"center\",\"color\":\"palette4\",\"margin\":[\"\",\"\",20,\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette4\",\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_0fd77d-37 wp-block-kadence-advancedheading has-theme-palette-4-color has-text-color\" data-kb-block=\"kb-adv-heading1329_0fd77d-37\">Get in contact with the Atlanta Gynecomastia Center to schedule your free in-person or virtual consultation.</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/form {\"uniqueID\":\"1329_ae8ab9-0b\",\"postID\":\"1329\",\"fields\":[{\"label\":\"Full Name\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"text\",\"required\":true,\"width\":[\"100\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Email\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"email\",\"required\":true,\"width\":[\"50\",\"50\",\"100\"],\"auto\":\"\"},{\"label\":\"Phone Number\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"tel\",\"required\":true,\"width\":[\"50\",\"100\",\"100\"],\"auto\":\"\"},{\"label\":\"Message\",\"showLabel\":true,\"placeholder\":\"\",\"default\":\"\",\"description\":\"\",\"rows\":4,\"options\":[{\"value\":\"\",\"label\":\"\"}],\"multiSelect\":false,\"inline\":false,\"showLink\":false,\"min\":\"\",\"max\":\"\",\"type\":\"textarea\",\"required\":false,\"width\":[\"100\",\"\",\"\"],\"auto\":\"\"}],\"messages\":[{\"success\":\"Submission Success! We will be in touch with you soon.\",\"error\":\"\",\"required\":\"\",\"invalid\":\"\",\"recaptchaerror\":\"\",\"preError\":\"\"}],\"style\":[{\"showRequired\":true,\"size\":\"standard\",\"deskPadding\":[\"\",\"\",\"\",\"\"],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"palette4\",\"requiredColor\":\"#af1818\",\"background\":\"palette9\",\"border\":\"#718096\",\"backgroundOpacity\":1,\"borderOpacity\":0.4,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorActive\":\"palette3\",\"backgroundActive\":\"palette9\",\"borderActive\":\"\",\"backgroundActiveOpacity\":1,\"borderActiveOpacity\":1,\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientActive\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"backgroundType\":\"solid\",\"backgroundActiveType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowActive\":[false,\"#000000\",0.4,2,2,3,0,false],\"fontSize\":[\"\",\"\",\"\"],\"fontSizeType\":\"px\",\"lineHeight\":[1,\"\",\"\"],\"lineType\":\"em\",\"rowGap\":\"\",\"rowGapType\":\"px\",\"gutter\":30,\"gutterType\":\"px\"}],\"labelFont\":[{\"color\":\"\",\"size\":[\"\",\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[\"\",\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"textTransform\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"bold\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[\"\",\"\",\"\",\"\"],\"margin\":[\"\",\"\",\"\",\"\"]}],\"submit\":[{\"label\":\"\",\"width\":[\"100\",\"\",\"\"],\"size\":\"custom\",\"widthType\":\"auto\",\"fixedWidth\":[\"\",\"\",\"\"],\"align\":[\"\",\"\",\"\"],\"deskPadding\":[8,30,8,30],\"tabletPadding\":[\"\",\"\",\"\",\"\"],\"mobilePadding\":[\"\",\"\",\"\",\"\"],\"color\":\"\",\"background\":\"palette4\",\"border\":\"\",\"backgroundOpacity\":1,\"borderOpacity\":1,\"borderRadius\":\"\",\"borderWidth\":[\"\",\"\",\"\",\"\"],\"colorHover\":\"\",\"backgroundHover\":\"\",\"borderHover\":\"\",\"backgroundHoverOpacity\":1,\"borderHoverOpacity\":1,\"icon\":\"\",\"iconSide\":\"right\",\"iconHover\":false,\"cssClass\":\"\",\"gradient\":[\"#999999\",1,0,100,\"linear\",180,\"center center\"],\"gradientHover\":[\"#777777\",1,0,100,\"linear\",180,\"center center\"],\"btnStyle\":\"basic\",\"btnSize\":\"standard\",\"backgroundType\":\"solid\",\"backgroundHoverType\":\"solid\",\"boxShadow\":[false,\"#000000\",0.2,1,1,2,0,false],\"boxShadowHover\":[false,\"#000000\",0.4,2,2,3,0,false]}],\"actions\":[\"email\",\"entry\"],\"email\":[{\"emailTo\":\"hello@atlantagynecomastia.com\",\"subject\":\"Atlanta Gyno Form Submission [Home Bottom]\",\"fromEmail\":\"form@atlantagynecomastia.com\",\"fromName\":\"Atlanta Gyno\",\"replyTo\":\"email_field\",\"cc\":\"\",\"bcc\":\"\",\"html\":true}],\"containerMargin\":[\"md\",\"\",\"\",\"\"]} -->\n<div class=\"wp-block-kadence-form kadence-form-1329_ae8ab9-0b kb-form-wrap\"><form class=\"kb-form\" action=\"\" method=\"post\"><div class=\"kadence-blocks-form-field kb-field-desk-width-100 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_0\">Full Name<span class=\"required\">*</span></label><input name=\"kb_field_0\" id=\"kb_field_1329_ae8ab9-0b_0\" data-label=\"Full Name\" type=\"text\" placeholder=\"\" value=\"\" data-type=\"text\" class=\"kb-field kb-text-style-field kb-text-field kb-field-0\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-1 kb-field-desk-width-50 kb-field-tablet-width-50 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_1\">Email<span class=\"required\">*</span></label><input name=\"kb_field_1\" id=\"kb_field_1329_ae8ab9-0b_1\" data-label=\"Email\" type=\"email\" placeholder=\"\" value=\"\" data-type=\"email\" class=\"kb-field kb-text-style-field kb-email-field kb-field-1\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-2 kb-field-desk-width-50 kb-field-tablet-width-100 kb-field-mobile-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_2\">Phone Number<span class=\"required\">*</span></label><input name=\"kb_field_2\" id=\"kb_field_1329_ae8ab9-0b_2\" data-label=\"Phone Number\" type=\"tel\" placeholder=\"\" value=\"\" data-type=\"tel\" class=\"kb-field kb-text-style-field kb-tel-field kb-field-2\" data-required=\"yes\"/></div><div class=\"kadence-blocks-form-field kb-form-field-3 kb-field-desk-width-100 kb-input-size-standard\"><label for=\"kb_field_1329_ae8ab9-0b_3\">Message</label><textarea name=\"kb_field_3\" id=\"kb_field_1329_ae8ab9-0b_3\" data-label=\"Message\" type=\"textarea\" placeholder=\"\" data-type=\"textarea\" class=\"kb-field kb-text-style-field kb-textarea-field kb-field-3\" rows=\"4\"></textarea></div><input type=\"hidden\" name=\"_kb_form_id\" value=\"1329_ae8ab9-0b\"/><input type=\"hidden\" name=\"_kb_form_post_id\" value=\"1329\"/><input type=\"hidden\" name=\"action\" value=\"kb_process_ajax_submit\"/><input class=\"kadence-blocks-field verify\" type=\"text\" name=\"_kb_verify_email\" autocomplete=\"off\" aria-hidden=\"true\" placeholder=\"Email\" tabindex=\"-1\"/><div class=\"kadence-blocks-form-field kb-submit-field kb-field-desk-width-100\"><button class=\"kb-forms-submit button kb-button-size-custom kb-button-width-auto\">Submit</button></div></form></div>\n<!-- /wp:kadence/form --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_9171a6-14\",\"tabletLayout\":\"row\",\"columnGutter\":\"wider\",\"customGutter\":[64,\"\",\"\"],\"colLayout\":\"equal\",\"bgColor\":\"palette9\",\"align\":\"full\",\"verticalAlignment\":\"middle\",\"tabletPadding\":[\"\",\"\",\"xl\",\"\"],\"inheritMaxWidth\":true,\"bgColorClass\":\"theme-palette9\",\"padding\":[\"xs\",\"\",\"\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_3249a5-01\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_3249a5-01\"><div class=\"kt-inside-inner-col\"><!-- wp:heading {\"className\":\"has-lg-font-size\"} -->\n<h2 class=\"wp-block-heading has-lg-font-size\">Find the Atlanta Gynecomastia Center</h2>\n<!-- /wp:heading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_1b2840-68\",\"color\":\"\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_1b2840-68 wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_1b2840-68\">The Atlanta Gynecomastia Center is located in the heart of downtown Atlanta, easily accessible to the rest of the nearby area.<br><br>We have you covered whether you are coming from <a href=\"https://atlantagynecomastia.com/contact/sandy-springs-georgia/\">Sandy Springs</a>, Alpharetta, <a href=\"https://atlantagynecomastia.com/contact/buckhead-georgia/\">Buckhead</a>, Fulton County, <a href=\"https://atlantagynecomastia.com/contact/marietta-georgia/\">Marietta</a>, or anywhere else <a href=\"https://atlantagynecomastia.com/contact/out-of-town-patients/\">out of town</a>.</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_01976b-90\",\"columnGutter\":\"skinny\",\"customGutter\":[16,\"\",\"\"],\"colLayout\":\"equal\",\"firstColumnWidth\":70,\"secondColumnWidth\":30,\"padding\":[\"sm\",\"\",\"xxs\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_fdc32d-cc\",\"textAlign\":[\"left\",\"\",\"\"],\"direction\":[\"vertical\",\"\",\"\"],\"gutter\":[15,\"\",\"\"],\"gutterVariable\":[\"custom\",\"\",\"\"],\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_fdc32d-cc kb-section-dir-vertical\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_d18207-90\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_d18207-90 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_d18207-90\">1230 Peachtree St NE #150</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_a8e1df-0f\",\"color\":\"palette3\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_a8e1df-0f wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_a8e1df-0f\">Atlanta, GA 30309</div>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_e65ac5-11\",\"align\":\"left\",\"color\":\"palette3\",\"padding\":[\"\",\"\",\"xs\",\"\"],\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"colorClass\":\"theme-palette3\",\"htmlTag\":\"div\"} -->\n<div class=\"kt-adv-heading1329_e65ac5-11 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color\" data-kb-block=\"kb-adv-heading1329_e65ac5-11\">T: (203) 441-1113</div>\n<!-- /wp:kadence/advancedheading --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"id\":2,\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_6bed4f-7f\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_6bed4f-7f\"><div class=\"kt-inside-inner-col\"></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout --></div></div>\n<!-- /wp:kadence/column -->\n\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_1ce146-f1\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_1ce146-f1\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/googlemaps {\"uniqueID\":\"1329_83ee64-97\",\"heightDesktop\":584,\"zoom\":13,\"location\":\"1230 Peachtree St NE #150, Atlanta, GA 30309\",\"kbVersion\":2} /--></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->\n\n<!-- wp:kadence/rowlayout {\"uniqueID\":\"1329_03db8c-bd\",\"columns\":1,\"colLayout\":\"equal\",\"inheritMaxWidth\":true,\"padding\":[\"sm\",\"\",\"xl\",\"\"],\"kbVersion\":2} -->\n<!-- wp:kadence/column {\"borderWidth\":[\"\",\"\",\"\",\"\"],\"uniqueID\":\"1329_00fcb5-c0\",\"kbVersion\":2} -->\n<div class=\"wp-block-kadence-column kadence-column1329_00fcb5-c0\"><div class=\"kt-inside-inner-col\"><!-- wp:kadence/spacer {\"uniqueID\":\"1329_37a776-93\"} -->\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-1329_37a776-93\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\"/></div></div>\n<!-- /wp:kadence/spacer -->\n\n<!-- wp:kadence/advancedheading {\"uniqueID\":\"1329_93790d-7c\",\"markBorder\":\"\",\"markBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"tabletMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"mobileMarkBorderStyles\":[{\"top\":[null,\"\",\"\"],\"right\":[null,\"\",\"\"],\"bottom\":[null,\"\",\"\"],\"left\":[null,\"\",\"\"],\"unit\":\"px\"}],\"htmlTag\":\"p\"} -->\n<p class=\"kt-adv-heading1329_93790d-7c wp-block-kadence-advancedheading\" data-kb-block=\"kb-adv-heading1329_93790d-7c\">At the Atlanta Gynecomastia Center, we prioritize delivering exceptional care from your initial consultation to your recovery and beyond. We deeply value the trust you place in us and are committed to upholding the highest standards of patient care. Our team, led by board-certified gynecomastia plastic surgeon specialists, is devoted to achieving optimal outcomes for each individual. Recognizing that every person is unique, we personalize our approach to meet your specific needs. Whether you have questions or are ready to schedule your in-person or virtual consultation, please don\'t hesitate to contact the Atlanta Gynecomastia Center today. We\'re here to support you every step of the way!</p>\n<!-- /wp:kadence/advancedheading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://atlantagynecomastia.com/\">Atlanta Gynecomastia Center<br></a>1230 Peachtree St NE #150<br>Atlanta, Georgia 30309<br>(203) 441-1113</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:kadence/column -->\n<!-- /wp:kadence/rowlayout -->','Home','','inherit','closed','closed','','1329-revision-v1','','','2024-10-10 21:09:56','2024-10-10 21:09:56','',1329,'https://atlantagynecomastia.com/?p=4493',0,'revision','',0);
/*!40000 ALTER TABLE `hyu_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_shortpixel_folders`
--

DROP TABLE IF EXISTS `hyu_shortpixel_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_shortpixel_folders` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `path` varchar(512) DEFAULT NULL,
  `name` varchar(150) DEFAULT NULL,
  `path_md5` char(32) DEFAULT NULL,
  `file_count` int(11) DEFAULT NULL,
  `status` smallint(6) NOT NULL DEFAULT 0,
  `parent` smallint(6) DEFAULT 0,
  `ts_checked` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `ts_updated` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ts_created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `path` (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_shortpixel_folders`
--

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

--
-- Table structure for table `hyu_shortpixel_meta`
--

DROP TABLE IF EXISTS `hyu_shortpixel_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_shortpixel_meta` (
  `id` mediumint(10) NOT NULL AUTO_INCREMENT,
  `folder_id` mediumint(9) NOT NULL,
  `ext_meta_id` int(10) DEFAULT NULL,
  `path` varchar(512) DEFAULT NULL,
  `name` varchar(150) DEFAULT NULL,
  `path_md5` char(32) DEFAULT NULL,
  `compressed_size` int(10) NOT NULL DEFAULT 0,
  `compression_type` tinyint(4) DEFAULT NULL,
  `keep_exif` tinyint(4) DEFAULT 0,
  `cmyk2rgb` tinyint(4) DEFAULT 0,
  `resize` tinyint(4) DEFAULT NULL,
  `resize_width` smallint(6) DEFAULT NULL,
  `resize_height` smallint(6) DEFAULT NULL,
  `backup` tinyint(4) DEFAULT 0,
  `status` smallint(6) NOT NULL DEFAULT 0,
  `retries` tinyint(4) NOT NULL DEFAULT 0,
  `message` varchar(255) DEFAULT NULL,
  `ts_added` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `ts_optimized` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `extra_info` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `path` (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_shortpixel_meta`
--

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

--
-- Table structure for table `hyu_shortpixel_postmeta`
--

DROP TABLE IF EXISTS `hyu_shortpixel_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_shortpixel_postmeta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attach_id` bigint(20) unsigned NOT NULL,
  `parent` bigint(20) unsigned NOT NULL,
  `image_type` tinyint(4) DEFAULT 0,
  `size` varchar(200) DEFAULT NULL,
  `status` tinyint(4) DEFAULT 0,
  `compression_type` tinyint(4) DEFAULT NULL,
  `compressed_size` int(11) DEFAULT NULL,
  `original_size` int(11) DEFAULT NULL,
  `tsAdded` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `tsOptimized` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `extra_info` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `attach_id` (`attach_id`),
  KEY `parent` (`parent`),
  KEY `size` (`size`),
  KEY `status` (`status`),
  KEY `compression_type` (`compression_type`)
) ENGINE=InnoDB AUTO_INCREMENT=1316 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_shortpixel_postmeta`
--

LOCK TABLES `hyu_shortpixel_postmeta` WRITE;
/*!40000 ALTER TABLE `hyu_shortpixel_postmeta` DISABLE KEYS */;
INSERT INTO `hyu_shortpixel_postmeta` VALUES (1160,4193,0,0,NULL,2,1,3187,14158,'2024-03-27 02:57:14','2024-03-27 02:58:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":457,\"originalHeight\":100,\"webp\":\"Atlanta_Gynecomastia_Center_Logo-1.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":\"png\",\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":2,\"errorReason\":-6,\"omitBackup\":true}}'),(1161,4193,4193,1,'medium',2,1,2628,12370,'2024-03-27 02:57:14','2024-03-27 02:58:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":66,\"webp\":\"Atlanta_Gynecomastia_Center_Logo-1-300x66.webp\"}'),(1162,4193,4193,1,'thumbnail',2,1,1149,4764,'2024-03-27 02:57:14','2024-03-27 02:58:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":100,\"webp\":\"Atlanta_Gynecomastia_Center_Logo-1-150x100.webp\"}'),(1163,4199,0,0,NULL,2,1,3063,13957,'2024-03-27 03:10:02','2024-03-27 03:25:58','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":459,\"originalHeight\":100,\"webp\":\"Atlanta_Gynecomastia_Center_Logo_White.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":\"png\",\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":2,\"errorReason\":-6,\"omitBackup\":true}}'),(1164,4199,4199,1,'medium',2,1,3034,13552,'2024-03-27 03:10:02','2024-03-27 03:25:58','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":65,\"webp\":\"Atlanta_Gynecomastia_Center_Logo_White-300x65.webp\"}'),(1165,4199,4199,1,'thumbnail',2,1,1028,4466,'2024-03-27 03:10:02','2024-03-27 03:25:58','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":100,\"webp\":\"Atlanta_Gynecomastia_Center_Logo_White-150x100.webp\"}'),(1176,4205,0,0,NULL,2,1,6137,25946,'2024-03-27 03:22:29','2024-03-27 03:26:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":750,\"originalHeight\":750,\"webp\":\"Atlanta_Gynecomastia_Center_Org_Logo.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":\"png\",\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":2,\"errorReason\":-6,\"omitBackup\":true}}'),(1177,4205,4205,1,'medium',2,1,2937,14927,'2024-03-27 03:22:29','2024-03-27 03:26:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":300,\"webp\":\"Atlanta_Gynecomastia_Center_Org_Logo-300x300.webp\"}'),(1178,4205,4205,1,'thumbnail',2,1,1447,7227,'2024-03-27 03:22:29','2024-03-27 03:26:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Atlanta_Gynecomastia_Center_Org_Logo-150x150.webp\"}'),(1179,4206,0,0,NULL,2,1,11669,73914,'2024-03-27 03:25:05','2024-03-27 03:26:30','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":281,\"webp\":\"Atlanta_Gynecomastia_Center_Site_Image.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":\"png\",\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":2,\"errorReason\":-6,\"omitBackup\":true}}'),(1180,4206,4206,1,'medium',2,1,2385,12175,'2024-03-27 03:25:05','2024-03-27 03:26:30','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":66,\"webp\":\"Atlanta_Gynecomastia_Center_Site_Image-300x66.webp\"}'),(1181,4206,4206,1,'large',2,1,9817,53343,'2024-03-27 03:25:05','2024-03-27 03:26:30','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":225,\"webp\":\"Atlanta_Gynecomastia_Center_Site_Image-1024x225.webp\"}'),(1182,4206,4206,1,'thumbnail',2,1,1595,8924,'2024-03-27 03:25:05','2024-03-27 03:26:30','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Atlanta_Gynecomastia_Center_Site_Image-150x150.webp\"}'),(1183,4206,4206,1,'medium_large',2,1,6514,35672,'2024-03-27 03:25:05','2024-03-27 03:26:30','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":169,\"webp\":\"Atlanta_Gynecomastia_Center_Site_Image-768x169.webp\"}'),(1184,4229,0,0,NULL,2,1,2444,12023,'2024-03-27 05:40:59','2024-03-27 05:41:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":512,\"originalHeight\":512,\"webp\":\"cropped-Atlanta_Gynecomastia_Center_Favicon.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":\"png\",\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":2,\"errorReason\":-6,\"omitBackup\":true}}'),(1185,4229,4229,1,'medium',2,1,1571,7807,'2024-03-27 05:40:59','2024-03-27 05:41:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":300,\"webp\":\"cropped-Atlanta_Gynecomastia_Center_Favicon-300x300.webp\"}'),(1186,4229,4229,1,'thumbnail',2,1,919,3629,'2024-03-27 05:40:59','2024-03-27 05:41:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"cropped-Atlanta_Gynecomastia_Center_Favicon-150x150.webp\"}'),(1187,4229,4229,1,'site_icon-270',2,1,1518,6841,'2024-03-27 05:40:59','2024-03-27 05:41:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":270,\"originalHeight\":270,\"webp\":\"cropped-Atlanta_Gynecomastia_Center_Favicon-270x270.webp\"}'),(1188,4229,4229,1,'site_icon-192',2,1,1092,4706,'2024-03-27 05:40:59','2024-03-27 05:41:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":192,\"originalHeight\":192,\"webp\":\"cropped-Atlanta_Gynecomastia_Center_Favicon-192x192.webp\"}'),(1189,4229,4229,1,'site_icon-180',2,1,953,4365,'2024-03-27 05:40:59','2024-03-27 05:41:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":180,\"originalHeight\":180,\"webp\":\"cropped-Atlanta_Gynecomastia_Center_Favicon-180x180.webp\"}'),(1190,4229,4229,1,'site_icon-32',2,1,406,756,'2024-03-27 05:40:59','2024-03-27 05:41:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":32,\"originalHeight\":32,\"webp\":\"cropped-Atlanta_Gynecomastia_Center_Favicon-32x32.webp\"}'),(1191,4303,0,0,NULL,2,1,168569,779942,'2024-03-28 01:25:26','2024-03-28 01:26:54','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1223,\"originalHeight\":700,\"webp\":\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":\"png\",\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":2,\"errorReason\":-6,\"omitBackup\":true}}'),(1192,4303,4303,1,'medium',2,1,14328,62200,'2024-03-28 01:25:26','2024-03-28 01:26:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":172,\"webp\":\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta-300x172.webp\"}'),(1193,4303,4303,1,'large',2,1,122818,542798,'2024-03-28 01:25:26','2024-03-28 01:26:54','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":586,\"webp\":\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.webp\"}'),(1194,4303,4303,1,'thumbnail',2,1,7074,30191,'2024-03-28 01:25:26','2024-03-28 01:26:24','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta-150x150.webp\"}'),(1195,4303,4303,1,'medium_large',2,1,72363,336246,'2024-03-28 01:25:26','2024-03-28 01:26:35','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":440,\"webp\":\"Gynecomastia-vs.-Pseudogynecomastia-Atlanta-768x440.webp\"}'),(1196,4304,0,0,NULL,2,1,95329,411893,'2024-03-28 01:25:29','2024-03-28 01:26:38','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1223,\"originalHeight\":700,\"webp\":\"Stages-and-Grades-of-Gynecomastia-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":\"png\",\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":2,\"errorReason\":-6,\"omitBackup\":true}}'),(1197,4304,4304,1,'medium',2,1,9350,43736,'2024-03-28 01:25:29','2024-03-28 01:26:26','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":172,\"webp\":\"Stages-and-Grades-of-Gynecomastia-Atlanta-300x172.webp\"}'),(1198,4304,4304,1,'large',2,1,70763,303375,'2024-03-28 01:25:29','2024-03-28 01:26:38','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":586,\"webp\":\"Stages-and-Grades-of-Gynecomastia-Atlanta-1024x586.webp\"}'),(1199,4304,4304,1,'thumbnail',2,1,5240,23844,'2024-03-28 01:25:29','2024-03-28 01:26:26','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Stages-and-Grades-of-Gynecomastia-Atlanta-150x150.webp\"}'),(1200,4304,4304,1,'medium_large',2,1,43384,193224,'2024-03-28 01:25:29','2024-03-28 01:26:38','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":440,\"webp\":\"Stages-and-Grades-of-Gynecomastia-Atlanta-768x440.webp\"}'),(1201,4305,0,0,NULL,2,1,93676,398625,'2024-03-28 01:25:33','2024-03-28 01:26:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1223,\"originalHeight\":700,\"webp\":\"What-is-Gynecomastia-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":\"png\",\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":2,\"errorReason\":-6,\"omitBackup\":true}}'),(1202,4305,4305,1,'medium',2,1,9594,39198,'2024-03-28 01:25:33','2024-03-28 01:26:41','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":172,\"webp\":\"What-is-Gynecomastia-Atlanta-300x172.webp\"}'),(1203,4305,4305,1,'large',2,1,76056,281812,'2024-03-28 01:25:33','2024-03-28 01:26:41','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":586,\"webp\":\"What-is-Gynecomastia-Atlanta-1024x586.webp\"}'),(1204,4305,4305,1,'thumbnail',2,1,6771,27217,'2024-03-28 01:25:33','2024-03-28 01:26:41','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"What-is-Gynecomastia-Atlanta-150x150.webp\"}'),(1205,4305,4305,1,'medium_large',2,1,43671,178364,'2024-03-28 01:25:33','2024-03-28 01:26:41','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":440,\"webp\":\"What-is-Gynecomastia-Atlanta-768x440.webp\"}'),(1206,4313,0,0,NULL,2,1,41878,70068,'2024-03-28 01:37:55','2024-03-28 01:37:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":854,\"originalHeight\":1280,\"webp\":\"Atlanta_Gynecomastia_Center_Doctor.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1207,4313,4313,1,'medium',2,1,11406,11588,'2024-03-28 01:37:55','2024-03-28 01:37:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":200,\"originalHeight\":300,\"webp\":\"Atlanta_Gynecomastia_Center_Doctor-200x300.webp\"}'),(1208,4313,4313,1,'large',2,1,34587,70331,'2024-03-28 01:37:55','2024-03-28 01:37:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":683,\"originalHeight\":1024,\"webp\":\"Atlanta_Gynecomastia_Center_Doctor-683x1024.webp\"}'),(1209,4313,4313,1,'thumbnail',2,1,4118,5722,'2024-03-28 01:37:55','2024-03-28 01:37:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Atlanta_Gynecomastia_Center_Doctor-150x150.webp\"}'),(1210,4313,4313,1,'medium_large',2,1,40948,83355,'2024-03-28 01:37:55','2024-03-28 01:37:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":1151,\"webp\":\"Atlanta_Gynecomastia_Center_Doctor-768x1151.webp\"}'),(1211,4317,0,0,NULL,2,1,56415,242543,'2024-03-28 01:57:04','2024-03-28 01:57:16','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":853,\"webp\":\"What-is-Gynecomastia.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1212,4317,4317,1,'medium',2,1,8205,11773,'2024-03-28 01:57:04','2024-03-28 01:57:07','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"What-is-Gynecomastia-300x200.webp\"}'),(1213,4317,4317,1,'large',2,1,38039,74382,'2024-03-28 01:57:04','2024-03-28 01:57:07','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"What-is-Gynecomastia-1024x682.webp\"}'),(1214,4317,4317,1,'thumbnail',2,1,4197,5693,'2024-03-28 01:57:04','2024-03-28 01:57:07','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"What-is-Gynecomastia-150x150.webp\"}'),(1215,4317,4317,1,'medium_large',2,1,31465,47804,'2024-03-28 01:57:04','2024-03-28 01:57:07','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"What-is-Gynecomastia-768x512.webp\"}'),(1216,4318,0,0,NULL,2,1,75929,281420,'2024-03-28 01:57:07','2024-03-28 01:57:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":1176,\"webp\":\"Types-of-Gynecomastia-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1217,4318,4318,1,'medium',2,1,6941,10684,'2024-03-28 01:57:07','2024-03-28 01:57:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":276,\"webp\":\"Types-of-Gynecomastia-Atlanta-300x276.webp\"}'),(1218,4318,4318,1,'large',2,1,61355,76717,'2024-03-28 01:57:07','2024-03-28 01:57:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":941,\"webp\":\"Types-of-Gynecomastia-Atlanta-1024x941.webp\"}'),(1219,4318,4318,1,'thumbnail',2,1,3162,4459,'2024-03-28 01:57:07','2024-03-28 01:57:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Types-of-Gynecomastia-Atlanta-150x150.webp\"}'),(1220,4318,4318,1,'medium_large',2,1,24509,46945,'2024-03-28 01:57:07','2024-03-28 01:57:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":706,\"webp\":\"Types-of-Gynecomastia-Atlanta-768x706.webp\"}'),(1221,4319,0,0,NULL,2,1,39408,159285,'2024-03-28 01:57:28','2024-03-28 01:57:32','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":853,\"webp\":\"Senior-Gynecomastia-Surgery-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1222,4319,4319,1,'medium',2,1,3790,6330,'2024-03-28 01:57:28','2024-03-28 01:57:32','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Senior-Gynecomastia-Surgery-Atlanta-300x200.webp\"}'),(1223,4319,4319,1,'large',2,1,27849,41051,'2024-03-28 01:57:28','2024-03-28 01:57:32','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"Senior-Gynecomastia-Surgery-Atlanta-1024x682.webp\"}'),(1224,4319,4319,1,'thumbnail',2,1,2777,4000,'2024-03-28 01:57:28','2024-03-28 01:57:32','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Senior-Gynecomastia-Surgery-Atlanta-150x150.webp\"}'),(1225,4319,4319,1,'medium_large',2,1,21012,25527,'2024-03-28 01:57:28','2024-03-28 01:57:32','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Senior-Gynecomastia-Surgery-Atlanta-768x512.webp\"}'),(1226,4320,0,0,NULL,2,1,43417,193590,'2024-03-28 01:57:40','2024-03-28 01:57:44','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":854,\"webp\":\"Puffy-Nipple-Treatment.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1227,4320,4320,1,'medium',2,1,4146,6519,'2024-03-28 01:57:40','2024-03-28 01:57:44','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Puffy-Nipple-Treatment-300x200.webp\"}'),(1228,4320,4320,1,'large',2,1,23644,50205,'2024-03-28 01:57:40','2024-03-28 01:57:44','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":683,\"webp\":\"Puffy-Nipple-Treatment-1024x683.webp\"}'),(1229,4320,4320,1,'thumbnail',2,1,2497,3629,'2024-03-28 01:57:40','2024-03-28 01:57:44','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Puffy-Nipple-Treatment-150x150.webp\"}'),(1230,4320,4320,1,'medium_large',2,1,28284,29292,'2024-03-28 01:57:40','2024-03-28 01:57:44','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Puffy-Nipple-Treatment-768x512.webp\"}'),(1231,4321,0,0,NULL,2,1,74015,285382,'2024-03-28 01:57:44','2024-03-28 01:57:48','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":854,\"webp\":\"Post-Weight-Loss-Gynecomastia.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1232,4321,4321,1,'medium',2,1,6322,9125,'2024-03-28 01:57:44','2024-03-28 01:57:48','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Post-Weight-Loss-Gynecomastia-300x200.webp\"}'),(1233,4321,4321,1,'large',2,1,44624,84047,'2024-03-28 01:57:44','2024-03-28 01:57:48','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":683,\"webp\":\"Post-Weight-Loss-Gynecomastia-1024x683.webp\"}'),(1234,4321,4321,1,'thumbnail',2,1,3804,5236,'2024-03-28 01:57:44','2024-03-28 01:57:48','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Post-Weight-Loss-Gynecomastia-150x150.webp\"}'),(1235,4321,4321,1,'medium_large',2,1,30192,49294,'2024-03-28 01:57:44','2024-03-28 01:57:48','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Post-Weight-Loss-Gynecomastia-768x512.webp\"}'),(1236,4322,0,0,NULL,2,1,18670,95807,'2024-03-28 01:57:45','2024-03-28 01:57:49','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":874,\"webp\":\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1237,4322,4322,1,'medium',2,1,2559,3908,'2024-03-28 01:57:45','2024-03-28 01:57:49','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":205,\"webp\":\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center-300x205.webp\"}'),(1238,4322,4322,1,'large',2,1,20861,23292,'2024-03-28 01:57:45','2024-03-28 01:57:49','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":699,\"webp\":\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center-1024x699.webp\"}'),(1239,4322,4322,1,'thumbnail',2,1,2172,2172,'2024-03-28 01:57:45','2024-03-28 01:57:49','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center-150x150.webp\"}'),(1240,4322,4322,1,'medium_large',2,1,14154,15125,'2024-03-28 01:57:45','2024-03-28 01:57:49','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":524,\"webp\":\"Out-of-Town-Patients-Atlanta-Gynecomastia-Center-768x524.webp\"}'),(1241,4324,0,0,NULL,2,1,39854,179240,'2024-03-28 01:57:46','2024-03-28 01:57:50','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":854,\"webp\":\"Gynecomastia-Surgery-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1242,4324,4324,1,'medium',2,1,7445,11222,'2024-03-28 01:57:46','2024-03-28 01:57:50','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Gynecomastia-Surgery-Atlanta-300x200.webp\"}'),(1243,4324,4324,1,'large',2,1,28020,62813,'2024-03-28 01:57:46','2024-03-28 01:57:50','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":683,\"webp\":\"Gynecomastia-Surgery-Atlanta-1024x683.webp\"}'),(1244,4324,4324,1,'thumbnail',2,1,3517,5149,'2024-03-28 01:57:46','2024-03-28 01:57:50','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Gynecomastia-Surgery-Atlanta-150x150.webp\"}'),(1245,4324,4324,1,'medium_large',2,1,24559,41535,'2024-03-28 01:57:46','2024-03-28 01:57:50','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Gynecomastia-Surgery-Atlanta-768x512.webp\"}'),(1246,4323,0,0,NULL,2,1,49747,147831,'2024-03-28 01:57:49','2024-03-28 01:57:53','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":853,\"webp\":\"Gynecomastia-Surgery-Candidate.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1247,4323,4323,1,'medium',2,1,5459,8435,'2024-03-28 01:57:49','2024-03-28 01:57:53','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Gynecomastia-Surgery-Candidate-300x200.webp\"}'),(1248,4323,4323,1,'large',2,1,39592,51001,'2024-03-28 01:57:49','2024-03-28 01:57:53','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"Gynecomastia-Surgery-Candidate-1024x682.webp\"}'),(1249,4323,4323,1,'thumbnail',2,1,2922,4250,'2024-03-28 01:57:49','2024-03-28 01:57:53','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Gynecomastia-Surgery-Candidate-150x150.webp\"}'),(1250,4323,4323,1,'medium_large',2,1,28668,33075,'2024-03-28 01:57:49','2024-03-28 01:57:53','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Gynecomastia-Surgery-Candidate-768x512.webp\"}'),(1251,4325,0,0,NULL,2,1,56374,246608,'2024-03-28 01:57:53','2024-03-28 01:58:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":853,\"webp\":\"Gynecomastia-Revision-Surgery.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1252,4325,4325,1,'medium',2,1,9808,14275,'2024-03-28 01:57:53','2024-03-28 01:57:54','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Gynecomastia-Revision-Surgery-300x200.webp\"}'),(1253,4325,4325,1,'large',2,1,38018,85083,'2024-03-28 01:57:53','2024-03-28 01:58:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"Gynecomastia-Revision-Surgery-1024x682.webp\"}'),(1254,4325,4325,1,'thumbnail',2,1,4995,6889,'2024-03-28 01:57:53','2024-03-28 01:58:10','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Gynecomastia-Revision-Surgery-150x150.webp\"}'),(1255,4325,4325,1,'medium_large',2,1,35190,56140,'2024-03-28 01:57:53','2024-03-28 01:57:54','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Gynecomastia-Revision-Surgery-768x512.webp\"}'),(1256,4326,0,0,NULL,2,1,52369,181481,'2024-03-28 01:57:55','2024-03-28 01:57:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":1039,\"webp\":\"Gynecomastia-Frequently-Asked-Questions.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1257,4326,4326,1,'medium',2,1,5777,9020,'2024-03-28 01:57:55','2024-03-28 01:57:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":244,\"webp\":\"Gynecomastia-Frequently-Asked-Questions-300x244.webp\"}'),(1258,4326,4326,1,'large',2,1,52581,57160,'2024-03-28 01:57:55','2024-03-28 01:57:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":831,\"webp\":\"Gynecomastia-Frequently-Asked-Questions-1024x831.webp\"}'),(1259,4326,4326,1,'thumbnail',2,1,2779,4040,'2024-03-28 01:57:55','2024-03-28 01:57:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Gynecomastia-Frequently-Asked-Questions-150x150.webp\"}'),(1260,4326,4326,1,'medium_large',2,1,35201,37033,'2024-03-28 01:57:55','2024-03-28 01:57:59','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":623,\"webp\":\"Gynecomastia-Frequently-Asked-Questions-768x623.webp\"}'),(1261,4327,0,0,NULL,2,1,37643,163049,'2024-03-28 01:57:57','2024-03-28 01:58:00','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":853,\"webp\":\"Gynecomastia-Doctors-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1262,4327,4327,1,'medium',2,1,5841,8723,'2024-03-28 01:57:57','2024-03-28 01:58:00','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Gynecomastia-Doctors-Atlanta-300x200.webp\"}'),(1263,4327,4327,1,'large',2,1,26739,52794,'2024-03-28 01:57:57','2024-03-28 01:58:00','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"Gynecomastia-Doctors-Atlanta-1024x682.webp\"}'),(1264,4327,4327,1,'thumbnail',2,1,2910,4182,'2024-03-28 01:57:57','2024-03-28 01:58:00','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Gynecomastia-Doctors-Atlanta-150x150.webp\"}'),(1265,4327,4327,1,'medium_large',2,1,20254,34165,'2024-03-28 01:57:57','2024-03-28 01:58:00','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Gynecomastia-Doctors-Atlanta-768x512.webp\"}'),(1266,4331,0,0,NULL,2,1,21217,91375,'2024-03-28 01:57:59','2024-03-28 01:58:02','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":852,\"webp\":\"Bodybuilder-Gynecomastia-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1267,4331,4331,1,'medium',2,1,2198,3778,'2024-03-28 01:57:59','2024-03-28 01:58:02','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Bodybuilder-Gynecomastia-Atlanta-300x200.webp\"}'),(1268,4331,4331,1,'large',2,1,14802,23828,'2024-03-28 01:57:59','2024-03-28 01:58:02','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"Bodybuilder-Gynecomastia-Atlanta-1024x682.webp\"}'),(1269,4331,4331,1,'thumbnail',2,1,1613,2411,'2024-03-28 01:57:59','2024-03-28 01:58:02','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Bodybuilder-Gynecomastia-Atlanta-150x150.webp\"}'),(1270,4331,4331,1,'medium_large',2,1,11767,15210,'2024-03-28 01:57:59','2024-03-28 01:58:02','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":511,\"webp\":\"Bodybuilder-Gynecomastia-Atlanta-768x511.webp\"}'),(1271,4329,0,0,NULL,2,1,69915,398240,'2024-03-28 01:57:59','2024-03-28 01:58:04','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":960,\"webp\":\"Gynecomastia-Causes.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1272,4329,4329,1,'medium',2,1,12555,17302,'2024-03-28 01:57:59','2024-03-28 01:58:04','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":225,\"webp\":\"Gynecomastia-Causes-300x225.webp\"}'),(1273,4329,4329,1,'large',2,1,65239,120350,'2024-03-28 01:57:59','2024-03-28 01:58:04','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":768,\"webp\":\"Gynecomastia-Causes-1024x768.webp\"}'),(1274,4329,4329,1,'thumbnail',2,1,5472,7410,'2024-03-28 01:57:59','2024-03-28 01:58:04','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Gynecomastia-Causes-150x150.webp\"}'),(1275,4329,4329,1,'medium_large',2,1,49189,76481,'2024-03-28 01:57:59','2024-03-28 01:58:04','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":576,\"webp\":\"Gynecomastia-Causes-768x576.webp\"}'),(1276,4330,0,0,NULL,2,1,124141,489928,'2024-03-28 01:58:04','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":960,\"webp\":\"Contact-Atlanta-Gynecomastia-Center.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1277,4330,4330,1,'medium',2,1,14063,19522,'2024-03-28 01:58:04','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":225,\"webp\":\"Contact-Atlanta-Gynecomastia-Center-300x225.webp\"}'),(1278,4330,4330,1,'large',2,1,98367,182888,'2024-03-28 01:58:04','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":768,\"webp\":\"Contact-Atlanta-Gynecomastia-Center-1024x768.webp\"}'),(1279,4330,4330,1,'thumbnail',2,1,5520,7560,'2024-03-28 01:58:04','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Contact-Atlanta-Gynecomastia-Center-150x150.webp\"}'),(1280,4330,4330,1,'medium_large',2,1,72084,107112,'2024-03-28 01:58:04','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":576,\"webp\":\"Contact-Atlanta-Gynecomastia-Center-768x576.webp\"}'),(1281,4328,0,0,NULL,2,1,31550,147897,'2024-03-28 01:58:00','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":723,\"webp\":\"Gynecomastia-Cost-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1282,4328,4328,1,'medium',2,1,4316,6431,'2024-03-28 01:58:00','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":169,\"webp\":\"Gynecomastia-Cost-Atlanta-300x169.webp\"}'),(1283,4328,4328,1,'large',2,1,23396,41482,'2024-03-28 01:58:00','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":578,\"webp\":\"Gynecomastia-Cost-Atlanta-1024x578.webp\"}'),(1284,4328,4328,1,'thumbnail',2,1,3173,4374,'2024-03-28 01:58:00','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Gynecomastia-Cost-Atlanta-150x150.webp\"}'),(1285,4328,4328,1,'medium_large',2,1,15454,26565,'2024-03-28 01:58:00','2024-03-28 01:58:09','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":434,\"webp\":\"Gynecomastia-Cost-Atlanta-768x434.webp\"}'),(1286,4333,0,0,NULL,2,1,24772,88757,'2024-03-28 01:58:07','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":853,\"webp\":\"Atlanta-Gynecomastia-Center-Reviews.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1287,4333,4333,1,'medium',2,1,2492,4374,'2024-03-28 01:58:07','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Atlanta-Gynecomastia-Center-Reviews-300x200.webp\"}'),(1288,4333,4333,1,'large',2,1,14284,24631,'2024-03-28 01:58:07','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"Atlanta-Gynecomastia-Center-Reviews-1024x682.webp\"}'),(1289,4333,4333,1,'thumbnail',2,1,2773,2797,'2024-03-28 01:58:07','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Atlanta-Gynecomastia-Center-Reviews-150x150.webp\"}'),(1290,4333,4333,1,'medium_large',2,1,12052,15498,'2024-03-28 01:58:07','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Atlanta-Gynecomastia-Center-Reviews-768x512.webp\"}'),(1291,4335,0,0,NULL,2,1,64542,291653,'2024-03-28 01:58:08','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":853,\"webp\":\"Adolescent-Gynecomastia-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1292,4335,4335,1,'medium',2,1,11219,16192,'2024-03-28 01:58:08','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Adolescent-Gynecomastia-Atlanta-300x200.webp\"}'),(1293,4335,4335,1,'large',2,1,41913,98396,'2024-03-28 01:58:08','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"Adolescent-Gynecomastia-Atlanta-1024x682.webp\"}'),(1294,4335,4335,1,'thumbnail',2,1,5315,7570,'2024-03-28 01:58:08','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Adolescent-Gynecomastia-Atlanta-150x150.webp\"}'),(1295,4335,4335,1,'medium_large',2,1,39377,64043,'2024-03-28 01:58:08','2024-03-28 01:58:11','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Adolescent-Gynecomastia-Atlanta-768x512.webp\"}'),(1296,4332,0,0,NULL,2,1,41792,173743,'2024-03-28 01:58:10','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":854,\"webp\":\"Before-and-After-Results-Gynecomastia-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1297,4332,4332,1,'medium',2,1,7662,11269,'2024-03-28 01:58:10','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Before-and-After-Results-Gynecomastia-Atlanta-300x200.webp\"}'),(1298,4332,4332,1,'large',2,1,28338,61818,'2024-03-28 01:58:10','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":683,\"webp\":\"Before-and-After-Results-Gynecomastia-Atlanta-1024x683.webp\"}'),(1299,4332,4332,1,'thumbnail',2,1,4433,6293,'2024-03-28 01:58:10','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Before-and-After-Results-Gynecomastia-Atlanta-150x150.webp\"}'),(1300,4332,4332,1,'medium_large',2,1,25122,41456,'2024-03-28 01:58:10','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Before-and-After-Results-Gynecomastia-Atlanta-768x512.webp\"}'),(1301,4334,0,0,NULL,2,1,30789,165107,'2024-03-28 01:58:11','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":854,\"webp\":\"Adult-Gynecomastia-Atlanta.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1302,4334,4334,1,'medium',2,1,3658,5885,'2024-03-28 01:58:11','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"Adult-Gynecomastia-Atlanta-300x200.webp\"}'),(1303,4334,4334,1,'large',2,1,19789,42431,'2024-03-28 01:58:11','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":683,\"webp\":\"Adult-Gynecomastia-Atlanta-1024x683.webp\"}'),(1304,4334,4334,1,'thumbnail',2,1,2456,3577,'2024-03-28 01:58:11','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Adult-Gynecomastia-Atlanta-150x150.webp\"}'),(1305,4334,4334,1,'medium_large',2,1,13603,25516,'2024-03-28 01:58:11','2024-03-28 01:58:14','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"Adult-Gynecomastia-Atlanta-768x512.webp\"}'),(1306,4339,0,0,NULL,2,1,56415,242543,'2024-03-28 02:11:02','2024-03-28 02:11:06','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1280,\"originalHeight\":853,\"webp\":\"What-is-Pseudogynecomastia.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1307,4339,4339,1,'medium',2,1,8205,11773,'2024-03-28 02:11:02','2024-03-28 02:11:06','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":200,\"webp\":\"What-is-Pseudogynecomastia-300x200.webp\"}'),(1308,4339,4339,1,'large',2,1,38039,74382,'2024-03-28 02:11:02','2024-03-28 02:11:06','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":682,\"webp\":\"What-is-Pseudogynecomastia-1024x682.webp\"}'),(1309,4339,4339,1,'thumbnail',2,1,4197,5693,'2024-03-28 02:11:02','2024-03-28 02:11:06','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"What-is-Pseudogynecomastia-150x150.webp\"}'),(1310,4339,4339,1,'medium_large',2,1,31465,47804,'2024-03-28 02:11:02','2024-03-28 02:11:06','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":512,\"webp\":\"What-is-Pseudogynecomastia-768x512.webp\"}'),(1311,4340,0,0,NULL,2,1,17449,40867,'2024-03-28 02:14:22','2024-03-28 02:14:25','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"webp\":\"Atlanta-Gynecomastia-Homepage.webp\",\"wasConverted\":false,\"convertMeta\":{\"fileFormat\":null,\"isConverted\":false,\"placeholder\":false,\"replacementImageBase\":false,\"triedConversion\":false,\"errorReason\":false,\"omitBackup\":true}}'),(1312,4340,4340,1,'medium',2,1,2913,7042,'2024-03-28 02:14:22','2024-03-28 02:14:25','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":300,\"originalHeight\":172,\"webp\":\"Atlanta-Gynecomastia-Homepage-300x172.webp\"}'),(1313,4340,4340,1,'large',2,1,14645,26624,'2024-03-28 02:14:22','2024-03-28 02:14:25','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":1024,\"originalHeight\":586,\"webp\":\"Atlanta-Gynecomastia-Homepage-1024x586.webp\"}'),(1314,4340,4340,1,'thumbnail',2,1,4154,5935,'2024-03-28 02:14:22','2024-03-28 02:14:25','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":150,\"originalHeight\":150,\"webp\":\"Atlanta-Gynecomastia-Homepage-150x150.webp\"}'),(1315,4340,4340,1,'medium_large',2,1,9909,19381,'2024-03-28 02:14:22','2024-03-28 02:14:25','{\"did_keepExif\":\"0\",\"did_cmyk2rgb\":\"1\",\"originalWidth\":768,\"originalHeight\":440,\"webp\":\"Atlanta-Gynecomastia-Homepage-768x440.webp\"}');
/*!40000 ALTER TABLE `hyu_shortpixel_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_shortpixel_queue`
--

DROP TABLE IF EXISTS `hyu_shortpixel_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_shortpixel_queue` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `queue_name` varchar(30) NOT NULL,
  `plugin_slug` varchar(30) NOT NULL,
  `status` int(11) NOT NULL DEFAULT 0,
  `list_order` int(11) NOT NULL,
  `item_id` bigint(20) unsigned NOT NULL,
  `item_count` int(11) DEFAULT 1,
  `value` longtext NOT NULL,
  `tries` int(11) NOT NULL DEFAULT 0,
  `created` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  UNIQUE KEY `uq_hyu_` (`plugin_slug`,`queue_name`,`item_id`),
  KEY `queue_name` (`queue_name`),
  KEY `plugin_slug` (`plugin_slug`),
  KEY `status` (`status`),
  KEY `item_id` (`item_id`),
  KEY `list_order` (`list_order`)
) ENGINE=InnoDB AUTO_INCREMENT=821 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_shortpixel_queue`
--

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

--
-- Table structure for table `hyu_term_relationships`
--

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

--
-- Dumping data for table `hyu_term_relationships`
--

LOCK TABLES `hyu_term_relationships` WRITE;
/*!40000 ALTER TABLE `hyu_term_relationships` DISABLE KEYS */;
INSERT INTO `hyu_term_relationships` VALUES (1407,1,0),(1491,3,0),(1492,3,0),(1665,3,0),(1670,3,0),(1671,3,0),(1756,3,0),(1949,3,0),(1950,3,0),(1951,3,0),(1952,3,0),(1973,3,0),(1974,3,0),(1975,3,0),(2055,3,0),(2667,3,0),(2672,3,0),(2750,3,0),(2790,3,0),(2846,3,0),(2856,3,0),(2860,3,0),(2866,3,0),(2870,3,0),(2874,3,0),(2883,3,0),(2888,3,0),(3426,4,0),(3427,4,0),(3428,4,0),(3429,4,0),(3430,4,0),(3431,4,0),(3432,4,0),(3433,4,0),(3434,4,0),(3435,4,0),(3436,4,0),(3439,5,0),(3440,5,0),(3441,5,0),(3442,5,0),(3443,5,0),(3444,5,0),(3445,5,0),(3446,5,0),(3447,5,0),(3450,6,0),(3451,6,0),(3452,6,0),(3453,6,0),(3454,6,0),(3457,7,0),(3458,7,0),(3459,3,0),(3469,4,0),(3479,3,0),(3480,4,0),(3485,4,0),(3486,3,0),(3559,3,0),(3560,5,0),(3677,8,0),(4388,3,0),(4389,5,0);
/*!40000 ALTER TABLE `hyu_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_term_taxonomy`
--

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

--
-- Dumping data for table `hyu_term_taxonomy`
--

LOCK TABLES `hyu_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `hyu_term_taxonomy` DISABLE KEYS */;
INSERT INTO `hyu_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,0),(3,3,'nav_menu','',0,31),(4,4,'nav_menu','',0,14),(5,5,'nav_menu','',0,11),(6,6,'nav_menu','',0,5),(7,7,'nav_menu','',0,2),(8,8,'wp_theme','',0,1);
/*!40000 ALTER TABLE `hyu_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_termmeta`
--

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

--
-- Dumping data for table `hyu_termmeta`
--

LOCK TABLES `hyu_termmeta` WRITE;
/*!40000 ALTER TABLE `hyu_termmeta` DISABLE KEYS */;
INSERT INTO `hyu_termmeta` VALUES (1,2,'_kadence_starter_templates_imported_term','1'),(2,3,'_kadence_starter_templates_imported_term','1');
/*!40000 ALTER TABLE `hyu_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_terms`
--

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

--
-- Dumping data for table `hyu_terms`
--

LOCK TABLES `hyu_terms` WRITE;
/*!40000 ALTER TABLE `hyu_terms` DISABLE KEYS */;
INSERT INTO `hyu_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Law','law',0),(3,'Menu','menu',0),(4,'Footer: What is Gyno/Types of Gyno','footer-what-is-gyno-types-of-gyno',0),(5,'Footer: Contact Us/Locations','footer-contact-us-locations',0),(6,'Footer: Misc','footer-misc',0),(7,'Legal','legal',0),(8,'kadence','kadence',0);
/*!40000 ALTER TABLE `hyu_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_usermeta`
--

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

--
-- Dumping data for table `hyu_usermeta`
--

LOCK TABLES `hyu_usermeta` WRITE;
/*!40000 ALTER TABLE `hyu_usermeta` DISABLE KEYS */;
INSERT INTO `hyu_usermeta` VALUES (88,3,'nickname','aspiegel'),(89,3,'first_name',''),(90,3,'last_name',''),(91,3,'description',''),(92,3,'rich_editing','true'),(93,3,'syntax_highlighting','true'),(94,3,'comment_shortcuts','false'),(95,3,'admin_color','fresh'),(96,3,'use_ssl','0'),(97,3,'show_admin_bar_front','true'),(98,3,'locale',''),(99,3,'hyu_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(100,3,'hyu_user_level','10'),(101,3,'dismissed_wp_pointers','theme_editor_notice,text_widget_custom_html'),(102,3,'session_tokens','a:1:{s:64:\"4b879de4868f2019f121ac96c334438b52d425bf1baecb147c5358790a27522e\";a:4:{s:10:\"expiration\";i:1728767336;s:2:\"ip\";s:38:\"2603:7000:2702:470:a103:d069:a765:f58a\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36\";s:5:\"login\";i:1728594536;}}'),(103,3,'wfls-last-login','1728594536'),(104,3,'hyu_dashboard_quick_press_last_post_id','4491'),(105,3,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2603:7000:2702:470::\";}'),(106,3,'hyu_user-settings','libraryContent=browse&editor=tinymce'),(107,3,'hyu_user-settings-time','1710282679'),(108,3,'wpil_persistent_filter_settings','a:8:{s:13:\"same_category\";b:0;s:8:\"same_tag\";b:0;s:17:\"select_post_types\";b:0;s:13:\"link_orphaned\";b:0;s:11:\"same_parent\";b:0;s:17:\"selected_category\";a:0:{}s:12:\"selected_tag\";a:0:{}s:19:\"selected_post_types\";a:0:{}}'),(109,3,'hyu_persisted_preferences','a:6:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-10-10T21:09:44.313Z\";s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:22:\"core/customize-widgets\";a:1:{s:12:\"welcomeGuide\";b:0;}s:17:\"core/block-editor\";a:1:{s:25:\"linkControlSettingsDrawer\";b:0;}s:4:\"core\";a:2:{s:10:\"editorMode\";s:6:\"visual\";s:10:\"openPanels\";a:3:{i:0;s:24:\"yoast-seo/document-panel\";i:1;s:11:\"post-status\";i:2;s:15:\"page-attributes\";}}}'),(110,3,'closedpostboxes_page','a:0:{}'),(111,3,'metaboxhidden_page','a:0:{}'),(112,3,'nav_menu_recently_edited','5'),(113,3,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(114,3,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(115,3,'_yoast_wpseo_profile_updated','1709739378'),(117,3,'hyu_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:409:\"Yoast SEO: Local needs a Google Maps API key to show Google Maps on your website. You haven\'t set a Google Maps API key yet. Go to the <a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=wpseo_local#top#api_keys\">Yoast SEO: Local API key tab</a> to set the key, or <a href=\"https://yoa.st/generate-set-google-maps-browser-key\" target=\"_blank\">visit the Yoast help center</a> for more information.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:18:\"LocalSEOBrowserKey\";s:7:\"user_id\";i:3;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:2;s:9:\"\0*\0reason\";s:21:\"post_type_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:3;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(121,4,'nickname','bigscoots'),(122,4,'first_name',''),(123,4,'last_name',''),(124,4,'description',''),(125,4,'rich_editing','true'),(126,4,'syntax_highlighting','true'),(127,4,'comment_shortcuts','false'),(128,4,'admin_color','fresh'),(129,4,'use_ssl','0'),(130,4,'show_admin_bar_front','true'),(131,4,'locale',''),(132,4,'hyu_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(133,4,'hyu_user_level','10'),(134,4,'dismissed_wp_pointers',''),(135,4,'session_tokens','a:1:{s:64:\"8a5c7d6f38bbb112005687806f426491b17a53ae7ab1a8b6e1bafd889274f08d\";a:4:{s:10:\"expiration\";i:1710111762;s:2:\"ip\";s:14:\"172.92.204.215\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1709938962;}}'),(136,4,'wfls-last-login','1709938962'),(137,4,'hyu_dashboard_quick_press_last_post_id','3080'),(138,4,'hyu_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:409:\"Yoast SEO: Local needs a Google Maps API key to show Google Maps on your website. You haven\'t set a Google Maps API key yet. Go to the <a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=wpseo_local#top#api_keys\">Yoast SEO: Local API key tab</a> to set the key, or <a href=\"https://yoa.st/generate-set-google-maps-browser-key\" target=\"_blank\">visit the Yoast help center</a> for more information.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:18:\"LocalSEOBrowserKey\";s:7:\"user_id\";i:4;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(139,4,'community-events-location','a:1:{s:2:\"ip\";s:12:\"172.92.204.0\";}'),(141,4,'wpil_persistent_filter_settings','a:8:{s:13:\"same_category\";b:0;s:8:\"same_tag\";b:0;s:17:\"select_post_types\";b:0;s:13:\"link_orphaned\";b:0;s:11:\"same_parent\";b:0;s:17:\"selected_category\";a:0:{}s:12:\"selected_tag\";a:0:{}s:19:\"selected_post_types\";a:0:{}}'),(142,4,'hyu_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:24:\"yoast-seo/document-panel\";}s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-03-08T23:03:06.668Z\";}'),(143,4,'_yoast_wpseo_profile_updated','1710022469'),(145,3,'_yoast_wpseo_introductions','a:1:{s:42:\"ai-generate-titles-and-descriptions-upsell\";b:1;}'),(146,3,'hyu_media_library_mode','grid'),(151,5,'nickname','DavidB'),(152,5,'first_name',''),(153,5,'last_name',''),(154,5,'description',''),(155,5,'rich_editing','true'),(156,5,'syntax_highlighting','true'),(157,5,'comment_shortcuts','false'),(158,5,'admin_color','fresh'),(159,5,'use_ssl','0'),(160,5,'show_admin_bar_front','true'),(161,5,'locale',''),(162,5,'hyu_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(163,5,'hyu_user_level','10'),(164,5,'dismissed_wp_pointers',''),(165,5,'_yoast_wpseo_profile_updated','1714055779'),(176,5,'session_tokens','a:2:{s:64:\"34390c9907578639b1443391706a0dd88e75b0397d0db4325cd118ae9ce803cd\";a:4:{s:10:\"expiration\";i:1721332850;s:2:\"ip\";s:39:\"2603:7000:4841:1cfe:8c0f:9d67:fd2a:7aa1\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36\";s:5:\"login\";i:1721160050;}s:64:\"8d5e9d754eadd4e34d0fee2519fa675632481f4e66a72a3e680cc5cc74689de3\";a:4:{s:10:\"expiration\";i:1721332856;s:2:\"ip\";s:39:\"2603:7000:4841:1cfe:8c0f:9d67:fd2a:7aa1\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36\";s:5:\"login\";i:1721160056;}}'),(177,5,'wfls-last-login','1721160056'),(178,5,'hyu_dashboard_quick_press_last_post_id','4489'),(179,5,'community-events-location','a:1:{s:2:\"ip\";s:21:\"2603:7000:4841:1cfe::\";}'),(180,5,'rocket_boxes','a:1:{i:0;s:34:\"rocket_warning_plugin_modification\";}'),(181,5,'hyu_persisted_preferences','a:3:{s:4:\"core\";a:1:{s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:24:\"yoast-seo/document-panel\";}}s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-06-05T22:07:35.284Z\";}'),(182,5,'hyu_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:205:\"You&#039;ve added a new type of content. We recommend that you review the corresponding <a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=wpseo_page_settings\">Search appearance settings</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:25:\"content-types-made-public\";s:7:\"user_id\";i:5;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:2;s:9:\"\0*\0reason\";s:21:\"post_type_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:5;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}');
/*!40000 ALTER TABLE `hyu_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_users`
--

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

--
-- Dumping data for table `hyu_users`
--

LOCK TABLES `hyu_users` WRITE;
/*!40000 ALTER TABLE `hyu_users` DISABLE KEYS */;
INSERT INTO `hyu_users` VALUES (3,'aspiegel','$P$B.qfRudGsOV2hxOMiUp7FxZ8FqIRzj1','aspiegel','adam@joltmedical.com','','2024-03-05 16:55:10','',0,'aspiegel'),(4,'bigscoots','$P$BjijrNMGwqkjlcx2FsSLTdcTpcpgeP.','bigscoots','noreply@bigscoots.com','','2024-03-08 23:02:33','',0,'bigscoots'),(5,'DavidB','$P$BbRX9QYn.PljxLKAJFvID8W/Wi.sAM/','davidb','charles@joltmedical.com','','2024-04-25 14:36:19','',0,'DavidB');
/*!40000 ALTER TABLE `hyu_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_userway`
--

DROP TABLE IF EXISTS `hyu_userway`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_userway` (
  `preference_id` int(10) NOT NULL AUTO_INCREMENT,
  `account_id` varchar(255) NOT NULL,
  `state` smallint(5) NOT NULL,
  `created_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`preference_id`)
) 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 `hyu_userway`
--

LOCK TABLES `hyu_userway` WRITE;
/*!40000 ALTER TABLE `hyu_userway` DISABLE KEYS */;
INSERT INTO `hyu_userway` VALUES (1,'2RMgbxx72x',1,'2024-02-13 14:56:40','2024-02-13 20:56:40');
/*!40000 ALTER TABLE `hyu_userway` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfblockediplog`
--

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

--
-- Dumping data for table `hyu_wfblockediplog`
--

LOCK TABLES `hyu_wfblockediplog` WRITE;
/*!40000 ALTER TABLE `hyu_wfblockediplog` DISABLE KEYS */;
INSERT INTO `hyu_wfblockediplog` VALUES ('\0\0\0\0\0\0\0\0\0\0W','HK',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0','VN',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0','SG',1,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0','SG',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0w','US',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0d','NL',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0o','TH',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0','RU',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0','RU',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0','RU',1,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0','RU',3,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0&d','DE',1,19997,'waf'),('\0\0\0\0\0\0\0\0\0\0\'b,','CN',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0\'b,','CN',1,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0\'b,','CN',2,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0-r','IN',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0-r','IN',1,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0-wT','VN',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0-wT','VN',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0-wT','VN',1,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0/i+','CN',2,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0/i+','CN',3,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0/i+','CN',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0/j','CN',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0/t7|','CN',1,19978,'brute'),('\0\0\0\0\0\0\0\0\0\0/t7|','CN',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0/t7|','CN',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\03s','FR',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\03s','FR',2,20003,'brute'),('\0\0\0\0\0\0\0\0\0\03D{','GB',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\03O	','CA',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\03','GB',1,19978,'brute'),('\0\0\0\0\0\0\0\0\0\03','GB',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\03','GB',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\03','GB',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\03','GB',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\03','GB',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\03$w','FR',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\03$w','FR',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\03$w','FR',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\03$w','FR',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\03J','JO',1,19978,'brute'),('\0\0\0\0\0\0\0\0\0\03J','JO',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\03J','JO',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\03J','JO',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\03','FR',1,19982,'brute'),('\0\0\0\0\0\0\0\0\0\03jp','FR',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\04E','AU',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\04E','AU',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\04E','AU',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\04V','SG',1,19978,'brute'),('\0\0\0\0\0\0\0\0\0\04V','SG',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\06$','FR',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\06%@','FR',2,19997,'brute'),('\0\0\0\0\0\0\0\0\0\09U)','FR',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\09U)','FR',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\09U)','FR',2,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0=[','IN',1,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0>H','RU',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0>H','RU',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0>H','RU',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0@','US',2,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0@','US',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0@','US',2,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0@','US',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0@','US',2,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0@','IN',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0@','IN',2,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0A<&','US',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0BF','CA',3,19988,'brute'),('\0\0\0\0\0\0\0\0\0\0BF','CA',2,19995,'manual'),('\0\0\0\0\0\0\0\0\0\0BF','CA',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0D','IN',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0D','IN',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0D','IN',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0D\r','US',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0JQ&\Z','US',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0JQ&\Z','US',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0JQ&\Z','US',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0JQ&\Z','US',1,19999,'brute'),('\0\0\0\0\0\0\0\0\0\0Q^','IT',1,19982,'brute'),('\0\0\0\0\0\0\0\0\0\0U','US',1,19977,'waf'),('\0\0\0\0\0\0\0\0\0\0V0r','AT',1,20002,'brute'),('\0\0\0\0\0\0\0\0\0\0Wb','FR',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0Wb','FR',3,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0Wb','FR',2,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0Yug','US',1,19996,'brute'),('\0\0\0\0\0\0\0\0\0\0Y\\','NL',1,20005,'waf'),('\0\0\0\0\0\0\0\0\0\0Y','NL',1,19998,'waf'),('\0\0\0\0\0\0\0\0\0\0Y','NL',1,20004,'waf'),('\0\0\0\0\0\0\0\0\0\0[\\','BG',5,19990,'waf'),('\0\0\0\0\0\0\0\0\0\0]]','NL',1,19997,'waf'),('\0\0\0\0\0\0\0\0\0\0^B','BG',36,19993,'brute'),('\0\0\0\0\0\0\0\0\0\0^B','BG',48,19994,'brute'),('\0\0\0\0\0\0\0\0\0\0^B','BG',45,19995,'brute'),('\0\0\0\0\0\0\0\0\0\0^B','BG',3,19996,'brute'),('\0\0\0\0\0\0\0\0\0\0gS{','PK',1,19986,'brute'),('\0\0\0\0\0\0\0\0\0\0g;lL','TW',1,20007,'waf'),('\0\0\0\0\0\0\0\0\0\0gR#','VN',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0gvO','VN',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0gvO','VN',2,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0g_','IN',1,19986,'brute'),('\0\0\0\0\0\0\0\0\0\0gR','VN',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0gR','VN',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0gR','VN',2,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0gR','VN',2,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0gR','VN',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0gR','VN',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0gv','BD',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0gv','BD',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0gz','VN',1,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0tv3\n','VN',1,19996,'brute'),('\0\0\0\0\0\0\0\0\0\0zr=}','CN',1,19999,'brute'),('\0\0\0\0\0\0\0\0\0\0zr=}','CN',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0{','VN',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0{','VN',1,19999,'brute'),('\0\0\0\0\0\0\0\0\0\0|ޤ','CN',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0};','VN',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0Z','LV',1,19983,'waf'),('\0\0\0\0\0\0\0\0\0\0Z','LV',1,19993,'waf'),('\0\0\0\0\0\0\0\0\0\0Z','LV',1,20004,'waf'),('\0\0\0\0\0\0\0\0\0\0ǔ4','SG',1,19978,'brute'),('\0\0\0\0\0\0\0\0\0\0ǔ4','SG',1,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0ǔA','SG',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0','GB',2,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0','GB',2,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0','GB',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0','GB',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0','GB',1,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0d\n','SG',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0d\n','SG',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0d\n','SG',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0d\n','SG',2,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0Dgy','DE',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0Dgy','DE',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0Dgy','DE',2,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0','JP',20,20001,'waf'),('\0\0\0\0\0\0\0\0\0\0n','IN',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0~','US',2,19989,'waf'),('\0\0\0\0\0\0\0\0\0\0o,','SG',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0jv','CL',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0jv','CL',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0\0_','ZA',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0+','SG',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,19978,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0c','IN',1,20002,'brute'),('\0\0\0\0\0\0\0\0\0\0A','SG',2,20000,'waf'),('\0\0\0\0\0\0\0\0\0\0Y]','SG',2,20006,'waf'),('\0\0\0\0\0\0\0\0\0\0q\Z','US',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0q\Z','US',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0q\Z','US',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0#Z','NL',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0#Z','NL',2,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0C','FR',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0hc','US',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0hc','US',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0k','FR',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0Vgh','DE',1,19999,'brute'),('\0\0\0\0\0\0\0\0\0\0Vgh','DE',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0','DE',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,19978,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',3,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0K5','FR',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0K5','FR',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0K5','FR',1,19999,'brute'),('\0\0\0\0\0\0\0\0\0\0K5','FR',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0 nI','FR',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0+','CH',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0+','CH',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0+','CH',1,19999,'waf'),('\0\0\0\0\0\0\0\0\0\0+','CH',1,20000,'waf'),('\0\0\0\0\0\0\0\0\0\0+','CH',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0+','CH',1,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0+','CH',1,20005,'waf'),('\0\0\0\0\0\0\0\0\0\0|)','BR',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0|)','BR',1,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0Ev','IN',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0Ev','IN',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0Ev','IN',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0Ev','IN',1,20004,'brute'),('\0\0\0\0\0\0\0\0\0\0|','SG',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\02','RU',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\02&','RU',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\02*','RU',2,20000,'brute'),('\0\0\0\0\0\0\0\0\0\021','RU',1,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0?!','FR',1,20000,'brute'),('\0\0\0\0\0\0\0\0\0\0?!','FR',1,20001,'brute'),('\0\0\0\0\0\0\0\0\0\0?!','FR',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0?!','FR',1,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0X','IR',4,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0\n','IR',2,19986,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,19990,'brute'),('\0\0\0\0\0\0\0\0\0\0-','RU',1,20003,'brute'),('\0\0\0\0\0\0\0\0\0\0-','RU',1,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0#x','DE',1,19998,'waf'),('\0\0\0\0\0\0\0\0\0\0£','DE',2,19986,'waf'),('\0\0\0\0\0\0\0\0\0\0£K','DE',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0','ES',1,19999,'brute'),('\0\0\0\0\0\0\0\0\0\0(\"','BD',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0νR','IN',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0νR','IN',2,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',2,19990,'waf'),('\0\0\0\0\0\0\0\0\0\0qj','US',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0qj','US',1,19997,'brute'),('\0\0\0\0\0\0\0\0\0\0qj','US',1,20005,'brute'),('\0\0\0\0\0\0\0\0\0\0ٶ','FR',1,19977,'brute'),('\0\0\0\0\0\0\0\0\0\0ٶ','FR',2,19991,'brute'),('\0\0\0\0\0\0\0\0\0\0ٶ','FR',3,20000,'brute'),(' | pI\0\0\0\0\0\0\0','UA',1,19977,'brute'),(' | pI\0\0\0\0\0\0\0','UA',1,19991,'brute'),(' | p[\0\0\0\0\0\0\0','UA',1,19977,'brute'),(' | p[\0\0\0\0\0\0\0','UA',1,19990,'brute'),(' | pȓ\0\0\0\0\0\0\0','UA',1,19978,'brute'),(' | pȓ\0\0\0\0\0\0\0','UA',1,19997,'brute'),(' | pȓ\0\0\0\0\0\0\0','UA',1,20000,'brute'),(' | pȓ\0\0\0\0\0\0\0','UA',1,20004,'brute'),(' | p.\0\0\0\0\0\0\0','UA',1,19991,'brute'),(' | p.\0\0\0\0\0\0\0','UA',1,20003,'brute'),(' | p.\0\0\0\0\0\0\0','UA',2,20005,'brute'),(' p?9T\0dJ','JP',1,20000,'brute'),(' p?9T\0dJ','JP',1,20003,'brute'),(' p?9T\0dJ','JP',1,20004,'brute'),(' p?9T\0dJ','JP',1,20005,'brute'),(' A\0 \0\0\0\0\0\0\0','FR',1,19978,'brute'),(' A\0 \0\0\0\0\0\0\0','FR',1,19991,'brute'),(' A\0 \0\0\0\0\0\0\0','FR',1,20000,'brute'),(' A\0>\0\0\0\0\0\0\0\0','FR',1,19978,'brute'),(' A\0>\0\0\0\0\0\0\0\0','FR',1,19990,'brute'),(' A\0>\0\0\0\0\0\0\0\0','FR',1,19991,'brute'),(' A\0>\0\0\0\0\0\0\0\0','FR',1,20004,'brute'),(' A\0\n,\0\0\0\0\0\0\0','FR',1,19997,'brute'),(' AE\0\0\0\0\0\0\0\0','FR',2,20003,'brute'),(' A.\0\0\0\0\0\0\0\0','FR',1,19978,'brute'),(' A.\0\0\0\0\0\0\0\0','FR',4,19990,'brute'),(' A.\0\0\0\0\0\0\0\0','FR',1,19997,'brute'),(' A\0\0\0\0\0\0\0u','FR',1,19997,'brute'),(' A\0\0\0\0\0\0\0u','FR',1,20000,'brute'),(' A\0\0\0\0\0\0\0u','FR',1,20003,'brute'),(' A\0\0\0\0\0\0\0u','FR',1,20004,'brute'),(' A!\0\0\0\0\0\0\0,e','FR',3,20004,'brute'),(' A0\0\0\0\0\0\0\0','FR',1,20001,'brute'),(' A\0\0\0\0\0\0\0\0','DE',1,19977,'brute'),(' A\0\0\0\0\0\0\0\0','DE',1,20000,'brute'),(' A\0\0\0\0\0\0\0\0','DE',1,20004,'brute'),(' A\rE\0\0\0\0\0\0\0\0','DE',1,20003,'brute'),('$\0a\0\0\0\0\0\0\0v','SG',1,19977,'brute'),('$\0a\0\0\0\0\0\0z ','IN',1,19977,'brute'),('$\0a\0\0\0\0\0\0z ','IN',1,20000,'brute'),('$\0a\0\0\0\0\0\0!0','IN',2,20004,'brute'),('$\0\0830\06','JP',1,19991,'brute'),('$\0\0830\06','JP',1,20000,'brute'),('$\0\0830\06','JP',1,20005,'brute'),('$\"\0','AU',1,19977,'brute'),('$\0a0\0\0\0\0\0\0\0\0','SG',1,19997,'brute'),('$\0a0\0\0\0\0\0\0\0\0','SG',1,20000,'brute'),('$\0c\0z0\0\0\0\0\0\0\0\0','SG',1,20001,'brute'),('$\0c\0z0\0\0\0\0\0\0\0\0','SG',1,20003,'brute'),('&\0<\0\0\0\0<','US',1,19990,'brute'),('&\0<\0\0\0\0<','US',1,19991,'brute'),('&\0<\0\0\0\0<','US',1,19997,'brute'),('&\0<\0\0\0\0<','US',2,20004,'brute'),('&\0\0\0\0\0\0','US',1,19991,'brute'),('&\0\0\0\0\0\0 w','US',2,20000,'brute'),('&\0\0\0\0\0\0 w','US',1,20001,'brute'),('&\0\0\0\0\0\0`','US',1,19990,'brute'),('&\0\0\0\0\0\0`','US',1,19991,'brute'),('&\0\0\0\0\0\0B','US',1,19977,'brute'),('&\0\0\0\0\0\0','US',1,19977,'brute'),('&\0\0\0\0\0\0!P','US',1,19977,'brute'),('&\0\0\0\0\0\04\0','US',1,19997,'brute'),('&\0\0\0\0\0gq','US',1,20003,'brute'),('&\0\0\0\0\0','US',1,20004,'brute'),('&\0\0\0\0\0\r','US',1,19978,'brute'),('(D\0\0\0\0\0\0\0\0\0\0!','BR',1,20003,'brute'),('*\0ր\0 \0P\0\0\0\0\0\0\"','GB',1,19977,'brute'),('*\0@\0\0\0\0\0\0\0\'','RU',1,19997,'brute'),('*\0@\0\0\0\0\0\0\0\'','RU',1,20000,'brute'),('*!\"`\0\0\0\0\0\0\0','DE',1,19990,'brute'),('*K\0\0\0\0<W','ES',1,19990,'brute'),('*K\0\0\0\0<W','ES',1,19991,'brute'),('*G\0)\0\0\0\0\0\0\0','IN',1,19977,'brute'),('*G\0u\0\0\0\0\0\0\0','BR',1,19997,'brute'),('*G\0u\0\0\0\0\0\0\0','BR',1,20003,'brute'),('*o\0\0\0\0\0\0\0\0\\5`o','RU',1,19991,'brute'),('*o\0\0\0\0\0\0\0\0\\5`o','RU',1,20004,'brute'),('*o\0\0\0\0\0\0\0\0\\5`o','RU',1,20005,'brute'),('*\0\0\0\0\0\0\0','GB',1,19977,'brute'),('*\0\0\0\0\0\0','DE',1,20001,'brute'),('*\0\0\0\0\0\0','DE',1,20003,'brute'),('*\0\0\0\0\0\0','DE',2,20005,'brute'),('*\0\0\0\0\0\0\0\0\0\0','DE',1,19997,'brute'),('*\0\0\0\0\0\0\0\0\0\0','DE',1,20005,'brute'),('*\0\0T\0\0\0\0\0\0\0','UA',1,19977,'brute'),('*\0\0\0\0\0\0\0\0\0','UA',1,19977,'brute'),('*\0\0\0\0\0\0\0\0\0','UA',2,20000,'brute'),('*d@\0\0,@\0\0\0\0\0\0\0','UA',2,19990,'brute'),('*d@\0\0,@\0\0\0\0\0\0\0','UA',1,19991,'brute'),('*d@\0\0,@\0\0\0\0\0\0\0','UA',1,20004,'brute'),('*d@\0\0,s\0\0\0\0\0\0\0','UA',1,19977,'brute'),('*d@\0\0,\0\0\0\0\0\0\0','UA',1,19977,'brute'),('*T\0\0\0\0\0\0\0\0\0\0','PL',1,19991,'brute'),('*T\0\0\0\0\0\0\0\0\0\0','PL',1,20004,'brute');
/*!40000 ALTER TABLE `hyu_wfblockediplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfblocks7`
--

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

--
-- Dumping data for table `hyu_wfblocks7`
--

LOCK TABLES `hyu_wfblocks7` WRITE;
/*!40000 ALTER TABLE `hyu_wfblocks7` DISABLE KEYS */;
INSERT INTO `hyu_wfblocks7` VALUES (2153,7,'\0\0\0\0\0\0\0\0\0\0-',1728623848,'Used an invalid username \'admin\' to try to sign in',1728623848,1,1728638248,NULL);
/*!40000 ALTER TABLE `hyu_wfblocks7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfconfig`
--

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

--
-- Dumping data for table `hyu_wfconfig`
--

LOCK TABLES `hyu_wfconfig` WRITE;
/*!40000 ALTER TABLE `hyu_wfconfig` DISABLE KEYS */;
INSERT INTO `hyu_wfconfig` VALUES ('activatingIP','69.203.115.42','yes'),('actUpdateInterval','2','yes'),('addCacheComment','0','yes'),('adminUserList','b:0;','yes'),('advancedCommentScanning','1','yes'),('ajaxWatcherDisabled_admin','0','yes'),('ajaxWatcherDisabled_front','0','yes'),('alertEmails','admin@joltmedical.com','yes'),('alertOn_adminLogin','1','yes'),('alertOn_block','0','yes'),('alertOn_breachLogin','0','yes'),('alertOn_firstAdminLoginOnly','1','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('alertOn_loginLockout','0','yes'),('alertOn_lostPasswdForm','0','yes'),('alertOn_nonAdminLogin','1','yes'),('alertOn_scanIssues','1','yes'),('alertOn_severityLevel','75','yes'),('alertOn_throttle','0','yes'),('alertOn_update','0','yes'),('alertOn_wafDeactivated','1','yes'),('alertOn_wordfenceDeactivated','1','yes'),('alert_maxHourly','0','yes'),('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('allowed404s6116Migration','1','yes'),('allowHTTPSCaching','0','yes'),('allowLegacy2FA','0','yes'),('allowMySQLi','1','yes'),('allScansScheduled','a:2:{i:0;a:2:{s:9:\"timestamp\";i:1728784800;s:4:\"args\";a:1:{i:0;i:1728784800;}}i:1;a:2:{s:9:\"timestamp\";i:1729044000;s:4:\"args\";a:1:{i:0;i:1729044000;}}}','yes'),('apiKey','bd3526be23a1965aee59caa487c8d8d99e590944d05c5192446e3bde921bf3bfbcb8cb633329d01324fa4b35c225eaeeffcbc3547cbe2d9680579dfa7be6feeb2b52a354719f5af87c95bc25155da224','yes'),('autoBlockScanners','1','yes'),('autoUpdate','1','yes'),('autoUpdateAttempts','0','yes'),('autoUpdateChoice','1','yes'),('bannedURLs','','yes'),('blockCustomText','','yes'),('blockedTime','300','yes'),('blocks702Migration','1','yes'),('cacheType','disabled','yes'),('cbl_action','block','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassViewURL','','yes'),('cbl_cookieVal','65c112593ad45','yes'),('cbl_loggedInBlocked','','yes'),('cbl_redirURL','','yes'),('cbl_restOfSiteBlocked','1','yes'),('checkSpamIP','1','yes'),('config701Migration','1','yes'),('config720Migration','1','yes'),('coreHashes','\0\0\0\0\0\0\0a:2:{s:4:\"hash\";s:64:\"266f54c31ed64713aa695e76a9041b0edd0e3ee756aa2b27c2b098e85d752f2e\";s:6:\"hashes\";s:144640:\"\0W7ht#	q)d$\0\0(띰xJ{hϮ%\r^:(5\0(ZYY@Iqȗ#T@\04ߗt\\vQ޹\'_ajxҦ\0E=jȋ|p8.½֤SGp\0EqxPa>bvDo4VG;a<\0^N弘ae|K-ܰɜ=\0b&F%|w*Qr;|/=(A<\0#B5j$#j!bNj\0ۧ4(KI|0qD.^v\0>|;(߯\\W*7?\nN2=7[Uo\0iք\"]^XD2](\0/o):4]_+̔c\0e*@t\"q	ȐN5H\09wi5}h\0Z̈~0=G#CZ}*p\0T|̅_S8O0μ¸06\0-bsG\n(hr\Z.n!ez.YxUi5G$PuvATplJ}a\Z\0VX=:8~\"2ʦDIXVfEWeG]q)6	jnNؤ^}0[PKXs+ȉawS[U`|WSPD羟Nhb!#8i>kq6RE5:\";Bi.qXA4uU+ױϱT_^gyzGL\"1U}6:l|(㜦q{V~u<Dho*cϬ0xcl$	4mo`vA:`{rf_S3/sm?d^͔0X0#q-ml*#TcxEyũH>$2]%*6\\dpۛ!s%]ZYoݿr;G\"5 }x(r:a,zmKH1|/+Gu&w]-H\rRW\\5\'=PsZFԤoD-x?<uqXQ7ai\rICpEKykѩ}ˣ\\$p\"&p+^\Z{5|f㵅SLo3ExѥUq`q4uZ[n8Or70H01YL$RRAhJ6Mw:/7.ڏPh.BU-ї\'Tsz+ppHaP04D!2{F͹|p8$h\"d3\\pYQᣎK4ޗغKu\0Mx>]Z\"z8ŎVM˻yULKCWa\\ˁ\n;0Ġ\"fАΟ\'\r͍DdMsǿڴ$2j),\n\' #69\n^	nt\"V8M@H؟Q[S$ږmK2efte4\ZGG.fVy`)\".o[`ϐ\rnjnviU\n@,+!%u	re4+JuP$,WNP2\"Ş,|^y޲/\Z(A1]/ƅBMj:@ѫG+SfdVi\n6Wԑ\\<OEj2Q\r|X6/46J?XGX~uic\rpQ활\r?cLTӊqgȫ?crȸtdB\rTJ,Q$TDh((ZdzvO_;ƀEpY.&}_	QoSnn̵v\0)SnR\'X^khɑi7Ӥ:DILV\0yZ)K\nܘD~%Roc7\rL>1݈]^]RɢNFMJ,iI.2 >1Z;ר1ԁ$!W:	SxDq5/w_W:+f1zg\\YmxGO0jo].㖽B=f~:NFa6ա\nY \'i+`fGYbmUPMJڡ0&CvM$O4-K	o6lb1E;7x?-ǱZzE*nkEm@1sY#1$\Z=IbXBr?ͥ-!i>[eV{W!FPb<&A8`]wBκ@kp&h4ԛ2f\'GIS}}R⥅JЛZ[`mI$=D֛&Ǿ@+բqO.x&*p@lΒ/kz=i S\Z\Z4ڶ1523\r#?EQLIm$ZB\Z!&͖Ck`7\'/]i5\02SC+2f!OgveCh%%-)^\\\0t`k@UOŔcp>!8HB6=b!nz\0OS~K|$TlJbOwf\nTEg\ZU\rl{SYD7I.`Ï}#٧J4 6鎬M&$!2d<\\	|\\?g\nKNeӌ&ЎuѡIqtn~T	_j-%?70i}eiZO&E+rXe{emX<:KSy{r>K^sVS2oH֏_)7z_oeŭy^/?h;@rK%LPfc(|_]U͒o~MEsRpdF[\'r5l蔝媀Xec2BZ	Qjh!>&s@Z2]i](J~n3ϝـhjqo2kLJQc\08|VANں)\rmMADos,$gJ	Ŗ7l}aw|gRLh!1R&\'kD\':8YިKAa-RHT(:=ߤ\'\\\0|8(]xZvJ+~S$ً6vgAќʋQ?j`JN]0&b\0V?9\".I32r)rk+`NiM2]<	h\n˥O35F\\\0,vS+p\n.\rJ*RT	!A&UBtG=_:\\]>i?η@ڹaKպ*Խ+]ҮgƉ^62G\rS|;)$=Xn!l=@A:V56Ux5Px&:VV-qXA9M4-t\n{}MI	AE0N.T0b([oYd% +[B f<3)|y-d]`,5l9ox;xZq@51aIxMOYU\rZtKϭuJOyŹ&Ҹ*ܲus#t1#4䂹\Z\'&8\0m9;:ͼff)I;Poi=DᎯ0Slhsgܺ{,)\Z|<\nx*i`h`P*ͤ!j1m!~J\rO]Y<y}\Z>ɺHI|PBbe^Έ;VT1cj] k^O9A9/\Z%@b.` podf?jrYe|Hh>,ecRes5-D=<:3ϩM>r6Ԥ%zuۇ7}F[yx]kݭYr9IV,C2\"Vlp]l2Pf>Kp֚Jbvw`*w}*ʘ)>2qe^)PnGfR@Ol,>iv:`tQ*8\'<\nJ;H`Q؝6pqa%\r	\"An3HIs:Yae0BҲyPp\nﭾ!Λ&Ʌ\'M4BS+\'4&$ءVggog~m//&t+s\"#:Zܯ4㓉&_&6\"xF|w`AZ_+vL\r}NP6_Ұݾl2bqÜ$Uv	l,s\"\rm`YדUX^Ms6RH@	&冾Bx@dR#UOPgsHo)nWrtZM?%VDFv91{|;\n$ynȚhME:z@*9Vμ[EBu}<\Z#d4*?dQ]Bx.|9D:h@Q/U\0-|_ۢ1g-+}Ԙ!^iBJ\\W]f@@w=	.]kZ1љmG]x0	14\"1IxGL[	>(GA:	64 2DMM$\r澐i\0	8\\ŬjAʔ5+XoTm_|	Myu$1ck_Kofm%	g)[.r\noi{4Q\n\r8H\rfX	vlٮ!Pm\n6|ϔK	~Cȫ7:s&ujt	+{Rلnt,Ǟ`|U		#t̹p=I\")F	֓-\nqUi-$h*ml	VhLC»>U8.`@<Kh	ͿU%OHޡ@~x\\6~\n<:XhQATop28>\n*<ӳ?HM\'VL\'[R\nVY\"׳\\X@;t<H\\\n@&[DqSBN#FB\n#\\,--*N	Vӻ+:F Ӹ\n*An.]Btv!WҧMw9F\n+P_tQVo7n\nz#8J\nDfdvPfOn:aгX\nGk~ngm.3\\\n1ijgָ\nv?u	fh62B?2\03}\nxmnV=OD\0T)U\n}.ve\n?.zE+ɡ\n\\_9()7\n/S\'g߃v\n9dg~@|B-ڐ6=\nT[Cp(,_V+L\rۨI(.\nsHчc -y//?\r$M̤j3\naqYKJҔ΀p\ZJj\\P\n\nڷtn\rEanJ;}(ҙ.9\nX:Q}+O\\_	{ܓC\'ay:\n W\"w\05S Nrh\nC0pFdl\0\"u~2\"Tp\Z\nv[\0XZppi.c;~&\n&)h4_`FL<:`#pf\nRW#ވ Qē4E[\'z\r)kOdS0Xz_61kK(]1zukpR!YC8`dfh.^8!{FNL{z),\"wWSJǲKSuᾒMcccdD(Q\\\ra[J?T?Gd(stBUI+uCRSF2>3`v\':js(-N֠N3:VS;CT\n]CrJ2m5CZ\0/@@11Dծ68g\n)ezl1MH&S.>UB|2ӜOU}(԰z̹=䆀0j24\n:Wn\\C2tc2ĒZVR顃[l#4>1εEl|lh]:Yň3	\\gm̻1)q+#b^0rR^|2ZWctVҰzo_ҲYn,J́TNB(-g\\ICڞ:rn̿>TwD\nQ!@iDrȭ!wzL{Jy7-mG鴞Y[kEn#XviwR:M7KkRD. L9%SJ*n\'ͪt^VɹO*(7Y(Vz|%\0\'jlص$hTC՞N8kȺy*<I\n(x$C\nm-BYVAlͼ2VS#nX6XDUT=1O@,x )\r&d5s/,\"dNkN= ]٤.2nKi_J.&t8&mKX+CƆ\n!;[oVw22\rމ#<*Qf(\r%PcW-:\'2U\'Ftݩz\r}䟹-V\'eCCʅe-2,0\r1?;IB=S\Z2֥͐&׆ZB\r5CٖNskl\'t35\rNIYԯ!6)IY\rQi^\ZB|fC-/rUY٢B\rX[cdpSs3%.X|Aw#(JL\ra{p9(A)ˡ̮SPVs6#i\rnu:Ft\Z\"P9qPRPA\rk<vWPvg(Hтc+d7\rYtW^}rIxۯu$/dMk\rU:w,&Kp&\Z\r7GٛrXylﳠ<U5p8n\rXd	D\nqbc\Zu\rٓC7,<p,L~rYs#\r\"(qq6ZNş&h\r\n*J6V^%W\\y\0@:GC)̦|u9 Z<Pr?s2\'h?II3z(BGQ#`pS:eJ&/ʝaɋ`\n}\Z\\x+G\\%RO6}㕓悫-FkRV6G_e\r\"}Q^uYtYsNldU|7tUFYn[\nק\ZZ\r\nd.ji!!aIWRHjwHBBuXp\0bUe$OrΰYeJXpW	!L	oѦ?11]Q[7*a3Ǿh,Uc\\ki6uJ\n3*KviA&4=Dq!蓸֧f;4PZeO!vx.e8jY0\ZPP1S/0?U!͝6??Zvw=2H:)x.o\\JtLUoL~)6K5S$ʂ8⡧5gg73lsuؾyZwڠ0YE\0身i\\|7wq;,rLX\\35qv.R߼h<<thD$\\,t\0_gX%4.tP]>JT41l$y,`pMj]#WBTm7gy\Z]OYTbPǚ昁FM(b;ˏKg&\n-nzEja #[՝YdIdf@\\K2o؂/*~Hwc@2,P0x`ՁdZvs.k\Z5\0yX$j뤋I8@t={9v>:̷M\Zϵ\rBt\r3i0bnj:$L gratC Y\nH$$T̞}^pfO]ǭN3%\r\\-AJKK7Pxe\'PHHP=,O=+goYqa|\nk3L#LN}\ZEO\\0uFOR\Z)ā;S\'bN<vwLSڻsT|>Qi}GD7OF5BNov:A_-3x\ZJB@ky50\nQ(;4.`Rw!Tuwmt5o\n2A\"kߚz|lSPpkGM8ԹfEx;˝O[J`uOv&_-]E;|x$(t`\"/\Z=`>&oR֫	ڲ}Z	w%(4);\r;)6qi9C2td64KծAU)۳!Pdlw+>;O-LhyML)\\VH3_@AJ!_drNdG;Ϸ6<wj;V4dkԷ܏>Dj,pk~*d}[H?iK[i/(^\\4c-Ȝ)͗۷@c.V_;q:uMXbWZ`Eض\rSky%/-u_EC?oTgNLC\"M61ɿ\\)ji]mb#6C2ao2ᨁFˁLW%\rVJ~p$P(q\0RS;\rs}o%XOwR	\\B;zb#qlESWDLex骴@m!~|dET9v,WыʀKK#\0f羀G~poPq9\rbL\\92׬n*PP\0Aw:oHRRESGʏT-a*Qf,S7q̓<U*\";br^&7jFőұyZA\"Y!	=x`Jߩi.?w~/\"wU{Lf׏1:դy;&ۆ޹[rDbNv㤄\n\ZwrkHuEN/JYgSi)N]o}0<,eS</ܓ8CT2IUXjF\rPJ6\\d$Se=g۝JްS0ilww4:\"D=[Z\r#A@f31_<v(QNYCwo}z/+x\Z83ۀTё/*2^oܰ\n0\01x?F(8V/`8Іt2:]XK%	EL償t~nF^mKYN\" thRDP>(F-$>QA*0l[U[A7EOxƟ:Y{ 2gZ+j{hN.m۩+6r0jUY\rρF%\\V[z7qX{4a4=PҞ%^\\$rfz;@h謬&f{2T,Jg~KObH$(\r_\ntl	6Ax	70)P;\01M{}iEߍ\n}HNf΍0/,uI)-[\0=ֹ?+;Q/׬W/{lDAURprmm\rF6طi(\":@c:<R)%+:G%Cy*m?۴/\r!iAHK2w:%.;j@۴)H&RװRwciFz\r_c;QAJRQ6}%\0wQ1h~B׺ʌʤ!gy{8٢7\n\nQ4Hw@8<Sn-GaMRAӯgT1^0>\r劸֬+)7X[_u۱H]\"¡`nrXa;?~Rq3ٽR ar\0B<c=ORvBn|JIn;51VSK6ǐHiI (.fOdx,0XlJ.*Js9&$\rNZ/aUƏ`dL?>C|^vs_%W\rJ*fzKHvM,,z㡫?jk[0}FW@U0WgS2cFF|2`85SbG?e?q7#pjڥ|ɨ\0YO|aV3EFW^@l24K<\\/#\Zjp!CBڋTLX6jy\Z\nё4W\\\ZTM\\VdEබ|@])2ԕiqj\'Vp,KzMr#6hq	:@߮\r0lҞ6jZmc-kYxJ5_*]O\\sM\nT27oڠCg`c˰mupa\\|/Jy2fy2qt@WkmxGV͒׵pzk訍n!>x\\h|,e0?s4n,Lmu\Z^΅hU}1}=ziy\'\'|KW?[r(\r\Z3zػfW^P1Y2&ۑpAU%fG<+HH4ywy\'hzx\"v\\p$bo)cHvSn_(aWcʹA`kBʜѮ,2S^úD\Zѣ0?ޖft&!-U8<Gz<3\0R-k,u׼)\0\n9e\n!I9KWǼ?_IaYOrgY/~UJO.ŀ#E5*\'Cqk?R0}<̤. $^$mw޻`.A_[rE]J#+ߘ4D,EǡGfy5ܟ@nN	36M[yFRDm:m\\,T3y?PԈ+oKqraUWjj:MSC\0EpڎU=\\ف2%72B99k\r?rqQe-=Ozγ2z!.w\ZFPASӃPlZN!&Qw|c;\0,2aڢUPrYo:W3\"6uxhSئ3)]TCˎ1B\"$Ϥ_Y[^e\n41LHݩ̨<W`e	U&zտRB=PKqFu~\Z8W2\0	e`hp,-n};F \Z/q@Q!Xw>7.l8leQ,	naTߌCӀ#6w&fU\n`Vr{YU\"V1	]98}.@\rf[ɖ&1^g+fV`6)	5ESjrKuj%pA9Xc<_:l#(ǀv)ɣ,ĹvV-nzWE2DH!~\\ꩠFgJ\Zop\']Mi@P;VKiV(~n&^VTSn^Ey	u\0ci^Su%D{ox\\4\'10pG&oAMq5@= @3#\Zж/*t\r6<X\rIFPxN^+5H9_r?MΩԴY5D`$BfyISWq؛rcWw\Z(&=\reL|)aj.VC6\rd\n3[@\r܄\'Q\nŒ+NA΢:W<\'dSB4,hܟ+{̗r~aAďcKAjTG/6\n]<E&@Ƿ(\0a{|,@haZݻN/F]\0cOJhÙLC	8׫hl2\"i\r2ӣ-୏XC +Ra,f6!\\I&C#2M8_6wsEUP[Wґ4L{4\ZUuw\'瞟hQi5z\r&Ђ`~\'\rQl;4ec1b0w~{wcj|m]a_d4N^\\~ʘ7q/\"]$&<Լ	QY)\ri\0\"4ߕml\"WKxI0$\r!L7K3@\"[q˯v1 K&.]0֙8p#~\\oӁ=1D,p	ڱ4zή)F\r8xNz$wFm$\"]Xe\"?|2Y	Ōt-	ࣟvTը2H`oHPOnuDpRֽRnOk2Ω@7 \'yUٙK;@I:7}.a	̑HMϩ:	qFCOc#y\r<եl4֬(w	]5Fn?`b8)k(S;wAq^;Tι[cJD_=$xB2냙$5)SjrxVIR-[ҟ1.;\"=1(C]e(d-|5QCv,?adkVlEWR*9)7mvXbڷ\'p	Z9@S\r0,t`2plsW)08aIpopABH7M) JOb\0!X+c͎Ǯԑ8@Ghar6rVB:\' 4-I9#\"iݔ[-l+\'2YU~nZcttMh?Dm%ʋd]\Z	MصB\Zr/O5%N̶\Z\n2~\n\r=a⸬]7\Z\nŬWOO,ԺNE\Z\r7hZBLG+vSd2\Zi\r/quVcx-ll8\ZÚZþި6W2lI96G\ZBXf\"ԭOݠ%K3ѓ93h\Z42o^iw$Se(I}P((\ZQ\nS^M\0Ù]M\Z`:c\ZTcς6[LBcl\rxR()a?\Z[Iʙ`:}V\ZTDn+/`{\Z^\\%kOei:io\ZqRT=\0,\ZXD픚\ZhK8h\Zxy7{ zQ1+5:#Mu<\Zdhƨ,ȊaܑiK#A\ZtY-{RV ۷FR!%8`?O\ZIa^iJH:j:b\Z;4JpRӗڎXV\\2p&\n\ZmҴ`S|0	SsEAL\Z䜫:H2fם[Jm<x<0\Z7۴>0XϘ\ZAS[[kn/:%>\Z\'_\ZKGUm0;A򳡆-vn\0]І{lCMvɾ@ƑT97C=yZ3Ήc3m!pr&,Y*l}Jpx5K5&\0CRdR5P,Ba#1Qf\Z\r݊P[YfdfsRt\'/iQf7Ꜯ&\'dWzғ|1Ɏz\"z|seQgJЭz-X+|@Vcx瘝s|0vɶP5T⍠!wRLjZ^\'{ )8m}.\rd_n5i?W):\\`^V=w=\"[<U܀ĵ9YCW-GMdz[gbꤼ&{737ki֐5є3N0P5y}@٪b1po4A{/\"ru0yLi(H\'v-3*3^c(^U#gphz{:7bc/LV9bar~D,?ѠGd)FAu``ڿoۭraچc,=sK>Pסe)9RB[|-s1ʎSPEGI45MCgY<-bO,w[6eJG7U]\\J5\\N(-\rX_j\r15-Q_Y\ng^ʸ\"|.Y|bO-b$t+8jK׹\ZX#[wwq51DjLH^t+?\Zci{íq@:[bdl9ր,ܱMS,elNr}6n\0O!\"j:(!b*C\rz\"{t\r =I)^sb\ZZ\nS\raL& v3+kCJI\Z<\0P>%@5v%( JaI\\ѓHO\'\n(Pӳ\nr	sJbmLh笇[\'{0luʒhkFNʨ\n,U|록X5)aTԩ %2Ryūi*%h%$)`v:#f,htD)WMF4~\r.xd\n:xA-H>Jy;<I8w2A	ڸ؞02yK|_%d`29xmlQW薕U=dZ	ʒcWZ:wP{6Ly?طcI\n߾B2ߵzՠevz3ƘU{^qa%IBЛW<VA=lL^<kLsjҥ?bɖȒ|B?-(+xd6SPIjҗ:K-`UMun֧]BeIY\rf6y;6\r)cUȫd4BnDQn+RJ1e,P 6;\'6\" ds\r=V\"n*R-!`CG֋م\"^e\n|5.ް8!9:%\'&;CrAL*3q8$\"n$Foef$S4C;wVR[h\\o(5OGm\0}UJ5}&JmyNL5\r\Z0s3u6!$0KJ\r22ߖ]Ó\'L\0IMq2˪㏽\Z燧i(o)NޢVB nLc\rʿ52BG3u*0oBǯh }CoG}BdgD؉$O<L#1OF14.+kc*9\'q.;FrP\'l1e^>b6chNE4#\\GYZ>AQb&YZo>Qr͡i9\0T9\\>$2ݲjrwhqMTUЩw͙CHN\0I<.OƏͧfh_2E_T.ZuiYk.\\{g:FhdaGI\0q׹a\Z\"D\'ϰ\Z;I>)$pi\")l}*3yXZjoy\\oCw=usn@=]N1%P0.\"pTӜq(%7NO2\"hkUvr޴\'r-AD^EcZWq85qr@7VRۘ]7NijR\"~RO|⺥f`S:\rb-\\|ۃ9Egf]Hh~wwO\0LhD:m	3(TN,jpJ̺γSy9s68rMڠc4boT,>\nu	U`.9>Y3`yk6d?j/&b\"\n<5.Bzn1YY]}{6^\roʠaXܖ^	捄s0ɻsy01)fx X`[Z76.-*PU-8m@e05\\wMv1.ʞRfq\"^hS;X~YY^ϻjcTxFw7?D?Fa\0-@h1+K(a]DR:[_I3ywtן#F3=22I8JpL]]}0nP\rQcJYB=niQ=NeձunS,hX:_U-JrS5btLȒ|n 4\0ْ\'/XMK,f\"*Z$4 %-b#6u|Ė}bJs6 h%\nfJ(UZu@DRzC oIڞ\"04NϨ .,2F*z&@;`x^#.W(` :kYMjxRցִP=T_U~Q Hʱy4BW@c\\JqGC WaQxD2-q%ol(]?A kuPt̊z\"qg=(0 l\n°&|\"wK~30,>P&w m2N8a>BdLUoVd^ \'Ơ $nX37N<g YL&> G\Zu%X-) )>Q|	]vC, 7ćK4sNs	Q<s| \n	\Z?`%Tp6#IRlR ӌ[*ktC`x{c!ՙ\ZVWSst @W4n*tQ`EJ))e%C!Bw픴Q\r\Z-1O!Tvα!ڨ-Ohc.\ZH6!ps4zQ$\0!)u^)h\rȱ>uOK,hc$!,els\\055.fOte}!5AR/{CaF9Z_t%8,=۫!?U!)lnUn(\ZǅFZn!ZmNxI>W>%*r^#\\QD!]ͯ%uOb;Ͱ(2[\n_!i\\ ׌eQ\0rz.+;\0\Z)o53!\'o]tJ:soT!x6^q>F70VֵV>>!$1ŭ95\n2d\\aW\Zq3x!:qɴ&gz68֛d;tV;U!&x[w)ȃcNSa!>$wĜF\n%`IJM6o(!bFމg2oi\nNl+\nb!5Aà~I \\v(cF!(\'eЎ\r804@dD4KSkV!aZU/<rg$R4gZ0l!\r;m1ϼ.{r6@CHc^\"A!ĩtXQ\"ђm]2J\"TYKJ,/\\/ d\"h>:Q sikZ؝Ew}b\":+@b$TAt6r\":fnJ\"-vSX^\rˠ#\"JRIx9Wn\"aԙ\"L0]ӆ٥y)UeP^A\"S.87~96syjr\']s\0\"\\&S^\rxQf\"nNv?Kg^:mBlbZ\"+f5f(gdC<i˳]uƨ2ļ\"$l}eX\\%\'AJ\"	.F͢Y\\gFy2\n\rMZ\"G$@PĹ\Z7~ԧOƦpdb\"):ze0E8=!7Ӻl<ZP\"/JK}uvaHQLE\"!zFۺ6&\ns|\"ʊǏ5\".Mp-zx)R.%.8\"،V2M.\\e#Nȡ>.:I\"_rЏMDZNa\"2e܃A#Q)\rj|\\rm=\"Lp6-@!#^kYڮXVFX65\"=\rB>\"H@Z#XVWΫ\"80#>nylvƩrK~8\";z`~g^_R5т(#ğ_ܵ?W/C+UKG#2s\'|x,q´ޣ\\\"\\*dq#Lj@P\\Eȼnx$Wҫr1پ6}#2;#/7\n QrsE&]IeYcg#Oyw;pӿzw,!:;umj)#SRm-zşQ\r: QV#fl~FcAmĽb\rV֯qP9iϯ#fW*o_\nU8_\r֣z#mbTɸ=V187>#_Ӂs(sxa{ۍ{A-##̨wA/c[&Ge\Zx%%=C[a#gCY<bIV?Ji^aUB#yĽTf<,9z,;P#ә>ho/>,Fm@`0#g#\06|РYD̰أwty#M+B*TvGǒ?oLJs#BoKmuqGKL5=O#V}驛F\'y#v	׼\"Ù6GJ#]=0\n\rĞ^\'<$_-\'8uPc6#	KEum$\rܷ2ݓϼ+BɡQ(-$F:6~QQ\':3~U$Eq<pQ(&{=Xt\Z\'\r~$#\'b}$X:cľm]\"V$2	J8+n\nbO+92q$?\ZW7m(w{K\\۶׮jt$Cr{3;Ln,uw`7pE$Il;_W\Zd۩Έ\0fm$XA883k.b4DZ쥽$^W+NN	һ@yA$G+Z[($h/*ÅZOx+-롖HةTE$j^2	ܽ4`QQtyTr\'$l۵	ns}Z?|:$V&<% 旅.l㹯$E,_wMJI:W~$`5~VWClZ	|GN$۱lЯsF,ųeIx\Z:>;3$]:)~KF,B4w٨/c,H$ԑ<*Y+`p_/Ȟ)Od$`MHn#<K*\re$LްA,\Zƻ5b^<=S%%klf;{݅T_<{x%[4d%S3BG\n9K\"Ufq*Aj5\'ϱ%Yy\Z@ڤ~&Ǩ1#2Qi׮%nMǮiD7@qV#vE>TCdW%v+4)%Oi+adgF2!T+%kr _SpE3%f3qEb<r]B[S@k1\'b%\"Hk,2 }ڗE%>fXJ&Ж>Zy2p#%07s\0\'zM|:9#h7dJa6!\\%ƲaU>ZZ	YD^@NN%%8X_Ҳ%$9ٔ*_[%܉`nTKxCt&Xy&̷-;בuH\\s!5\0&\nuOb&\"Mf?+AT(M&pj+Ҋ%s<\\$&In	w߬so/*A&J ѴO|d),)	ɰ+\Zt&am{[>Bv\\` :nwc)ߗ%Z0&vi#yH?4ql,xyC&|O	g)2*׫7o-r?&[on laϳtWLQOQc&ٖ`#tޙ,Q)D9&t*2~|1/U8VY}$&m4tXF@RʏbL&ӥYk\Zn߰XOڱhb)&!G!CoFQ`BQ\'l_JVSu8VHJyC\'DĂD1`گ/5)F1\'+F.}M>W\nwJ]}&#V\n\'(\0*Pg\Z$\"PHG!5jN\'@?B{uBti\'S?\n=PC\'F.1E)H;l/.n7|W*\'GLs\r+QN*+r;_1Y\'S{<?*f;/{\'v\'k7^Y6֨{J/՚ɺdN\'HT*#M%GLR);ĪGs:v\'Q_+g*drVǠ\'*\'pGg_P@EuE-jbc=H蠕\\MW\'$1,;bL(˓̰O\rMgд\'iZ\"Ʈf=DFG\n_B>qY޴\'*ǋw)M>SY\nS4vna\'9_eZhZVa釦vu[*S\'N9rg_TȻkBy\'q&1,SNj64cG&Z_3j\'֪*	[\0EE*JrVsc?\'^5j%Vl{={m@\'m/lr8*l	=$枒=h79a\'j*,A.+-Tגּ*\'ٍNf[Og|\Z	+\'xrXk.~b5ǟ<M(:MQ =ߪyyLޢ(Cd?hvҺn*1ZV(=XtwɬD.=H\ZS\Z5w(?߾nT Z𦆽\\98vW\Z(E\0	73/>u0AH*$\\(\\ðw0#rF߼٥^GAcw,t(a8)~%cG:~\\\0p#tF?(fp\\3{?\"];>WqB5mo(nssTj+<$|rE~(y:wj51\Z!`<!_(}6͛\"$#(wye\r63TQ-YT=G(Θ\\n lpuꑝ&]yiJ)(fqiIp,K(íļ\rC	vSKO]l]t(m}:փ{Fi\r~^`@2$(ڮwS4Blq`8zW:5HI)z4phziTv/԰x)!/PdtO;DCᤉ7P5)%^Vt_\"L&x?.Ҫ*|2OQ))nNpiMO+eP*5yjXb)JJQ%x\Z	r](R`)N\\nmE\ZkcQ(a)OyXK\'AA}a̣r-hķ)QF޶cBWk!)Z!YٍPA;]n)aQOhС/zàS\06`)}VOg-w/^w6!E~5On)4\"m:D[:K~>b1E()!eФR݀zgg6эl[{)Q1٪p$2˝n#[z*/	*?|)X.\rjcT[q1ǿ]M:*&Sƽt0*%ҹ-m\\(<`}yx	[l* jY6XAS͐\0t_B*0?\rYoXd	:@MFI)*N骱wju\r3*P|˿(WaOBAe:+*RNڔ%>+߮6n^wj98*^sJ^1@EHٵ5EW6>i$*en|ӗQDU[M!B\ZX2Ugy*j4m3:P0\0\0O9`*k /YlI>CK:xAn6[*mҰǕ(ySlSXL	3QnT*YD>)k\'YO+j*UY2F*(9͌v&5d2|ќo<v8*nTHSaQpGegz*.C)iXF89ю,*XN{Dݝn$pF*jlJ[ĸدiu*_	*wVS1Y\';n_b6+sfhI7q z}04+%<hat>++BPxP\'\"XpThw\"e+(Oi~.I%ƥ?\"~Y之boQ\\Y+EˎR9KB$\Z5ާWd+I* \"2:Gflp=+^Hu߲֨nTZ7+u i\rnQ\\24eK9tM,O\Z+kd\Z\'ȍ,GwwqN+ZP2lv,,2RV~I+Zr\\azk̧αk+ Wqz\"[נ˽_{,\rNMd_z_T3$7Xc.5AX,XمWvY9bԁ\'7 }\n,#|xIh܈G:`3{_^c,aY}PR6`)Kfism ,hg8պLɋZ:\Zí>7,m\ZrbJ|&\\\"C8)O},~8׿K3k.FP?R()ojrt,1^7\rx6$\'.SWF,!\\u|1;8}srE^,lTѕ%P~Ȝxq\r޶f,S\Z\rz˃]Ӭ#pD*tXk,gE^\"5¸6FO,ڀ1f,Ms]B#^X=d`,ԀJ`j0A\n*LzG,iS~?:5^:b\\BGQoz!bvE|,㯢/z]_Wpd.f- \0&_K:|▴,Yȴ4UTđ-7bkٚA53gFEk|^ڒn^)-#;ŹDoIYMAu-4akO67ZޡR)&~	-;i\\3.\'=Ϗrs\'1\0<-@g %uON\\}@lf\'-FP9Nf ;hl4E-HP{cܻ:n{2sZq:7A)l-ӌl^.ԫ;	><;nC\\-ת1:c&h	ֳ4VF-,h8faPjgW>q\\q0-kyn:Q2 ?x-vw\\yU+.$aWݕ2.F-{=mMzʶKzgR*(.(2GKzj\",55+%{	W.~\rB|\\}:tJsfZ.\"wk~?\'L-ʅ+?.#$.N.\\\"Cuj%HEJֈ^a.%%،kɐTaEQdu8ٍ~3.)y\ZJ\n*Fh,TTuԃ N.KnG\'z=_ĨK\nO`r9.d-vۺŒ#u7)ғ{.{fZ%{34`zo<\":qe5Ab..I)6Zn)\"6\Z]\r3CFZW.)G]C{.=C+[p-R.Bx~Cd\r(olv+k\n.SP*6;]XRCɆ\regf.йhdBiHɀns᝗\\O.:%q/}!*:r\Z^E/uC;,!0AA+Cǟg23/ssZ*j)iбeQ3>s</^W)H\\y=Z3%1q^QdaH/<E=C$xBHxJ`Jw/&dxG:IVt͆YjM?R\"/#ׄז4$ǽ~r>-h%8X/,b2H=XӲ\0DNb1/.٘ÇKv\\)wS/70/!BsݒoBͻe}y^/>wi`S{oF:i8/M4H&ol=|@uQD}Wp/_9^`5JҼ,YajKEl/o-7`Xf$;,rӍo/v \'I5R/^\nBR701nQ=*Q/|w΅jRzZHcxS Jb͌/YlezIGzzss=\\}/ԣZg\0cVץvdZ/	43sx|\"@-8,^F/GO%<\"!5Ĩ`0<hCJ/\0NKoʩۭ詡{ngg/|`zZ\0^\n͎#0\"\0@/XŃY]IO/)˲jtS+KUVSx\\/?<@qv4?rcm5/FA@TZ5a )LOfWRl!\"t/JtR8֓9HdFأ8/7\0qe\nO^0sԐ@7Ty0!Q+7`G#\r)S<\Z{b0C?Bk\0\'́<ג+F/&\ZC0o7Ԃ؝^\ZtU:+0COܢ6YyK8<GTJ0&#b93LC\0vX<cɘTX0)5iKejՈT|F$4t0F6^ʤp	,wR}nlDoYDȌ\Z0J;;Qx*,Uľ<g_;o-H0X!ލ\nB\"`Á6D KP?_0X73S;\03m&)$K>7wtT\"0[nڕrwe&E_JC䒈0iG/+UW3Ii\r·8صS 80sa`\"*m(|-=9ƄA@0(<~U-t.&]%/w1Ro0i\ZjÈ~3~NU0Q9\'j\rpWCmg0bu+<0Sb]^Dd0gк}bIYwe.G0pʊR^=Yo(a*7`0,d9ɘG\n6P$JC97,nH0qeR1:\'QDuhVwχ0\rXyq\\d]jŉ: +R(7Η0?@\nQƟq0	2zRo@0YiѾc1ˁ\Z[^r0\rHCx^\n#QY4NX1!3Q*\nX}(bz=./1&ZV0c;dClξP`c1/pJVQ2v앀]L9e?4J15V^,gK|#0Idlo1E(|TVc-N¿-~zn}.1\\^8.ljЅ4x]|1]T2J\\+	i6SvS,E1e䅁8oNT:w8<:1h\n@ސEA:\"H98GE1u\'Y	/%\0B\01-#$p&h5hJm9m.17H}htqEu6x]1SP^&! !\r\nO6\'R 6a\n-1H\"gyц*&\Zb&fK1_X#/I*DN|qx ]\n\\t1f@g<g-vIP8ၳ1׋0*E3:/2pկ\0K2^(16s4>gHTs*NVB1\n	Tk5t{j.\ZB5$V{26?ô%I8#AaW=ҀVONhE2AWB]b}cޏB#2BQb9L\'͛BBT2DlyO_!DFjF^=-vQ\"T2v2Hs|k-D`]^9c,2Mp=B+6A9 =)2SLb{Xsǅ*@)Q2vziM%\\Xt#$e*2{yC$%BE;4>f&b=r2})vD$t2.P엳2AG8Q2%bSO5 ]	Lfǘ\n^2ӆJJ/CC7N֍׌\rji2MmQf!=s*2\"!-2ؗČ_g[)@23>,.2-;/{Maޏû\\uy2ٹ<dI=@M8>4c!^i N3fKfY8~Dh_驪%*&zF0-3(J{*\r[ܽ}W33)\"K\\,h+\\\")`/W339DkNd\rF$O2>acc;S3E!ރXO+)\r^gPǁJ3Oj}.j	^W/Q(ϿиhBC3Z:2$FyP7bء: yM3r=	aԅ6~1t}k3i刍Z++<A&n?%3J~wUV.gD%ޠ.P	<Q37H00ԭ*:>a_r`g3լKYCX-kg9[۳҄4P\Z+KibEWВq`r\nQL4\r(HO_)yJwL4K\0$|%ܰ^qB۱&K4,jE6@9&YPd4-;*B_|TB !\'o\nQn4We.e>uɑyVc@4gѓ7G>\\JZl24UQ\r1#_fH*Idl4H}AC{Hh/}sfY4%C]q@m7kDW*_4]]@w:yٺX)%ǀ[btbsm/94%_^^[2ɝis.Ǫ-4ˁY2˽5Mf՞v2,.\\~4\Zr}McP\\GϢl8E58u_#gxTጷ7#l r5c[/8>8g1ZnBȥgx5IwNezվEs-M$g$5#_D؞;}6]&]&ig>W5$;/mkz 𙠓pA5*¨Po;,XȋyE[~5B`DSx|4q|ҭ^]5YY+W4~:j/:ّ,j5ox~,\ZF<H5ͱhYI&BiUI?ґ5p73aa)I>/@5	XxtB\Z}OL=\r6I5<8SIR\rAssf[HD35f`dP&r:]ﰻӏzW#[5`Hֺ>R5EOI5$lB]fE8f,}pQqtBZ1O6,:}u4!Z{Њw1&v1Ư?N@6=G!J|Gl̣8(xH,Q66G\rkH:\r,6Yէjh=Q$rFa6XW\r2Ya\nND;3>?)?V6k>׺	QHa[ב]{9F6tY~\'IY+65}jghy:6RPJÒ2]bD\r\0JnRiZ6}o\ZSuS4̀n\rh6\\楅Tb{)p2u,օɥ!wlb6]pt=VXڦfY6ɕIңMka_G#1m6ռ|d5l¼g40\'B`V6\\\ntÝ\0`6͋&)nek\"Sh7ISXeiNn&役day7\n@3l,UlL԰XfRuDYRsm7MI.-*\r7ȧ\\ݱє@bdx?7)J2,\"\ZV#b{7\Z>Q;~ogYF7]UP*2Ҫ#bV EXj7b18!U=ɀm{YQ7m0 䞤3ţK7\nFg0bݕW 7nvhXd\"͉Jڈ7qp.}a\r`7nsB}@Ӆv7|\n636#6I? 7}>`J+iV]67ق\ZE.E{(YKhd`zk7IcH<==\"F)\0[!X\\7#q$TT)Foe\'&?Prj%o7@lDIR*)UҵR&\0e7|&,SWĦl~e|T5o8\0xq rgk*\"@TCRZ=f8K*}\"}uaک}#V^}^g8Kǖڴ\"-??,[{/Ou|Ep8`ѰMU8?i$\"O{8o0;ৗPj둪9I(hm~8~/S#WUD~c9uuTv8-%s`NaL	LMʫ)8ux:+H\Z+2O)ڽBx8ړ1b;0eR juU``is92gK:raW;\'ӎ19fG3Csw[<h\\Ê;;OA(Ks9>|yɮ,naS>\\S9I<Ra~Te8JG,d[Js29P6ATa~R,~F\r։+o)\Za0p9PŠ`8_K#,lSVd*6T3-`~9T-Hȏ :91S\\\rb?FC9Wm\Z XQ?uM\0Gu7nO9e9Dg2[Oe-DqTnoK-9f`Ewo{)Q1W<ɋ9pmRzmAq*Z3V\n-9yԆ&/AXHi{b7frw=m91Yz=&3.T QA[$ɤZq97TBR#[\rO:K)X95V]*sꈻjq7˨39æ%!bdV@O GaM㾨\n{d9n~AbHcx;Bo>1<9J|UA6@)Y>$Uٚ駥6b\"9~%q2^JD3]Z4qT9]6z*6ujL\0<)+\09$2!躏uΙ)\0Я9qBYaهsdyPù(Cl;]%:Z?SjMa\0yJc/E#8s:\n1.V\\dS=\"E,vv0|:$Uy\Z\n*+ž+cy533e3:i\"R\"w`RIXL͖7ۉY:k6ZJWj?vA^a-YE8.,%:k\n<(Q -gvv]蚢ieUN:O3֛KiD--*3K/:j\'}!}DD%X6D:\'\Z?D-Sp\'Lo\"u`p:y8{#տm6mz6Y(9:me0i7Y,<Yވ-|:d eU&\0WC}>a4:_ll\0|S\nv\"2$r):i=\ZYeu)m냭}s?:\n[vg%Gpa?>m_k5:U#?_jL2S2UH^;R^y]%a3_);te;JE]Nj.1*EgWM;Wͭ%H)w<~D|7V<J;dߩ,Zz^uXј8}l$Y;glSɹ\0G,i8M\0;rthؒVg(eg1AH;zmpKm\0\']s\Z)MR!\\U<;\r\0osoB>Ô]ucrբT;\Zm}gO_t%nȅۯw?;0NU-\n$ΡJ;чQZ[h^2u*;7DnRWN4@Js`I;Pֺv}MZֵ&V<JS;ϟj\\%zv}d83e_;@_M-Յ,(gBC\'4/;]A(1x&̮^l_k8c<F࠴\0D;PwQtsρ<5ꩺպv\"Șڪ<:G&D]ԃE3 	uݜt< `2!l~sDU=TR@I<!{]wfְz=~SA>nJ<\'<\'[Oe0Րu!X	g<7SdT	{~}&(94Y_S#+T\Z<?ni6~ϊzӭDzm\'={?63T<m2[gC|0ڌ<q#;&p6fĂ^8+:H<x:wLdd|G%N=s<\0͐$5ŵǙ![G7]5+<H.<1zff:/|5F\"<^}<P,vuSk53lD TZ~O<.xnEej?\'o2\Zh<:-Rr{<ԫ!q2{Q:΅2U?=>j\r;|sXRL7ŦS=A@5Ӿ;\"vkkaϛa⵴.kgE=%x,\'}<*puXpsH#r=Mbg`<CX6.4x§{=Qsf#1\"C+3b5|<PC=]m\'OP0;&x\"Φe=ڹ\\0$[#b=$H3f4DVrj!?=.	ە &IgCq[OS=dtz\\IgN\nd%?8e%`s2I>\Z]ƚB̏Xvذc.N2NҹЯ>\"8*S@-bH\"aiEx>\"eY-:037,jO>pE;A\nq݃,(2	>rf	/lٸ$\ny+b+0ZH0wbVǝ>@ZHӐǓ9)W|9^~>	tN}%7 6>+1XsVTC>Ў<g\\^_9K:>PTϻ7r`K˒#F>EoG0W^ڭ>&in\0Y9>xf?)SvRKZnR>ԹW^;a*qoic>G+GY/Cꕻ܀6r&?O>uz/Aǚ	n5E-IGUh߳?	]M.nb4sT+H?ڟ>!dE_5;$~$&Ơ\r?) wYxmN#\"( 0wiIٹ2i?!a0?+m!ZuC<:>Gq?\'Ѐ|8i{_z_)-2=wmowС?,guV-Ub<eAǩKN?3ͳD[qJŎg*hY?5K϶jB *DP?4^?>ec2uu?H\'SD><56̧5c#_{8cf?QOxR\"&Z-Cj\r?_6b%㻧֪KxLb͟?h]0\0	BLJ?\r۴<~S1.QEm?`{W e6W,\'=B9?YꝤ;ܮS{Bv,J{9?W^z\0Y*`\\P+-Z lo?E4@+>~_tev\nh@$yZΤT+Ifؒc#pC@vPo4OuY7jѤ@s\'b N9E=оS0V{K@kX$ΩPB	=PS@*5]Gր3)A{Aq@:xcÆPVqt(*@CARA5P}%bI^C3@Lo֟Gj_x0`8C{p@`@Z=sX/$Xv\0uy8=7@^<۬\'=fn+~w;\0@`7ZǛbvP2t@hlqҀ@qbjuO ;x\Z{%y	*]@vKިk%~|``<5P.@|INAY:_I⡤a*)gF@~bR鏒Z^g4t\\E[]x.@ll4w2lq3P\"@F3\\;e0ہNQP\Z@;ExS\r=KA-py@@ɦ =Kwٸ\rk)\\Xsʑ] ܈@Q4PlN،F!KA$0jg\03dhfGTG)̷!A92!Z9^v*\0D8\Z=Qy\ZAbAP\n֫Tbc)q8JzByd?MAv{/Gg^6~F\nĖSA	A5Nkj(W{l9XIk.Q\"#Ac76QN^\"Bz͍NA2,0F\rv<qb9&ǰs&/AZ%6PÙH[h\n@ <A/eʣP3sEbz%xK#TAjڱ]Uf89byFvw1$eAN~mDD*W \ne\Z^Dhu]A@z$zYumpܔ^6/bA8OвOzyK\Zt\\Aiߤ^fW͊ßv#\ZgaA)6.k#a\rUAe[	v̛3kg\n\"݌Atx</YD:=o	uAR<K!tDJN]F!ƚ|\rjB\07r\n75HτK~+DBoB5}\r}dT/ШȐ؎,BBI\\ccx|c\rwHN,4?B!!$ケք!V[]ǐQ\'B&JP:olG|P:q_p!~B*/zn-TfYzO|EVBF$b$.-zFneM*/|BV\n,O{Ƃ9Ң,BMZrDgKZy{!dVB<=P\'\rl5hhH@Cp32ɭvCcBR*8ŘT/]s.9T(BۥD~ǖܬB>\\_EqlOxy\naB\nġ?}VxqAaIwA\'6BIq0q\Z* Z>%C!lC6m菛ml 2}$\\A/C>0,cJvy욓(T݄ICN6Z:cz15(Es{(MCjᥥ-DX\rHKqM`oCnUc]L]Ģ6C1rCt[P9o&іcvCǡb;C]U:3<v=\r\\G)Cvm9)wlNd?>oC4)iǌ<1u\"CO5XW	NJ6C]ת.7fbʹo	$LpDC3(`e#b3Տ~;o4TCjU#HL\\Y%\"rS{tʪCܽ=#\\4C.f>)!\"gkCyԊJDoHy$+|COW%tߏY|&0V\\C9~f~&%{	7ȡ[{aOyDg9ե+ww\'YJED2Pwr8IeW})sn\0D?j^*{2	Wc| ]ytDC\\N\ZK`ao2LJSw5:LTDHoBT\"/T[hN;*wo^DLSggݨ?猑ϞY1ћ hDWnL4+X_;ťDX{L96Ef=k=7:#JY#sΉeDk52o+פI0Dp\"bPmEN}^[:qfDi\"Ǟt۱R@8uvuDTE)$Gets̮E\nD\"KꖌT+qr9tJv!!D%}ImF2=(\'+AXD\"e9VIm425CAP%_DƎ6SxhjﰌG]ii_DU;F=dZK/h-$X#D\0wVvRwo~MRDTX6_8T&\ZUc\Z~@Q3gTDz\nr#o8]q˩8gwD\nDKbu4iQ\':-!:	2Wi\\DN-I00?4zf<HnE\rע4/X!3~\0]E(ڏK\"y69=a1c30mE*h5|y;f\rka퓤~NrE08L}qe%vB|:hwE73~K\027r\"U%-_:E:kfdtps*H@+I35_\Zr3EG-=|6W +xA0Icq_+EJVU2b7jMy8]nF}Z?4E`f;u\'wI$0Vo0H3]E}ZnՍ.G{$X(jyqo=E6x7nojah.e5E\'%Xm-QsĊKebbXpbE-8\nuT/§Ώixr& 3EQd8LܮŹ@#]sEЈ\ZT׵$;QE!!ͥ)r;n6EkS1$`^F ͥZZ(5JCk\"|dwqFǾ\'T%c*|kȃu\ZNMFkfSGK#:ݒmSk%FhޙHmkܲ=FwسY=!B\rJ9F!	P\r\'w:(Q\n=jlhjF+\"2|+FUÊ;YIፔ}f}|F.Az~G-v^t^0\r6<ЅfhFCA>=h1XJWDX4\"=TXFOV3\"!kPFVїa6yp\'3]\',F}&w=4qu\ZX?F{WB!F{KP:igF\\Z	(\0GpFy3n#;FR<`=#izAgDd)qFzgsf7BXзIwEFtv\Z:;`jʠBG^ЗαtGe)\\GnU>)_\Z1d/ڝ2>\ZJG\'AQhMVvS(Gl^~@yGBTg{yÈCI҂GB#(>+:Ծ\Zh/TGI}?\Z)[>\"n`CcfG]˽{0nّ)mwhnmTC&G^P[ְa+䂓݈mg ?Gsq\"qk,&u{ni>mGs}꣩~V/	ݭ[:Y\\Gt_!HXЫwcqe6>TkG~x%퍾˳>)d(\ZBNJ!G+8vͮ1g*=^5V逅\n\'G@PȃU! 91XYMQe \0׍`G?}o>UΌ5O*q&+v3\ZRmh@Ggr8,Bc]u_a\r̊;~GW\r\ZG$7iD>b^Ϯ4GĳYqU鄦l\"	,]fC\"sG\'Y75Tjd5:X}{GH{p<ZtMh`KALGc`B+91l%S;8B!G:}\\\r#}guHAf%1h*#\ZUEUh>B=rHp\r\0VQ]%<	&si\Z[HHeQe	=:2sO8OrȜŖH,o1@O>㍕R{5keH69ß$K&kѕ\0y}H9mPȥ\"Tթ/5{!#^HB]=|\rUJ¢ Iwj ~HN>+fVQщ2^HYfAp0]OcB /$g:H`kfNLh`o[agvEHaYB3GDۊY|_]H{8;sP%;q9\\}IWH٤]ê\0{/| odlJ/1HQ0z/t$ځ7)IH {\"!b(ArD]R;HJ` tHV{H5\"wqnG8xCZ(\07HƎ+@Ib^=QvM6_iLH3:Bk[e<KRT6uLbhI10%V`ޮfa8~(I;BSGlDkl,\0)IGQp5u\0c{}A>INE篏j4G\Z\Z}CJCIZ4ֻ{җ7taxВH1Iy\r|qSA*	}HPI|07ane;\\UI>ٽ^iliA$UM>l)$iIg-ӮP?{uORRr%~I?R`#C\'\'\"\\j\0aR_IP$K~Pmhf l<!,%fI3d7Z4U!VR\"߆Kod(IBqM 5{s6 liY,ɦde\reUI?5jn7+#IkScIzV%N)S\\n$-/A@`JR2_s{\n/vgLi:%JeN2\0Y by_BQJ(|\"Dw@΢w;`SE\']J0^iN餸yLms{(J;?[(*Q{84ᅶAfU5f;JWejJAU]1^s?Z\0JX#jwӚYUZ+v*+J]Ơ<SMvidz>অ&<dCJj;K;s\\2~4J~=;녞#	\"K\ZE+13J3AZ[;` 3˦oJ4+`b	\0Yy6WqDÅJ Vsf^0G\\JYF >%PMF?iOJ	p5vv8( Jbjb4Djw*4鱋p-:Vx@~JN@`P)@-8YX-J6dAl{Й\0JhJߏƁ}0.pe	G^~QyJ$E!\Z\"wONЇ^mJP#d	T먎=v*Qftz\nKI1Z.|=3S0\r8]+K3SxFHnZDa۳ws)*xK;PasznZ*dWđj]rKPF1)o47@VOfU5gKa;׾$(Ui{iN)hi\'T͌Y01KbC\ritꅣ\r?\Z6Ke]o?>M3<XKxd]p씟6r7q7nhXJ!KԴˑkHVAZ!ښ\\K;.8^&\Zt%n|TKhtâªx\0,\nywKzͼ3cޖ22?C@b_LK;ztu,1}V\Z&!5W,(Kk$Ht80%\Z\'%  	ujKOEnAF>ڒd3\Z_0D)\'K\naڄh)Ĉ#巆BP$;L$QA\Z3oT֟xp\\Ci5L&z֏ͭ+	*&X&R&eL>S\0}ߔ\".jnȡz%a|LE\'JnE@lr!3Άv\rLL)<ՔjFWB0#pmLOHTcK6.e;]Aes˿SFLS#Vo8ki.e\"kߦpLq4ZյH\0e7f=\r\nDC>OVLz7\ZUۼx{UW?EQK0\Z`hlL(pyp]&8,\"6$cM׳Z}uLY5{LIl#6MXHxP!\'+m\"Lf6=([х`#7~(aLO<e7j};h&K9< L&}Pܛ|b31ԁγLC해1%PǭVq{{r\"H.QLCUhU;4n}Rmx;ČLvQ4xA>krk-\0L:}%,\\}~8\\Oa8DsXLܨ\\H=c\ZIpbxn5IL*~ΠExI<\'ULhk_fBL]E;B/y/k]r\"< H$LRHxsq5]Mf9M\nA\'J@cVM|)=5c[!M\0(@hF(¨o\ZBFA\rw7M±MC-8V]\"?F/лMVsh$Cڝr+Bw&u&kMk_!:óa#\\	^1M997V%lz[B6\nqʕMY~q_$19w`\ZM[i%MAD.l.\Zn pTtMyL;-ڛ%Iu\\K|,̞f] M;*jh\04\'u\r_`t\"O͝4MĮ.4jW[a`A>?6eXMq\0q.2ݾA/^G/QtrMӬP=ȍM>lwov\0M~Yk@L\"#\"/;cvj~\0dMϸ\ZP\\x\09F\'?Շ=MSp}T.!$|N\\YNݝEh\Z,P.gKNmgl)A? NNegRwSn\nGКqN9]`T*L)w\0+Ã-r]NA;ַo5906lÆlyzNL2hګF$H[=NR2\rQ${)NU{Wkz\\mlf#7N`?g\Z؂ˀzrze=s%>Np.j샣f7F,D2٭:2+,Nzҡr9;,=䗈dGyNȩx=.ےGnca(N\"?XhLf?e!#+ov`nN&\Zc\n7˾\Zŏ6H6N:Ǝ>%,7	g`ez,NvޏLTgwR\\Gh,Ne>h@J|jlŷp>UЏNj$-GE)&J4GꝝTNkӲG\':2]F+NYGDbi\\iRL<&\'?<U3XNWNlN4~ J&R\\xd׾tR_ O	Y@9P->5Uw\n\'ORkg)eFèl,@O٨|e]|mK~Fӂː;J\"O({\\ǨU^D%!䶣XXJO:XZ%M;	;?՗l%OCdo^r?Ӳd8&VOGޣY8+]^wtX]ݯs6QzOV/~Z<)r!h=X4XOeIVi\\q<:mWDlK̈́\'BIOpb6<Fϻi䲯Hp\082C*Oe/<H}	JtJ3KO%zwvW8XF]lUOg6r\r\npHַ̐|OAR`qL?׬O3vv\0Uow\0KOq%s5ztgUUi~~Ou\\\r\r$-k}3`\\kxOW\Z9aq(:3+*+m;O~xwU.]bfW`hW\\ܭmP\nkH6w#rv{0=頻\0i.PzZboBL]+n@$G*QhtP\nO#~# |F:Q>݄GPkSZz0DϫI,1h]jP=q\"\\&4o0iPB1Bʍ8aSh@<^!|\nPBH<}FJg=rvqPD+ˢRƆ5BhX]lWP_M4WM$\r]\n]|a*Pk:ESv\ZLa\"i\0SO2s=P~ؤX7LG0QdkL;}PV\nB^~Uh yr.F>6pNPps%\\* #Q=QCg8P1mK=Y4$	r֨\r(|/g˥$Pj\n\nhbZW>}noFb*RPĽ7_cZs82F%\ZFJ:7PP*HƲB?BnƤ1K ]sgP3JFÑm\0[l%$\rPK&O5\'RTˢ\"Lr<ϑ6P,\\Z` !s3PWJ\0w~\ry!R\Z[BE&@$\rPO\r\0݉U}$a)S~\'A\\KP%?kN&{(bG!㝨Q\rLd^!DG4gt׵ʚH\"QAYZbDeO0{Y0XvQ&g듣aI\Z5Ec&#M/Q8.f\Z`>z;+8$3Q>+]6\'Gq*r-UZ\\>#)MQJrZ#6\Zd&!;]sZ\ne7 QKP;XӦ_f)ӊC?*Qj4b$V7UM|RbBthQtAFB;<b|OPtgyWZQМhEcN0G	7=m0;]Q]Bἃr4?N&uZsQ^QJC}fL[`%%˚ſbiGQzzu}Ϙտ>g&98QH\'<~dhçr$uí0Q!tL7	\n,N{Nw9Q[#Tӯ`0QԎRIQN\\smGi&!0\'2QT\Z\"sԭZ\'@>=;FsP[Qˮ5w=Cz?\r.h+p\rW4UF0Q~uRkH%6tuY09|*/Q\nZc4؅	gie-\'kR|75I|f(j\0R(߳\\ߥH3U=NKRe{(TFQA	ǴNRr2+P;ʅr{\0L]ۇv+Ru8ip=J]wBRͪ՛2$!F~eH`URP\"bM=sHmu/MRោa:hxE	gkA	+S֠ǃnDJH0h@ہ*Nt`JStBmۄ4t\\N9H6ÑSBdqRV+?򎻯0SKIr)},2xqj6+iDS^[m_,Y%q[GD=oS_RvFF5߳7s\"O\'GSh`.!1eUG19rj<b4$US,o5ȋ\0\'Yb-XjQ(,FS-yq./v5At*S1VDFET4fہNS\n@Gf_`IFaQm]-<S||I2!Vi趦AS̏[;cC\ZE4?6SA4c\\D56-#d*ҽӾRT	y^\n\\ew\ZKWrNe/{TX%Nuz~cƢC	W[Tz1PWj=bY\'ǪtNT)訓{\'T*YnZv.\r_\"\n)jeT<!M,z[~>V2#}E)TT2?%iI	`V-  ՊtTV\\-OKXǯ.ŹNЙu1^TY;GV\\7hW~O\\Q{\"T_ GlyN2Ni3Tge\\PMwQ{ki}\riTus)m[|lI\\³\ZɁmUTQ<Jhw)\n\\7<̽G\\TFHQX@fSBDh8VI?Tw_`zzv5`rP[}~3UːTϓ0.ð!hP1s0dTm9v.x9T .&:ouE/$&6$U9ț\ZA=CmYu\ZnUVΙpWx$?⇼PUcZal(+;\Z&E\"HyLU04+@qj?35Sr{ۈR;͎U;STS2.}1XSH&XE6UKCW͢/Z3\ZӶIqUW&k?un.No^Xۅ5PUi<T	,sTa6VUl6>8Sᒻfu8	q~$rUmPg[6m	ecY;U}8:l֑ŗ[J҃\'gUyB\'l;FVӸz`|\nC1BmUk\Z\"4i`FVm¬GXiEU۶B?wN -Čm\ZէUM: ݗL-^)|;%Us(4>\0x}vX*WR\0>UWqPuUT=?V#20f~\\Uꚬ7EEԢn;魺9kU@&?bKR[,3m.\ZѮbUɧk)I)G55	fR7U𒃔`Λ)ͽHEl#ez@DUeDDkX5\\h=,U\Z8Z\0U.X}b,WsfyyEQF_[Vn.v&a+8	ۚuA<WV,{+x}-\n uM8g>,l{TVA\0דDN`\n)Pk9WQҌŻ>VKaFqkNi7PVXWԖx@*kU?P6Ѣ\"5V_QZH؛N\\&IUb󚂇\Z|}VxG٘o)y0`cV࡛J[luXkUv\"PVXQ3L!h\"i#:@V̲D33>/Qu`ʤR@@V\nͳwœga\\~J8wN:mN+VEI0uX^@&2*֝XVbqPJ\0?HYzVΪ\Z\0G7h\"]c..̭IkXVq]5 .]@M*uǰbʝDLJ7V*:ߍ>I<7{+%WaV>Efw)\\QQ.Hz\rVk8v>KP3X{:lc@WE&TVU\\O8NOy!byAvZW\r5|aU͈3(|ɓkW֪2|0NҵxǣYO24pW;&c6pDX]`gP׌U]!W`fE/C2r)lPCCj?Weō_ցݲ:Ɂ}@RWиEXWfC3Ku!7J!l7˾bԿWh?Cexl}$ӈOJc_WsyWhaϵ:[\"5acQQt	EWwR%G`{\\]3+G]l-`WyӀV]@aMxezEhsQgmgWx/4/\'x/֑-\ZzsyWo5ҁRj?UZ(O%zWxO`5$=U>oWѾ\r%,Z	A+u82,gL\Z_Ww~sR8Q,q!\\skMW9,P2e!X:^uIVnNYW} 8.tf0\'	WO}leVd`10bW@XXP H_0Nc\nZ`OX\Z?yv}hD.嬛Mv)X\Zp/}պ \r_<\"\Z!}X(覔7+Nb&1Y[; X(f\03Jm<\n%lrX8P_9kQa[-mS\'<@!V:XHPpE%*+%tf`Xb}̿L,gCy~eb\'\n41Xc\"h.AbqKӹw_U@9XicR)RǠ.#`jjŏ3?Xp*-[DP<V8A#sAgSncƽXź= )e׎.xipXL]O}Fw	Vy\"#aq\"=rXe$<q>jM5̸z>6X!w4-<[EAbgzXPIJpe8 ,cm[X%B{0y2|kTUgm#YX}wɗR67uMT!ܟʷ\r2XxEKƪ.,lX>w{oyi%UHqAcXr5yw]jγگzж\ZYV$/@=V-dcYE4eVLF/Uk,~Y?c*_a)\0|4St}-ʁYAD]ʈxYN.7l}eKYBRb-tsxco@ԾPɫYCϩϟ$p˯=qj=hs\"(\ZN)Ytmk9Q煇0`NiY%FVOc$m3\rYl5pY=!\\^ox>S8Y-Y`x^.H#ƹ/24ēcY@e?W\\\'lm^9ďޮ-+Y=&~.QLF˛՟YiH\0U3$L$uHsY7ɡܼa/c$ۮ7\rDr\\.FEY1n8DoXa0ɫqp&EZ4rB֏znբ> \'dRZG\n+:P|>sPc^M\"qZ%4\'\nC`Zó4cj/lZ6rUB!tRytJI0+dI\"1ZWjI\Zg*(T\n\\Lbr7tɀ\nEAZWr\\#͕	!^lt|oC lZ^x  -}:ɏ\\rNZb)VlJfdX#lW@ W ZS-`~nV\"\ZUMT;?ZӦ8yikP\Z3葊]Z֪m떕\"|OJ}^@ƻZՍZ/.)w}醶Z-r廒^*`t6/[<h[\nxSSYP垫B_XK8Sa#[\n*k05Da4;\0/_7a[&(܇\0ΕljGn[\Z$k˹d?\\{\Zݐg/_,ip<[$r(ڛ8tbMq\0>5F[54(KL9&-kGRK$z,b6Fp[8si!@뮝{Bu$f<[B<s*;չC]+Ss[D\nphSuo9a`\0B,\ri[]9pmm:M9B>,A2[e2<wt5Hm|ۯx#F)=h[e6S\"ñxakAyR[t;}n[ZVL[qTu!-.[u#\'KF}a~\ZY	1L.p[[8akI%\'n& G[)ߋT0uDWP\",Lǫ[I,޲ZF[%yKRb6=F\\ad[U:˃VN:OexΊJ/Z[~KX适[\r\"\Z,3z.S\";r[\n)>l=lV;Ow~ [f\'TOTef==&i[6;]qdJ\n}ʂɥD[yV |t\r\Z/]X\\m$[ȊD1VyEM	e\n~%U,+\\ɭGͫFV6BZ@۪2X4Mw\\Jt.N4\08\"̥A;(R[l6\\^;hz{aTB{`ȵ\\sq)|IJ<ͧ,xLI2[K0Pd\\xc,kWba̎2\n[e]\rsJ\\|߯T(t2Dn\\3\Z#\\#G71\0nXsd\\?B:{Ӗ73LΔJ\\283=}f.p{磨ƭ:md\\ARZn9lr(XuOmCC\\_{[GD%@Xo[tOx1\\HODĨ{d}d2sI1eO:yѪ\\WɼSW#6+2}O}|FT\\I\r\\$m]IE#(\"sc1.\\lCv!Bwnsۘ%y\ZY(\\=0b򜩲2֚ `sTR<\\3SR\0NEu=ߘo\\yT{MPu|)?\0@\\1B\\U6ӡj݀]bz܎6x+}\'rҙ] |$,bEw`&uI\"5`a]F5&-]V4dB@F])SwMU՝XQ=X|]<rֽ4j\nhNRz/>]A.ɤz.j/z]HB	m3сhܯ0x!ek-]JebUf7b^p3KOF܍⼶]NqCNٓԁ}~<a]`~$mg[K5NdjsiRF]fC-\\Oa+밎#i4x$jK]Ɇm{w#ߟ^,n,>]FHrP-sen|Xq\rmf`y]Q˄=PݵuQ{>ϐ]CŀPy(c:C#8]vY\nu)SEE\\>A?]LV]r6|Ww\'Y]V05,MΌ9nrDUu7]%hqOݦtq;+sV1B]ؕY\'Tҹ0 P=<q^TȺ^ķ>`}jNG\\\'̅^>\"5J+fi7h&CϭX2\ZK^7qUd>VNchap9k<^>r=`7\Z)x^AG^7 ;6`*$^v_^Jp!<ʛYw\n)l^Nbu\Zx\'!T8o	yY|~C\'^W;s]-4V84^ͼ,i^g KcZ0(!~zW\":N^mm[(C,m.^vDG=msv^ΜȜ5y\\s%^ q(j \0If}\"l\Zm^:UrUЬDUA6YfCb^Ujx{+\"&?5YpѵD?T^\n0{zs>Nz/@6R^̟LGZܯQ8VW9\nHb2^HR7-IAÿL#~{چUď~^݌)nTh):3\"WjEv9NnZ-mѵK^PK:`XYqpI~^e22eD\r/Vq^<,^.:%5)4Ncj,6|^׋܄yiTWaD#Fu2_2f\nw/ީ}\r<8Z$_M7ĘTf&%Z1S/-v_|BO\Z߭/Blk|S|dǈheP_,aLO0lӔB\\U{Er@4_-n2zYfy#ࡖVPM\"~_^_=>7b\n6h鶨Pj|\"xhy_>mjT(\\h3-QHcE_?,Ibe}8\\Las/_T_:rcߘsN/]\n{zJ_duA#fE*.\nn9T\Z9pYbX_lbR,\'IheRD8}H_oYٱRQ_}GJ1m]~_8@zdf0p`oqqU:_7Q0WA-@\ZCTM2G_37~q/j\n9S#s_ՔJ\nZD.sA	1d Ͳ_64	PK_`I˨1?L_%MSK9$yg_G_$@\"4](XUjĳfIs҃_YUsEƹT4qPMDSF>C6_\09zQT.oxlIޝʄC_כ?&mH[JRc# M6E_,@\\S7loFPTިG9_3̥3*m	h\ZnM kX`>:6ԩf	µ(rP`1:	u34vYya%̸\"t`>P͈˙$I+=ƛ0tW26S_<pH`>NgK)p&0L@e\Z`T.|	۞ĉ[bTI``tD;?^+ʓ5mP|&`{YhuAlTN-org`\nR ]s?Idi#8Gp`hs4DU.f$Ea<p[`\Z>f>-\n})ޞgGK!`!\r;^wjMRU\"&ݻIʝi<l^H`=Ix\'u|ΙK!`dIUgQ|X!f~jm%Zp`r{R.1BiKk)5M`S,Ы=3 R=hR1\ZM$a\\C҂LnU[ܠ{\'Ua\nU~Xs\\\r>cf\"a2>b[/Wtz\rlyoUda\'ɎDu9MJ5u|CmFhS00aC$qas6[`u֓@W]-ͧawAV >[GAI\Z cr\\lafKZX~ͺ3b]L<7a+J#\r/_TQPOl齎l?aE<2`\r_ra\n{!{Qدa~ͧZBvLj*Ah*bazC居Z݀;4r=Θ|auY]iZܤO	Uh$\'aDmERBt\r?fQb\rC?DK}y/;|MT$?b-a?<\Z-r\r$Z|Y\nbG03⊼\rQQQ@vIF.3Mܲ%UbJm-ʧ553P#A{6\r54bOQwùLѠâ9QlrlbP9ޤyPg\"Ę\"VbST2ΑCCD\\`ݮ>E?J3bZG~u&\r坯1楃/+/ibgBxɖ)#B_ur߮+bW(:|[K0bKsmFdAیR$	bbٲJ4k&rhX+vOt$b0#ϦA*>pjqL*LN*\Z4b;ؽw\"S8\\z}N0bQ\ZBZQXNT6{hBqb􈀮9!X:\r3_:mcbqq[Jsآ_~4/`qbpd^R\n`	=dAc4es,c#ƈ|FwJ\0`w~^vEpLLcK͘G|\0wO>W! c:UeHCB\")Sε{c&~LRt j>گE@>Ǣ`cIH1Ũ?\"= \nw\"{xcSgy(0^xa&[5 fcT2骘\'Te+b 6;cyc`G٥T~zF+UȐY,cudyOT.`~<jx.\ZaєW6cO`H;гCe]ϙTc9כaIaX8\rr,F\"C2Syc^\"쾓Ua?WSQgbɡcHoԓıRU~oϳ,P)RWFcj޾?l\'84F=/3;6)_qc.sH*-ب_:%;R\'Kc!#Bi*+\"\rnIƈXÉwcʗBZ7;_Zevd$Gjw}XXyu2Z=Io*6d/e\\sS:짆$flmojd13\'mzU=&٪$?t׉$h\"wd5[&*%\rG8	pS-쩟q`97dBݑ\\EgE8\nƱz\\\rx/dPⱱX.]9FP+zdW\'MJe~vxh{s_|qaݴeͬdc3b[]	~?;\\[XkЗ`sdf/dBlهPQ=#djqe^1wK4IntfVC22@qdr\\=yZ].ɱ d|ImtP瀨96|d	Y@@+ғgʐ>$/d̃qx?\'?lJkS#dIX&܍s!,,\ZVwYLdrSzn<N{1J,[o6`Wod0(X}v`\"dWi^$_fdri\"fvxʅeKA?S2dNWNVSCƨ!\\K;e!*Td902h,A*;3OAe4cr}cٸeKWCs$Xg-e5kyH~^}\\f#6e:iKp[8qBQě(3eTm?Uy7,K\rpSUn8ͷ@e`݆.΃:jE\ZҰ5\Z)el%oѴm3VޡبSs?enR.	OFOXPhYC>WeY̻Ls{T=BrvIFUK:eEB	Lzt=F,faZ{ԲeJ*bV,CvbʃP~$eؓrJQ(O@_y\'+*&w\".eNױ?$ 5e% i3eb|(G\ZrK<7f=EY\n2fVL$/DEfl/ioVL5rpHͅќ5!fp0U~Ƒ]fO#iU|dpf1\')UɺO+pP\rkζf?sӊ1@cd`苲6fS~\'h,P.E1J>3&`B(Lfb\"=g.>{aۇaNl;)O&a,WfhP18jIU?7zju+j(>for\n&٣/	E.FM_hf9Ȇy7,W2)[*of ]|i\Z\0ֶ^ۇgӦ\rW:Py}p!;\rc	%,g-Є#h;>	|3zBVg6BNp&\Zgq:sdg;74٣eZ=`7y!uT9V\ZgV|ӺgaWoE\"{QTS{>giI?F]	{[Ε$^#d	gAkD	dB(9Խ&gaaq$+q0k+&;\Z\nl$hg%b]Zjd)-pFj 9g >0n)X2)0?8yg>ٗYl\r\n	PmAg={wu2xj5?g;a¿]Xr~\nt¹n29g.$o8q;Z7tz?ǰ滬ڢ+gΪ#KQ]\n44wKgH7Iʊ|HiųlC޲ggdv|U=DFB;~jZfgӕWѦ\n[T\nuA[zGzah\rʒ۩#jE;ի}Qe-6ĀCh\"n9(ah޿[GQ<\"h\'+:ugcYcg=hh0zNW:\\jX%@f;hBkD]{8h~-2q aZzhI x<%ji$h\\|qA\"_;^gcw\r{PhZ}bΔrӍ>hͼƾekY\Zfmhh<gs).זW0xZHCDh]3l%Y+!Fo^=hռo8u\Z:8N7IM!\Zlj#7hpS=T_k. >UCmiVh1pF)ydʱvNyN/>uir	!8@DaE{i+;N3̖ EݶA乴+i:;0$PvF\nSp2ֹi[-R[4̠/IwFE	UUxi`WVdgz\0 *N᷌^eipZ&`Un$P9xA	ӉĽ\0iyHEѵ3E\":L\rXۀ,$|uWpi~::lwˉΤի8Qi(wAi}eP.P|S[wW&w4xiMW@U}POOJjr4M_E{i0yNG\\89\'1+8*HdiiYS\'댵`R^yg4in\"}Vu3)!ƫZϼ~\\C^&$iʱL.1ju0u/&S0iv*+&&@kM&Q͒iқoHӝJ1p@tit.%-x;\n>r#,K+ȷic\'͔Ҟ>:2nQn^Sih0=]8YE\n*ӽnsjh\nј(&EeI\\s`|jS=s̼*a	jb횄^Usv8$bM3yj!iH4]eL8\rSlcbj041@EX<\0+&Yj$6gCj6vt5r#gAWFٞ#Y ~j<	ѩ*$*srM`eҋ!j=8PNT\r]LTC\0\njC,UMa\\kdDwiۭjG\'C1Khb*|YFjI\n&U@4o=w|xӡ^jPV]g2LRSlwBqKje+=˵hOd\n:t(t%1j|TT*/#[;U[B?,ܐ`5j8ڪN9q9\rD@fTUj4Cu\"B(7\rXF4uNcÈjP.cHqI<;whBNb8\\8cjq[@Ta`v+sfj	-%ZL9I~xmHՃjo9\nՠΒy[1	Ij\ZpISbʟS}_Väj&Zy\nr[!đ֑I}	I+j~˴nBA-ԘFOZ*3yA^j`+A+95 SJ:9rj֯cQ1\0Fo fyHD0@)Cj]I\ZKxz՝^!bujA\0.ShN}וF|YE\Z>NjSwKa^&4	tB۬iki85{?}\"!AW,@zUklqUsn3\\}%2?rzB̲k2{z$\0+3QӉX˼ PkH%|QeHz\rYo6Fpi0[節kNIP-\Z7}HDC;ή>EkOQ|6[簮+UMT/2kUM,kEH+yJvyPKӨe*k]^=u\Z;d2kXD\'wMC\nᎺ\'kw6XN\r0cՖk3/B	ߪ\Zp\"JghkɷdZqNЛ\Z,F\\\ZD+kUۜ[9؀jL2u9?uk]70Tq#C֠Ҳ0jkZu,=\'СǗ:̨kP;N3p\ZxqRWlֻqS)?\\Zԭ!?l=Q>|ZɊ>F5Yl!}[zm󪧥W#	\ZlLU[dg.\r5p\rQ<[vr0l_](7e/6dpk#lH݇\r]0${	%O!l!OeuyMm1/lK$s0FP|P\\VS&6B=ѲRli4쿦rnu)Kj5W	l-Cjؒg\\rľϸCICla{!hPw{%&Y0Ғ|tm\0\r>ȑOv<kaeC@mO]^-,qsr6V%Fڻmeч_TG\"^jU@s=Fц5|m\rXC9Sguh~RkYmemN\nTmG#И}ZYՀ\"m9(Լy[EAI\"Be]m;A\rd+j7qNy	v\"Pm`6뽩%Hjl̬?.ml|,C+IbI$Ө\ZHΣ^\"lQAmlԟB:,%c5iN9mnm>ގQQ0504|$8]Wp_Ltsm|i)m`mI}IdKj+9V̀j|,ĥm~<]xL1A8z\0-)@ʅmbO-7°Oa$Lw?JEQU8moyfrGT^5\\kp0[*!mv<.K	1\\ WPL`mשs]S7LAZ&<섖v߂fPFmmG =~5OURD\\Wqem؊}BP\'|{M2gבYmMڽݩ=FV7RͶ}9dg=mӥ\'麙RҀҌ*z#:,`$cm`ek}âyF[u\ne^m<Fhv%Eϑ1^AԻ\rm.+ek$2p&S`1q3m%ʄ\\[<-N2ER0mj8tɗK\r?G*znDs&UCn},i\0v_l\rn4cyp}%4mb&+uvBn5jAx3fL{iƎ9nB%E¶>9d[[}3+hl_nLz<kɅ7k-\ZAADפ`(2nZ\rc %mGV@m@vTIJKn\\ /J-+\rX*JiHndk.Cz]9fi0jϏ\'YGg>npggz g5s.n5LW4nq0#O}\"ENt!CnuйoLϳSocoUFa[ױe\0\\nTĉIvyOiǒ4Mxn-Q1H.x(jի8XDn!5]X뭛S;u<}3U8\' n-yu_\":~I8*2Yr5n;N9@I-z̹>Gq n0oF!V_1\'xhs<z=njwc=јZ7V=urhnG0%E(G&WX1tF!n灴U¢HZOh?\rniL&M٘x=Nf[y=/So+UYݵߛr0~xOs,2wohQdM\0;HՏp7Co\0EŤCwh#9\\铽|oE²tQQbo\nrQq\"/o2q\",Hf!OצwZ=PLo5r+}o38Jo7\\jUB/O4D`0`/Eo:G$.\Z%БFFhSu<oKSc3YW$y6Vl21@9>ovQ\"c4yIARKSUoQt\'FOSژU.Ro}\nd֑%?M웪;oׅCHla՘qnF}uoɑE+wdc#{AC\Zgo֑R`#:֥6dǈ8\Zox6}DP\rMb1a|iNo\r1d._f/7qAEpW|bO<fc#_V|\\;Zp\n}\0]tt!x L\'m,ifK#$sppm+>\\#J2=)\ZXӮ=P	~rp%h7=APc(@Ƽp%{erB	d>HK5-c1>}p(%x5IYKfMQ	ڭL_:Gp+4NdJu\05H{7`S_Fvp7RVĊ:^L~һ:TWWp<D9ٌ	DpH2LReGMp>2xtntqbpLdvX3\">bǄY_[Mϵ\'p0pTc Oj-΢	suj4IT#pkxѥLҗ)DAzYnV8p~$\ZtB@gZz^LͥpyJz\\EHՠT`\n\\7p%јȮWz̀+QSr=:5pYѹ!eu0v?.j[,Ĩ!pmӘD.uIdn1wp=DY\'cqŭgaw Oa<;9pu-i,pWc}hpp2W|[MQWwv$|Cp+L,Wy4m|Cq,\0:>|ACzlqgba,O%Vq(Fl苗njpEr-R~O࿾SN+Kq*ODlW2a\\,D%1<ܭqq.\Zk؀E#q\"q=1#;+\\^p$qY3i\'GC?o(\0\"+I}lq[8dws#bj:75qcO2vh1(O2g	_XZUqijje*ZHG[?=?jzԄFaFqzLk\">EưzxQe6qz+kאFz37-R6>#n&q}bNOnYV8YR3SHC\rjqϑ\0d@Л0l,֦tDqCP !3а_ d	ǸuuiGq YƱe$irhNFIl,oiqʣuG(aV腐7fzLmĳqú٫&UzHkoV!+lVOqΗvCF0w/Qc}/[ q$1W֑=J=<-\\#r\ZW	ܿd,ֈL_@JJApb\\r<Ke2K{EÅOr,	RBf0z^*Ha*:r4(^0F1st\nr4rHawVm7c:ܐa4{+=[rKX?kz^C9X\ZeFY38_rVj-jn[Mw\n=pɲd4cr_!LPpf<vs$\'orl[MÇ\'H$>Q_r	L\r-\n}^\n)*〆Ю\0rbS䢈%VȟV[9n!ϏrY\0jo;q>w,uroZ`a%,@H\"J7xrm\"]=an$7-j\"\"4)NMrrNP_; b0fL\"9uS,r;/n#~؆p$`͚W}>rQ[OGO\'ԘLˇr]`8b@#TF\'w?ݒ6r߂CZZ{L!(;s#a\\8Q0sl}߯]6s\Zr:<[Rd}:Ydy(ѩP\"Ps\'j{FCh\'GMg0fs( 8(\Z>e6ARQ!3>φs+\rU\02#\Z~z݀hss.CU۠M^oSF86EsNlD\Z5̂2GWRFՖsP34	5>۲#vGpsP4ͮ4qo\"F\\	^:Qٷs#Xۖ+pFXT%??crSyNκ&I\\s_dYekP(HP6POsDVi߾[b*aVa	 sU$$Vgb\"lxms8N\Z0-1¶M=1s2il)1yjuHuMt5(\0I:E[t\r{k?ikC\nLḃWyt*̽vdW;1!lH9\'<	CftlT^7?1	[]#T#t:sr9ca>S|0+/\\3j@tByiC8ͿL4DQ\0oztG=9\0aʮb>\ZOzc1}tIq|\ZGwP8^6eNcf	trX#\'XlmRq{88F񀌋tGV&^`.^2IX&$G9, MBt2zvf#:M{%t>\Z/AG*6e.QitЕs)WjDrDi<6NFtḹ]޸HZMmmu\r}[-BU`BErZnZ?*ufKM ]=_mA98\0u Nr8\r1\'p{qbs/u#gTd.CYgЋUWa{u)rB.pc=t\'s)<Iu-ѣAHZ64?ѧ:}u6,]g8MUd]87NXʢ}Mnu?|P4TVm+sqdm~)u@?Ԓ$p*%r(b=ϝAiu=ۦRnJ+^Z\'=U\'u@jh0/ \'0OMuDΜ11{i\Z-jВu]$) w5h1#}8t\Zu;rjJ%0$UC:\ZY!u#eo^3|xPu	x{	_Eۏd(^6uHU?/:꺨Aw\0x2ښp>Bv\0WbmA[8iERS0E`7d~v\0kETv3dxeʙ\0z?`v7c\0|q[jQ[&LƗPNlv9\ZR\r2@]3z#\nq\r3v\'2Y./T}t bH<6Py-vxgggy)ΦҸs!@XQRc1Fv%_\0b$m&`(=m<b\Zo0pv.ΡWԻlqHor\'Jm7bv26}۞\Z\nog$$@[C\\Vv3)<>ry(L1yU\nvfav4Z}k j>X˚WR/%j5tv6\\yvT\\M	FQKGu0v?Hmrq\0L>=e\nSRv@nL!ro\nڷĺvY<\r4e6oR;ՐC;v!zߨA1 `[-vC	a\'F;z(eJLv;a\'\"s{Ct(~+~mu@v|Pu<>n4pR.sI<v2ςZ7QXwFu}v{_5[tZ;a+̝X\nx\\&va-iQYhJt	Hi2&i~v1RCօmמReV98xާv=}톭:vt!)T&4wנ`g0O!+U\Z4jV9woHpÎ \"M^Y\"SՓwA!(v.Bc?[D\Z;vߍEUw&C}5Qْעu<4Uw+hLOw0?pn~(3e4B!QwƻLbw<[S%ln,-S~]MDpǌw=c^:^N[ X%%N,w@c|h(HzX[_:x0)KwDigk\Z#VJ PN]	Y\\8dʜwHoՌ79l\n!{O[OZjwM.#S{.휜DG8q(FwP:B!n$d2e|6ӹѮ:0wSt+\ZאַHHܷzHo\'3{w]<	^JdOhYHמt.(@,wfƿtoXXG\nFĜcIs*ߤwlE\'~N\r4dAˎ@7j;.W[gwGTĈч_|\'K\r,#scwqX9\0V\\%tw~Bͣaը1ԝu?n \Zodwc4yO.~H{_ʗVГw>Sa	?̜sziþw\n~;H4ǜ/t_vi%]w^q92:_k_]z`=*1w߹xo\0(+%5BBSrl?!Gw Q~uQ41\nx:w/bݱ\n]\nANA\0vLGwü}\ZOg f#E1g=gRzFx#oC:[L6lrz|w3:B=x\ZE\\k!\n\\D6R~xwؐ^tFx{֦7`-Ȇx3z	lrgRMq;âh0:Ӷx3M1w:̪xM(y/2,x5r#ЇXt%JFCD\rΜ\0xKP%LaڡUx\nGUTxP1vo0{WOI- zwCExh@jAέΰhY*~it\nw\0%xQnggW.6Yz#IĲx$P&}`\\QyGpr*}9Yxŷ(G*&IAvф_R!?xȈ\'eŎ4m#8uVhxo?!lN;8g_[jל3&΂q3ȦQxTn^Jn\rC@ԠG\\xSn]Br/u<\rxR#V5*]	$,>TxTqHxY\Z>kEMR6.\r[xl,B%\\O!S<yRxԴW%\'7&\\az< AKo%|7Ky ݣx#\rjۤETCIfnZy-8<@<]Je<w^ۄCY0By8Vx^kjONl\"3`y9t$JfƟ\n[dwyK6h+>AW[,1/y^&	\r&H3\\F[5\0/yc++S&a1gխ[yᗃĩnyd-fr\\>X1ʠ-QNyr:\'?eOFZ诮\03y8e(@$k(\Zy㈔4tFKv9g>M@yǧ8=u<&(3e_`\0yUb\'d04to/\Z+]!d:y\r!\rs|kFa2ڼ@\ZyW@]aX%Tyu~61ZɁ\\/[l(yL$L	rjkKjVx\0IszF+1@,0CJO!zb֬۳ygFbeE=zLjR3Z\n\ZГ(nf\rz$p~=Pp\'eyK!v^kzP*$	e(WI![(ܚ>< zUm{ڿY>p֥xw\nTmw\Z~Izee `~wG$us4oō8z$Egg9K93)U:Sz_J?Q)ϐaL^;VzrOU]LWq$NAwNz\"|5ܗ:lW8]PbNC~z-6i	F<>LO<kԨ1\nr\\zkϤcQ=oJ)\0.e2 ,zHma~B;@l\'eۼsDő;{3lp^3k;\nk{2w\rOHSuܟnӟܢ{u)x!D@|HF9Bu2\r<[?{5yȆdj2& =IU,qC<mU{@न$g+Eg[r3{EA\n	6Q`U{M3#_B?ng<vw-i{\n{i;|-#qYd_;QH\\B%{saVmH	ٱ+r<ĸT;[{\rś911T_P,[D:w{n]\0ֈn\r<w˷X):{,t4S)hd;}K1{g/\\Eǰ\ZI|\'ᄛDi!H{OW=!̏W\\\0vR&~Gʽ#{ЩN7!QZ\0E1ͦڤ!g{xP *+]L|p^=n|m{cD1\"D]]=-c\\|]o(jF\'*١ƗEF$K#|hPi>@J6lQM㞂|#vh`JOAx\'^|(\\Q&j\"n	\nuѠ|4rcȐDV*{3F|Ed\rq#9\nJt|FYc~\'B _-dl0h|Qh[sob\"Af/$||U6s\ZJZ\r~5\Z|$ݚ|Y\r:l_ƙ=ݤ.M\n׺*|b)MGA\03Y\0QyL=|m!5zdlگ4uOln{+P;\r|q7rߍ{,\'̌\n_|ukpf1eO,5]vR0=I`|{F\Z)c	5!q8c\\kpK>|&돕1`	B	Nt-se[|-ߑ:oӁli<a+%P|\Z$\"_wB&it\Z||@&o|X4Pu@Co9Rd|zp-vd.,[\Z|QbF|u_Nac:-;|pѨ7{͍+F;}U|ʃ[^Bcx͂Ő^@<=FD|ˆӰP<յ>DdA.G}}_|z,j=gȷ	TF!wd|N!xV$W8qIAC]1!	}^\Z%Eݷ2=c̃PF٫}_ئbqی(h=Fļ}CY҅8#j<Q\0Ƙ:/D}D	4?s.M*{TȇFd\r}c[/NHjnL\ZXm}eExI<gB\Z9skf(h}y#ũMssDj\"}{q}Pd,_P91+BwF~M}ʞ4!ʐY6Y%dXSٻ\0G}-6\'fnTY@y_{|n<	}m-+vi1s\nU8u})H@VbR\"\"ͥ0׹ok}	Wb2cfHByuP~e24x`Qx<C4_~\n-5RTw4}3}w3&y7~CpV_<rZJGԹ?ο\\~\"=Bc\Z\rzn3^~5:ܙFLWs@놘N7~>,O0F2vF\r}ɞkTZ;Ӣ~DZST̵p-7Eev_QymK\\)p~G686*\" f\Z=^\r~PjgkΖ	f:\"vEy0sߤd~QoE3RoJ9>Xε\"؇1~v~zS5ȢiyXpdH~x\"&/V!ca6ft^~r dKHq#%YZꗉ~e>?I$VЩb@6G:u~^4**:rCs%uKhd~EUaqRh}?B@:䰧~Gl*h$*V{M&UlI\Z\\z~;Y줛NPl&4%\0~)+: 1Ŭ؈\"la@MSӽk~Մ:٫\rrq03aͽ!{-~v<gz_ݑ	RC	~5B[1E_\'&xmfR2Ih+Nq$,!%>o5&qZq-So4P9u,*3R WID[1hђ3X??$g`䶝`L\r9;`\\tMQDj7iDfba9S%,#̔c~rrwCpM\0wdJ]@ܶeu_(ujpP5\\֌(Dr3f!UHQ^3\nACsu<f8slpZ(Fc1\'濉j$cFePnaަ@#\0$6i2nt_ov߉pjOYvqQ,|a6-=S֍Ipd%_#kCӠ! !ns`)^aIY\01sX	vaCHޯ9΀Lik8>:Gs^u`J=TN`Q5cUFa=OŌܰT\\hX8GR\0z_B?<(Ќeou:@Go5 {`dQz]<{#G	;c\\73!}\020͌Bi\\5,k?L*_Ȅbu%dNv3 tp>?X?l:\"LTҘ$xDs^h_!kC\"1\'_Ԁx9lPyfIu&p32ƀOkhWSb^S\r)[eD<݀g/{>\\I6R5.vߋ f6*#6:cKx:1#٨݆=$O/KfԺ>8~3>׍ހ\rY35)>FS=(k)Ytו䩋ż8]c>%9\rϤfzU<Mh&EN+рہH O>06}#<QnwkVYԇ/ @|ۀ\'&Z˥~oƗZږ\'6gi0B<a0[\0=U0-TK#i>l.Z0K]<l>&އCy\Z|W	Y|z>6}\\ y\\FeS#lt^5:~/b]{.\\+B BZ3#f4.xi:pYAdBK\r!U3J݁nm$]cm<r,#\0!8*J1܌Cbwypø\0EIntU]װhyR^2v *PL<ŧSҙw8ث܇Si.=$#	b/:LV䁜{l_3t ny@8\ZfU[% M;\ZLҠj\n_0Y<Tiִ	J]8Nػ,Ŭbf`)A.?q_L1t4mTd6Wok,Ӯ?aGˊB7J?n)p)=jk\"/%>;ےg%@tlsjjrƂr6yZ.\\Ξ\0?`b{CTD.f0l<xCqZ`h\"$vR9yۍo4h:	\n*fƊ2gn2I {C[HrA\Zbۖ܆lWGUaGb{\nikTvQ4E\r0E)l`&@򩚺`\'a1k̖VS+\nWyM9>U:\nբ\06\rQ\\lz?9yNqJf0[;P\0X-\'*\0Ie#C/M;K\nAt/cC\n]\\J=\\\rRqL腪p/ĤDQ.Gȗ{<)MP|yE^8}ؚnt&O8(d56GJ\'C:R,;Z,\ZFB>,\\	Xwl4>o\Z[_6.$Kyo_3D&QB2\0T\\\'_MEw^Tw[Xj4sG5h)p\"K4c!\Z>$<\\&e\nP\\*Fy?|IhFIXFHE\Z*9ݶף/BF	>&уJ54A6#\"b2SvJ@{U1؝ڸ>)T}4:4SmVYW>\0\0qM[Ol\"o 舲3S\r(7_ Yo$bܤr924?ykFKO	t\nPk 2S-i>~fKJ` 3uxE梖^c|ٍ4|c8\\Þ9Y۳%L`N/~s܆4}?\\QC`Տ&m&=C}cS<%`	L$k㈼O!Fh[Śڟ&IEibܱl@!C\'0:IWUsA@;J/8qڪgÃlDAבA=<h9)Alt©|yg8T:5,uڄFjX4\rW<0Y{V9\\.Ip?H[sBHxGqZ8/Z%Fw<+-;QngpՌplVN浻wIK`9q8VZg`<E\ZfVV.|vXN8D׉DG\\IPG1hFY:w	bd23̉gB@]Byq+6ƀ=_7ky~mȝG|F:94uZ7>fثDiUgp٩v䪄{\0/9\'x~Ѱf7Qˊo ,|$Aߌ͝`s݄W_w\rz]޷vXք#bxN턦qFLg~~4Uڟ+\r ?ξz2l=!ߤ$x}܅e(866gPEt	sYkMcǳo1+Yl璻V#qϫp_jf?8omc5֒\\PM%ժ	T0J\0(=D*ۘӵ>\0Z(ׯ΂|\0#~^y2ctH&DO\rZϊŸls@0jd2S*\rKT(g.كt}	zCS0j)wdV圥1J{hV \'Jb-i.9EA~+|%\0@mVw%%:3CQ#+g	e}@%s5FŒjfpvGVMvx!!90M֗y-t3oXDwX xTA]WeZ\0p7gKzXFDk5pB#:Np[Fd*n7d뷏1\Zh6x:i6Lf `Oz~\\Aj!^Eh{RPhO	gp3X|)F}h9P*K_	&Z2Ji;sb~~:~Uwi۫uEfIrqpEW?#܈*\\f}ժm۽24ji(S3\r25y\02ySСfUNJA1\0sP+?>~y\ZYmp5\\sI[(.E5Mh%IL*4y@^x>p$!p[r\rf^nEdf3]bv<%pIH:W=Άi\0Fs\ZNaFRȫ?|Z=pU)\Z!:y4DY\06)|)0x;Q[5SɝȷdTK:oVLE2yE6_%Xc_+|V7T=ոN69\np=x/NӐFs/ȗ\ZCeܻiL$@V_%ņDX+C]D$W+fyi><\\4]\nc\r6K-}Br(\rnb|8Қb^+򍭑MrV5-\r\rJ<$jAb׹W\"0AE=cݶG/twv7K㛴oGǧvtaAXIlEKѦ?Z0JTUX	x6R\naX֫5F\'ԇm4@x5g@Ost7zQw\0,7x/@69	ЊE*#/p?iQkgƱy {#\\o%E9Pˎs]h͂R;bE:\07&[/=scҴLHDlCbǫooMI]2|P^<qD+_d+%nG#Hд%ܘr܇J<\nӔw2{SU%	N3yu;VDcmWH\'KgR\n֜#](Q\'nyzMa|Z83P#W(P)\n՜7|#|ig>=th@~1J#x9QbvL\n\'brL\r8֒\\8cI]uZͨ[\'i#3]bZ\nx~(0;Zų481O ik(r.PƌؤxnGAhYI壈0v6-Wk)(yjRv5ӓUē*\Z\"Lv::	ȔjF@V:2Gۈ~O_iS\nJI>)D3j\nEI5xp*I\r!	PifVqlFDVS><ɧX[\"v-V!v[8eE:Bǉ8!>EaCteQs,MzX{\\[(HfCPAvy5FY^4}!?\n\0<8h,O\Z_SAማ~nDmnC!ֺ4K)݅3_ʈ_1[F*J@-$ވT$TDMR녹~F-5陂{ت\0Wx&_	3g_`Bwi[\'\nTT\0\"-v	kYd4 w񪰋;/u)٢X\r/_o[B\nKKxm|T*H9K@kdfdQ0?W*歘fa9ُڇ]S΅HDWIF~<X1g9]=-Ҍ>š08(\r4hHŔHblXT\n\0y\"aRTfB-.Rc/nM,=g$(}BݮD9i@]dE^CAm7tbv[5S{GRi6K73!stiq)ոJ\\(\'UƉLͤ~[ٴ;R6y0v )dR/\nfJhvi5rr\\z\"6q%	!kQ*;MuO*-\\jmkew[pԥ1%7cp!L7wg~]\'=,79v/_!PwS5b#fJWneoRެAW_fE}*B+vϘD-@AtwrFNR_\\e+! ho%9ӭك	KWe2P[, G7o\\;C(۔H\\ݘ9f/V|i3<Pin\ZEOVoCu	17,su͉v,KyJceFG2u]\"\\#3\nVdH-SL86ݶ;6	yO=PoУ?buה\0G\\%A\"^cίk܎oT+%$[[/tH/(ݎ2eq3۞H-Xt? LA$G?Cq꜆GGT|P:6hL6^EzPuK;l)c<S\"UBID\nm?5f𥋤\"M,O=:G>ꊴm`!l{_,DL+2i4ǄʊŅ.z;& qû9Ԁjփ7\nTtiCbOK̊㯦0NVɀkbX9Q\\\\m,zoFSIa)~aF=2\n)}$$N)ad*\'I<})ػP*lwKB}ޜs2C`h`W>!\"8zH0i V(+kaP)2\0Ւ\0U(rbwǋ9k\"m{R7a%,qJM0w)^Z9@-BxiUM?q!0_Π+\"g%甖O0[!<I9\"NEhܕAOk>f59%,<9;]9˲i0Ic;Ɗ@pХP\r{I\0(<Cy]1ԣ˿DGrc\nˋpC3Q3#9\\\n#Ihq24>M{us!Rd/hZSC	]_4&ڥ[Nm4Čx.\\\ZϋW-{WFvv4[i?irzGa׌/\nىpR?61.xl\">܁%|oʮo3dl݈s9?9:PkZI%-U?M$Le⢒U_F=`o^FpiO@^/X\r!h6Kw?o=7o|<ԛRSKVQLnwrs7gxP0_x_z֓ɥzd^ЧGDC.%{?_z}+iU&4c?=ݽKD`($([䅠@h9<}R=-+K[;Ex-ɩH\09k]4:B26e@^IͮsL:}|9ƶKXk,k x~6uz`؊ii7Rq3@nM5݁7-7#KT7n.=$qY\0\"M(\nOraHQ61%ٺxO[Aa\Z\"`҃=ȱRvHmf`lsW:u#`OÓz,n_BB\nSd3WL+&쌑cD`_edvJNᕪ>bg2ZTHFS}!*rUjk$4mxYJ_\rk@7W	$w(MPXpC}ݪV.WPrE!oϦI]1PCN9\\f1	2vvm^Lyf(_<>MЍfvq\r7jZ2)i8&<0~퀍t&ubvZѓa_I\nBcybiXfK׻Z HWrRkLCʝڛ/x\0s-Qہ#\0n{]\rWh0@=rIKԮ~gğ0ȣ)!ѱK&@<\n%	d>?Ggt!3]#޳jN7|&?ǰղb>Y>r]bχ3X>m>ÃOUyvH\n;Qıg\"WAҧ_gsUM-Gm\"cm#{t##!6\'D!\\֡q<pZq3gl󪙛#iUP(sPg/Dg}#&H3&XwҼY:zq{I<sUxtWgAO/mưBrb,}71O[\'Gd7z\r|q-[IvxD!fϖcDFC ]5XQ\nx!sTP¾T1!`BIrQq\"ZF~ަ-dlW]!rtT$MKP\0⶞lO\'d]<Hݧr@Xa\"cƎ|W00R嬶8Nh.s)7\0;X\\tI7Sc4,O/`һ[%pP\ZcF~cRˆViMJ\n12\0x1X؎\rT=2&{$Ʒ`z#?@\\\0u5tiktj3\rhvacJ\rFMGzp	(_v²ٍ@kry~ĺC9lxu@Hy>7HfF4<\ZŎ]sLoxEl!\0gUg\nG\"G-O\'B ^c~\\fR;#]1@Vkh@v\"@:~CGKE`^-B\'F*S1?||w~`Ua=\n3-:oRF*&\rJsJ\rd^=P=ypyP*u]*hYefmVr%)ӂx	c`9yD#o\rpj@\'%(\r\"`4-XolKk$ѯf7yӖus#i$	\\Xi </jս\nڦ*ϒ\0+ؔ%V黉yw\Z110+ޠ]  \\UC_s!)~ʹݭ>Q5ƾbs\Zp.(Y*釨u%yyeSh\':x\\F`fsBX#MlW\0#_EٜL]Z2} ~8fHݧOw$}jEkw$؏h|aXxNGZn7RstŰ06<WU.s:I>T-6fOlb]9P𽅌@1^xzoU5e2y)q n +⯐U0iq ,1øώ,㐕}@L(͙VZg|_}U)87^*S$ @K^/T\Z2\"\n@+\nV)-d C⭛ i{PA͆kdM\n+v5ƿ^54Ales^ؐפRcgӀQۋc@yA{)pC1:5$S{hzaЮ*]a/>^o</9?s:)1\"{/pTjٖ\\\Z?Mn{1)\n-QG\Z?Z}/3\'l:9w):I)̒]OC{dvc^̟9eQ_Wo{_T7QʂwL.谇M=B֑\r\0AtȑN\r>--bmYUMeI_i VHY(oߠ!k{ustټƒl|az455@	^n4k=\r	_K\"X]4@NS	twҠaF^E!@Z[|i(~_M8U.pFw:E`MBLiE ;ԊRyћjp]c?\nTMOmKw`J4/ww-6̒ qnJ0\"dJݍR\Z5,jd\'YBcH7*(ߒ,$ީk3`tm5^7}MR`-xɒcr-A$:TV8&E75gowVŻBћVj|kqYjY9MHEX[X]@G3:Omo]?G[!Y֒Sߏ1֓}dQ*t/^Röb=9@dr 2H4ъJMBѦ}\r202h(G:?{r\"\0\'5wݳt3c4Y\0VI:>	X\"FqU{iM$̵<4lؤ80/\n}J`3cl6HW	9z^q-76,svńTe}5;u+,3.-Ï9#F}EjvA\0&5xP,z\r&8gE̓\\c>k,-\rhiIZ+^ FFV\'$$It&k -8lZ6>FY\\38fGOp>Kes!2BS\ZBeLƓ3#ھbj52=<P3vYfxMw|W$<&h70k7N2wFuO4-@ctɷ3(kG寲\n΃CD#6u\ZքEڣ@K1y\"/S5 M38i)BC[ܚ~ZWKi7/ZHz&0,?R-ej2#XH\nd5\0·x\"}v}u0\nM\nd>ᓎ@,z\n&@]D6NI\"\"{4:g\rISlУ/m~Ynr87EC\nj1sD)U@3k{];ĉaՌQd8k55ai*UWs⇸s{qKcBψ*\0&Ƽ\0?woјS$GJNglc^^HH^zS&^F޿hY;knݔ|TSOcwDٛOeij3O)o\Z`N~u٩bX$Z٘Zݟi_L5>}R%ZA>%|@ւpw^o(fPk\"Eպl5zZ8q}\r2{$7F--s➛G2,a?dIu3mK=V\\ԇ|ޕ6Mj	m9$*xgU(x99PTnաc6\n{zt@;=JMZ}`෬e~vJ?\"/i\r<Hi5+:~p1KG{ƕ`ݸ¹\r? ytbg=!ӫQ69`\"-tP(cn/>)b@HO?5>PQ	F缃`\'%Yo۰&dtQ;<v}\'P[Y%/?_@e&\'Gpp2[zDwNjÕX=Чl1Y^2xO^;?Lu5Rev&-kUobE7ܼzL{{MTG.{})cI+@>H#qL=a.cU\ZMwJ× \'b\n}\ZQ!x\r5DQUK܅ޖ:(O.Xi+&	ME	zFgo1:ѳ\Z>A\rq70O|%6`	PIY;I(ϋYۖuf/Z\rGs<h4oWxۺ!Mz0V_.=*ym\0C{!YRa\"	`F?MUǭ[*a:&3ܸ<uLJP#=9+FsqIB:U{G@B=\'&ȖfC ~.n,1`o9]k\Zq4ٱxr*ӦwRZ	ZJh>E|7b{d8*YyїB.*	l2Q_d_,6QaA[ز=	2m@>@ATm~FmӠNll>hIʶWgvZFϜ\Zb7B¤I2Y!ln}1dZחK7G?-U>tQ+qKz:n9>j5d3=YsNqqpcuȺtV5Ȥm9\Z8q}u}o8>&V&NA,\rjYnxIvIvԚ!2q#&a;Ll$d3\Z&2	%\r%~W8hs+dƃ*&9ɯߗ+n}`+j	QCPfԥEZN%=	$ɗ[\"!vO\r#-SZ8(ɃAҷh/v.O2W\n9f/3MM;#GڪWO&tSO\ZƘd*J?^wzTGЧ,ė\n\\yq#16&Z\n8ӊUuBੋ9ELa=T/8,i?D/ - &~\'ɋݱٌ]!zDW+jJ(r]\n=+WU}O/inj4u9ϯ\\-/O5dXS^`M.NSIw*/\riwl%7Rc(Z=mۗA\'j;LB\"^/:qQoBf lG2Ĝh\r=ɬ˥cHw{TRz>=MƘw`wnN3=͟hKrri}I^L\\95NY;?zaE=J8[C=Sѡk{[kF`Rl>)퓆o807MRn}\rľE~Ő\r\"\'쳓04tbtwK\\iUVD}3y(s$T琱a	Aa|;Trɯ(&o{!2oʪD^D1 \n9)Kb}SpMcPAYX+{^٫X(ߛ M[>mMCoMt}qqXAiYQMޘ\"#EJp~&w _ڙ6=uqe4_oqtp^Ba@^#$gKd/ė5\\HR].H%Eq Ʃcn\0Qǣd3MEDv/Z_a!/.A1ܙVs|bPo25*S椞6i,mO#?Vb,C-ܢcž\Zhp\ZYv1]@ôy$]6s&sQ*%P+݁\04[_ݙy=g֘eQb\\o~܇] OLHPx	9lKS#n6@#Gbb5_*BpXrVw\rAU(\rbe&U6[F#`l,[u\0T9<	c&Aw\ZENYqi6-%1L˭ݐ;\Z2uY@\nWܑк%?;`,CՋBxVu(|/9Jې@hy(K4\ZU+hA\"?_6GAm!3h\"Vj`+*G6jq`8&R1`\r\Z{5yG\\0Mx[-<P6YE[3oHSVИE]:S*˚D{vJ-C:IJ*H]9[F|A9x~dr[;#;.HAۣc<Ep&U\nOKErBʳgUa1/qX夞d9SyrCT\0ѫ.ʹYbjNZM<hsսI\\5\'НLIxX`EѪB+Ap:G:,՛K{P|L/\"El+ܢGwˏaEVbUgv<Rv,vwMϚraH\n}`RN|:Gw&׳?/K$^ce?^ZdO#%Xxʆƛ-F8yd]3f^6Cwٛ;eRvZ[2ЭA>6BVW?\\vҧxPEp6!IPg~x! }+`a-Ӭ3+@wF_+x˷Ӏ+\'C`!V-ODDxCa_-֛&oBh\066+u02ԭp\Z;Dibi\"r\Z@!:MuYSꥦ%Cp,\"GENVȻ:^w\nW`E5xU#ӛNNL/4p`41Pcq271I^ЦDvnZUC7Upx,wÛ̀vNxklfB2QWkUڜ\"**RkhW`٭R|5nu-\\:ԜY\'KF\Z1ZS%4Vb*P[d8geͽC\Z\ZSj0134])ζ\Z]( 9ƯHx&F\"=v./|ќK0қz\'uzu`̶$˜\"XMN͆&V\'#ǙO0-kq2wSc?dUH\nQ73hʫm<GM]3p+LKNǜHRf$|k|s\r̣64\rIbmH?C\nDԈt9! DW~<~J(u☵B&Oz8օ܈܈{sf|߶}~(=5ǜq!唪Y~<I65瑊[m 7Am	,LCTNRщ@;COuJ9\"\ZOϧÉƓ{ONrXU镜Q٩\n i/$:tniKSf]cX\nn\ZFppJVA#\\1{A ûͥJOmO:ϙlW5T2DB$^Vygə~|\rUtJ`g04	n՞FLZ\ZqQIW#(4\Zb=9-C/s#]:fR-_\rX\'rX4<V;G6ˮCۊ%G8q)ϥvǯj7Z\"Se($KVCm[;W8<{b\'ŏq`\n3o޳B@8Jcýn&Vɹ/[)ۻz[gE>b`*eNݓ\r	hHj	gQ.X]zѩ*gw/^xGq1%S9?R#B~::Xg5[mQӨCM.C\0W{4\\vkΝx[%@cن#\Z>O;jGgR0GlY(\"y4h/E삡p4337-sգ+f^煙z:򅁖F͑Ýڢb?@˨]rH!|(a׫vC,T1>K)||yDp䏂Bנ#A.{Ari=M-?3u;\\#SR\\;YߵzCF#L!N@69jc@% ܞ?L$bmjT0)庠|l`$\\{\"?~cj:èƞǇ\0(8GfWipJpMbVgC/V!W3Թi9*mVwkZP[:UjB5E $\r(ԇ~YG=C\nw9G)\\M0xa$k٥4a&dkGS#<x>)\"&%q٣u4KM$oݭ{A\rQIQ\Z(B}O^Q4uTv1)\\Nzo\'\n]g\ZuF(:\rSlVl&r\\;;PtNɀܻHې%kH\\ZϼOaJaE7dh|qB\\)6ѾpDW{ۓ۾!$ʤ5g[9SZ6 >),(E<;-fNIYYڲe\r~<k\"`	[\Z)^Ktz `t^u]58ipvk\Zܟ%T1#W$)z/WL-ZE{Kѭv__\"l&ԟ3I49qZYFU	-&\"(6:/V\\FK&f	:79\Z]\':rQFGߵ#b?yg	ViW\ZXJxڵՍq*V8,xҸ$ݠIBS; ɕ81lL\'\\udjFוVQC3x)!TU33Ws/wqa_KB	.AYDZ<Xm\nch}!aXɱ96#ݟ{m]RWrޙV Baן秦FzJO#%ĞI,SMV[u\ruBVo#Iv4d?QlHJ6\\2me8(\\0\Z%he[>K5\Z*V\\z%xĦY1xYf[FX6cǠ*uk;)gRIb~\Z4V +ucr>\0_s;ϸBs1M+J5C$r<0Ġɋ[!͇黟\\d5crFM=]^ܩ	_n=Ý&o\\LP2ur~o(MFS*:l5\Z>ZDrgoEIHPg^]n0/Ǭs?FώIs\n4^TXr&Ԓl(EC4)\ZrK(12e^Zr#jWy5-e	G_m r?gWՠ:5Wb4#>)cSu ڠr2ѥ@F?&s~ՠ($̻.LxkWNg<\\Rg_13)16Oރ^L;ˋ.#LI.]+Jp(9ٰXΌ\n\0*p̕^ XE1oO-Ӏi{=\Z]IӸ?x_M<3rߠ1nv\0jHk7q-;C9R_i$Ԋ6tqm4_rnՉ$u*&?e`=89=\0ܥE݉X8Ym	㞉QlA\n!gCn|I#*0\'pT,RrءA5s\rp>*9wdg_+o90֊soʊ/]O]8\0qg_\Z^E6{:,\';ZB cNء\"!gxuE\r̉8i&F?w[℟迢Z q!\\\'-Qx\0LD-Z#SЦ[%ɚlz*mҢPW1 \\>͞uLv}:wP([fޡ0[[\nudv8fRDlաe$*}֢Zh\\wOWwSi7G;xV\"\0ݤƫH2`zw`oi0Vj\0يlj.B\'|Zøs-p0p@[Lfd@a1kv<+r	HbXҞLW1&@rJڇǞsb_`6K+l|S.P^l	l9/Ȭx`:eu)n\'\ZcE\\|:DNl,l#CD%K]QРL!jRkV=~R[C;>fMBR+mvn	t;=%JyR%0\nf/eÖIL*ԟrWt&BmvWUm/yЪp!Z{Eٖ.ZqoB\rH7#wI$Klh5b4:ѕWnw3Tg-ZBF(O)\rfz?\'=\r0CUR\"$dé6)IS\nE]mY5c\rwcD4AqQixWD2oF0+vBJX\0TPO]\Z8UmVq^o#ZBaCuwIT-$e*1g|vv	věW\0(@j^xh)ٿ vSh_=XDpi-wFa\ZPN;ˮhJ4mBB;3ӯhP;)ړVz\0Dr?{.<n;V.RyRTx\\h~D@n\\ǹivz{\Z]_q|@TbsBzV&Τk<tCz n`j\rMN\"Ag梑x%&yp5L&][RբYBѵ\0\\4:\rao|(;ҢL]검NjuzahpF3HO)->!\"\'$t-}M61p9ǡkTb:X%nܢxJ;vww|U-%=FM>gq=tGOwmjd)ߣ\0$Q%_{1ގ7څ\r,?zDx&fv$HKAhɍr\0aF1mԍ8P?Alm :2MmX:~ڣ8,˴tT^ע+\0^U`<,MWt\\+TÄ\"^J%VCy3BVtIppFy/sܮ}GT@!QRm`+N*u6N[s<Ď) Z9QB\'G,~Ifř֛NoYt8qsMu[ץVWЭ4pp7ԣ;\ZܕAwWIIw	|d2Lu=#JR9:x\Zz\'#m:uZǸ>8|{KiE<z?eL<M\\}v6\Z8zRv`\\.).^pĔ/E{~2	Evh:mwWdӨ$B|S1,|KY$TTL_|h@P%HD>ٿff?_2Y\0d#vTUЦ[TmGnamqY\nTorqKKcr <#P5rhf_Dm֔mN+Kw<PBZCkSIQ!\n}i{VOu-Qd;++O;vD)(P9h],vɮvJM(0(&#쟴>_Q7%l|[l|ߘAIy~k\'$ё^Y\"awE.뤮5]~o]bT\nç-G=[FJ4@ŷqabnd\0nXf6?,=ʤ K\'9od?pGZ{e&\"S\nTkN&(uu0!ϩ7$V9դw|N\ZvFd6f~ndZ$i*\'lA\\`toG\"*+cW d+ΊM?\ZLrZ%\0\"lӥYM2<	VTo^%F_Dt!䍥gNQ	/	y5θci	KN5ڈGeQB\Zk`ämu9uH| ܖaQLU0\Z~{vhƇwRjIyphgss&:C㿩\rm9>zo|.󮥍Hic!I).eh\rǩP\'RIR\0)$u	kf]W^\n<贡b_ćȸ[G&R92&DDcQEQӂ_ofIo	}B3&Y$Pʥ{kZxS?t\"Q?(nr3A]]hi{ ԃƧcJ}|\nͯްA(>j2Oƞ}VOצwD{so	kjLAR	V\ZzL0Qwb׀хfR=k&Kps֍y\Z@?7Gc#EU)ϵ9D[.NVKuZ\'ނ?0;J;\0j=\"(P]<X4m%̆\'?2[Q耐8/sG7mw){\\I \'Q}mˮ$R4U:k$Gw 1@uiL0Kĸ:@E^؛36v!l{PVwS!nH+\"\0Ud:\nO*SРLل.\r>֛n]9^	aZ_phRf}	PޯZ{֢JZbRu+$Jp)#蘥>XV%z_X@KOuKMFq:RSO uѝ|=o%-t,u. \rHxeUUHK^Ǆ_%ך*\'Blm&^/ر-Mp#<_˥d^5ĺ̌&ֳ4@78pěn+܂ˬ\ns5*D^k2mi^+Qf\'N,ntR&*\rSPK?x7.՞*LuK֍v2Zg,z[^ׅYgv⭤YZV%Is!бj8>\0ئnGUvi3DCA6D`Ls<ŢtE>Ps\n#HNo&WZMl2g@Yh\\]pw1F)Q\"@ȳ\r5e)qouvR#[]\'\rqlix%L\0蛱V\"]0db)qOy4`5ɥ)d)]\0J|Ms`bF+u\0#\r LmNߌuuc^=¡DU{.į.տ]d0ӧzEvGL7t|%\'4%fp#eh-h8q9\Zx	VG%%h/%R/ήqeGF^6`vBI	|2PS?hFMaȂUE~zާ#^8Zy7Uܲ={s&FW\nR_	\'Hu)WC}D&7,H)m-ENMA͛	,_~Y?ck_\0T0ykM38W\\Q7F\\14g3\'%L| {W%_g	@M\'F|S=Ւ\\[8(YYVd7{m`C9+efү6U\Zazߏ[_K}P0;rɑB@?@[P^3D5Vw\0\r\'TP΢`eέuK>fL/l4!\rZ<Pl_Ψ/\'F9r\Z!p\'6D;%^-xh%O4y:X0^YuGyDQb(gEpֆriݙhF=yZQO/L%@=-e-I+Rz<\' іrvqSKU7Wߤ_i9qQo	A4fgSh%=ZN=_Qu~ҿ$3GU4&\" KFjT(5o[wOP\\>03	{ɟa6]0\n*()\nǞ\0zvVMAJUla1 ƷŨrX>5SƤH[{Pg٨V!6\"	BЃh9.F8ve8:c;%t}5;F[?EXnG~Zݸ\\B[)z츍mO~B|A&݆BJ8?3^_͢opʫUCgw(i~Mzexn޻X),#Ө1Tz|\'ѦUf+2W[NT\0.l>Wv&qv+IN~WL |F KGO]5^AG\"$A[?:M2(VA/|b.4L\'iWFTЎؙr775F|DFIJ53m,YlwNƋFe\\\\y2#niF3Nrb03jg\\mPPjx੄5P$j\"`\"vR\nl_9ȧn\\\ZrR\\갪[Oo\\.a84r5$	C\n\ntYwrc\'Sy:G`}.,]|օпеI۩b̚w[$QӬh,aZg$,:3;Q0Ճ  \ZcNCCnø詑ouj>]7!Ӈk\raH%oWkh0io|ԧ3\'ȝ\'cL:b_LXx0Iʪ+Q;/hE;?T8VܒA#I%d{F\0+\"6ƹȪJIZ;w%!W9ѱS	}9nN->tB/ԣ(q[T&7,Ǽ]m+7^꫒vK7[Eu\r:&i|:50= SUu5^_w|)W6c*&Ī]Z\r4t\ZwMiƐG>B\\gѪv`(1in 5U{Io4B]Sf1Ю#8ZL}OBȫ[y}BxwIZЧ&N-)͈滃~5|zI(:.*gH-#=a$--9\'cڪuy~B5v7[k$lȅ<ت?I&kEYB=b*ҿ3Ft՚ Q憐DP؂_?y`5m{T<gF+j\'pQ\"}Fpz.T&lGMki_\ZQ\n](_,pgi1}.͇3wz$W<leP[?草p>H#j#E^C5őܔ)==mfht$#mvtq%wc\r[Gvi/(7^V५)\'z1*~6UE4[kP1wӮ\\^`Y~F9-a9RdlwjRaS(7Ʃ\r\'E^rn2ͪU?嗸W\\VeL,A/\" 4zX1][MT@JŁm4N2a0Nm).:Ҫ}]%vc݈(YUe%!TFi/4iҐ\n!<jY|BQNpwxo9j:Og7(dKQArU&Z~f,鷿ܻ\nd`4.{mϖS9\n]bG+\n(x7\"\"5nWIiaz_ݮo^2S\'VAFXj#[ͫ3H@!+siA$uN9T+ƺD=#wjxyӋhOB.h2;bIqS]B^	Q;fWV\0sl^}!/e*\"O-4_piL\0Q[\"Kr&&7Zd\r\'#Wl);*=$99Ocor]Ȭ-b`(d\n#D!ά:usWO(PX2t =gy0&/j#xVeazUܞ|-T[7||Atuia20Ĭ]Fsf*M\'{Hsl\nmL7,M!mۖ\n=FK 	..>D(٪O-R6W=q;76o撴\rV>=5t[ߓ@؂ID^T@@Vp@TU۝rO\0su1h,OTU̬$&^9]WgG\">Joe\'7Xw(ucJ[1\rZ[Qj\"0Z7-WN5\Z/yF&}=\\HV@r\"B ̀zϗo\0ֿŢ&ȣ%;Ga3~YƼ\n\n.fd\\>8{ΆAHJE2>1}\0:aTM[-o	_\\f\\čjtz\"HPl缳?x4P,E宭}ab`Zn/^5)o嶏\05x%,_`@c?TDBu=781z`~R\')F]\r^n@h5⭱՘A-z򼂣.kѻ/񃭲V\"5PG7}j!mYZvrIƒp4{JYE܍xƵ(٫EƵ5d=?Nrs.PЁäO2:~,)ZUsk\\u$1JՖ31G3pRm班ߩ\"s|[vӑ{o`YU<Ũ7iU\'z:	 6/z@6T&\0Cp˄($nTwV;LQ72N͋-m4|0\0;W4bQ(ɞ@tal2XcIRL 29^d6_V$C8t{S\\ Ib\'h5_\ZQɒi눙OsJ:h[ڮ	ۮ_/SttRʔWCUx~:rQ⨮wEpVѼsc`Pzl\ZCD#aN3\'XZEؑ]}܃wz,<?P&䮕#ssj6tvDzELZdM몶W9ITLcr\\h	=YkHTxDe:#o0mϿiyۂl|4hNO~%\n}\ZH[6aB2jf7fL~Elf\Z]ܤVB\0n%M/[;*&/_/!rz¾$et%Tn5?*BRgdm?*\r4&#4NeTsM!r٣0aT\0ڲ@ޮ.m)Nu40d0nh\"$WwYKL\n	-*^e\"e(_,g\0$\rO;zjJ,nq U8cO\'xvW\"jC+o%~qO\rP\'GrHq\' [y-NIzc`#0ѿ߯;<	`>7Ts|46fB!{C*i΂\Z\"c9qLԬ *7pO6S`njVFmT`b3&.jݤ(qSjp!puzI0J\0&\\Ar־vW^ܨ/,Gpߜ@dß-ȧқxFkbszXh%MncCE+c:\0e\rު~\nMw_a<>VX\Zl5j~d3v_hi07ǧ?{e&ک\0͏\'4n@\Z.^di$Gٯ6-֢\0qxw&a\'vVҧ#cwr4w%}P,HR(T6a\"@Jm l/hSٰ &^Sh=.M\n6SQaHt8hs]\ZU*FRg:(B\\L|ԋ\Z/5Lr`[RBؙW*_5N^;&:\nW1*UyKeŰS!.!5C^ی	İ|vVuMM=rv^\"r-$ͰUq#\0HD`>v+O鰘7}\\:3ҹ\\dAye8h@ܶsCU)Ot߶/m3R?wZL 򣷢5cZS.^\'呰%J(V/+M餱\0.y36x> [/.tT]wpX%]~|4uoAf\\ĐQ(Ë\Z%|^]Y^F#c*(#\n=<e^ҷ\'#S=wW|K:\0kG%oC؂l\'N\np_Ď+$i7=I5iB4<ұ,FgMRhjYı/<)pQКP_sZ0TXA#6{K>~qI=!486>$VsyJy9D \Z_`X?4=!\\zRhp}@,rQ!UfY5uϱ\nEfaqZ:ұbLn-#[\"61zvi~3gF\Z4\Z/җ|CAb9g=><P0\r˵c+\r*+H\n$^ѱ&>HLi#a\"Of,8,M4a!_~њCO״&8Y:_؉\'qP#ŷ[`~;HkMXML`b:$d\rs>L>\n&H˼>#ꌆ79\\+Ϳ<wC}\"	\nT)Q\\u:b&pű}BH.G;d\\ZCψ\Zo/bo#Wױ.]H>Z*0ooQwf<ɯ]qmf~pż=LJhWgy>!}Y,:vαy!t{e%YV7CbL댪O{9\n.5Y6}oџi-(~	Wρp`$<\\5wJkSf36ǧǛm0*@/WbowZl\'[ٔ\\61i:S9\\,$ْ<\ruv26FgG,|8i1<2,8+wlUyu##ed	A3Q5Rp1\'rSlY(7wAO)FP]6~\"?BwMҳ(N`qدU]҆\0B]3۫#Cd5FC;ԩyN*)J-޴1vj.y1BǷqk\n*;z8jcq#c-aPF& \\(1(R^\rm)O7x{@*;=ۏ@s;Jʘ[ԗI>~4\r\Z$ACSwXZ{}ajD}b9-%\"!N_)\\*1ð5o3rX\Z&?V\n)K-M$A͌k	/mdӲjsEF<3g{\'mv~DEfMM[S>	s\n /U/By?\0Ns\"*\'7p$ixȭv`GJy$:xty*Y߰%d>	iHb$&n6p\Z^H\Z&E5CCq%.ABʣVڗC;7\"AbIYI\0:)ѷǥ`wcw\nNI+a\Zs Lzf#4C\rVvby:83o\Z\"ڹϟ?ɐjA>V\r֋ouг\\.$kڽehnn!!޳}iK4KTTb=2UኰOB`˳+T9]-!Ivs[h?Ƴ29{qKξД!I\0(I`ӷۯ	(hs-љG$%TBy uةxי;gdB]E\rr8ϳ+N+RfUPt	9xl2Ū[jƗIh*@I=hQۦх0rç\rbRvO~nw}߯gK3Տte$DvEZ6f+()!\"aDr9aC53{A{*эb2Kwwqҿo&GD͢a\\Lմ+^	pBJx7?Q[=匂ߐե^^3PꬒsI!>@Y{<Na+⃞78c*QtS,8ν\0T\'LOOxZ_E1T1VmHY7tR~k{YD+)Y;]^e-+An5&_q4+SHx{?fm3`ateBK82̽VnF{i(]fӴ`TuCdJm˴.#,t\0W&;yc<qЌ25ݸ;Nk=xn%vA[y8n\n	(h!ekbHk[b0Qy7ǊE3Sjz$\ZM]68DzkTykm|-@]y%U?vwXl^{qʴD68N?%aPŧ)]NC1CLW\\M!DJy7F(<\noM,Z`1OYﲆAQ2:*t\nhO|;z(\';wh{#6qY}6GWȏ!~Zãσ~SLKjJ|4<&Cn\roۼ0+ˍ>|PJP*ml@6Tѕ\"AlHg9L԰M=w:UKץDIH&dtM6&۵b8Z	k{<مJW~\\재2c\ntJmI!K3|M1j+H\\dyqE~߃!>\'cstZ*J^;6Գ\Z~IDծ$xPiAU-]=\rj1[Wf%>qp<Պ\n)^^c%Wm$:\'bL g}dA	,rwKw/>&zkʜjMU:~oh}5[;RfɈ5k_jQrQV\'dM2*^\0\nq#\Z䉩e޵ITv5܄Sy8#GyF$\nr`ZpGG*\rr\n>|Yw$\rGW[rX<{\'&W4xW璪Z)\rԓ(ay{;˶2fQ,+<\\\0\\\'⮝	3Gd߬T*J\n^D1o=$(1\rۖ/zhT<]o:x<UqPJ}PII]y lH\npᶀu!4ߒjF\nz\\W|rbϒ\0E0+F7̚\r<!-:Z[Zjm`_2]\"{(40{֣}\rq;;)Dm[5!&`c>?`(ݮ>Hf=\\T-]gr{G[\ZxDsuͦޱ4EXD6\0ܗDCxbQfr03_LA_g\Z~.H0.L@ەC)20mz{T()1Z5-PqBҖMGx99d䁊N58\'AзvNtvjI?!\\\Z\"4<4{}aБ8a;[\Z&+:3W뢅?\ryQ΀η!LesEg#\Zwjt#W$%[6Pm\\IY*%vbb<J<sjĺԴUzﷺ9縙;O[x`*8H*r.P#Zv:.NMVrz$}9:qC>,|40F|=.2ǐ{E[rPE~P(^\\>]!r^8¥Z#u`x+I[0NM[xV\"2FqHƕ46#\r0J7\0[irB-p*iƭ1{(H ԌD /Clg9NvDB\"A@%\'+hL^^+#e).\\Q\"6z}_T4xma#E>uX$={+cܧloT\'.E]\"f)|nsMdm˸O;vWl+``B\\&kkhiqŅm	wb{Ag/Ÿsä6I--mDW42V9X-ԁ^LG8㸭DC<WFNB\Z 	{yWPJi\Z<@kqsa,jJ!wSޙ)==)eFKx:5D9@؂Ϩ\'<Mtv$d]#짛߸X[nJ@zvT\Z0:t{^!=.`8G?|#C=(6כiuh\"KS1R+/;iY.7/XM7~Y+/\\1nX \ZA\r҆ErBЋg%3׳Eq=v,V\"/C꒹=8uP	kŉ/LAN3)ECC=\0{ק\"};龡tOm_jWG\\bojH]x!+>Ԏz4J1~J9Km`v؋^GRf﹘&vcDOvcQ]P=$aFjF&|uPUMeG1⹳߹bۥ!	9~Ggl򪾨ȹΐ3|o?D^a@ CCN&PStizr{cYG*3\0ȇz=Bl3u@ÿc1,)a)qټqfL1J|b(#}\\EպʾUL&6o&ء[tJY$MA؃q6\\Y?+c2$)68*Ȱ:E@}zPWE4Rc	ĉۓjڔ\'nM}9`AR)y$*[|˺VB&ipU .Vitt]\\;HIdDppSsJǢ\ZC2]h?ֆ~8lȪ4,Ǟ?𴺈lkJ㙸3g>ڷdGzfwSC<v\0f{8:\Z\09AB-\\\"RLFvɩơ-&iNJ)s+Nmugh2%.g0K>⏺G.P@J3tBkD|$Ts	$Yb\")Hzd<#ya\\ګ:KB8co4>G1J`ZI=cBfeƷC\022JnMF2x<ƌ6&FL\r<\ZR#캝Ldp=@fIWX\"MB1QwoX4bxc)@D˥ka˯|9Y\"i*UL<6\'I>b5p<eZps}[Y!m#elp.x\0mxP/d;sTsM=j%0bNtR&y.sE$il{y#]iFF3J={$˻t_2x<-˜wqIg/8&s3o,\n߰j<BH@? agj%aY\"pkb}qB},?]/1{Ƅ/:Qv>rr)qAo\r:;(S>B!V5R_Bx< |9\'bL*^Z\n\\ȩ|kZ=\"C(k\"!~53\rϛ$Lt*13p8At#?]Dw_XY5hn.ce\"ӌ	\ZS:vBi7J7]1kk1G¼,`|]$9`,w\r>-W7*<:gj6Tz308Xh^~m~ u׵ބ22RYRP4H9O}X-*߳rcYgx--vc@P`2_PVbBȭItJ̀r{Os\rA3Ǣj!8}cGJ˴`nؘU\n=In}\'`C5֚%{A/^r)prAJBQvep) RNyHy+3H(H^eE1oy֌HFY?\n}Vք魘nr\0v1sN>cID٦I0-*F:Å=IH\'x\\\"\':*;:jl30dsc\0q|KF0_qYsBKbַb(7^:˽2dl@WHw\0	wWK9ٝ3C,wW̑>\nc6iS!ຉY8V#rQ$[)znáW;WѠݥ`WAA\Z!sn?Rvm}ax{oJᨷN5qKZ_V#pW]BS7jY4ciAW\\~YW4#a0<g|.JDSy\0aeԦG9~rsjJO}5e33mhyDQ(Ĥg^L\\FqA\"@[;Kkq?By:P\r\0!EÐ#MOzq~Γ8,՟/޸j!TNTح	䅬+.S^Qiͦ&YX1\"I+r|wT1a>00nio+\Zoo`yfny=Cժ8:ξeZTW0w X$q/£1S4ij#D]Uu_(K-nD(@&6oZ&$bX\\mfkJړIB()&.}_jhF(֫]*|Wjut.!\Zf=>/\'^OoE;3\'(?G>cgxWʡ̍V-EArDx++`c`/[΂-JHnOQ_*}܌|QБ\rq-FV0@Tن\nZ~\Z,o{l[UEX}AJvd\Z<`eaX9$Go)ոr?S*8q¾}=3xA9lp\0ư9e.Om)qppJNnxh\Za? 4FsfY2X7\n@k%|/@J:y$Lqrh)uF@1˞oA<TQǿ\r94Jb r1LLdO^,RNsSn/ħotU$D_P!d\0LpOk7NlLn\nq&x2*n;Y{uDW[dg{d Bsn9iS*LDE$Apfl_:YT^,FdΔPgẼV@P8S0JȪ\">0mT!\Z9ACd8M+7b6l&ln)Z/@*6yR7,䓡DFfl~0#FyWy$-\rm}Q4%{{`\"2nE*V$ʷxcRYKSMO-vY |Iƀ^Q.aW(f˿b\n;UBgn½E9[9|<C+~TRBEnH.VR3+ֽfjv5+i#\"iR,k2qX8	֠,It8҂YUN*>FZВ-z	̑TgqܧG8)N*蹉*01G9!1}WF8|VapV\Z2$R9LG&m[ӏp(f$RzXZ8t80pVۍg<\nE:0o?%ڡcO\\ޱDic,7[8NGs?3UQf~-X5\rJV-c%#ep~8Ϛ]kdnOEŢ7?>A2Np$up6Y`ȏ#vR0u^/\'~,sJ$Tl>6H<oBr[n׬*ªXz\"ʣY_<\'}@iX^kVQ=ʧ!d~+Oigi!H\n\nu+o}Яn[hDe(ޝfO[v\Zdq|j?RN>AA{z=\0tWs	a݁iiW[/;qP~Sr|L8eV@5 ]UV1NkԆ	3Oʂل9kǋL[AS\Z3H	Q9ͳo@h_!1S/xBMWXr0aFd{Qx`S8,^+\\鏯\")>(J,eh=UP|?7TvA2YB\\_da!\"QYP56#*OyԬ,s2xpFT-ou	TT>&Wm_xИ4rk)quF@IetʰKc5grkپSd1DSZ\":4KLJ_JA<DƄ$&lSRsGWėT\ZZ%u_H\"ȮV~	00jHbн\'`/ރ}X3\nD{|	QaK0Rb=ѶX׮,c\n5ikhaߌ5>tٌ^8BrZ`^=1{K	~ظ1`\"L\\|w.Dk< drOj¼ڃ()#}GlJv)¿<~Ͱzuh,yqphO3A(Y-!V>d*jPF	;QƵN1aG()s0J/@(rO| A>m/[*nB_RG-YX/ZKq0$H]po=\'sX&͋E;\Z%*jf/i>;	Z\0*s\n7)]Vl^B>-t@^~W-O&4#h{Il1@lhbT7a+y$[7B7k;3Kd\0.e^7AAR&DGm1eE:âsl\\KǊmb\0V96 \'?nHÉvp\Z߾VۈZ6jjËH%fV֗M^^4\ZÙK;JwH佐)KKfÝەt}y%Jn<~\Zjægmp(_YNjs>ESiò\"ӃƋT^ނw ]Eԫ.F=|!.s?g6G8 \\2x_5\'V?\r&EHDu`F2<\"h֭K&RsfiK$cN\Zh	9ҭdЈVoc8Q1E/=\rX݃	h^/WXgjU@6%0I\rD4e6So5RZfޱ<Ÿv 0!!N֢ƽKr=)4u+vD>m\0a)7t2ͫA:yLª%XܚlYD};7s̻ƪ?ísͩ5DL Q\n(vyer	6s5QZ_^m]#knn\r)1:\rxg	l!؜S\Zc/$.BEk\'ZFy|AvPUIEAL`L_2,Mt)of.z%ē.p!ih08nd7MlTRĕx\'u~ze|\\Ev2rĜv 7giUeޫtȾ!͓<AaOgĞǑK]Q_roXϳ.oA̳\r]y~1]	L(p_]p^8cLәnR\0R\Z\"\r hz\ZES)nnMRa\ZpK3=V#ejiN<V]\Zr?_}9zНfi`.=m\Zla<cGB\"$)8$W**fS/,Hk!]\ZjqBlGu%?ncfdvdGBwiJOZ@-.qHx7\0;4\0\ZoRD\ZJv\"(p{v;fˋ &UuuU^$d`v7fErR-yV*LgbJx.g0V샻ZesWTm^\"QќG(͢eK@^(1]!\'\\srKS#A/\\\n\Z\0c|ffř<T>]|O\n\'$K#\"j,ś<=!-uW=T\0cᄒF`ŦO\r+\0A\nN85p BbtVV:Ϩ<(yk^m<e6amԮR%M1;zDk16∃\rBXњzyޗ@t!0%/;+(݀t\ZU)t	-b[)>\Z\rg6߷\\q-w\'HBKt99Jm|qH\n w28+lroP@s>L{4`DMoaYmytP*\nDճ0AA\nkz}*$cS)KxX1Ӽ~bݥ9wEE3|:Gu,vlȾltdA4f@HeXqƁ\Zd%\n[Kn0!&^pƄ+nT\0o<\\?_.,OӔUƐfB䍎C<Zx0譃Ɯ5-Zdn3I\rC\ZHcAƨf}>^zTRsEy:vʋ8Ư<1ֳ-Pf@G\rGyƴ. g]Jz`$LKf<ƴsfOC|ut=)k% Ya@ƺ\Z4_9lRkUk\rP\'7/^ųtF\\\r?vWCYnqC}8|M\\<d^\"ą9ޕANĔ򜜠\\bZ_uC,PI1[\02_H9znD	rY[\"?\"Zc񦱯g\r~ ǐV5?B $i1a0EQaQ2F\\>0/.\nw\'O-\\mo}%-\0{@\n{	ݒS/-6Rӊ\0OeLoXr\ZִQJ澥e:P\r(uY\n痬}K³Z?A,\ZYum<slMaPL/+vwdǁSzQc\\N~(fZFJ~\n<ǔYMgE+UX57HEht6sǣ@x?LHexݸq*a.dNGkNךP\'hH>[Ұ[g-d9#	35{Gg{t<yS݀<N!)vFpw\\s}s`Ģm%QHy\0r|}D{Jy3W6;X^\'P1|р8&dK]	E4v۬>t&gk\"\r+fUʰ4xY*RlգzUc\n5Kȷ84]$0T`1oF\"&\"9 (z&̱ȁuƧcujӄltȃogQfE-fȈIy\0]Qἣ(Ͳȳ(^zqp}ٳ?{.ՙGpȵ08S9M\\1ִnហ/{4ȻIŔqd<Plm,9/,I;?%y[.]_zaZ%U$DW-{};y*0՛s:@&O\nov#Ͻ0D##a~7ԺMާ/<]Ft֏\"O`3vTlΎ\rGW6,΃_{*O%EHL\rjMDѝbSF\\vl%\'Ͱ^3E>ˑY,XRk2I?~4]4KF\"vI(QLOP(m|9pYuc?-F=DqJkfɢ::Kq35Fpu@ɮamș@DmPJɯ	j[IY|ԲbX$nG>LIɯO3eF㛆v+.r/>,ɴ߁10Rzʵg\Z߁ԑ7Ȳ%B]g\"`.Eq-C96q <R_\nYBbS\"B-+GQJ2~snm1+uf\'sOdNtk9^{sx*X\nbsQh\ZP?Ly8&>IB+awqˏ\\N];L?sBis(܀zHO?۷G۠ԙ>Z	~yg-Gyvm\"GB&i7qʥv2Z}K_	jIl09Rʱ~o2\0?SV=ZsLMk;PhJK{+f0|#8:kϢefH>\\pV)$|x<S ߪGG0hdr鎄\nljs!~BOl;iKe?>VPbAy+L/SՌ$.bne͞BxMgFhW~d\\1a\nTp@ǘvDz|3E6E	j\\P(gC?#$/TA}\\DU^\\m$Io*ẾV\0![ #އ*\Zmhp6o2&\\+\0P<IYM v\"	X8d9#Zѝo\nT#t9rd77:#!]6I03ѵ!RY=~׊u(,\rDjTO~\"LBUxlrXwc<z!\nbOpL35pD^8DX#qֻ\'fs.37neg]{NjH.N!q?M*]- y3,4P9ƕˊ%(|⛩vq\0}\\lnˠ9HǱUhLgN{1W(w\n˶bat+flm:󝲇˺C\\=vpOW)[СM2SS{zb-ͨ4]?^Dk=3!Z=	kB§*PyX&%0V>\0VKN\"KPK/+R$f!띁>7Mi_\"4	Zg\"axh\"\'Mi55L)\\eVA7rdmĶbeT,WMz(=ǌ	<5/#PNgz\Z&x?49<c\'c:y4Og8ĲFG\0\nZ7|Aq+SO\rz~(fYaιy=A\r`]Ƣ V])#dOX1reT8k,Yh\\cYNiT7v1X~J=_[i\riJqo2ҋe}Xto|zJHް>̆Fñ#\rb48LI۵?2}̎1BSb`;\0&:Tu%f^ځ5̓>-Pc/srt)xK>l$,\Z̚Q\0u4J47:\"R,6\0\\̨tX\'Jܳaim>#Me̵ *o2d*_6c\nzp̸\0SE6pOx4`!qJޱe X{~k\0a֒9pA&a&J_\"OTa\nS.7ĝX`j\nf}DErFJ?CNТr7eAVk];YE䙡m6%\\3de\nu8K8BTI)W\'|=]m8ŉn-`u&tߜSuj2kpW6{0@\n-t9$-VrTsYݥ/h)`63\n\0fByjZi\nFغ\0 µ#7fhCaT\"ё^>2^~\"-I-.\rQ1*a	D.6OG\npQj8.q}PҝJ:hQyyf\\u:66k<RV8:xȑ͈{g-Z}^0:~+>x[Pͨ8Q\\fMJJ8G\"獃N/6j)RV9 yORvnX3f%0y8x{No:KѰy+!1EÀ\'Uʏ %Ix`Lbɚ[_I%ǆm_|SLha\'\n	(\Z\"f_i\\G=X1!54V?g!٩!_#*B	:_$̻{ϛ@]ӎSC\03xGX]׸j%=%<IрhV8qWS\ZN| \"hek>t3Sm*3^e9|#U6UOTbo~s/.yN+4[xV5+D\"G{\\u-TƩ\\Xi{ !7){d2SgzfĞMJKKY1·^\nbq<v`xKZW>GwΎuL%\0M0@ΕN:9R}5U\\_^s\n|Η)nS&[{T.6Yi*HY_Ψ4OoaR˯^Nrk/5έwJ.ֹ҈r~w=4jӐήOOy#MPubT2.tٰ݉ή޸F\ZgTi0bwiڷ{0EΖ׸@Kx :IL\0ƚ|C	&M6\"E;i`n7(}9/#T?DPX`dӂ|ћ:D3CS d`+4Y;YƏZZt#}CklStUa\"6kHDUxKU>5Jʧ-LE{_E\0	RB}NsEC%\'ۓߟRf?\rUne\"4\0Cp/5|X@㺪gp.\n5_Uqڠs?K3^kǧ!\0޼L޽\rbգݭ,luݚ>-:[BǓ|*Cǣ@χ87!\"(Rϋ2\r\ZaDD{oό=_}+~(ȞevrC[mKϹ%虬Yu{].גd.@ϸ$a5QcVjv`dmmYQ,|:Kʒ%DL#bXWbp?\nQ@xHc(X.Gǵ^K,8b2p*XOLa/{ؒawn\nyLIF)|#pSRNbTismTJ{)Aon;9%n[:mtog87PvZ:EFMs,6Lb!G3Jv^5K`GCЎLX]\'kAm]J7MBДlWh<S=\\\"0iCDMq\ZЙBz\Zk Vwnl)\rМTсFC)k|WjNɩZ]/e{вe^K\rs;SeD+Vc,/Nо;c\0ׄ5s+{u7^߭kF5-n!x`Oksu=J$u	8@Zx`#)+poPˤhzY[|`;]b`&h2)VKF}Ոm?*f搭@%Tķx6ҒOӄ9Ą9.z8X˖<Rh#IJ* Tq\0t<bCK7jBYCn»̹)B#)\n@}nF>k7X*ve{}bDZ\r_.>Q}ֲ|ݸhOjIP0ιo-jC-WBBusٿ	#g2&*<Ԟ1V=(sSl.B+u\\ۧ-;-R8kp4C9RWJ̡f+VUm9jODzq蔷g\rӒdK:DѬ.AQ%8;+[}2\0O\nqbm~	+jDŧɽ5h˫\Zx$wB|9W8gk8Yljo\n`\r$%eG\Z8	cb#k uh(\\F#jW7\"eKCds2R\'Y.đ3E9D>	.2,!@%}1i}.k֛kgpݑby9YS[w\0m0H+\rq(2=]$ɆpLdGa2x~e_Za5ڹ-{UVdHrV(-W#Q?`GuGp~n-ғDjkh)fxwLQғsa\"o?Щc9Cҧ1 8,^2yI[u(Q-yj$ieYi{p\\8ڪf.$FL6wfj\\iAxkst~n¢^2๙fV)ʍ*^D.oR|D9O4[J	\"<Ɲ2,*5pG;w2^f5@է3=E?:zM$qeƭba2E!td^jj)RBxBL =I5E9gj\"Xks	&Q=IjEN7\n;R}lpfVbmmhc\\J~9HJ$[x[֝~m/ȶ>ũT.),l;;o[ӆˉDgu\nY2.C0ÎM(Ӌ;sdO&hgC0u![+\0Ӟ*سjEW;>$:̈4dQ+aJӨ+`qs{9OFxvNms{Ӯ¾&j\0vS|.kӷĆ{线m-a.GB1n:sӸ9A!=׺a	LP:Ԝ̶:wyj=ҕī6xySy[9l:Z=?V2T%<΋̪ѬJb+/?B<\\|8W)\0j|(	yz633Wq\'x0`CAW\'>ݩA$s8*w,^4K\"w-\0CV!)3UէyRQA|sa3jqdPOdR}{u\nahFzf\\\rgmqԜI|y\' vdŌ#Ϯtԡ*IbW]3UL]T)!EAqԥ宂EO1\":9(TQ\"M4%&rOfA[Ȳ4ɏݐqU}R\"GǄLg+\0vQv1R2ߡ/Ɣ~Ϟ-\\ \Z@G>uywp!Qǳ@;e$%ߩ.axn`fw?6y}>m\nMR\rˢ\ZNtAFA\r|?4A&E(6~e|vHl;R\ZVyf`TØ`s[|CImyu>j\"e[8%\Z\rˤ\rN}RmD<k1\n%D{RӢ\0M+2Ӣ;\rM@jc3.R2-BH)/ n0;[`3\0&VOeZ}{ 7tBR#\r\n0f_`۽\\\n}(nawC9-AIQED^Yl2Jjf\"3zW0YP{{yTzwyjmˬ\'fښGĒGN2*RmWF~mK$QՎ1m.JM\\kV?1 [`u>\0!,Օ>o* ,_wE]I`[3Ֆr\rGVpGG݊X3;՜5Iˆ3էKnLm\\UkJصlLզ`A^{Bb\rN\ZƤJľ**X|icy-u6pC-$*\n8Yd^^uYq,c$:$(Yz/gJ>#\n\"7`)w10.^Rb괚fՎRS\rG4(!OX*7Al\"&ap6fK)^o灐Os<A63A߯%wZ5-Dڼ@JS\\<Cޏ=s\'WI&\Z(vaToO,\ry\"ƺHoSvP	SKwcpU%(lfU}hp2+nDʭ~cyhGKShuPm(օ58VI0=YֆvBǑdX 1fvHy)l֚ă3͒\rΝĹTN3_*.֜_[2(y+9}QI*\0A\Zʁfg>֞&ur|i+Q`ŸM1U֠)8l/ZR=Yp*	Z\\!l1ҍ\\]4\'7<O2Iu>&˷uUĖ{x` &{;uբ.Xvakdo\\o~(y&jF%@I(.#5U[֋DB@i~1\'7Ö\0W2jʙ{`01]!֥\nc3*aVֆeƗԟ9ROt\rC_4czSsTAqcڷ59aO҄?tM)PHٹkώ%7f+$.~ӛMxkv\rns]%́Tĉҩ^{Ǝuj-{V=O\\dT5^+`,<W؈NlSj??f&:s[#RDs;ʅilbX.-t/ykOՇ|{W9mdJNRj8?|H!sђi{OT6{z480og3xFR.:+װ&䄇2C.aeE0,9\'ZS54G[\\e}*<|L;zxx?&WFf=x;Ҹ.uL)Ԝ2dL{035Y!U\nhq\\DGhB,;b&<C$H\n>TEGN`-*(q#ԜD]KXJnpiήo(F rr^$O5M&JDK0FNw0\\Ps-\"d,世n7z:nSKnSTvu!@bv7NgVC%{~4u	k@5=({\"X<؎\\X)Ш®4ʸcWþ#E5ӂe%/h]޲#ш9`vb9N/lRagLwԺQ\'b(c/:+~Z|\0u%rvBT iނNɫ/=1IDj0\\lM51(R;\\gՌe՞$_,j薶tC@ϊ&8Haq_/BuZ&?y=ӡC6d6m\\]vay?Δ-[91\"#G|hHZK\Z>BT*fZ/8߬U(WU{-V͗8$4l\\L4y\rotf`8^`=@lTzŜ8)}~H}qٗNai9U᤻\Z{٘\"[,T#H5\0F	\rRosٙ$ѰRej`^7葟%yٜM9\Z/\' ٞ4bVttkEp%~D`%\0;ٴ M\nWX\n躨||3ߜ++4,ٷ紱1]ֲlzbVPx̜=ŭ?/Č)-\'Lԗ x!Uw_nFa>e3;vztPi(d|\ZVw7BAzzMk+O5@&},pyF(%Ld\r*n=YNt,kL]*]>N5c	Ynl)\"qqpuu4F݆$ӕ_p~*60#?BTP|:Xk>`WO@!پp}_0[\Z@d\nf!B>j\\R^3VcZ=.\0܈\\\',(&M1^t&*/:7`P\nS!:b=(mybVaIjWp(!A<(X.#R[$V<Z>f+mսRh_i;1zm6@d35(G\\ܧDoi	Pp*vw;X?=s|VFƢIdE<8mJ.Ewj#_\ZܞfnN7U//g#JKӒ]堹|MnYM\n}2 `Qv_\rzB^=څc:ܾ|@l\'e߲~چL-u5Zkw=03O* ;XJ\'z0ڍٿsP!\0VtbM]^\'Zto^ګŲT\"\\S@ޥ+0yrx9M,ڮ(\"Y<%I 0c+	Mv1ںQG䃞uGiԯg#dN,֢_5^W{KbFyPXp^Mƴs>\ZH.\rߏZ\\UDOtޔ&ŔLZO\Z4vdU==cx\\魞5\'ҵdջ`k_[aJ{p\ZE=(X?l;])O=bֹ\n\\s	pJTX~\\sAk\Z-=}Fb᜾TEw!}a}.& c-B\'Sj?p净,Xp!:Est6SzåZ,jۂwT\\ +=ាb\'^xK.ۑ&\Z錷ې7~rbۣ԰<К~_m?##B	(ۥ~b%w\0 z9wsn>Dy1ۧ#)\"UGܑ]ۭM:EZ<v(@^eK\0۳}sYDk6M(kGNة\\B·ۻoXc\njJ#@R0`Tj5D-8FQ\r%.m5R㖩\r;gPklr<CD0*\n)mx:.owpԴ6b@WFk-1q[42\Z@r: ӪNlTD,\';=%~	H`M?~\"u%[,l+?F-}M)`@}6[d=w\\+y%e-_+^J6^NihOJkfiBD̉I~.lvPgwv\r\"aMI\\P;b>꧒5>7Dublg=z^z)t?Ū鳊<)+$>BFVd03mR2t/vS 4h\"hAD\'\'|6[kF=\nyifmR̗Ui؜!YhLa门b|\r,7@\\\'>0n+SK&sщ\\;Yq9wm3t	ЫQv#`i-1ٞUhܑǣg\n4 ]D$WܗEV8֋i;fe|ˤܝ.rYMDMKqĹzZpܣxL#!E~p#wp1[0L\nܱfXI`&:=^bKG\0.ܴ&#kpe`򷪱hfsIXNkǗ!JB(AL.V#8de\\B_&:K:\"$_\ZgpSI{ǫ2jPfGi+YHK׀&f8Hk[%mrs+n0Of֠7y稶\noN{mnP,h+p]h4g\0x-8EmbE\rH	Zm\"6N`! B\'wCˮ.0{\'~K.sJIPګ&nR	2JX}k;\n5Vr4݊w?L)Kf4ٺ\ra~tnTݩzKuY.mi4*UTݴ\"cYO|D\0;.Ѵ*NݴKbT3y*נ\rFݿp\\/h#]\"\n=/MZփI33unM5Kh&bV\\%Z$iC1~s\\6rۘ\nΣ6tt|hfS?f_z`y(H2\nyπ8FpBkʫ.E\"y3(ɝO6Su՛Z&S,	p\nb!s!ͮ]>Tx{\\7RAg[:	c\nOj5RLCIeỔJe\0.SF>.wg:$\Z	V8{V9/jzbbhF+\0~XtǞC{%f\"Z_m=Z>D[{/m9qN9wN|\n֥sj*bTO5pp`)ޖp1iМ&19ޠ}D3̲ޚ$>*~wa\rxޥ\\}9QZ\rHO\Z+C3\r͇q,ޱ\n1$d8v^!*3#͜v@3&hN;yB\ZN 8	jxoXQl~?8ii8|Le\\UӷHYQ\'\0h$z%ι|qI_y:&Rz<OT%x\Z܂it11EgU&21YI\nf	YᦊFrL7uSt֗pǯ$U-m ~V>򘀹EY\r,iՂ!\r2nD9T%T֖\r>ƾAY{,P\0~b\"܃n\0A=R<F{;xپ۶Ix3\nzǖ۝Qh-n&Ue\\Xj`nُ|&k2ʰS|I߆Ryrv@|z%Ӷp,ro;B5\0CyaFvVNcۊiBaTfX|jbdPCW>b$=Otǐ>G8jj48-sZԏsŝf?߅yRz5T\0DU磣	w̯ߌ\nrsgɴ5Z}̼ߌPܻ\0{QЩ#m,x\\`ar_ߔ}>&Iy	pby18gJ\nߙw, sƟlalkHJn?&b+ߠB.qf6*_-WI4K2ߧ)sg,He|\"j̋2(߹VNA=X\".\nŅi2~<gqԴTϗ~%>ԍ6m_5};[IFi|x7N*TZj\ru^kbڵ)P\0[\'.l7^\r?%RcIglQRx\ZˮR-SZo3ҳCAj	M^2ɖ<tfp\'P6߱)u@BJp*\n؛WX&qb#sͯSCom94]2IeEkqh@N>އ͘RRSo sByc!l	MJh^`7Z=^ԯč1TgرDwhlԑ_x4\r[	\r+~\"j\\粃h_EV\"R҆c}oiӿFp&KIPʽD[E=3iJ[ax(aBtgP	B\"ೄ\"-dJի	U{(QG<C<F\Zm_=|kBô4>]Ffw\'欚Evm8aĆJHڢ#eR7\"d#!E!,cl5B\\	W\"gܷ}}|CC0v0K\r-p4,KY(I xDQ/tvǹU8&.aYA=6	ݼ4\0e0-4J\0)Sִ?k\"4Z.Z9\rkXe_^q(ѵ/̹h22&Xt-aZnmsNQ\"?mFN8?pi\ZhHz᎞O,khiYe8;w*Aފ&\'D:5`v>dk}<6 ,?nі@(ü^k\\cȀKB۵&|UB\0Y;@7GJ۽揷+I-i3<e\n!d>a%+eT7 ҧgяd,w=	{|\ZZoϢ.p]U\ZeOlP&A{5[8#=G{tj\ZC`qR%D\"/w?Z)H%K-xrNpꔨ%\r/<\rgl+Q_r-mPhQ$,5%m,\nu(ޞw0KoHJ,a	rU9\'s?|R0AtRWE )օuTRYT6r\ZIZ)[w[]=`LÞV GLmJafo\0We2`:Z?^X=Gγb<HGwE21wha3(J@g)z럳9=8\'KI\rn‵`iz y}fWmhGmM]H\ru:4̩i7[G쳙r/a4v)w}U+谆{3⥾ϵ瑉N)]W1+Z*ʠu<e\n,&ͭ1:If	ڦ%5@Q85ʂ1-5ymn*$\\lG*EM\nl׭m[-B8YٺdJ6S.V594*fH	r*\0Y㱿;+h<RV_u&R:ƹW\rbCJ9nFB yJ/adVBZLC;wxY^&^=xʆEs-y@Gy\Z}q-сo/@87?!c^H\01F=\r\"8d0{0ZSE*Iz3^MP4FlwRCH1\0H\rgf^Hq*v6Mg2IYg_,\ZI.&;ӾrV<SgU|4E+5C828ҝdX_˜&h6_?q|,}o\'?_8ۗ0]$47F\ZA#[RAr57{07f=9GcNyΟor|A\ZU\0jJΆPM6.\n?~oΥTXJ)*aL#Vŷ42B2,uʕn}~҂Z-36	>ӯ\Zz?<^޺%8\"yٱOlB=VGh!K<s;׸\';\'=Z8{DbJ8Jq;(5nOjnYZ5qPܠ4zgzBtWnW&c\'J@{Trq	*kJ+0}VLf6	ӆ`lI*H?6G}hoB %L@ĥbu(FHP\\ȯC9!cnN*NJg}Yv7Oh%.\"AX*䯂:roO\'7x9)yj?wk6(.Tv̯15Nb7ٳUw*)h	+ڞ\n)QNkU4JM\\V^1urYޥ1mwt&Cr\'BMFu\Zx/D9zH&U>+TKF(,`:7QǱ-FZQTƷn\r{vAH\0eq$WDjK+{jPuυ~\r|FSa(J}ȟA\r1Pxzuѷ;gtS7Gn+Q1rgQ yg5.hfhm;k W8ˉntAbyMϐ;(uj?]$C&eZ%,zfw#nؔ50D*/rxPb=-.XTYnPgb =#\0M)B\\eCAwwKHY\"0d~k:\nYïy.5 <ooP?DO%ڵN:({ZӌUJk#HT]^U\0Tj崠&Y|s<BJ	(zڪ\ną[ƷGֱ!IzA4N:ӊU	[y-)5,)wZDUvR>k<vd_Ba\rc;pvgm-,_\"TP].힭j8\\3c\Z^@i# UcjHq.!۴	^U\rs&z\\LKcu[;m幡F}I-6n$[$\n92%V0D2`qT&%q5y\nVڌHt:<k% (1.pIueIt9]\05^\Z!cxNdiGeAI@\'iۤz*bTJ-2<8Ko|nF&Q It-Z\r˅HF wb9ѿ\ZxRcI0{eQD {~aK\\-B\Z](5z!UN[a9{jB0PoUKjaWś\'yY曗>@-=	g_{-SP+fQp87i!*Iȣ7\Z,[xR,<X6Kk	oyAw)}\\C	\n=Չ{o׶gbUh6XE.Run5jO\06\ntu=5Q%Ǜ|߂YM\\JabTjbGarU~\ZoZ\"Tɷ\rM +	`gOl:l}s1iJoZ3w/at6aK5Ȕ4\\4MY^exM~?\\piEE,8)Tn,qSFzȲMRW3\\\rq1?XEGDfLSq`	ٷsPWMQ~@ů×͔炿E$>96g\0È];l!5\0l*\r\n%E\'tF䝆煶\Zf=?;[%j{jMa7 895p(\n±vJJ|5:Jhroثl]FA1_\n!痰fWeJSZwkXڱӍ~\n}@=\\YYC]Ǣ5cZ\rlYƞ[#i[5Жг4\02m&h`q\n\")\nSe]~&^vwŜv|چ`z`I{zC9]W9Ջʸoz=pr7ά49E\Z\'x$񯏓\0H\n({S=gkyo?8Շ|BD137ţ遢\n<Yz\'jX`frQ\Zȿ4MF/-fr:CK\n8]PY5Hgb:<xݢX,s\Zi(6貿!gъk8&\\-38岟kn ϣ,+Yy.2\rt*q7,j_HdQPY@-dxj)dmx́߻?9ݱ|X!l%1+w$5Jck!ԛHFfK\ZR$HZY\n~P.x꜃ Nî(gFwn~i;V%TF~e|,|6DFR\na*!_^貿r`Habw@Ya_^f^(\rO>踭,\\qr*Llf<w;?ݚd t-8e0W~*>< *0V\04~tUgLQ磺1Zktx*5Iq*lmKңk\"MQ?pa؂4鄳~㾥ݐnn\'-҉V>鈢ڛr],?i(R;}>QV!yvpc̒P`-e9rJK\'t>;髥ħgZCJo*^ɰ1NJRiBOӬBVhpC%Z}=s<۔[Z#g *\Z;1\ZE?Ic_c#ňM-[\"nE*9p:cZT\\:_&#`Q\n.	.E@ю.%Eg=N3>g|S(FjǕ\n;eX4PievWsoڋLQBWbexAj,prkjVi;h!z})\'72y?]A\"3#q Ɔ\Z)+l\0#<9\"ϕAvhzJ>AqW&zUV\nW8 `\0ayxHõנcΏͿͰ9O8^^]t*f%YE5<`Whj0g_MTJ\npc[_:E(.)&$*~(gf;c\0̢ce:Hb>R@\'=v@5)y&֫\r;&؛ƿػ5|V{׾A\rreAFzK`\"?EzcRz͞.V~!6k8W\'|ǘrfH	/@\':{YT3NZOQ˶ܩ8N?5nA.ya餷#c^SA_7\'hcv]#\':zKl?Yk2W>-MPN`g?\\\n\rK\0J<ǘ3bxT:W*r-6fpxc,hoNI[\\`nB7$·#t\"Sm-C`ɊsE#)(A[h\'|kaOIh9A\08(?K\n͠ZNtaZf+Ǡ\nKbn81\"P&8X;U^LDL94ݬJ݃ClE<aǈl.ēz]\n\Z:zs\0nĽ>e[7NJtt@`2Z\'SV\"*XAvkOxޡmdFFÅfa+6)rb4ʲg}SxvֻaʩD\05SS-*^Ӆ\\wꅱ/Y6_wpkw0%`0vl\r\n?4ɿr֍On_4`/-\'aYI|6`Z4\n\"l\'U8ykSlصA(GL8!<zKriImVe(iCx/?OEqi7A:3\r:?2=,+)̻ng3(Da!_y	QVGK҂sv@E\nF		M%{a`,N\0}AvA$=08QjV\\P[pHaF~yQˊr`\Z98Ra>rZ!e%duH/l+ޠ.I6(웎yRj\nMx\r.s΂&In6_ga8y].^5Pn>:,GIzR쮝yY#ǳE	92vnjs,_Y{\Zk]ٛzJ^z{M9l+:A}00.@L3l囔\\HiܵxfLl#@Ťe+׹=So\nhѱً!J~ẞǡɹὙg\ryuCx;P{kyM#h.?t#ɠ\"z)`RI+_#ap[o|\':@A} E饬2,)w_DʉԶ͂6j40FSc\"~G8<\':M6/U9)OWT>S0\0;QO%$K	\'͕{)_ĝ#/q&O[O\"²,l?2j&,k$t3?iYϲYڷO5]I{ٚXLl#,\nWMbXzp)\'F{Pniq9o̳l5y9Mb&iKues<%qѬ6IF_\'Q73#5XNxL+֖}	gTj,)0f;7p>Dy(-s\'#֛XމΆ>풏9Fܐ𱐠dְH]@ePayŝ&)ԧ0x)/mۅrUz&[j}wREv{AG5Fi	y*dq]OX=ܞW[B\rDݬvp>j*욬e3p]L}``DX1عWJ]cƈf	uJ0fj\0ցsZR~]*\"rdS2!{֣:=Nzg&$F,lK급/Í9zÜu\Z\"dm*\ZX͹[I|4r_xS*t^&/\\$r\\`ʳa7%eűCS6ǀh2.^WwHî4n~2p{wq\Z.(Wa_NCnd,ypU~2ʩw:jU/t#L\"utPw\"Lx|(.ayѫu#\ZڄeuuI;o,1{[rѸ5b,B2+YGHQMp+i2vCm*iQLCH8RvJjo޼f2RFt	{[Ob4?fs^Y\0^x{N0GuD/Sā;%mp2X[j_aGv@2b\\\0~*JjT\Zw?/cg)eZ~&qN7 Z-r$E\Z3b\nNyoHNmQvaN/	Y!v46]3]3<ڗ<*=t󅡢pEKL[Mrx%\0b0qqĂ|x:_V5:USo2ҾPuA_*}~\'K9;4p\n+=UO}6Ԋ|}<yﭼ։Khxޫ(R1=~PwºT+In\r{M_໘`3x4L#\\rԹF \"$qc@\nCKnAO] `oCK.U8uiH<pShZذ/\r.O}9fPko2,=A}P#\r5k,PD+>J5딧n.\0URqk\'i_i,\nG+L.\rQ\0%\'ym_#?E1\0² 75mw>Z2Q2K=^NqQ\nIS}V#N7=ɷ5gD>h]3\n0_эWg1*VFIPxfvL@pR;KR[:[*w(1 yjL3ˇd\'V&}l]dOgV:5fHA~l!/6yԶ![^IٷO3E}{Yz#@XaͰ]()ck!~s~hq0X?8̅Hi,+x͵SE9r=#_~\\/Sͻ(YC/#/D^>6\\V6 Ei*X,/6}%]v	\ZY<}]8c4=}Xj(	;wgָ,\\R0$koA{2#am\'Y#O(&\r\n0{z7jRv^0?2Dh4SG8RHe|5/iVV#VA`4ډ3z\ZrK,IޗOexџi}.kQ_39y\nb-5c,R3\'r.]9cxߚY9\\~fǶhj}upIXpھΩT/6FkTE;H	#ߛ{C\'Vۨ/H_n{FW?^ծV N	-js\Zjh߽CșIER1GŸċd/8Z{{S*QbUa9e׽RX?楐1ih\ZҕXT9Eߎiц	k!PBxQA.Tۄ๠ێv&=GVkr2C5m~q~;rfXᅸeXtŪ.+[咩H{v./s|UZAh$DUsI{\'\01rkDac#kQbm(({ia^\\vJMC`QA6_~jc,1F\n)7䩾!@	nK^$NVjq`JBZޅJX0u9>!v1vą>Ш&D6X]`=s\01y5z4O|pA5P%Mu#g]zmܦ8u(fy2Э9exkzB46Hy/=u4_c	ο\'M|4gE;+\\)Hq{@dX{a2H=G6Cm:|!%p8Ug𿌫ANyqoʅ#&]#mVەrȹL=6mzQhZC TαiߠPom\\D5~!oa[ceU>Tø~3$:ЗeW_6|T->{rC\n=kRdj6T\'ta\'X%=B-Ep~\'u)3H_cxNpnx{V@f!D.SJ/xknZ~q6Lꂨ$?{II%&V(Aw<䩻c$a=!3CPY.c%0b?O)Mퟴ[%>xd]?Z񴝞15q)9W/`kWV*_i_\'hMaCQW~K0X~D<>5O!	U\'IaӴ9+6fF7r,?OP\Zr(gau;YR>v\\?sk\\ ~mV|ݐ\0!ٖX6av/%1UEd_w\'ޢKGs*<vu.SA`\n	tp\'\\ˑ+&*u4c	\Z{\r@l(2u-VJˀzا`*#jxZ&\Z{C\rB]Y#<\0!_M~(k_MWFi]iˍBl@j!\0@Ų3pv`r9H(cWޏK\"$Gϭ\'6I\"Vɜ=0\Zh݆֭<e1L!ӳ\ZDKi@*SĘRg	rz2,oQϕFUlt*gV☲ù۬BjLNhZe%D\'G}wEk*	W،j|K\'lȈ<fdUƬ\\fHvIIwd4\"醗0_h^1-cjHtfݬ?D)\'hcF,4|iQlpt>%y1PbBR[B}\n[;	I2qU>n)̈́IxVV$Z=qUOc\n4\r\'R28F(>F2 \"Qj6h\'Vh~Ad7DcA\ZHzyIQ]o%<DNNM^^/jC9tbp\r<!!dep\Z	0mz%U^9p&`nM{ nL\ZN:J0L2\"L⯜t%>:1WRͩQi~^G7p/+\Zz:MKpo*ATڌ̄ʟ[wTy61?\"pL,vr`G̃S$ 2|>YwMW[ I/H-j\r%D+P4g.{^W/![quT &gɖ\r.:)Q7ݣ h\"bY(VW|/5[rɷ*MlrnzWm:fO&y(H\n#_FD:1I}U\"\0HB&`8m!Uc%rT.qx=\0\"I8c_;k6RrE?{dG_A7c0+^Eh1{9U,%k1X\r LcN;<K{*kLE,t*J.	*歁\\5c%aPTgxȻ=|@ ԃ\\HVq2v5o,\07IѴE90.BAe4>]ySPk=9ifCu	l6E#Zt,#<\ZL4ZFU!}\\֊_ȕo/B\\!Z<&^SV?RÊ]	U@qZ\Z7BIͮ6RԤz8\\4wcysM)9@2.V/Bc5a\rRIG>?y;+\'SAED>qqa_؈K)A,7q>d\'@@x°E]|/YQ;#6ycȌʗjL2-[ 3]S.\\0הB/\njz\'aFL\ZH-L	`$p1/>:rVǙ=={OrRxgJ9G0>zc&IÆb4~*LQRkg!ifnb.*η$gwT#;?`?;\"AY|X;uaw?oabN$gI+R.e\Zptᣈ:\Z`\'8y`wW0PRƇ]Pd$*H9\n?g{gs	gOXI#n!F#Yȼv\"|:ݯCG#\nYE[Vwi%-%F\0[n1Sa+]BE2sŎ)?ԟB	*ZOےn+z`ߗ]^$dgGfmG8@~n?	x*ՑxkS략9URݼ\"EI {`z$쨀qZ6hֲCR=8Hΐ<>yy= ؃Gө&0*u\0u\r+M\nMƿ4f_MG%2q0/ғ:;eWGʈP,KA]H%AQ<!B|$k݈# ei%0D۞V蚹xRBBy%hWvǶm}nG>pѹW5wOE̾mG. Ճg?rТjs$_D&֗H᝭s%vx-#?	T5)\\Np[>&]:.ѥׇ4UhnlhʫjF**\ZWnfrP#3w֢$¡桘3D\\[IwD=O$l\ZI9<0ox>L1\Z?f]t2Ј5IvC(߱wziC\038\'U$S(]4PcUv᢭(c̈́ɯTνڐ$_SЊ||nD~v-;&W0;7\"L~ޅLE`!)lʛhLO/̩3z4ΚC:Ufz^^Gn/pR1C̬202J΍<:_B!s*l6\"Q_ȹ2a7<\\U}\"As?C9`r0É\01yiN7,N]8ϪC,01Sͭ-abpYx{VcolNGqlkbañԟyb@Y(J5}׸dt`MuƂUz[w\\=ʼ\0[\nKix-b>,EdҔ\nN-\09pM0+~0:6r½c	h{M\\J,k\r?O\Z/ކf?xȃ9\rQP@\r\ZSz\nEOwF.P)n><WS)_]Ya\'kY_otr)CEIm/;ggŭƱ0`8^\\Ƌ~~J7$kSsYme(|.ŹzZ[몾lc읋qoןK֛+%؂!a29\n`F_h*y.ZۭP0\"j=xat\\Kh9wǏ;Z)K~Q[::js^Z@2nve)e_u!9]we<΁iJkNuMٍOI0x{MyR\r~SBSThZs*[?	POvDŌi*b*;ةDڨn/NI}7+ƕAl欿Bt\'stshwk1]\':&etbt*\n\'Z%$^*BR_~;Ak8\\=>J1~(Acqo%TFO-GzJTN>\'#.D=a:\'jK WHS`\ry~E~|\nRi)fl饔e})ld*ÀIF^ȯܒW@~ݘ0(UޕM!\0מTždT`l 9睪PkKVd*X\0MoDO=hW\0 7$RTbzHpf?@јݲIG]qM;>l\nA>khR8yOtldU^E%On޹~}J[An>P:74iwqcs @\"/š|sP|0ô!J[h7e^JTuVڅ6bJR#ԲYunnO#\rF1_Ң\'Sz<J8@bc\nizNy׊}˜.\Z^*̶=.)~	_OP\nx+U1wz)\"4+B\\II%%\"ЖX~X4;;]*	&\"TQWvRid3m`a3\r45q$&Β9QO*zkBjdE,TgOrP~tgng(W{v^Z}ȐC6ݞ+?۸ZPd?P\\kO}H\"F+:̵LZKAry9H$Ī50K5:\'Ċ$Ժxr^/\'D~4d`8`q׆dŪC*k]0ɾ\"Ͷ#8Kr|\Zゐ5bT2ph=j#jR	𪏨|z03ܸOV1SlfwV1	l?.\rƨ;p-e*`[p5Uͳ{n!z[>ft4s^tE+WLկCҩχHhZ;P.s.1q+܋\r4$PduU18<KnspGRb:L0j}y슟WSh5GH;V((\ZB\0\rlŗBs#3?+WpPMk]<px_\"RLkiGAp\Z\\?h8Q$d1ˌGPP(ϞS3Q?(H|,;pH@yƄk}{[W{LG.vOǫ\"M\r6IcE,M+,ǖf MP[Y&\r,YDxxVތ\Z~VDZ6aW_tʩkgi\nB_[\074w5qy1Щ3&Ttȹ8=SPyYmmUIOF	!qO~þ`Ϸ7i.KK;3@\"_d/5%9U6>NcVMTpW \r0Z|\\T-BD\",Quܳn.A\ZXm,P\rJhxQ#\0tgFNv&W\"Ĳ}:kS-e&sc1hؗ]m3ĺXqÏj_y[+xEV0zxi\nF\n74欋\\M=Oh=ln&ăJӗ~lL;-F\0U*/d.>z_MEMՏ-/v_څc?,U&\"R[R|L<uQRVxs	b[yiC\0Tq@W~{ṜgIU9\0ڡSwq\\(LpR^_mo<e{FEP\n-,5H:@\r%-,$yk\\3딢ߓ{B2AG<&%߼w$cTV¶\r|f7hCp\Z8wG+dUxXcѨV*6i(HXw6[|JaʹЖq^Oh;xA3-\rhM>kv7[ׇd̂zR<2K7II!1&j[656i8ntl*?/]\Z4tX*52.p·\"F6Zؙ\n$zz\r9`\\&S9~{-LKŝITi;u!7UeH> -%G(m\0DO;^Klظ!/?aFz#U%f{xi<f;KZ9ްNWj_H]͚VIR[냛BwsbN}qY7zoUu\'1k~P,oʂ-~Bʾi>1/##yXoa\\DŞhebh?)31us_sШd>V*R/\0ӷ~r%\"8lbκ\"7eE=n~͙\'2C/r\r̈\r;JUˑ-\\B?	CQc2 Gehh݌^@˶\\},nۛ~AF,\"Ǣ@\npy4&7:wOh4jyD{<nн>!2_Ud~p7O\";}ڇr5\0','no'),('currentCronKey','','yes'),('dashboardData','a:4:{s:9:\"generated\";i:1728581233;s:3:\"tdf\";a:3:{s:9:\"community\";i:6252;s:7:\"premium\";i:6314;s:9:\"blacklist\";i:9765;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1728493200;s:1:\"c\";i:11095380;}i:1;a:2:{s:1:\"t\";i:1728496800;s:1:\"c\";i:11120718;}i:2;a:2:{s:1:\"t\";i:1728500400;s:1:\"c\";i:11104927;}i:3;a:2:{s:1:\"t\";i:1728504000;s:1:\"c\";i:10146808;}i:4;a:2:{s:1:\"t\";i:1728507600;s:1:\"c\";i:8075443;}i:5;a:2:{s:1:\"t\";i:1728511200;s:1:\"c\";i:8070094;}i:6;a:2:{s:1:\"t\";i:1728514800;s:1:\"c\";i:7976256;}i:7;a:2:{s:1:\"t\";i:1728518400;s:1:\"c\";i:7954485;}i:8;a:2:{s:1:\"t\";i:1728522000;s:1:\"c\";i:10058424;}i:9;a:2:{s:1:\"t\";i:1728525600;s:1:\"c\";i:10959572;}i:10;a:2:{s:1:\"t\";i:1728529200;s:1:\"c\";i:10688043;}i:11;a:2:{s:1:\"t\";i:1728532800;s:1:\"c\";i:10593065;}i:12;a:2:{s:1:\"t\";i:1728536400;s:1:\"c\";i:10190241;}i:13;a:2:{s:1:\"t\";i:1728540000;s:1:\"c\";i:10794130;}i:14;a:2:{s:1:\"t\";i:1728543600;s:1:\"c\";i:13020912;}i:15;a:2:{s:1:\"t\";i:1728547200;s:1:\"c\";i:13741540;}i:16;a:2:{s:1:\"t\";i:1728550800;s:1:\"c\";i:14575962;}i:17;a:2:{s:1:\"t\";i:1728554400;s:1:\"c\";i:12474968;}i:18;a:2:{s:1:\"t\";i:1728558000;s:1:\"c\";i:10889224;}i:19;a:2:{s:1:\"t\";i:1728561600;s:1:\"c\";i:8721141;}i:20;a:2:{s:1:\"t\";i:1728565200;s:1:\"c\";i:10279683;}i:21;a:2:{s:1:\"t\";i:1728568800;s:1:\"c\";i:10413249;}i:22;a:2:{s:1:\"t\";i:1728572400;s:1:\"c\";i:10043220;}i:23;a:2:{s:1:\"t\";i:1728576000;s:1:\"c\";i:9547780;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1727913600;s:1:\"c\";i:218982687;}i:1;a:2:{s:1:\"t\";i:1728000000;s:1:\"c\";i:284472585;}i:2;a:2:{s:1:\"t\";i:1728086400;s:1:\"c\";i:303735497;}i:3;a:2:{s:1:\"t\";i:1728172800;s:1:\"c\";i:310402172;}i:4;a:2:{s:1:\"t\";i:1728259200;s:1:\"c\";i:307401456;}i:5;a:2:{s:1:\"t\";i:1728345600;s:1:\"c\";i:277187045;}i:6;a:2:{s:1:\"t\";i:1728432000;s:1:\"c\";i:274164880;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1725926400;s:1:\"c\";i:372062953;}i:1;a:2:{s:1:\"t\";i:1726012800;s:1:\"c\";i:356055207;}i:2;a:2:{s:1:\"t\";i:1726099200;s:1:\"c\";i:327356272;}i:3;a:2:{s:1:\"t\";i:1726185600;s:1:\"c\";i:315075518;}i:4;a:2:{s:1:\"t\";i:1726272000;s:1:\"c\";i:321496791;}i:5;a:2:{s:1:\"t\";i:1726358400;s:1:\"c\";i:339709061;}i:6;a:2:{s:1:\"t\";i:1726444800;s:1:\"c\";i:295807735;}i:7;a:2:{s:1:\"t\";i:1726531200;s:1:\"c\";i:286755845;}i:8;a:2:{s:1:\"t\";i:1726617600;s:1:\"c\";i:288812929;}i:9;a:2:{s:1:\"t\";i:1726704000;s:1:\"c\";i:326080319;}i:10;a:2:{s:1:\"t\";i:1726790400;s:1:\"c\";i:270803999;}i:11;a:2:{s:1:\"t\";i:1726876800;s:1:\"c\";i:237549495;}i:12;a:2:{s:1:\"t\";i:1726963200;s:1:\"c\";i:306467084;}i:13;a:2:{s:1:\"t\";i:1727049600;s:1:\"c\";i:298119496;}i:14;a:2:{s:1:\"t\";i:1727136000;s:1:\"c\";i:322521464;}i:15;a:2:{s:1:\"t\";i:1727222400;s:1:\"c\";i:315177371;}i:16;a:2:{s:1:\"t\";i:1727308800;s:1:\"c\";i:320753415;}i:17;a:2:{s:1:\"t\";i:1727395200;s:1:\"c\";i:346584304;}i:18;a:2:{s:1:\"t\";i:1727481600;s:1:\"c\";i:304540770;}i:19;a:2:{s:1:\"t\";i:1727568000;s:1:\"c\";i:313233414;}i:20;a:2:{s:1:\"t\";i:1727654400;s:1:\"c\";i:293385022;}i:21;a:2:{s:1:\"t\";i:1727740800;s:1:\"c\";i:239932544;}i:22;a:2:{s:1:\"t\";i:1727827200;s:1:\"c\";i:219103981;}i:23;a:2:{s:1:\"t\";i:1727913600;s:1:\"c\";i:218982687;}i:24;a:2:{s:1:\"t\";i:1728000000;s:1:\"c\";i:284472585;}i:25;a:2:{s:1:\"t\";i:1728086400;s:1:\"c\";i:303735497;}i:26;a:2:{s:1:\"t\";i:1728172800;s:1:\"c\";i:310402172;}i:27;a:2:{s:1:\"t\";i:1728259200;s:1:\"c\";i:307401456;}i:28;a:2:{s:1:\"t\";i:1728345600;s:1:\"c\";i:277187045;}i:29;a:2:{s:1:\"t\";i:1728432000;s:1:\"c\";i:274164880;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:655558740;}i:1;a:2:{s:2:\"cd\";s:2:\"NL\";s:2:\"ct\";i:256383773;}i:2;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:195700798;}i:3;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:181988571;}i:4;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:134236718;}i:5;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:105469595;}i:6;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:84302639;}i:7;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:74584482;}i:8;a:2:{s:2:\"cd\";s:2:\"VN\";s:2:\"ct\";i:57802075;}i:9;a:2:{s:2:\"cd\";s:2:\"ID\";s:2:\"ct\";i:40998216;}}}}','no'),('dbTest','a:1:{s:5:\"nonce\";s:64:\"f5f80e6f6d475b68d7c1ffbab5b3f0781063873be2874b346e8023b5c3c1bb02\";}','no'),('dbVersion','10.6.19-MariaDB','yes'),('debugOn','0','yes'),('deleteTablesOnDeact','0','yes'),('detectProxyNextCheck','1722880226','no'),('detectProxyNonce','','no'),('detectProxyRecommendation','HTTP_CF_CONNECTING_IP','no'),('diagnosticsWflogsRemovalHistory','[]','no'),('disableCodeExecutionUploads','1','yes'),('disableCodeExecutionUploadsPHP7Migrated','1','yes'),('disableConfigCaching','0','yes'),('disableWAFIPBlocking','0','yes'),('disclosureStates','a:19:{s:23:\"waf-options-whitelisted\";b:1;s:33:\"wf-unified-global-options-general\";b:1;s:35:\"wf-unified-global-options-dashboard\";b:0;s:31:\"wf-unified-global-options-alert\";b:1;s:39:\"wf-unified-global-options-email-summary\";b:1;s:28:\"wf-unified-waf-options-basic\";b:1;s:31:\"wf-unified-waf-options-advanced\";b:1;s:33:\"wf-unified-waf-options-bruteforce\";b:1;s:35:\"wf-unified-waf-options-ratelimiting\";b:0;s:34:\"wf-unified-waf-options-whitelisted\";b:0;s:35:\"wf-unified-blocking-options-country\";b:0;s:35:\"wf-unified-scanner-options-schedule\";b:0;s:32:\"wf-unified-scanner-options-basic\";b:0;s:34:\"wf-unified-scanner-options-general\";b:1;s:38:\"wf-unified-scanner-options-performance\";b:1;s:33:\"wf-unified-scanner-options-custom\";b:1;s:31:\"wf-unified-live-traffic-options\";b:1;s:44:\"wf-unified-global-options-view-customization\";b:1;s:22:\"global-options-general\";b:1;}','yes'),('dismissAutoPrependNotice','0','yes'),('displayAutomaticBlocks','1','yes'),('displayTopLevelBlocking','1','yes'),('displayTopLevelLiveTraffic','0','yes'),('displayTopLevelOptions','1','yes'),('emailedIssuesList','a:8:{i:0;a:2:{s:7:\"ignoreC\";s:32:\"fe8fc67d86374927cd5ad5dd8dadfc74\";s:7:\"ignoreP\";s:32:\"fe8fc67d86374927cd5ad5dd8dadfc74\";}i:1;a:2:{s:7:\"ignoreC\";s:32:\"fda4eb26fd911e90fc3e6af394ff0a92\";s:7:\"ignoreP\";s:32:\"fda4eb26fd911e90fc3e6af394ff0a92\";}i:2;a:2:{s:7:\"ignoreC\";s:32:\"aa084c8f93555aa0b63627bf145ddf3f\";s:7:\"ignoreP\";s:32:\"aa084c8f93555aa0b63627bf145ddf3f\";}i:3;a:2:{s:7:\"ignoreC\";s:32:\"361a8648fc36be27040d6f647a107d60\";s:7:\"ignoreP\";s:32:\"361a8648fc36be27040d6f647a107d60\";}i:4;a:2:{s:7:\"ignoreC\";s:32:\"2a19360899689f4f3371c82e78c5f348\";s:7:\"ignoreP\";s:32:\"2a19360899689f4f3371c82e78c5f348\";}i:5;a:2:{s:7:\"ignoreC\";s:32:\"64bf06e02914772c89c1d2353d0931d7\";s:7:\"ignoreP\";s:32:\"64bf06e02914772c89c1d2353d0931d7\";}i:6;a:2:{s:7:\"ignoreC\";s:32:\"58505bf799dab9a829d40c2c68de31a4\";s:7:\"ignoreP\";s:32:\"e9fb761074d4b97f8e5348dbee9009ed\";}i:7;a:2:{s:7:\"ignoreC\";s:32:\"7139ce3d32b4a77b6e21c30a59d3bb0b\";s:7:\"ignoreP\";s:32:\"7139ce3d32b4a77b6e21c30a59d3bb0b\";}}','no'),('email_summary_dashboard_widget_enabled','0','yes'),('email_summary_enabled','','yes'),('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),('email_summary_interval','weekly','yes'),('enableRemoteIpLookup','1','yes'),('encKey','9945add32e753ce4','yes'),('fileContentsGSB6315Migration','1','yes'),('firewallEnabled','1','yes'),('hasKeyConflict','0','yes'),('howGetIPs','','yes'),('howGetIPs_trusted_proxies','','yes'),('howGetIPs_trusted_proxy_preset','','yes'),('ipResolutionList','{\"cloudfront\":{\"name\":\"Amazon CloudFront\",\"ipv4\":[\"120.52.22.96\\/27\",\"205.251.249.0\\/24\",\"180.163.57.128\\/26\",\"204.246.168.0\\/22\",\"111.13.171.128\\/26\",\"18.160.0.0\\/15\",\"205.251.252.0\\/23\",\"54.192.0.0\\/16\",\"204.246.173.0\\/24\",\"54.230.200.0\\/21\",\"120.253.240.192\\/26\",\"116.129.226.128\\/26\",\"130.176.0.0\\/17\",\"108.156.0.0\\/14\",\"99.86.0.0\\/16\",\"13.32.0.0\\/15\",\"120.253.245.128\\/26\",\"13.224.0.0\\/14\",\"70.132.0.0\\/18\",\"15.158.0.0\\/16\",\"111.13.171.192\\/26\",\"13.249.0.0\\/16\",\"18.238.0.0\\/15\",\"18.244.0.0\\/15\",\"205.251.208.0\\/20\",\"3.165.0.0\\/16\",\"3.168.0.0\\/14\",\"65.9.128.0\\/18\",\"130.176.128.0\\/18\",\"58.254.138.0\\/25\",\"205.251.201.0\\/24\",\"205.251.206.0\\/23\",\"54.230.208.0\\/20\",\"3.160.0.0\\/14\",\"116.129.226.0\\/25\",\"52.222.128.0\\/17\",\"18.164.0.0\\/15\",\"111.13.185.32\\/27\",\"64.252.128.0\\/18\",\"205.251.254.0\\/24\",\"3.166.0.0\\/15\",\"54.230.224.0\\/19\",\"71.152.0.0\\/17\",\"216.137.32.0\\/19\",\"204.246.172.0\\/24\",\"205.251.202.0\\/23\",\"18.172.0.0\\/15\",\"120.52.39.128\\/27\",\"118.193.97.64\\/26\",\"3.164.64.0\\/18\",\"18.154.0.0\\/15\",\"3.173.0.0\\/17\",\"54.240.128.0\\/18\",\"205.251.250.0\\/23\",\"180.163.57.0\\/25\",\"52.46.0.0\\/18\",\"52.82.128.0\\/19\",\"54.230.0.0\\/17\",\"54.230.128.0\\/18\",\"54.239.128.0\\/18\",\"130.176.224.0\\/20\",\"36.103.232.128\\/26\",\"52.84.0.0\\/15\",\"143.204.0.0\\/16\",\"144.220.0.0\\/16\",\"120.52.153.192\\/26\",\"119.147.182.0\\/25\",\"120.232.236.0\\/25\",\"111.13.185.64\\/27\",\"3.164.0.0\\/18\",\"3.172.64.0\\/18\",\"54.182.0.0\\/16\",\"58.254.138.128\\/26\",\"120.253.245.192\\/27\",\"54.239.192.0\\/19\",\"18.68.0.0\\/16\",\"18.64.0.0\\/14\",\"120.52.12.64\\/26\",\"99.84.0.0\\/16\",\"205.251.204.0\\/23\",\"130.176.192.0\\/19\",\"52.124.128.0\\/17\",\"205.251.200.0\\/24\",\"204.246.164.0\\/22\",\"13.35.0.0\\/16\",\"204.246.174.0\\/23\",\"3.164.128.0\\/17\",\"3.172.0.0\\/18\",\"36.103.232.0\\/25\",\"119.147.182.128\\/26\",\"118.193.97.128\\/25\",\"120.232.236.128\\/26\",\"204.246.176.0\\/20\",\"65.8.0.0\\/16\",\"65.9.0.0\\/17\",\"108.138.0.0\\/15\",\"120.253.241.160\\/27\",\"3.173.128.0\\/18\",\"64.252.64.0\\/18\",\"13.113.196.64\\/26\",\"13.113.203.0\\/24\",\"52.199.127.192\\/26\",\"13.124.199.0\\/24\",\"3.35.130.128\\/25\",\"52.78.247.128\\/26\",\"13.233.177.192\\/26\",\"15.207.13.128\\/25\",\"15.207.213.128\\/25\",\"52.66.194.128\\/26\",\"13.228.69.0\\/24\",\"47.129.82.0\\/24\",\"47.129.83.0\\/24\",\"47.129.84.0\\/24\",\"52.220.191.0\\/26\",\"13.210.67.128\\/26\",\"13.54.63.128\\/26\",\"3.107.43.128\\/25\",\"3.107.44.0\\/25\",\"3.107.44.128\\/25\",\"43.218.56.128\\/26\",\"43.218.56.192\\/26\",\"43.218.56.64\\/26\",\"43.218.71.0\\/26\",\"99.79.169.0\\/24\",\"18.192.142.0\\/23\",\"18.199.68.0\\/22\",\"18.199.72.0\\/22\",\"18.199.76.0\\/22\",\"35.158.136.0\\/24\",\"52.57.254.0\\/24\",\"18.200.212.0\\/23\",\"52.212.248.0\\/26\",\"18.175.65.0\\/24\",\"18.175.66.0\\/24\",\"18.175.67.0\\/24\",\"3.10.17.128\\/25\",\"3.11.53.0\\/24\",\"52.56.127.0\\/25\",\"15.188.184.0\\/24\",\"52.47.139.0\\/24\",\"3.29.40.128\\/26\",\"3.29.40.192\\/26\",\"3.29.40.64\\/26\",\"3.29.57.0\\/26\",\"18.229.220.192\\/26\",\"18.230.229.0\\/24\",\"18.230.230.0\\/25\",\"54.233.255.128\\/26\",\"3.231.2.0\\/25\",\"3.234.232.224\\/27\",\"3.236.169.192\\/26\",\"3.236.48.0\\/23\",\"34.195.252.0\\/24\",\"34.226.14.0\\/24\",\"44.220.194.0\\/23\",\"44.220.196.0\\/23\",\"44.220.198.0\\/23\",\"44.220.200.0\\/23\",\"44.220.202.0\\/23\",\"44.222.66.0\\/24\",\"13.59.250.0\\/26\",\"18.216.170.128\\/25\",\"3.128.93.0\\/24\",\"3.134.215.0\\/24\",\"3.146.232.0\\/22\",\"3.147.164.0\\/22\",\"3.147.244.0\\/22\",\"52.15.127.128\\/26\",\"3.101.158.0\\/23\",\"52.52.191.128\\/26\",\"34.216.51.0\\/25\",\"34.223.12.224\\/27\",\"34.223.80.192\\/26\",\"35.162.63.192\\/26\",\"35.167.191.128\\/26\",\"35.93.168.0\\/23\",\"35.93.170.0\\/23\",\"35.93.172.0\\/23\",\"44.227.178.0\\/24\",\"44.234.108.128\\/25\",\"44.234.90.252\\/30\"],\"ipv6\":[\"2600:9000:3000::\\/36\",\"2600:9000:f600::\\/39\",\"2600:9000:f540::\\/42\",\"2409:8c00:2421:300::\\/56\",\"2600:9000:f000::\\/38\",\"2600:9000:f500::\\/43\",\"2600:9000:ddd::\\/48\",\"2600:9000:f800::\\/37\",\"2600:9000:f400::\\/40\",\"2600:9000:f538::\\/45\",\"2600:9000:5380::\\/41\",\"2600:9000:1000::\\/36\",\"2600:9000:2000::\\/36\",\"2400:7fc0:500::\\/40\",\"2600:9000:4000::\\/36\",\"2600:9000:fff::\\/48\",\"2409:8c00:2421:400::\\/56\",\"2404:c2c0:500::\\/40\",\"2600:9000:5308::\\/45\",\"2600:9000:f534::\\/46\",\"2600:9000:f520::\\/44\",\"2600:9000:5320::\\/43\",\"2600:9000:5310::\\/44\",\"2600:9000:f580::\\/41\",\"2600:9000:5340::\\/42\",\"2600:9000:eee::\\/48\",\"2600:9000:5200::\\/40\"],\"timestamp\":1727919191},\"ezoic\":{\"name\":\"Ezoic\",\"timestamp\":1698348469,\"ipv4\":[\"52.20.63.25\",\"3.225.202.138\",\"3.217.200.190\",\"54.212.71.227\",\"52.12.170.68\",\"34.218.21.81\",\"3.7.90.144\",\"13.127.240.219\",\"18.139.6.69\",\"18.140.184.0\",\"3.106.6.164\",\"3.106.176.6\",\"13.237.131.67\",\"15.222.77.144\",\"15.222.108.52\",\"18.157.131.187\",\"18.157.105.182\",\"3.126.25.160\",\"34.248.174.237\",\"52.16.85.139\",\"34.255.61.232\",\"15.236.165.82\",\"15.236.137.228\",\"15.236.166.30\",\"18.228.20.129\",\"18.228.107.195\"],\"ipv6\":[\"2600:1f10:4c55:e200::\\/56\",\"2600:1f13:393:600::\\/56\",\"2406:da1a:e10::\\/56\",\"2406:da18:9d0:1400::\\/56\",\"2406:da1c:58a:e100::\\/56\",\"2600:1f11:f39:6f00::\\/56\",\"2a05:d014:776:a600::\\/56\",\"2a05:d018:dd:7800::\\/56\",\"2a05:d012:4d8:6800::\\/56\",\"2600:1f1e:342:2f00::\\/56\"]},\"quic-cloud\":{\"name\":\"Quic.cloud\",\"timestamp\":1727971202,\"ipv4\":[\"102.221.36.98\",\"102.221.36.99\",\"103.106.229.82\",\"103.106.229.94\",\"103.146.63.42\",\"103.152.118.219\",\"103.152.118.72\",\"103.164.203.163\",\"103.188.22.12\",\"103.28.90.190\",\"103.75.117.169\",\"104.225.142.116\",\"104.244.77.37\",\"108.61.158.223\",\"109.248.43.195\",\"135.148.120.32\",\"136.243.106.228\",\"139.84.230.39\",\"141.164.38.65\",\"145.239.252.65\",\"146.88.239.197\",\"147.78.0.165\",\"147.78.3.13\",\"147.78.3.161\",\"149.248.44.108\",\"149.28.136.245\",\"149.28.47.113\",\"149.28.85.239\",\"152.228.171.66\",\"152.53.36.14\",\"155.138.221.81\",\"156.67.218.140\",\"157.90.154.114\",\"158.51.123.249\",\"162.254.117.80\",\"162.254.118.29\",\"163.182.174.161\",\"163.47.21.168\",\"164.52.202.100\",\"167.71.185.204\",\"167.88.61.211\",\"170.249.218.98\",\"178.17.171.177\",\"178.22.124.247\",\"178.22.124.251\",\"178.255.220.12\",\"18.192.146.200\",\"185.116.60.231\",\"185.116.60.232\",\"185.126.237.129\",\"185.205.187.233\",\"185.212.169.91\",\"185.228.26.40\",\"185.53.57.40\",\"185.53.57.89\",\"188.172.228.182\",\"188.172.229.113\",\"188.64.184.71\",\"190.92.176.5\",\"191.96.101.140\",\"192.248.156.201\",\"192.99.38.117\",\"193.203.191.189\",\"194.163.134.104\",\"194.36.144.221\",\"195.231.17.141\",\"198.38.89.73\",\"199.59.247.242\",\"200.58.127.145\",\"201.182.97.70\",\"202.182.123.93\",\"202.61.226.253\",\"204.10.163.237\",\"209.124.84.191\",\"209.208.26.218\",\"211.23.143.87\",\"213.159.1.75\",\"213.183.48.170\",\"213.184.85.245\",\"216.238.106.164\",\"216.238.71.13\",\"216.250.96.181\",\"23.95.73.167\",\"27.131.75.41\",\"31.131.4.244\",\"31.22.115.186\",\"34.247.229.180\",\"34.249.110.197\",\"38.101.149.196\",\"38.114.121.40\",\"38.54.30.31\",\"38.54.42.235\",\"38.54.79.187\",\"38.60.253.237\",\"41.185.29.210\",\"41.223.52.170\",\"45.124.65.86\",\"45.132.244.92\",\"45.248.77.61\",\"45.32.123.201\",\"45.32.169.55\",\"45.32.183.112\",\"45.32.210.159\",\"45.32.67.144\",\"45.32.77.223\",\"45.63.67.181\",\"45.76.252.131\",\"45.77.148.74\",\"45.77.233.177\",\"46.250.220.133\",\"49.12.102.29\",\"5.134.119.103\",\"5.134.119.194\",\"5.188.183.13\",\"5.189.146.228\",\"51.81.186.219\",\"51.81.33.156\",\"54.246.224.74\",\"54.36.103.97\",\"61.219.247.87\",\"61.219.247.90\",\"64.176.4.251\",\"64.227.16.93\",\"64.31.63.160\",\"65.108.104.232\",\"65.20.75.178\",\"65.21.81.50\",\"65.21.81.51\",\"66.42.124.101\",\"67.219.99.102\",\"69.50.95.216\",\"70.34.205.229\",\"79.172.239.249\",\"81.31.156.245\",\"81.31.156.246\",\"83.229.71.151\",\"86.105.14.231\",\"86.105.14.232\",\"89.58.38.4\",\"91.201.67.57\",\"91.228.7.67\",\"92.118.205.75\",\"93.95.227.66\",\"94.75.232.90\",\"95.179.133.28\",\"95.216.116.209\"],\"ipv6\":[]}}','yes'),('ipResolutionListHash','726390fbeacc2d09196f56f704063a5aa30695842f2508bbd07193606a629476','yes'),('isPaid','','yes'),('keyType','free','yes'),('lastAdminLogin','a:6:{s:6:\"userID\";i:1;s:8:\"username\";s:29:\"charles.d.breitbart@gmail.com\";s:9:\"firstName\";s:0:\"\";s:8:\"lastName\";s:0:\"\";s:4:\"time\";s:27:\"Mon 25th March @ 02:21:48PM\";s:2:\"IP\";s:39:\"2603:7000:4841:1cfe:f065:bda4:23b4:7f19\";}','yes'),('lastAttackDataSendId','2637','yes'),('lastAttackDataSendTime','1728613199.026433','yes'),('lastBlockAggregation','1728582657','yes'),('lastBruteForceDataSendTime','1727657943.769800','yes'),('lastDailyCron','1728582656','yes'),('lastDashboardCheck','1728582657','yes'),('lastEmailHash','1711205799:bbaa13f535a38deb693b627967e62b65','yes'),('lastNotificationID','913','no'),('lastPermissionsTemplateCheck','1728625966','yes'),('lastQuickScan','1728571900.7102','yes'),('lastScanCompleted','ok','yes'),('lastScanFailureType','','yes'),('lastScheduledScanStart','1728525610','yes'),('liveActivityPauseEnabled','1','yes'),('liveTrafficEnabled','0','yes'),('liveTraf_displayExpandedRecords','0','no'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignorePublishers','1','yes'),('liveTraf_ignoreUA','','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_maxAge','30','yes'),('liveTraf_maxRows','2000','yes'),('loginSecurityEnabled','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_breachPasswds','admins','yes'),('loginSec_breachPasswds_enabled','1','yes'),('loginSec_countFailMins','240','yes'),('loginSec_disableApplicationPasswords','1','yes'),('loginSec_disableAuthorScan','1','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('loginSec_enableSeparateTwoFactor','','yes'),('loginSec_lockInvalidUsers','1','yes'),('loginSec_lockoutMins','240','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_maxFailures','5','yes'),('loginSec_maxForgotPasswd','5','yes'),('loginSec_requireAdminTwoFactor','0','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_strongPasswds_enabled','1','yes'),('loginSec_userBlacklist','','yes'),('longEncKey','fcbd4ae8d1fa6615c7b67799c04e0f4575101223e28d9fee0d880606c0a48f97','yes'),('lowResourceScansEnabled','1','yes'),('lowResourceScanWaitStep','','yes'),('malwarePrefixes','\0\0\0\0\0\0y8\0ٗΝ;˽sIYJBR$RI%QDZHJ!I+JHi!*)EE+&~yy33>ǌ\no>^\'_wBx1uO\Z %e\r?EC)M>8)}uׄ-X1ffm\0\0\0ra?\0xG7\0?)`\04DK@bH\0Y+ gZ\0p\Z\0@1Pt180\0v6. );ռ\Z@U	{\0u\'@p_F\\q4\0Z.=_\r0ht&:A!\0]߀\n@7\0b?g];al`,[0``x,0`00a$`d0ZU\\\0>K>&)/S5);0r=	7?`\\C`9*XXՐd`~`6LXK֗_W6$`tt/<$p87O\0`m0m.V!kH,\ZHf~x89u6~\\\\`w<:`^s0\0,?\0,H{\r,8,(N\0\\Y\0,x,x\0cOӀg#`-u७xxs/]\0,%|l0,Yg8`р]C\'v\0k܀\0& `O,:	X&\"@`H h4 8Z܁s`I\Z0XӺٛA@XPv/6\"J b\Z \"k\0X:\0Q U5dDG]\06=]lnX[V@.E$.-ض,; ~j >Nu灄@B#8H7H|;؁.v+$ i?s +\n	؍,v4{f7go`>w`^`_N`R<)A=qR M6f0\nH/\02Kg; c\"9P0%kӢ@D g= 3pdQ!p4pY@zs pN\Z\nt_Tp[B@Ipm\Z=(n1\ZY\Z{{%\'F|\0*^&)@(2(OR˧w&W\0`m=P2@k@F:P}|7:S[9Z]rә\05Gf6\0|}E$p@xxx82/4htxt8S4πcÀQG^@6y <xaj\rxi9x9Y	^^Kږmb൷=:$x1x;r)Юc\r	|hK:́O|ϻu/o]#[?@@=\r_ǾU7c\"oN)0KK 4M?Ч |c@ĺDh-/1\'qĝxx6$/E.8(Z;]ˢ@@k@$P2[߀2hPu:HDT3@f\'{ GܺP\0UAUR\0~P-En8Uj饁ZZ|AM~!Uj?j?{*\r:A-vpp)8DWZ;@Wh84-zq	8l0p4N\r_[\rp?8X\Z}M\0]A;A	@8.8\Z\\}Z м{*gpb8\0h9v>hh5JN\0@kh\rh}lmN^mAoE/@;~U8i?>&/\'?O\0|D@@\'pZz!<8=]#~3g3G35\r+GYnn_A!8XyE\r$%!o==Ꟁgp\0/yhApQ\ZK:R..n烾K=GKTkeWd+OW|7]W>G0آ4W]\0WX	{0?^Xuǀ#߂!Mu+>oQ>3F4\0^5	>	F>n\\]< \r\npLp+Vf=u7m2p[Wpۉ}\'0nb\0I`,p;Ll6GX)&\n&?w}H{{=\0߯*Sx-e`ڑ+`r0\r>hxpD0[=*p灇^\0RlUݞ\0\0s1c/U`\"38_R\n̛\0512 y6X,<x9*XX,`3%OMY+s<&<\r,60K@0<0lXe3JB0+.+g)7gxyE\\H+FEWo?E<kC9u5,ޮowuw^Ƹ\'Р	>\nj\0}qw=`S=-{(\'oi$l-#g/_$//Ԃ+W?u\0	sߵz{^Cct<1<\0vmONsۧO/ ~U>}8X	v]:X\nv{D{N?1bo2_WvWu6\Z#?࿲0k;W; 47Cp #\n{0\0v|!b9.y l1m#!r\'\Z\n!ѼXH%:+!驫[Hfɾ\\SŐ-D\ri\'!h)1Rj/w, ά!?H0	VG!a$49 wA4_HG{O\r\rt<{\r˟}Wwo@CAܞA|AJa Â+Ј5Yrh#\Z\n2%!Fi-FF\'L4Bcd%И+ 3dȜ\"]-8$Ȳp*dYBV@\'C,t $dmMX k ErHQBsSiِhڪ7ȹ;l\0\0M\'Ch.ճr]=rr}5*=$4O_<	-<C $IxAs]4hBo3h=Z4|=+Sȫv\'yZCK<AK%ի!! x}\Z  7wOfB+\r@+ch垅ʻáo@+{CP`;h;Z5Zդ\"h5v7VB/Ck\ZPH(t:_d(!;~hR	,	5brnAVB+>A[C[w|,=I$03J9\0%\nmjЎ(ɴJ%m/%\n%_vM\nqOA)g_@)/ڠTq%tVO|\0L	\neAfYP(9Opy(kHkCG8tditȓ(g{k	_\r?~ʷ̀#G@CwC\'_		YЉ[*Zj}	BCET9*>*	Ag\n~CŊPq*?*)̂JNι*swCcʠp|7tT2TAWA3%/	t	UM_Uqn]]MBGk	kC5\rPGtscLX9\0i: :׮ݏzj=5n\'BO@@uPwj3%Yk\rzMzmrԾ9zqeԑiu\nuz:ʠOZ~MЗoзFNr	u{_ks3zPoUsmgaWA<R>{пlFa4q0zm`Fuw`&/Är܂I`L(	[KM%\'Kɰ,\ne?a:*_F7`eV&0C`Ns`˰qXXΰt5,4\ZdXCk:\"u|&:mPx}>!]{C0<6t><\04\09\r`Ol\\k	|MY^$6wh-V6k`Ex|=غlS4m6¶_Rėn>~!<9v};\\4\rSoiӪ_ӞR(y\rعB?]*q	gN\r0gfngnR`bxN<P=w/ج=`]xx>xѹW?x}x[.|t}F$qx\r0PxCexxYjxY+OoU	\rKag\r\0^Yp	ژÁk\Z`>޸^=E}Aap[mሳYpy1	#oQ3]8t11l!ǂ;x[(x6sy\0ǏW-__;hxǑpҴhx\'>v#y;8x_{TISqkC74[N[_no[\rs78c6g	gfK:#M>Q>z>f>LyGpޣp	\"\n>p>>	,;§N]YE\"H̰ٚmK..Yu.9>r|<.cS\rp!pm\\u!|1Z%&g.|\rµpv-#62ckqku.sWe?q<m@>n7oÏVMZǧOfͻg5w~Q9n=L/=W+W?UH^]-߫w6XF;~)o5x*oMgwr\roww?6{\Z=s1ý:˫_#_\'?^K#_p?[<\0>\"@n>7So#h}=D^q!D<9\0ND$!/R9!&MDu$BO#JaL}؊poG_ sWNDQGDxv\nѲhE ZmLDn_h\rD GtCt~5\"ŝoDDG1{NF>@!!1\\w1\n@֚\"F}v蟦}bڸ\'2f>bVeK& ^o]\"u\'2[jX*G#g+ub	%Ґu}\\daȤc+{{	2eq{q(F!N:iayCc*|<q>qrq9}<^	2Պ%Y[713\Z2j\"2B\Z2)23D﹇̯Z,x!a%gsx,ܾY!^o@#KjZ	R}CdUC2h$gA +NBUYH*Yٽ	\\	FmU?U4(ІǝEOBVEV7CLđ5G	)XN[֤#KA$Zdnnsd\"YTl\0h$:]qqG6Ȗ)ȶÑm)xj$$,Z$$$Ew7J$,$\rsٹ|\"{!{uW {#{?mF]@Sϐ>  )\")\ZERCR7\"\" #i[ u$$sxиa.pb3uE: ٽ{޻ȱH6=!ybJ9y9YmiEhrr\0r&\n9S9k9;3rR<)EJ,s}<R:7R>P͡gHD8rI\\?\Z<B.!W^k# w*&*:aR%NmDjGjn#7:JZHHo䦤َ !QH]1r/[{\'r-4#U\"5H)G{ȓ7{ޅHȳ,Ke$1¿yyyE!mH8\Ze&NykyywyꁴK;H{m?8C\\v=D:_\"V|C>@>8B,[|)B@.B|ьF~h ހR7-4{>z}U@&; }KH3	_po(\'\nu:	Eʛ(\ZEk(tBq(YEŢش?ʮODB3PF/e>c(ېr#PpTsd5ܨA<~Pq*T/2ߠzPRT7?F٨Aj-BCGOGIq:lLPfQCPB-]j5:\":7\"j\Z@\\Va7{e脕5cQ}cщ>N޲ǡuPǙCQ:Tgixt=u)B]ζӱ2tz=x:Ctɖn[e;:Ξzu{	S΍[뚌|.0z {zT.=\rђ>Eo6[rkDW4EЕ+=+`te>ڄJnDգo/;!cסޛѰ\'4|G,\Z]k]?-!x\ZI8\'E7\Zi.B7E7/1hlc95e\Z*G_	S_/[Sѝ5hLc4%CwnE\r>}7no5wM1@SmBSXBSGѴ}Uhz0Vf|f@3բl|#\nѬ1uh֭hV4gM@s\"МX4e(a$zd4-E(F󲖡3t|h~4=qFOCOm@X-ЎEƬCNFOBO{FO?$%ZB0L\rZt-u-+G/eW\\޷UUaNh5rF+kk%{k_XzbZk֮qBoR^zv(Κ}}Wz?&\0}([>\\>hIa6GhmT>GuS3}Vb씢-wG9zOr\"5}5}e݇Z}}=	}=Q(nrm\ZmcOtED?G;lG/c,v}B?߃~<\Z~iFjMF_DFF\rhuȣݣCsў/ץFtBC!STo֍G@3\0RO0\ZcX{_~?\r#]0;vDyLl}0lLb`Ibw1نQyqS\Zĸ32/?jbNz-L}SaSO5ibU0	Ssln{ Ӄ0?1WIHSlhB\"6,~\r6[fZ\r/_*F[O5/ ̴&c/k{663\Z[gTY,1lLl|-6a	f3/f3f˿l1ۨ$66iYMYM)9ama7Ci6;2sHa?،#Y5 &ܨcn̝sgbs+ߞؼ7ؼo?6q)\0-h<as1=gR[SyŃa%?`>Kea&]b+z!tލ|5|q|{[5e4:\\g$Bta!XLª`gᳱuغu؆ǽ؆g\r_]XXXtq>܄mmmN8m>t۲=ǶfZI\rXxp=KmaU*x;K%ݷvŒYlbplϔ5؞ؾIkLK=i.\'`ðX4,3x\rvh찏?e˺nebi4c܃;N-:c<t\'婶byw\r|h!v;	N?\nDc-t`EqXu.&3ؙu,VJǊ-!XɡXIe\\Ft9+Ji꿼%Du!%V*n*KZإo[zؕ/Xen;]f?n`mOk\'7b\rcחbo.\rjb={\rU\rc؍;؍X-7\r}	]=!:Z%ѵX9X%5B_\']Xs%lt,<kV2ZX3bc/Wb//Ea-0[7wg}o>ľ*Xj+{2],~GҰQY/,\\vZ?N#HoB,܇;q\0G<q\\\'M\'q	\\rk.ҟSqhjYhӊsquF\\(݂kt\Zcmk߶5::p\rJ|>d5>d[\\Rz۾z{p6~]iB|>VGtōq~nnrt=>*<>D%>MOt`]8ռ͇|m,nm[؄p|l;|z\n<Oŭnu=w8v\'Tmln6z[M-n	]7vzpw`k|JO?w[;M;Mq#\rԘd|jZ݅O;]K>0n0ggE\0O|Vw%>;\Z>7n,>5>_e/y[/؏/|\n_qz{u^\Z0vƽ/V>ǃqOKR6|2\n)Skp\'^ʐx >_%_5z	i^p_p4:}_ãOj{3Ou:u:ay|	xuxd<xYaG7\ZN7޿Gs?1&5xg<&y\Zio|ee46|qxj|zi(m	^4t<a<6|GG<5s|g[%;OuW2:2h5|/ﻢ?O	SҏZTO-xz&~~0x%1Eg,3	OxfC<~ȁ-XdjO/ŏxŏ\\{y4E5۞ ʇɠ9T/?/Z\\?৭wOOiOwƋػxQ]nb\"xma_ey?~?	~+|\"__v_	Ư,}WjVU%3xx>:~=~m0yc[j\\8519,~SӉߜo෿Xw5;CsCxpk!~oP,8 8e.x*o𦵾xfiT7ݚ71,X??؅:l7[/q_xu-N\0qױq)t[W.ߗ<?<;|Ymz/϶3gS/Mg7_{,ook]\Z.gw6êqfk{7xoa\'i]>Պ~х?&[߁x_;*@1_r|A_G0Մ\0K)zw@?@v0N?Bh04\'-0!$d)Urw$&;Clg7p]|	>b/*^Pe00y}\ZCh%7ڃf_w`b\"1xbh11DaC}%\ZD,aP3ZVSE	\" ;NxK$#i[bH#CxUDv01!FFѫ>iHbEbLT\'aDX{NX|N~B|K/y\"a9O|OX~]IX|$񖫉			/1aA})%	΄nbʃ/ĔvC%ILwSSWN6#ӷQĴ	g넳+\\H\'\\FU.%,1#p=1h&fE\"Y\'r	7I۳ۛɀpv\"܏%	ĜpbT[	6S/t]Nx$/cX<=XbA,~J,$|W|X*#f KK\"t;	\")X9d\Z.lHk5ïk̈5	DR#\"$fO R:vXKl\\DDWQ?kE-Ħ@bAl>Nl2]1ݿZtضÜN=o&׉DEDd54̄H:<؅&vF#ݏ=6=SL\'܈+܉ډ)=Dc688p-qLfHDF#yDzaՏ!8dHr\'`k\"4i#eܡ\'ZoDfs_<8DdcD#DѴD(\n<OugADK(u\\BO7[O\'.&.ڏeDWJr\'(?辒XM\\|򕨨\'.!*)QQuh(Qd`FW7\\p	Q{ً9}q&ekEܺB>BMgNYO܉xCܩ_AMcN\'Mk)}wr)`\n⡍-oQ7oL&\ZDC\"Q;Ԛh|YL<YA<I< %!-̈gCY9keq%-xA@$xxxyO|\\FDԽEt.J|6#>Ӵoi7lKGt\'|Ӊw3DH@opG񻦛ӫE{}?~ӟS>1px.%/H ah.VZ 1q#q/AGWs$	986rS$֏= B8I?#3?d\ZHvh)ɾBy$簞X\\i3:T!)<Oj=!5NZ$R\r59ZI\Zމ$/%\"\rRQ ݚ4+\'-AHC>4O}\Z9brNrd0r!iIi|c:i|k7i\"MF&H2\'<si֑c\'_%ǥ+IѣH+Xrd9^JKlYO6&m mgoH5D9UM:yI:%1q;HNYDN%MNFN˯#wΩ^KNI׳WIHwc{S#i&LyD)Nέay<g4ҳdą\\dD.*\'<H䳤ס}b߿gZWN!}cҵɥ	{ȥ?-eeKI?ă\\fN.@CNhM\']ɀɕO:r䪿`?j#sr\rB\r C\"2w2ʜ᧋2\"4(|L/%>&וuGLf>O##GFndd/FFS(Kuȍ1h2:y4	#7JnOn*~FnlDƬLƴ-\'7;DnNYOƙ\"m$Jčdǟ5ɤ_dR73$ddr׶Nr7#&ɳBd-Εd=r9)@fUYdV+n\'S<RFc/=\\\rK^}HEk:O˴N\nd+Y$Rk#Ӽ-yD\ZY ~&<!-F`#ynZ\"yYC^M!/m\'&\'˶=\'lrJ<|-Y~=y1MNVKZ:䥩/JGd=y`yY=5YIVo!:\"%yXf+YSJֺe7N7k[M<${K>pJ\'\\t CcaiU{18Ml-&nM.Ko{\'kޓO=fY*lO6O Wo!zggg_Ed˟R;6d5|S|=|;||[n!\'ۯƐk5=ò0QD~6?D~N~9RJ~[]Fx]Mv?u&{r^h_JW=@Db?-ɿV{Ⱦɿ~(=\"pUR.dm\"TvPDL>\"Hlc.z+{k(|8QXFxKh\"fZuoD\"\"fע!;4!BDHޝ_\"g\"a\rEG&F:o;/2~/\ZA4vmhܰѢqwAxH\"\Z?\\#6!<Ed\',MM.s9\"G\"ǖ]Ѵ3ED.D3Df.#ro=&,;shޠyCψryg<NOytZ-(ZTghoF|2)Oȧmchoh\\sъ?\"7E+lD+?cEAC/T¾6o.w\'Z{VhCPhCц*R^ѦnGQLB9hx(Bx(	>+yRHh4D)!٢Wǋsg>>/0_+-x&:4Ht(c(B()T#dHmDGM\rEG:DG>rn!:(Q;щ(mQhpZQѲzQQP	kDDJFJf΋DD*kEeVʂD凵EgBD3EDWfU&鋮nUD׮]PtnF#,Ɖn~28.݉4YEQvQCRhOQ讨)XT0A8K*zq5+5\'E/bE/^NX.jm,zy^z,j)z3hM[\n;4QǖD>/[(BїD䑢gEE]D7x(o}Q&߃6ѿbJ,F&UQ1(&]bQX%K˶eّblX],8-2X1\\?=ż\"dXFVGJT<t5P	bCC<|xD\\#{xQ\rcYVYjتC<NUbkPlTl$X</WlJ<@?S;zb6bO.eltf`صP<kUxֳ/b=bb$9]kT=bۗ-^PKFkEK;։WmA_)Ł+~WIūj8tDCg4έfquxMvMcqx\\-qjSq<tC$|	\Zwz4K{!ޖ.ޟũQjiӒkO>Jggi֟#마w_>]\\,>(.*>e(.{G\\ء9nrnĥo։ƒC/}W*Wĉ/{/o._#R+ڔ ;!m-H|qqV[Cķwn9U|w(~P%~chq%\'nw7M7|7\nō[M:\'`q[73/_4:_ŭ6G-Ƈů7M;ix+ğx)kşdo[]wV{{>6l?:ſX&AK\Z$r	.K%xc	XB> !Z7HHiX\"\"~HD$[%bm=(]0A\n	{Or(Qs d\"d2dІ\'FƝx[n6^D ]%C?[\"1<m.NosIb{EbX2ꌣdTQhdd%=$G;I&Jl^Ml]3}dွq\'T#B2L4<NtĩadZYĹdF,dfnɬk	I.wK`$d$~CJGUd?bg$KgH_6KIDI<#Y<X$[+Z%Y͐!oLϑ8IV\\Jn\'Yg+	z\Z(	zMfed뽒5?%!%a֒$I{G%Iă\nZ,ɺ	h|d\0I6x\"umlJ^ml+I&iGHvKOHx{H\";do	%JǙHR}HL͐}-PK2Irl$QPrtXrtbLWI\\eܽŀ$i	}7ɉ풂SSHNeސ:Lr!ٙ$>I%n$>*IU%e+$e]\nT\\_RHrm^[o%wxS%u:5]{s%v~XwQ9I%vђےg%#s%ϯH^ yKbIɋˣ%\rݳ=씼,yIﳔ|0|^J>Ŭ|WK>7||&3HmHɷc$otkJzT;3K%?GI~<(m+*xzI\n٭BSl0u]I	iT$KO$KeCRER/I^\\;-՚(ZuKmX:\"wtD?ȩ#äF¥&`tK:J!5t̆*kff{R/.WwJǎI:6P:Uj͍$ڴImg6<Hv߂FK\'ڏ#V,JS-BS[Jfܗ:eNi\rJg:*uv礳Gq)TJ88K=)C-FH̥ORdԻO)m,]v8P\')&K-\Z0ĤU6KZ&i9i\"i{4DV#\r,\rJCuIC#>H^nuF\Z}F:ҨS1^I7IMɔ҄;&H&WJw.]]\"mI?ɔ\\֔JWK3͐fՌfߴu =zwI]\\z3i*=5ll}ܺ򃷤cii\'T-TZ&!\'޻Kzփf;K}uqҺ{pޥpaNfG+\"5QƺҦ	\'sNJߔ>Qi%i疑ofH_zIێJ_[%}kHvK̗߭~ ؽMy%BiZYK6Xua?T{ni_Ү\"eCiFߕ/*!GڏG/2J~<He3s~AK&ID\\.eҀ-2iL~PR/ϥʘrLbdKu?.cۗ3dOq2vLL;vlPt8`tlpcL7Ljllh0D6VxM	rG65>$35>=LY=#[,wZf	JGp|}h|lJ\'cH6mlIuled*@[B<D6y,$?>L6\'EF9XZ0{vw6bH\Z ÿɖo+m_<d\rͲgddk:uKdd?e3e;ɢɢO6.Ŭ/۲u,0Y(v]g,\'e	#e	˶{xwNDTK]Rgzad{\ne}).;Bv ;X\";X7D;L\'Yv=U#9cV~c{]e>ee\n<ܕ&;c(+\\ ;7gmم0Y	KsWv.PvœUɮjnzdw\'ꂞZeϔ=l {<]Dy[,)kt=KY\"k!\\e-]Ke!K쥱e -{Y<BxSZ&Q־CgCv]IY.l%V..v{%kdrd}5?Eoe]27|\rFn-GFQ09Np9~RN,\'~-nE%\\jeyrqGNXȕl69{\\-I7`\">kW5uNx9r{Aܰ|-#o}Ms&GdMM5MKjf?7\'Qe,J[g\'x[wm,Or1/*w:yLq@>mE*rW?9rkssNF{/\Z*_tY[ܣ\'HbܳH(E_(s˾@uZ{K>/5ZxA|B||]N&}<7y9y#y<\"|yn|LGQ1Jq<:I_ 4w|t?|X~<nyyvHyr|ׂ]74uSޥS%򃋶ź˳˳og~(>[<H0C~<OGMEcE/+Kgɋ\rS%ez\"/G~ixyeyiyub\Z&͆J́[\n6C|ߖ]?a*onʛCM5gfg_[Yem-WۻX;C3U-iOZO˝?}Y>X4#4Z\0 Зzޝ?*{OW.ם.=AeJ!\\\nPP\n_D/Ph=|\"Q)Ŕ8`<%$!JXJl)ٵ9Jn6@\r(AQ)HGQSӧC(.ŵPR\\K#(MbJ˚(7MXRCPC\\<NθB}I3)}`\0~FSCQRjX=j/k0{655b5Q 5\ZG|]CMM(K[(?5es\Ze\ZZK~F1\n%ٵT|yb=H=}\Zg\Zb+5nS?5n>j\reuv5~e̖lć(;]X85e25eLM	C9YH9lzSʩrEQ.))tEW_)<aCx~f-:H	{)7&mr?6ro79@_KDPRCKy-]R^\"))_p7廗nF-+EfP~wZ?((\n9*njTb*p<j\ZjrjuR\rj<\n;KP㩵Op𣛊,KE^ZLm2vNQѷMP>o6wRNR[&(-s8X*tc9XDZATҦ[T#uʞu&ۥ={\"@Dظ:pԗJKϒP鯏S\rSQ#⨃Y?MTEe8Σ0=L:#6PzaT~\\JoN0:zak:1$:q7:;:Ǎ*z::c!Ux:6:s+u@yR%ڨeT)*~:UvzUʏQ?QFbsr	uyU=j1uNFg:UfU$eQjQ;Nv]^?Rꁣ.`\r!S Ѳj`E5G5U$RSӔԓɁSG\rLϗz^HHnBkt՞jj/QǨ7è7qꝎ.v	.8Ju\"AԧA~N?Kd5&ɩoKo.OTWfMo~NAr-~Ϸ_Tr7*NRΕ\nhR*YK(^:[ARȂ\nY?ܨMAݲS(+wJ9\neBY٠`4M\n|G)<uCG+A\nu90\"\\=D(\\14TxVcz\nA-\no*F^B1⟛b\nM\nҏ\nkk&Tdp$xd)J1V+,W	Py>MaFlWyWy08(,VD+ƾ?7X1b\n˹\n	7:^+lM\nc/vZuI.*&}^7r9\ZR8{Ӳ(NR8Pq\n8ŌlL^Ŭi!\n7SFemF1[bybvHD<y\"\Z,(< X:Rp0Ţ1c($s[ދKV,鹦𭟤X{_qbYBdby|\ny\nP79cCuns(\\Q/Tr~MlB|=Wm\"T)l7+»+(\"녈q}*֮;X@*EM_+Ɋ<Em+6)+v0;MPH?ؕ)v\'J{GSu[*RWe+R7MVnQ7(;}(2|)26(22š&q*?YfAIw?GvKG\nRǅ3<%|4E~ɽ\'AEvbNQ8bӿE[Պb؇TeW]rZEQ\\ZtUq}JIEeE2_QuVQTÉj;Euz\nў(n\\TjwUNx*]Kum:ox pqqEchhj-R<zx**摊fpEs~ųEKsm6(^/tR(ޝxR~EGLsJSS_ŗ]	E~O{ů_y__a\"*!\ZVF\Zi\rͦCu4rI4\ZX\\\Z_/J\ZPAgh^-V=Ą%/ӒiYIMOgh,Ѳio:\04[Gsw_*/SѪhuH6qui!>Zњ˾I5}<=u1SC:Ѓmja[u\rZ衃uA0=4G>tiFzm\Z]H\\8cfƋhP/h\00m0ҾH[ҧ:	E=Tum5m2i_(m_MS*GSTj=uzٓyS=͹@DLF쩠]j.koӮXP/aJܧE϶8H~@Hhhh=\'@n=IzZE/O/	ʧ}nͼAO<?L~+\n\02:0HC\"yѫ5EZ:wPG5k-j@EM<zm\rA]MoP騭\r c:}z{5?YGHoHc7ӱNѱQӆtt/3:n]O\'-S:qR:8CC\'/}w,;g;͡wtrV!KG:L\n֢w8NT)3)Wt\n:uGs*}#~MN\ZDgN3҇sC^atVݢ	H?i>hIk_I&Tyq:tbw )]p.>ӧnӧkŮWȇ.KFL;s=9At];}>m8}*s]\rqmg1}jEթk=Zy}KM2עoOo_LE7uQ=>O~b,]x?5nؾ~$ʥя\Zҍ^ǟO=7}Π[-ޙt||E\0zNniD>w_n~AlJ2`O\rC;~үI􇃓sY4AwlKwННˏӝ·&\'Spuu25TBGdLw-@w-\"f]Gݿ=_c>|e%/؁>*k%:d[8BtS`RsE)ʵP?nRJyJ{J(Rh*ΉJBILQқLAwO*S*\\\ZT^TES\nfRxG)Rj)(GnQj?U~Z9$	]ޕJ}eHK9uʑF/)Jc;{(z㳔cw++ͼ&?cyrܔq7Z9{Қ6ً6o5ʉυ)\'<W0J{줜|A9sSN}R4S$+W:V:;vlrZr5>uҵLz~OÙ(g2WW7Q	3A9rsZl\\grIⲳJoJ\\϶J_7J__cnCXe˾+(וˋF+TDrp2HI*ە\'(Wo^\\}_FFU_QVʵ	2:Qsح\\7I^erSwU(c)ʘ-<߯fW[}Qn{F*>)づws+#b	m[@;ܾWnOߢL|3I(\'PjR?+wJUKKUʔ4seZeece̘hl<4Qyh}PBCQz;e#Vʣ1ʣ6ʣeWǰJe\"oe[2/(SZ̿(O٤,P)&+OǕ7+W1HyV<=Dyh/eHezdfħZYt]Y*<wyLy=,#*ˬo(/^Ɣo~SVX*+>Q^۫cJ}_+/.*tRVY+UٯU]էieu嵂O򖃧֮7qÔT\'̔w$m;Λʻ˗*lbVi򁡞reciS@D옋elEM+)_l3|=\'L\'W!廪Be{h^eR1SvʯǔW~?>O5EPvCʞweg`/3(ߗ*UKg\0faM`ۯ3ҥ4\'72qQ0ɌX:40Ji3a;ީQjHFؖh̓ߌdF[]h{3Ͼ23:%/g62C\'1F4Fo;F2{0	ڌ~)1t\\ˌc<c\\1r1IɌZ^\Z|gdX$a,Ǽd.`{ɘ{yu@c/d&3BII0p,35i1iٌӪ\0Ʃqze}eӭ2G;;n3:3;3x!`tffAbc(3jKx[1>W2_c	ko,ݪ,m\r`,[,YL@])r{J4Y)L\\&8	?΄Lτ3!LH.&.bɄ1aVQLX&-	7D|_Ϭ{Ĭkc}[ì7Dd\"C\"ՇWCUۙL*fcD11gօ9̶!Lw0IH$d3	LL+]&I/]Ic3{˘=v33)h5I2顣N2A9LfX&K5\rgnoc#F09cRY=9rm	s\rsoKerۘܛr&\'&R`^Oc=_0\'OdN2ɴɜLAsLJm38sf#SO`/0ŏ23B&3_`./}QLybL&b.Mg.aa\\T.`*L4su/S\0Szsc<\\?\\L:z L\"scndnVG37_52\"2e=e0,e}Oyy<|-g/0LLi9i_C\'3\'棝̳Og0-̋+K3/S6y}?y<¼ryqa͘sL\ṙ2M\\gwFL|y\0%ArȁK1_Sqk)|c1߷cg̮0]쥙c.< 7{ߙkFCfhb29B90]>BX(~\"h9bOo{<K ,2/V4+9 g~X/9KG׬26fi,~R\rX49|ebmYI#=U\rذjPVq+HpVKjX8|4a{?gCeZVWs5cusQV7̜շSzAX֠5x\ZZep;c_Ŏ O#,숻HȴaQ7c\'fYGk>\"5-6Ys}e͎5y5qq//V#CӤk=k}y%kژf6yZD֎NZe\'5d\'}du(ཟuֳNo&_XsX~D`N=a4`笟iy+Ʋ\nBXcX/ŬR].`\'׳KjjOe}GTsKel17wCͮήg%ӭ\rz%\Z]bCk\rƆΆi=aFapR6BkۿGf6BnamhO6:d;nncxx[۾q6s6.o-MMg.`lٝ-vgR6yR{2vϚCikB6u^6u&@$6my6r*qQffBCllN9q=:a9{tihJ>{M{li {l;6d){<7^ĞаcF^lahY\Z{:`\0/ٳgjŎ?ْZܖb[ܣ3H[ߏd/gTrryY`jd]daOސG7FH={j։uVWT{k{T%2܅}0<ia|GG͟ǚA9lsJ\\}6}ЃmS̶<7dLb/Ǿ7}yr<J5}˂}mnþ}Ɉ}kξ2mosf~=0r/y+	~~޻RZ~hد9$;|>aǲyl6Q̟]\Z`{}6k}d}qlj,_(-؁;9l́$栦\\X!w9d<{8s2#p/x)\')7꩜d\Z\'q20rPj)p3;1Mg9VgǾ8q|]Rp5a6n	9e\ZY4pN{g7(t0c\rtc93ATK7nؑP?nx7b=7d,7$yY͍lXM医q&Q߸Qm]nn׳8S3\r.4/qmCBшY9ǍO)ƧqZ-8M!`$g7.gtgoQMMl&_⦞খsS+h%sRMSdr,_87xxt7`	7wDn9[nn^1nL,-VqɜG.S&<&*VsfqcnrK<9͜[u90Л[\Z,pnr~zC?,8.8P\'r+>q,}2n&.XtB&qдR.[-֣?	OhnwcLb~Ŷq[ør,%]%UuqT=Nܞ;Krs\'_ʥ{q)4>K˥7wNeC?<37;(+c=[\\˻^]p\'mNÝZ\n>[iWaϝvsgΎ Y\\[WR;Ý>ʕR5W9++̕\r+ʦ[res~~pHWAsfusWor[ʯkڸ돓܍4W;6Y{UqwNquh&wO3b{rl\nÑ9gQW_kx{tk\\kx=+_=\Zõ,3b2g?\Z26vژkY̵>\'cil1]:pݟu5}t羖\'vp]Cչ֪+g7<p&qr8s}p}ڄ!<ZCR.LGz<Qw	5Q	o籧n<\'GI\"^4mE{xÿ%NR^SKTFO\nx4LxEIOlsymygl=kU\'_:s?7!GNS~󆧵x2~_L~Ğ ~{r7I+M:QFѱ4oZΛ>ď͔Spbzok[i-uWV8jl\"o	?f??-Pn[omjLy۠w)=%ϞOOYO);3si)He-eû3DyCcj~~V/»2y-n|K^[C\'G+\'NwJ ?ʄ~[#U`:`k8\"_χ!o/PlzvlL#bg~Z9_/G##Q_\nT^oju7uM7Gf[v4[~,>nA><K|o+D+6T%Bݦ3=^ OS-|ZAV?UgYe|>4v	SpϩiS1wU:2>.\'\'wz*`_pm_8/hOmO_G.K~Eu|QgI5%	ف|q;$2/)ß{__j/4MLeG\0!_Wvd+NzjmZG݅g7b[-em`vsgxg߭\'UV.;?,ׯ;77~7?\'\rS`*j9oHᛝ\\-U=/9|k:%/#3W6~\"f˿UoRos!}};cx=wVm\'^_<忶oo|.wGG__&z<_Uyo_ÿM\'kUy~FLV*p\n0DnvRU_BWaΩWU*QEhT{\\%\\%;o|\nT*<LE{9*dzU짗*J5P%0E*hJ)RiN<SiOUi\'ViWRt&lP\rƽTNLuK5Sҏ|ҿ`2\Z_e4|bdEjTըtըhT5ڋVS^WюPKRTmTTݪK.V$%IUeS|~DDpjN* [4ʱQ}jZ4y9C*Y*Cǅ7WMVX8_5stQٵTj{L{B{EjqTs|UsZUs~榾Q\\w^5j*;*#UR-\\QjQ?c\rUӎZC}!DdrϏ*_iʷF,bjV=ڵ#TT*Tl<Zy**8^Y4d@S>w^F*d2UHB*TK\nۤ\n\nTUk;W֫U\'ǫ6\rثb-͜*j/֪<U©oĊfՎ4ծ8վڥMcTݪKf\"ҵU#T{TO,l*;WѪcU^\\Un*}xTu<FuVt_*Xf*(:_\nPVuUmTJNfJ*uS\0򒛪&{b`b0Uv%+Pu)JuY[u4CueՕ=ꉪ>aT_TkCM\\>ZuYU榪oE{χ?Q=ϺjXjTMFI쟪ǋtTOE{T͉=KT^^f^f^<QO\r6Toՙ-|zU`U[9TufUL>Y\\[qo\r#TߞTu[8UOLՏ?OUq՟TSū~W3F_j\Z8`fj\ZITCǎW#qG5qA&^TE&jqF-s|SjzWV\'ՊjGLU+}j9\'jZpثf5?v\ndD=N_=qz,~jAB%uA:bCE#R4U|rFmqLmtF6NUM&i\rjWգ?MӖǘP7S[S?yV{Hm9az<)>jk&Em=[_mQmsPzģv[mPOQ=@zJBzJAK=՘UOR=\nyjmMicoޫ]3GS袞+U>4\\>}IzTQ;wz깝36=_4.T/V/+R/]TY^ڧ^|Bv>޴E$^$CTRWKwک2jڿ:`xzj:P.VSZ9W7Wk׫C­!y.PVk\'Q4TJG|UopxZVo\\j4zӼM\ZuBul:0Vփq\'[Iu\ZzV^Iu΅UꝗcCNQ8xLV-U;VN1SSU>bNox>UQ4R}h|v#+YzU6A\\=y!f\'6O<;> 2Y}Kuhua*CԧgYuc$S]ݧ>Ͽ/lTŰDE`ŷ\nH%9˳՗_R_9,2S_~[[ǫoLQ߈[q㶺v|\ncwW%g_W~`rF<Q?t$Y%Տ7^Hdq~wO~ʠ竛fUPܽMjoXn0Rn4j߾VTn_F~tc u@~ӽ{/\'Ww9Wh{Ҷ8mQtWk^=SԿ,PyQ7Wx/Q2| F	ZBr;k#`	8C#<o	$L%FAGj{l\'A>TP&8es\nA_P\"ό\"A褠\"LОD RA;EBd!wI~-AZd040G0<A_~Gހ\nFwqe0r-Xhc\ncwcc3f0qpaRaR0+^|{GZYo;*L.8\0K\'\\H;NS5VHp	fWsRyV~¼¼W<\rǸ\".,E2_\'xu7KG²$\\/	:3Boª4WS_Bpzauaͅz!DBD!th!4A=QV-DDl+!n&Mq6\\6\"BTFpT4#9&	1҅揃--2\"maBB\\8!+C8_o/{DB~RHH*l-l	YZ$ǗBl7agwa?=W{\n_!e!R\rT=!u;쒐&o	g|#dr2!cR!㷋%d˄CCӄ+:,OBVJM8	1#1Ocs{Q˅5p|XZ!O!Z!Q!?!QOsNoNbSnWB3sQ¹qB&rsBAPD(	.9\'\\9_l6K\\O(\\UZ(T	՟ٵ2frpjnlnDX	,-prR$Yr\\(Ed]npF\\w]Wgp\\xP?Us?BBc\'Oh\ZRx<Bxj7DxbtO,UhYVhyn$<*<+.	/\n8{Sk6cv-Vh,o-\"k B{~7CY)|>\nÄ\Z@:M/G6)BJ2Qv-H\Z@辒$z0B.gSUGY.!\\F}\0Q\ZvxOk\rdدj\rJנ^ha\Z\'\r9L#ھQ#H#Movȯ5hOfkk5~\r]sHTO(?k75\\3>M4_\ZZ-@#MhE4:4:/Ojt:?h?EFkNi5Nr0JK3l\"1+4F\ZQS(QQM5~֌\Z1Ќ	~,<|SƢCK3@fr͸K\Z\Zy	}C4I56\r5vNةk\\2f͔4{-5S4SM4Nssu/.L\ZK5LfR3kgqQqtT|f\\fGA͂ߗ544ς4sfhB4^5V;4͒ٴyMح۰S|fEtfE[&@{&i&Cf}ʥ5+hV~]Y5fռRMP*	xYy8oǑQܹsg:wI(JBD6!RfRJ}\r%T$K҂h~|><s=3!]7A8PL9N8uEQ%R^R8N]@8Ppc̯= B@,!`!m?g=\rz΄iKKM[.B	PD~p#BY\0!҂pãp7GvpXB/b-&@9+GHIH<KH,p%wwf>lB2EHr\0$zRkMV	na5[K+8C߻YDxH$<t[DxHx̛ݘ8?cF-Em%C6SBvBٕBIjBP~PoK=Pw{1FBEB}-pАGh&45|$<!<BxqţyY:Fhnr\'ZiVaBXBk,s\nՑτ	)Jτ%#ΈM,+[bKOJE6G.J>FY]Om!>&	}>K	}O	Ǭ	g\'	DƕU.v5âۄԣu	_	EI%?$	aϘ0N!ȯ&YM\\JN5@]XOs\nav0kGWB{y]$GZ\'Dv*Qˌ<@\\0CQ-v\'Q=%j~k$.٫JԚ!.ݕB~F&Hu^uuozzy+~>$~H\\mHྋDH\\dr~JDCo	D:n<!2䜉D=D\Z+\'\"#ȹ6!li@G(!_qmǈ(D(=E݆DY?@N4N\"\rDD#Zq:qͯ@:⺚h\r\'<qnR~܇QEq	h6CK|D@;-%-E^DQ%n4q[V&hAi nL0\'ڍLwEݿhNܳb%q*qϼ\"с#:\\8LwWiѱJtDt*#:] \\~&%G\'xL<N\r^7c-##zHy{\"%͉$p!,8Gر4@TA#S%[x^=x-\'\"b)ŷKcKpe!Uiblb%gbh1C\n<EFt=HatUx.Q-A%ƙ!9!ƽBL|ASELGL*OLDL~?_눩niG.i3֞\'fxČ/̣̽,ĻWW7<$fW9EGy/!J7tb~XXC,%!bm*cJ,? \Zx~bNbU&bUb=xX!sĦωϯ V_?\'Q$6o|Cl>Dl!x[u]_߸?#;U_[;ЁN%*+d9jbw>g,1Ԅ1\\@v=t+?(8j!=6op9#~ǉ6腝ѸR☑8*\"~&~m\"~{&G}8n%qR/qqj\rqjN@q\'N$\\nEiK&ZuG\\B5&:L2&΍k{aq~=\"\n\n\0%q@4P\nlT\n_@XxX	ŜFŚux@}깿\0\0͓\0NXAg\0+N^\014 ]\0p-\0oa\0L\0)( /m\0]PLz	!{g-ԷhszF]|Zi\0Sc#|0?\0v5`n7\0\0_g%  \\\Z^˿\0j#\0,C݀d: sdy*?5K	\ZrV8\r\0klku\n::;$ظ/1/00g\04r%`kf`I\nXf`CCۀ]\0۵iݭ+س;p꜁˾{]ـ|#8⁃=Ma8<\0\'O[156wN8>A/0[t;}8q8N> X~.ρE@`f>9Lf@6ຎp}kp3i\ZL?D~\"gK<[ JMZ	zD_KnG5\0d Vu%\"8% nj17$@$;`[@J g9Hii@xt<K\02a@m?apW	p&\0V,\09N\'{!@NHu|_\r䙎\0a@m`P|(<	P<%vR#L\r\'\0Ur@՟dfWPs#\0]C\r@cfiw<DOͷO󁧞sfݣ@\Z3EhSZ7~v@5c$xk~B.tځ=8^6+\03q@\\0З0U`\0YK5`q;0v+\0>_h$U^*Ni<&\"t`\"0Li?oo9`;`>A{Ag@hGPE(.]	A7@]+PTI5@@*9\\\r.p\\\0\0uՠ&ԣ3@h9p\"$AR4Ha$D|@%>iAy($fL @6d kf恼ϋAm$(E-(}7Aq\\6(1>J\n@)PT\0bUj\Z\Z@cuxKh	=ہk_p}q7pqpch11X<n5*?3rƛVW[u]hn?9MmO:9@.pϗ󠃠tx,^w\Z#|eNS34:MQ\0tz&2@a!𝏠9虙\0z--\n*Ǐ.7ǻV\'+dg6}\0f^r@N{П?ZOg7(3`w0R^\n^P\0T#BAo{4B	\\^;\rns`\r309\Z/oK؁`	{0>=>Ld̂wJ\r`ҏ\r`rB0E7_;`&\0<uJO)oY ay03[̭=>QL\r<8029o{\r,|,pYFq``,\0p,,Z-p.X\r,\n=y\0Xq+X|,NIS`dg,Xr\n,K/[y{כY:XX	%ei\n`XN\r\r}u,\0˿\r忽\nBU01+l++.TR`E5X1ZV.+?+|_+*f*$V~č`5:VՎ`u9=\0ןR:\roaXsft`J>OەN.X?\r6>\r;B>Pl`C>l;6l5&X\Zl:4[%%f\'҄H\Z+n#*\"|6|5	ofi>;\ZXc`J/ؽn\0~ ?~K{LYp`IbUC49d\n?G[\0d_j΃_7_ͪׯ[o?og\\N^0@/pJN?r@pp>Nӹ	מQw:s/;UW_B)In;NO$$fbؼq8h3I/wZ\ZICI84\"$$.>iɕs$-I+inRA;$$MWN$JZKZѝk|7#`V)V8#8yDH&$ L%A~%:DɧZDSN!1-IS$OHo$΢i\'Sc\0$50ZDII%$\\KyF20I緑Vk˓V%ou϶LT]I&ImH$K;IeI+HJI:6*̨Hf1>s$s5Җ$z\"ˌ(ɆEUdT@Y=gvKH$W%B!$GDoͿ$$ע$7]fJr1Gr\'R-$֎&~I:Āt<-H6}L>>H򾌑|^\Z|\"3#}$/K:e<C:uӗt*Ft)p#$[IcIAy3FVޤG\"I.!]yNȂtM@\nL%;HI들K[I?bHnVD8tg*)IRޠT-)3崒tWN@>D/zOoQEV}H^I_Dzh]Nz}h4!ID<FR޵rR?TqTōTpTvCL*kF* [IǤlTdTsAR@^OΐO\Z\"5#5n#5>\"5=!=\"={l,y}fV1:5zR#Lz\'N\"!u.\0R;H]Ioz\"yR]RRER+i\Zip}Ҡ;Ґ+ii84>/K\Z9<O\ZyK\Z4:N\Z\"M\"{H\Z#}9BY<$M,U#Cv\Z%M?%r$&H?n~a\"|ҟ3ڤYG5Ҝ\n47E˹I[|Q?\n$L\nc!9CoH^~#$Zp$	|7\rb\nRٺR5kT̓+Т!G5Ā4CK@KZ ֍VegHMH;ܔ\ZVIV\"6\"\0f\"{S5 Y\"/+CgB5(kl!tCfļOX[!o\'&C|\'x w4Ԇ!\0$X	<w@fHPAC$gM4!hgЪhՐdmd0c	&@&a\0d5d|,͆r5kКuh:)Z?C6(6t6C\'@f7bh?&dP	YBFVuж!ke:(	?mϿv,v8iA6 h;dG\rwB}:|hZh~vh<\n\\\\@n+C Pt\nt6\nY6<A^!/.\\Kg  qOdo|Aq.C~L!ծ)T:ÆN3MP\'\nr:{?].X*CfbRkХ&ՋբP6\nՖBa(I(,>\nk[sz\"~AInL_A7Z- %+lp({=o\n?%ЯA	롄PB_\'#J.R@\\(8q(\r<Ly\Z9rBw+lN4`\Z\rA	|q{喤@Oe}{oˀ\nAˠ`Uv*X@rr+Ty*C$T<U]7d5BiGz!>\r^f@BAo^7P[1~u8OC闠P\'u~?ϡЇP+d$>eB\'54/h*hhks4FCc[EЗa۠^ZMT;AФ,4=M]Q~&Aӟqh&?\n^B_Arddcd^Y?Yibb$Yy;NV.*1Yd;qdKaojXdM䥣e&5dm!N;d]-YʔB]\"zO&7Udp8=N #h:2S@f-2V8C摹:ܴd]52\"gy Y8N-ɢ\",dim,k\'˦2dlwCd\ZW&2\")zL^sky}yӦ>9\"yGl1lZ	ٺ-y{9N񢞼\"!W\"_$^6 ]N}LH޳ȃƇUG\rHv1\'￙L>p8GvN{.o%#Zn$dw7dc\ZdMd;ȇɇ?G@~ZqT_x\"O#|~C!T֓}\\oɧ#6\"_B\">1\'曑rVm}FM7E|j6j	rH\Z?z#9D%]bk/Rr˿HYOKȷhM=kI=M]GuCCGd6CN:MNFݔ)ryr9}rƏ=̀k̩rV)a|]H_|xlmȏ7M,#?n$?&*\'ٓsItrލIrAwb!(%\\lA.ɥay)O  W;u1Or\\B\'+k[-ɵ\rz\r{trH9A~1# T&_{m-,|	b9+W٪לHrr[-3=wC͉BGA=m^5&Wkv{{3<X<H]\'D^!\nG\rǚzxmq/׭;^\rwɓ|&y,K!I !m!&,IysΏkn;؉\'ҁ<6C@S&jJ?ߟcFfa)X[G_7Lp^`\0+߂=	Rb4|V.ԆUU,``եBx^h`҅55oKKla1Ͱ.5Xgy,cy^b#5um`b#y^iy\Z&`WW0{\r	#0US7ܵ0uj3LiiR;P30IS8c^0;/qp9/\\La-	(,¢*XTd	jG`1hX,KXjOUaUi%lZ_\n5eɞSxc\"xc&lo3\n/1`ؼXzm3l>[?]|xׯ-0lV;ax! \n;8os~z`y	츐;K&a\'	ؙ\nvj]vAcصvc1xRدq>e&xgogSG8 2\"pPR[\rx\0_˟ކ/ހ/K7\'gXwpuCá06tt07V~hXVc>qqR`8^!\rNR\'p2M\'Qp}}8\0Nl3P^NslZG٫\'{OUn	5^d\0E3^pI)\\\Z..{.?]\n*&R᪦pڷX\rW_>W5T\ZϗpL~d\nn\\7.4&,_/ptq_-֗	pk[\')*_׋On_n;N\"uLsr\'Ak_ܝp?-?\\2}+~;\"<СRZ<4֭tb/x<\0i߀/cR W\rظ׀]ɇ_gxnHc)mRQ)r(({,leeeA%eE)<\"褨lܱT_vS)\rP>BYEY{RAI,1֣,Sܵ)Z^]roΚocZ\"Eo8sⷄ2g3BL5Q\0G&8ATR_Z(f\nB>3HAQ&-m1IaS؇P؞w),O\nm7\"~Lms(k0E$*RD4\";7KѷmЧZɦ=ȥ^b(!O)F~Sv|]Q֦l΢4R֫Gٰی)(4eӬ!e!gś`e@,G|y5$PNXPl(6w)vNQRvSu)i)%\')({){;z(vR59PT\\8_S\\L\r).M(3CɑCo_Q<R<4)6y!	g&Au+8?儖rzr2{5{IQ|E;(KRw)FՔ/(g)g)g/SVavsU)O*P.|\\l̡\\2*\\r7LHBOeZ|#%TpZ4E	sC	{rˣ\\@IaNl`Sn\\Jr%smbG~1B״p%1<UGIJ次/(ՙ]LLJHg% dJ\0ʃd\r%Jv#	cI5q9J԰RңP*ʋ:*eJUy:کRR㺟ROI 羣4p)\r^*F5SJq[ZSE_)όHg{RS(R^>|Fi\rMi<CyBimmDiKi\'Pe:M_ROtS(={)=])R>>xJ8u+Qz7|[)fVQVQzS\"((|eGz2fQ\n);(gocɴ󔩃K(?2C(3E_kc(6~2;LQŔ*DNo)\"wJQ`Ŝ/Di\"32E.dQN\"jGO\"5RDcT,q܅,y,۪,;h!:_%D7	Y1\"Q;\01--,A_꫏*|!2E+L=0\"5kF؈>CTEnA9w\"AF~3	K5DDVE  K!#C9b11?u+/ .\nu3u}M}$1uEֻT!Mg7d|1ETqs)ȶ?ȶdJvG׌ ;8#NndndȮKkhĎmAݍMJE\nQ9=<G!/|D\\/f#G#GGc-Khnh#D ^\"#6 ꢑq+VDd[xz ޙg3\'FS`䴲=r7r	<Go?EH!=|?$Vr.|+rE\\phrdrmrm	]]~ a5ٍYDXO.k7uz6<ryg\ZUD@nk[\"Y3Hc67\rF~Dݑv$4t:#=?ېHF5d.dHf-$ rw(r};BHV ;<9yIG4F$s(RȯC\n\'\"j?R)rB E)HI		)%BJYqHRک) !H9)oD\rjf$RӁ#R!	Aj+!uH4<\"\'HRiwy\r\"\\qy錼:WYDƞ\"or7EHZtH\r6->^/y0yPtg/F>Ȑz+sS{h|,|Cz\n޻\0Q(==nO䳼o22>|	Do _o/D%F&#ں$RFd&dv#3yώLW}7z3>V!sB\'\'?fd~22h*gUG\n\'qwLQ肧QEbpUhDuʤ\\TUۊ.DA¢Œia>jF5jTOTˤ2.5D:!Ityg-;p8EWE?4B(ք{Q(0r˞M&J;\\P8Q3_D*THiGT?@EW7grXxRQ0T4]%|A\rNk>Q\rXE]sv3v6]H}]5yڅو]nfaC4D7?~k@FG-D-P+Ժ:jÊEwffv}/Ծg?a	3}럃3|K2EAOԱ6z`>n3Cu8yR\rPׄ cS8q-Г7\\ѓn5s\nIG}үDOztt\ZdWRA/^pF/X@4/[ge蕠\ZJ\Zz;^ݐV4g\r?/G-ш+\ZF$7n7J/Q4j4*mޜMFo\rDcKX^4mahM\\Tqމ&mAkДB4sM|дh	401[f^YnѻbW\"uRZhμ19&}q1+Cs\'h^Z-pE\rHwZgm@%hi6nZ.߇Ve0ZڌbMh}A&Z2mPjChӗV*6}}q5m^\\B[zV0Z}힊?\'iEhن]}~+>bJ%h=\nVGlv=hϫ}GګuE`D-ϯ-Б5蘬\rZ~I~tA+DB\r:ɜG\')iGO<gy~yй[X!2@ɳT9RQ^.ܐC]8^H]iL]OGQлK]jQ*Q?jZRWF_vTPT\0?\nETG&\\|\n8I¹7**%AE5vT-{*͒J5TwTB7KvP#T}KeGS9(snfPmnTnw*?#*Nb*T<ݗ*V;@J`*բEUT)Ao+qh(jB5n]J]O]sĀ.E5{jNj=Gݼpje:uDqբ5jSmrՃTb-+E5ԝ]#TۆT۶/TeA=4ui˩RR׶S>S\\DuVҤmUS-(TT!-ꑅ۩/SP=Wzz6K^FjT6c=z\"zK{h\rG\n7ϱT[ܷTߗTTu~iOqSY4=gLQB<\":nR/?@lA\r6QqQ/+QW0=Cԫrԫ*\n*qkЅotjX&5<5l5Bz&5*\ZU\Z7ztzs\Z-SK1X5޺\ZBM0GM7&:P=gr)5T~j=.5~<54~FڮBW- eESL	\\)5?jq2q.]:57x-5=Z0?E-tzP\"TS˩S++\\66rP󩍕&CjSO.ꋒ\"ͱ\nJj˨9e꫽CW_m7QjPSL5jUwY|껗R߯lvR6S?5~GXD;OoXG4utR\ZSﻨ#_⩣G1qoS\'7ݡԩiK4ɟ:#w:TRgܮSgAU?*?osEs?ߠP/;:oL?H;;BPɇTh\nCki4Řy4%o4C}4Oq4o\\J\rMe8M-z\\(fmx\"m6Iޣ@8J8H,-ὡ-~N[|ELӊͣiYӖ7fLVޢim\Z}[A#M5kh4DHCQRiԬl\ZݠFwס1L,h.\Zsv\Z3i7Pa#hŷ4$}Ii4\Z?M&J	\ZhƓ44Q?MfA[U@3Tҧnw;O3JB5ik\\7vmD^6hM6L3if3iiilymKmK|6bf0f9.m[Cۖ}IfeʣkI]\\DىShi\'hiv54\r=W{u2i\n42O˃4g47V-h1}@;_O yީyh\nh|.VS X1<<vfsȜ$N;ww-gAhW]\\J)M^IҤEmeH|MSHV5-2vwƁ[ci	JZ³tZb;ڝWaZ2Ԣ<FK[@8oD;HҒвVв.?e}=)ܣݏReKhwhZiqhEhrhO\'iy\0?VhyVUC+|G+ZB+j@CišiJZ\'FVM+OG7EZJZVZ5/&2VsilխDkW5t=54=_9ڋSh/ZVZWrVhNڼ\0Z{Z\'݌9u6֟m\"Z76d,Ck-wNZ\'6>qi$hiUh_цChM:@ykHg;w\rо*ӾӾ}}DJMWiS$ڏ)6ss+CDIU)=CI^ACi]\nOnҕҕte=[\nTCWqBtetɗŖg\nK\'Zz|Get]}y	k\n]om}@XG_yl}Gm9t\'ޡ{tM9EGSԀ::\':}AEgT=3/YWM%ʢ$ӹa\":r:oY)7YGtFt]vnxrbsn\0}MVVRL_N}$\'dގnz }>}}}ޕtf_]m[-ӷfsѷLѷq_;wHl;v:mvMtiO.%,>ɫAJwʠ;Hݠv<~s\rSLwǿݻvwEOLЏo=m@\\Bz@?J{QtSbw(ݯ6M?~JJ?@M\\Փ@{9/_Sbt}z)=BIҬG%oңj_|z)wzbjzby4=q-=)BO+룧}4gllg3>$3,GcTz.=g?-|?9F]O˷xLϛI?]H/?-zQ	08J^|2^	K87=geƉ.z^UJ^Clנ\ZJz<vVGDJoЛ7қ?<Go	W3]ߩLSmlz.\'B`17zezOVzϕ~}}	\n\r~jz9}`Ck#5%/N/>ѿjп{O={Tj\'4=1EAdyw5_kwCh/}Lw12^272,fd,|,P;X%eÆv{%%=Z#bƲmڌe1-)c(d.r::kfD9PwAc&Jw2򌁼hfPG3h$.wAOAOSY<`/18]8!3DnCt߉!aH~0O.jƪ+O1V??bna1/?c-e0acV9Waؔ2TBdl\nalؼ>1ƖːbckgƎ:C:İ*;w`a+`؎0v-bp0:_g-ؿ5\nNkƁQo0<88c8XBnn4xƑ9#7Gax&So;Ƿgqqozۣ#\'\\a2Ʃxeq3rgs\nge\0AW_A.Ռs޹2ծ0]fk$sKW31B;9Fx$#ǈǸ.7MFv	FFXF|OF|F #aF;F#HmgAt9FrqƸf-+d-`ܻq,x	a[i`e,b䯛a(c3\n3-Er\'5eA%)fQQ;((_(?KfT<F=FŗfFep9Q^ƨYɨ	b0j2j\\`.hf4b\'gf(F\rV.kNk=w7(ӌwZW]FuѭѽǗ񡼅2W[hc|2>e^Vdv2<@,ch(11ܓ?5Dc1/W:Mvb}U.dLSS?2~K㌙Lo]_:?dluc31(d̹1ާ336t0112d#LR#r)Se@TTb.0#1e.TgX%0>061ɖ3i3u3u⽙:N1&0L=VSsy\rsœ̕L=TLx	a\"UL:&Vdʝ`2i.a2K=LLɿLLc)f1k3嗙xr&^q)JafsLg檀@87LJLC!4tg\Z0ն0)ILML%LS݋L.2͎0737{d3h2p_2[0-3-o2-obZran2d`IIfĳ;;\\;FLLok71w;2?`Jf:0ǘo3.c]\'\ne43extjb:[,d:_He_ldtӼt_xt0).f\ngzy/aH&3=^`zfzY3ڙ\'G3}}g3O2O<ty:y}yaي^f|ftcy~Pgy!rm+!̐_b0f0fI*,qc32o7afb2V36^Ws1$92()<fjbffj32L>Lg{t03o`fu0q31KO1y1E,b̿EbcD`1ʙ31K4?2K^R%5̒i1\\mY.ęݻc55Z%z8flHlf60Mv̧^}ߙ/\n u)}Vf͓|kq컧=p`<2GC6oV̑1_JsL%vMP~9Y\01֨1<ΜY5 ;9{N99;97G9ߛ mg)<c)Q5XJy&,2\"KFKuab-*b-^Z<RzҀY\Z<K#(K`	kIkv0K(e-tڱt߶Vo`YD\'C0^ubX\']aQMYc1,?,,,mbUXX,2ަ8b\r/>oqr,HK%4:YxKː%Q{h-`IDX$KzK&eɜ4Yz,E^j-k,5fXkd[މe4,2?eq.ey,h\rk[.*ڎemy{lX6Otnd;*cmg9[Xο/\\8@ۋX^^+Y\'|Y~c,^Rcb^QcY㝬&Gwϲ.{̺$b]e]na]^zb]\rNaZ	Ye-u7Y+ƚu++zQ7+z?}/u{9.𓕸c5+i)+JX=܃(\\).ʺzఛ(	a=*c=9U*fceYݬBV1x=*fg/^1sU)Uu0XUϱ/vjijWjc%kKYtV4z`=3Lg=7Sgp`:zώ\\jea=z͟;={_Vł[5h=\Z\Z\Z\ZdFYaYc׬ klcww&*XSZJqTK\'뇚kztw/5f̔~	@֯gѬY7kr,kvfU(cͯe棻19L &oS?M1yST)J\0[h-_-:[ԶS#aj\nf/ԚʉLC40́dlllIBuJZ-8NW?.l1уPVlV`+展.bDJ1  1Ҋv]hl`{kɰǨ!%+Fnї8b̔Q9cm݂-`<ƸAyqfb9L ~D\Z1H&։I`V-lVpQlu*Či`F:fWǌs;ISִa&90eN!luf4fn\Z3O\Za[aV#6fv^a;0?)ۥ\rmR\n0l;pۻ	s\"*ylNl!_U\\肹pb.As\Zs>c~\n^;\ZՂW߅ñ#}a;݅Zkݢ=ag?ƂaT,x2,\'vI9D]:]7Bޟ)Ǘ;[{X\nna7˞bY,S,Vw%\\BbE3׋ݡbwRcIW+X\n[K4/,oTe:7cKE,Kpڣeð{S`33p	{o=r*cO\'QX~+aMX!샕8c%\nXZh\r&XͅzVbecK`\r5BkTÚb$Si5{܅5aX+kڈͥk;Z5z.֡܄oðw۱&XגXfM`c=eGX\ZֿwBcا6wlHAؘv.}_9}?}zMObӐ6wοD^fb3Ϭ\"\'z45wMo%3+amg+g/^^p~qc+ͱ=cl+w٪ZتEEl59Ɖ-l\n=lm7yw[φk;:+Re%W\\C+K+^]ef[6a&m`-Oؔ8q|F?lʦyiClN2پ*bc|M6ޏb+8߼e]%Ҥlv-kg_\rl\0h$hp9b{imr\ncMßHdd14fo69pa[nŶVNl+#mK~ٟmƶ^Ķ-wcۙU=hυWn-{_h{:{1bZUZ2/}H}HU+cl}y}Lo}\\&ؖ}bDvDw2r/S[Tc.f}f$K/<a\'/68}d_WwC?!d0ȎPgfߚ5c6g߾Îg1q7#qWofBI/\r4+vvoBݷv{ގ-{j4Kuj؏(UGv$c)\'\'Eb9vq]..y.}Pͮ44`WUjT̮ZȮAVg/$L݊\\b\n#mn3bgZg7;[2;:G=+=!1ؽ}[`	[;ѫb;=Vqm-[*{<TcQb	\\,{.p{f{570{B#g#wǑw(0pܞs.(prWsT|!x<FsTs8߼8p	sƝ8ws4.lhmhĿh\"!%-Pβ\0Β !Ί8+9+ۣ8+28!9$Mh1zpd*9AF96)C>;q{9Ly3aY9[\nn/ßA0WUKk8f8#3S6sd>9^c4qo9Z5uuԥ}:-gzsF7`(KgSc\'gm\rVű<ϱα]ʱ\'r6sM>g|Pyq9qՔrj8Vs<Vqn~Up\ZsIhW_rN:x{p|:8VtVY)I93Ӂ󜳢PYwNvι0sΥ&՜tN(q>q+\03Nd%\r)\r΍<smù\r*[qbo|Ļ$hqpWr>$>YIoIVȟᤄsRnDqҗ&q2G9YYz{o8&J8$9i#QJ#Σ\\vNnSΓW_9y~q^Np\n+9EF9Ŕ\'8%cRNhNySNũN5lƩIũ}S~nNqiqq&pzq)l<[yyBbgБ*À-pެ8op\'8/8S79oI9po}:9}˜ne85&@7Oew98^1!a	0k3?+}8\'8_||$r&7r&9O8?Vi241Tș)yzUUgUpL>l.Қ媛gj*|.jor8su\Zqsu\\\\T\n{J{.an.K.u l./wgq!yw.%_yͥR..3SRWjqC\\^mx?\n\rsVsq\\\ZJp%Lqk0]q:zzPk\\Ï\\㼧ܵu\\g۷s<n暑p7q7\ZrͯrrTv\nV\Z߸r?xryuȏ:p:szrøOzm܃܃u׸n/pݷJzC#\\Os\\ϊN	){l^4Ο\\Lv)6|L9Sݦ܀?czGn%Mx])6uZ({ۄ*\r=\r-m㆝\r{{q#u}܈!=no.7ώyc{$7jK2Vmu{[y{;(7unl?nIWnpo	7\07qW7q>{GM&eM\'+qӛH7\Z7k	͊5Ykɽ/ޭp/ν/<N}@>\\q^}2[d\0Ɉ7-Nܢ\"nQ\"n1j-qrYsܲ~ܲݮ\nCSn宽\'SܪܚZ\Znvީpޚ۔\'>}ś<3y+B;=%H15)f3m??0vJvL[rԹ]p?A܏wr{Oq{+r{E޾>.9nt;lw`ʚIuk6wI/{pk/sGrG~]~QcpN~WǝsdTrql3bx?&s~=2z!O9y>N2YOo2O1>Sn)[--2⩩+/XSPS~[mu[WeUV>i\nx<g-|\Zx+PqUyzǷk	<ȓdvV\\[g\"*xF;x6yGxk	u!o}f\no}\r/Bx[6KYͳt2YV{,?<m}DmoYE3l+y;/*v^~e|V31Ϯ$ϡ>o}q}JxN\Z<k,O]ANyg+o};wT=wtb\'+dU}s<y]_v\04;ёph/ b/(ЋT;w}ޅL^p5eOx\\y_]Cx\rxWثxWsyWxW4䅬YW¼2y^y\\8v#u\"Myzȋyċ}(xNyޝ$N^/侇ǽdo^\\/3x/3/k	/$w!޽ԇożjyxjyMi|yEwTyŢS\\W1+}+sKn**2yjt^?^tWƫ>ՅI[x&^s8k׼o%z\Zxlry]\ry]>md^ݼmއ=/zLy}`^ߚ#~OOxν\r\rxCyB0bv\r>>zV2~ϛX&MXϛb)ߟ|2xN95UQK޿?1o~b-o~ފ/L_\0\n:\nJzbR\nPW1DUz||5jں2V=W2k\Z>|._s&_c7,\'_WZ:W,3>q>1d-.󡓖|X݈O⣄A>Jʧ.$`\rƧ]3\"I|Ɠx>s\n~~g~s+d>/Մ/H%{l|	=/5kK^|UAy|m#||?|_|U56V5שL׭t䛘ק7?=⛕fu\"Y}-ӛFacs/;|mr*mV|3ٓGB;#=l]|[~06<; |I>CC*a\ri[*s|76}WQ:*cߣ <߫lG\"4Tyus|XuOUV%ԎӚpr/S\rM@K}~cu?E\Z?b<IǏ?ɏZGio*ouG?_Ï0?YD~\'qIFiNӗ3Zʿwf?<EostfP;__V//\r?Z/䗾WXW&S~ŷB~~-\ZWkVױZ&~}[o2--3CM7n;;:~w?)?WlNE}h-GQg1GfRf/5#/_W:qnooos+\'\'ou^Nk\nύ?\'SǟuBssqP@a^_X#(~(PaXT9w^,:c)Py\ZCG{%Z;hϞ,@{.G.	V0\nۿq\0V\0|* * 	cogb\0b/@X:uL@[A@K06	\r,\0]/nRs\'j\\[I|#|dfG xg.ѓ\0{F ɍH~/\".V%0|(06kK,p:o3\r`r\rO6>:\'03\"0&t5A`G`\n>X)֔!X%~?7gt6I˦][wVS]S^Sn`}:,~W;	5\n/on\nJ҇7m7=/BpX1YpXpBp䬞eEq//_XQxV;\'纮\'IKolhsG4ierraϠ \"OpmI> Tp]\"DR}AUB-`ALAt{v?]c7HsL\"H8E$l$f	e$$AR ?Uz[2HZ!Hd.\rdrh@}LL,ș\r\n<-x21!Ȼz]}f<AѹA%E&YPt6LP		Q;AyFAe9]PCPՒ qԦXGB\rPAö/\'!&:\n9.xN*IК:\"x*xMGоpS ~\'.xg<+xwQ[ΐ]M/A7\'Rmp[ᨇ\'@sN〇7EYwÐӉ\\>m?s}g#yyѕ)q@^A0?&7\')L~Snߏ~L	?wtI.fM	fi	措\n*%\'X(vG(n {pP(^(/Ti\n.!\\-T.\\}_P}PsQ(ԲZ¥~ƄiP;M$=tBLx@\Z?\nuB	I7	ɆBxKb$5!\'U	{\\Bla(BNr+\nENBiE(sx$M\Zw	\r盄FDUXhd^hg\'\\+	׎M2z+\\8 \\7.*Npn<Rh/VZZN<nY(EmNhRh}\'B]pQFfUpEp]n>eоE^x@5˖FKKНh&t\"<lHx8YxoᑵB@OsEõcVyc{\'>	OZmzG}k?M	hf	ԯ\nAgJA%#s[KGKE	/^1\";- 2[xBxTzh0,S$+?#	o,[\'A} S;H3]\'c	5m	;Iid߽&PVvS6O.\"L\'Lf`^	o&	l[.|\">>$|ذ]_a0O(;	7\\_#̟G{	ƄQae5aڮ^+Յ56υ\r˄#a§.=W!״{7AfP]awk	4]m®JawgAan}aUa_.Prvqoϋ\n?o~;X-@8e\n(\Zj\\)up֌\';> K*\nΟWr{p\ZW0+=+~VU6?|oK#\\EW\'\Z]Ɓ|i(tr\Za[:rKuzKp\n8R_]㄄8\ru\\a~#ѥ\"\ZMé~.8]Gΐ&qeCߊc\\pJ;ցδ㼚8nqA{<.gQq銋]Gq)Ue\\&ⲟq#C7:dkLkܦ5Sڶ7q7z-S|=o	77;f-pD,l)7ۧ:ŸEYn1-͛qK)VZ)ŭv	qk*o?mM	ߕjwwmcp\"\'|r/|wF{5z}Խ\'c|_3V;].\rpWBh!ڰ??!ډ{{}{VN^pK\ru<@ƽ	-G܏u9~W,?#\0x?6\\\ZŃ^sv~H?=_0\'jp:~1/5/OݻxȝxtᲧ\"XqxG~߈9Gi޾oDѺx|?<tO*>\'˫)?<ُ\\Y.-~O~|?Tsz	h?ك;y3G-xQV^2/mc?O?0/>Nx)\n^D6kx7ǟ;?ϐǟ\0x57ڊqkiXoZWnGn	x|_6;t»LzU[xlFV>؏];Ue)|G_VR\rד;>ᓬT\'xŭ\Z> >m\0=skEN{@b(R6\"KEOu^fm-6\ni-yZdJ Yiݽ\'Z4.Z\ZATlhYnhYLC 	-[)uiVpE+|dY#\"<; \":ω@ܡ!&1TQ9(BDTK1*D\"Ε1g _UPqc\"\"oqǬ2xzD|==HU$ ,	CD\"H4 uuEM\"q-\"=\"΋5;ք֡\"ɜxȤhh1h}/\r\\\rцu\rGEn6vN6^(2#։v|m2	m ڲG%_dj(X\"%\nX-ڶ]dUdO.ڵJdUd\'\"R\"ڳ(r8-rHI\\+G[\'ڷh_1Ѿ)%\"gD<DkDEس\r[٢ejI;Wɸw\rA\"o9+wsSeihe31Qi9(X((S(\n\rѥSk.P^QX}Q<Q:kJD#xǢEnݦD1jQ̦nQL5QQ\\P(Q莩(!J:+Q*(5K$JD{E7DiEU4QkѽgE|EE,D4n=+(\\&>%ѣE	QњLQQQgQsQQqXdQ뱨**owN*G.Ujd?DjlQ?NԔ=0=/==ϖZ<EbD36:袎F;ޔ]_7,_ݲC[G\r \Z\r}w}U4b*\ZՊ:BDckD_E_ݐ̻E?EZdLOwbOѬhh\ZaX7Y,3\'^pCH$V;(Vŋċڈ,ŋ4ċ+8b/\ZLwFbX.JR2ҁa%Abm$ֱX!^J$ֳ+^%&b\r1,õbxMLqS41r!fP11C.fg#41[.2|l!1{xDpN[L wEZg1n*NK2Œ?b)rF,$\'c7]ū]TĆ[֊\r\r͕\'k*뮠b{bbxIxV.\Zbv9٧(yko%;Ll)m[2[[7;ΉwP;|VkVNlGJSl(sV@t;X\\\\X;Nzb?u\\UG vC]nćŇkG={=_qH|\"VO|d~{wػ0(b{žiSBf?񩩭ħx&&_R\ni`~FՐVqZ8Ef/?7[pqHy+T|C8ͬk[WYűq;֟A=hq|%qZ,N/NH/Nk=Jĉ;\n=;IIw\Z2չh8 \\N_*gTE3|gY̊3wW|5,_Bg͈Q=ac?X)}G8/y+NŅ\nqap@Q\\4V\\<A\\∸L㹸uqy\"5X\\ٲC\\P\\Q\\{kAyq3]gsgp\ZK%%K \n/[8ׯmom}>7{Tdq\\FNikok8_a^ÉqOac̨cvH<p[<txE<&lD<RK<6\'Mēf\n-?3\Z♞r1\"gW^ϩ?\nĳs5⿫]hSw:KKOHJqD麶D鑪DF\nDug\rC5_Jl%$g[$;$owJ4B3%%K%ZNYcm^7]k8FK_B.!:Ks]h=	EH`-Dӻ%5q	}waCºXqJ8k$͗$=ޜP\"+xIIUZ%hpww1qĸ)Y#됬iO4ޒn\r]&YO&Y߃I6\'J6]LlKk%f%XHtI\rkGLu7+$6o$%՞؞؞.J5Kv+zHO=ל1\'qo8\\s>!qD8[J\\N$J6OJNI%%7hKH<$|Q/KrBPrҨKr[_ 	2$g6^rJ)iO$g əۇ%g>%g+$$	ssII씜+IΫ=\\(	/	.],	%H.HJIB3$a\ZɒDII亥$԰$q$\Z-\rJ$7e.ђ%1Z$I:KI2Iܡ`I<)sVUKҠ	I$]$+3Q$Hr*MPᬚ$jFqEk\\}S H\n$«ђxSIaҬhRR{,)I%ޒ1ICIEx2礤JARm%.4\"J\Z\\+$\r㪒F$H8yRt)iP(|9#i^\'iQ%i)*i}Kv3BfI{佋}C)CI|ɇE)mD#*/{#齬/ז.JD_%H>K>u&JVJ7\\[NH>JyJ$c%I_0LhޔL$dnH?%O]PL믒AP\\@ߒ.ߩ/R9T*HtRptaDHiNQ.:]Cf ]}T}Die#]AHHZInI^K\\juIvKsڟiR|TeT$]~TWt,%8}FR~D\nH\Z)8)%tKI{$ǍRȓ%%WKa8\\\n_&+˥)K*J[3RZlUÖbR,kD\rKyOܤ{yW/JdT*#KeER}tR㿇knK]o+ӖnH¥jI7nn֐?MRsz\\`\"b[ŗ\')\"CmS]j*ݾnՕnGCYU$q5@j\"ue&JjRwYVMm:Y8J\\Ǥ΂R>Kp\\zpQAmX&uڤt`K_WRF91Wғ5iM?\\gHKmi陧ۤgJ_ܥwJUl/\r,rHz\Z^I^uϔ^,\r寒PixH\Z-/Ko|@\Z5,C\ZjP\Z#KzH^HISU.KSeKӔy44%C,͌%͚sfۆI\Z}>FJ&-ɐ\rI`HrŶ2tRZ[ZK+b\0ii%<!}\"ZIVoVHKkNKz祵IkgWJҺ5Ҧ$]җQi:ikrmFQڮ[ mwI;VH߾!}7.}+Z*&~F4Iڳ6]T*QEVIl鐲t[:tt(U[:N~~{W:B:8IǔIǯJ|_`׀5	gX:qV:NfKgHґJ)z&-KWO:F:/SmQL))\\)9Ȕrɔ	eʏe*.}2ՏeEe$LT_P#[l٥!*NLOl9D{fLO;^Bl$/[claʀ<xtPF(AוdP^yℌ-lݝ2ꦅ2:妌~HFv1e̓2Qe&cyreg?dG\'U(5wKewd\02L|#5d\Z2y٪j#3ӻ$[]$3)T6~{,3{_)3׵WY,bdKeΡmG.ɶ.(GeKdzem2e{0_ٞ0ٞ22ӷ2W|yX,;\';tzFC/ȧ<ʎzʎz<IKd2/E츪TvDO/m^&-|8PHJd5T>|I\"*VHV\"#	EYY	HJ\"羯2\"!!^:Y*StEwCe!~U\0Ðڐ<Hl$r;$԰*|	~rG6rH]/zC<H͐(]MHDH4-\nr:q\0r\noIwd\nI:4I$[ARԑ܃G2GƋGdGQ*$-^>yjt/<<-$z-o3o,C\nLH P9R6R$Bl!E i /A^=)\0){)[H62yR\nQ\nZTx6ՀM)C\Z.hC\Z<`i	HHklzw	ZpqX\nQ Om{\\=\r2\r2dL]!Fad.=ȈdT^2v2_\0&])T2LǆAST!Ӄ<Ȍ[,d&䇴d\rTYyCm,{\rum+wd\n<uj[Y\rBV.B8C6ŐCsg!@>~\rwoȿ`D<*0%d\rTX*ׂ<SnZs*ݾkT${g	U#@\Zw\ZҡhPPP!P\\	T\nTwT7\n/=ow@2	5fN@Ͷ@<:=2(RZk\nje	=	=$8\r=y\0\nIBН(\n{bBg2qTbB3P>(F;\rJ@A(DJ2;jRuP(U	32P;>qʾ!rPn@\'*|\0>~G#良PkГ/ԘvnP[Pۋ2PG|C蹓fsE=+Pg6Թ\ruQut@]Kz*KJB//LB/A݄f\\0,j	ƀ2S.ַMPX%2z<U454pY\Z4m\r6\rƞ>\rBC#!;лfw_F>l\Z4Z\Z}94f@\0\r?j;O&.hshBh!hЇhJ%#\0*}&4mv@!xL*IB	4\0ͥ`y<\'h^|4\r7\0;o􀾈BRwhq\"8h+q9$DZ\0-~}	}AFeh94h!7rw76кsg\r,\rK&oЦh&ڲ&C̡n\'zeh=3G]ڇ]W]Ю!hwOhOh\r훔~xyQ\rE~: :z\r:$@\\ãIQMKX:LօN<NBCtly\nUYtt}/h߰LI7L7LUL&=\0je6V	0\Z$L/L}&	lEKؖk090y0L2LQ\rYLI#|ZRy*uJ;SSvjvCa\Zaڒ0+7a)a:F]0|wLl;	;3PkT`FU{̳`uaBaFpK}0ni1]qӋ`߁A2`;08\Z̀!?_Ս`tH{?90R4k菮Ga0\rcz1}Ca=0jcoaxWN0\rLV]x+L|L|?	vn;1vN\rra!ؙn<>S:bzؕ0wװ*?aWuR`^]7	v\n\r:1{9|L&;\Za)`A8,8#,UZfBQ?XhM#,s6kXD8,-\ZRiݓ+_Y܅ŝ~__=0`	TXB,1\r%t\r`ðG7RKa<Xjc@,MK܄a#cj\'?aOTzaO27e=+²sXv-,/ V+\0$5XX1/XKX	d\rV5\0+~끕݃vL|`e-2YXyrb;VQ,{]~V)J\"aozaU\"GXU3XV,V\r;KWiM`\ruƙ[`q<{	\r؇c.XGn\0-X/~p#X6x	6t67+ȁM̙&raz)NTO<l l:l&z\Z쇽/Gl	l75a`~~#UV̼a+VawZ+a9;a&n%7nFc˚p9E<R\0oo\0Wn+3Zpye\\)+|F=|\Z|\'|\'<\\9wBf\\zwNw?5ͳᚐp-4\\V|O2\\۰#	ח	^響識h\r~\ZT^\rͿu.,[*]@?8pJ\rxx_\rG=G[nѬp[8>Nh2Cp~8%8:w\0p}I8,n]4h\n~N=\0?́MK;MNt~qk\nUI~9/Gu++oW~{$հJN=\rM0ff9[}^+sӇA3`+x(!<.քzNL#{#Yc3	?x~x<ixD&n]xyxox~xqӣb7xnV$<mx^&xއZx~xpx-^RyZ^:U/WUW?<ylƐEsx=/mr	mQo89\'~NP7oM?|Z;zYmη-xsx&7\r;r5>p>p\r.~\Z%G)uѺ{3|e	>V;)[?>\n|>FOAW,^JK\02|Q_[_|H//eB+Ng\'gM\0R4>xHgYe`˛ܕj@m7 7w=	(P6=\'=ؾPg	j\r~@e\0~0zI`W/`7xؽahտ.{>{{Eޭ\Z@_ak=4\0<;X*\nn\0Fˀ$``w̀;\Z0KUG\ZAe6X]\0\"1RXp|p!\0@YU\0R>?\0?@~(,\0`\0x%\0\0O`z7@HV\0 @>\07\rv	]<:h0_&];\0!R\0%\"8Y{8-98\0r\03p8_+	89g\\H.W\0(aʯ6?n7[\'Wi1xޱw\\%p=)\0_[a(Y\0@4;\0wt8\nDV16@Lp};|]qxO ~QH.I ~Hf\0Hk\nE\"Hr׀z7 M\0H\0Ș\r\0\"YT٣\r3C [F\ZȽ\"rzo%ׁR(wt/uW[q@P\nTo&T*N<PuT[긣@\r\n	C@j)аfT97МEmGځXh\'`t)9\0]k@w#4z>\0Hs\'_a|8|j K>Cٛ=V5`*005۸)0};0\00=m	.?7?5#c`H\rj<,ft`ekҷ5`!^\06HP`\0%4ċB\'aB\nBvNBb4b[s(BQ_x#4B$Sr/BPC҈]\rnc=ڦ;:/:5|nB/2b76boN:b_ā\r<QIIɣ QY.\ra6pq_0O@G@X(GX<8j8JB<<֋<+FX9!<U=.!\" !Aw 7$@=݄@\r#-*#p[1 AA݈ _-EP=d/(솠 7,}\'`OU!8	N	BB0!< D]c\r52M;)BTDT_\' a狰͔Gة3vu]\"ޢa:pP	G8G?8CFA8<@\\#\\?.	+:nQզHĵ/kkS/\"\"n7!n@,.\ZeQ𺛌:f ^#\"|S\Z#5}C5D_DV\rqgp>x\0y$9g\'#]EJC=QmB$\"NG$F$#I. R_!R<?i#\"cfē`_Sۈ4ĳE&\"H\"{*CE4/!rv!̯!ш\n\';o\"8{%#J\r#&eD^DoD%F\0Q2`16AdhqD4<.C4 $kMpD\'KD; _CX\\F@!Fm$h7BшN<As!\r#o\"__l_ADU5	U BC Fۉ.툩]͈>Y\01y1h!殧!~raŘį<R>bپ\0\\XA\"=@/ 6,m!)AWn7v)qm)53@G\ZHY6rKBrk)\'Bʹ! .8Hr/B\"w^xYTD*_\"ջFAjlnBj8!5F\"5/H#5_!! uMjzk{GKېH`^iGi\0i4\"\r Mբf_7GR.!-uG|fHgG17\"H9$43:v	Ӎs\0#DC_w!qR&Hi$.+	ƞAdm$y&Iy;}BV\"zp$Cɜ1D%#d$ v#9HN7$3͑q)<);K6 ŔyiTit$v0Syv	c635gaHǫL9\ZEy1zRaFyyYyg䕯ϐnkȫ9K;7\"oAތ1CJ#oMEz =\03Yߟ ֯\"wBu\"Cj^ Cc !#@F8b>*LdTdTk2\ZMCAޛ|e%!c/\"d6!hG&X!⺑	}ڏLiD\"S#S*/ 5^EI-#ӐBdZ12b|Cfބ,z̪f#ۜ@~|q|Q\ZY,<,FmC<,iCYER 2YB=،AV#+R*Oo5 LCj1d́S_w!Tl7l2FތlyzWA4\"5C(L=+eǠȏ_w\\Ȏd:Yy@vyU!אw#{ӑ {j#|r9p59S[*2@C؃VA~7G~lC܅#g7!E\"ՑIsC:r2#}uS\\cB+{Q%wPv<Em2CI:*$K~FmYGmN\"dCPR(($jm=xRHG)Yv5vr`(@1JyR!!P*(PUe(͏Q\Z.u(Mh~V<Jkes[ێS5FcPzQFP6I(+(E>\\ԁ\rT\'\neh2k22=2g2F>@_GRSFjD:pR/C1/e鱈.EYQ[PDQL#5J$\"P>(Tm7\n5B/H0P(\\\nD]ΣqPR(Ra\"2CRTPR#t2@q2tP(hpT%9uC*EY@8ġlhn(\Z-(;Y=ʡ:3n:+:{rيЊrZD9.\r\\\"Q.}(%rAF]`{b	uu3,uss\"G(fL*3u}[yצ-UWzkك5^G>CtG?,D;QZFT*u&ChESŢeGNA_wF:4D%HY\ZuPwR֣RPSv(Q\'ԣT)T鞿ͨ? *Kzfz6<SN}:*[&*;\0#ʍD%< *Z\";U3U]*Q+GtAjYJ2Q6Pe_Q\\T |8CUZC&˨ڑ:W!^gagu4zǸjBpPQOjE.\\TwQ,STfoTߑۨ>c	Tj@4\ZgQ\ZΨaᦧícQ#F)gPTPcSqԷj\n_	5ueB>WD-MQ{Ԋ!ZcP+)K y;?Kh>Mehɜ|]h)Th(Zczj4ZֺF8z+,zhuZVЉVX@o[>VJB+]ۋ\0oNrt;Z#\ZRV龅V=~&w~5uSq1=ִ%5Fuuh=EOЦ\rhCWCaqڒg>&<FC^=CCa\Z0\Z~\rĝC)ЈP422Fͪ1Иhl#\Z&Jͣ\'4I5M*BTKEj.nhz4Ds@ui{%Z--ο>1GA[k@[jOZm6h ]oh;ZNavhy>dv,uC\'E_\Z/B_=vv?vB;/D]F_v~\n\rnv_;倾a7&=^Z^;\'wo[#ѾLoV-2: HG<َ|U`DSP4tX}N^	Aw=FGy0ta:*:.~B\'9NG\'->D?YC?~B@@=+{O>)z3*g)g/9/ߣg9*ѹ>t^Eşt!]hADBѥ24]FofЯѕkJqteirTt1*\n]UEW{H\ZQ8V;v*BnF7?F7E7YD7z!\\~?n}\Z%F>zݦVdno2Bw\ZDw?	П^Awv\0GkE,<FKa+>zxh===UA]F[\Z=a\Z\'Sѳ*蹪NϠIϻ?z0^?^>^C/{@FA{迈(_i1fLfSwiT̆\0fC>#W#Cf[fAL;Fifg<FvF+FZݎQW޼b\ZFS\06т``t:1W}G0\'11́,ḰzUvc5cx1[1rƘbL190N`9݃0ga,\Zl0Gyn0`Ub@$0U(nO 0J 2T\"	3\"apcV\Z7Lb6G1`\'CZP\Z)CG`f2EY4eb1- J#<2}XÜTm?r`la;.C̙A̙9>Yf.WWUk2-n(X=\ZIs^l٘ Y0yp\\xb|<10_@owLsyc\"O`>dca1AZ2L(J;pPDNc\r0TLܿ	L|Z>&*rhxx6\08?Is<yRIy\'I}iIa24IWIOLaS5L/&!&gq\rW0y1yBLnŐ̋0buL`LQOL)Sryq\'SՊ){yc^wGc|lƼżJԊc:%c\ZјlLR2I)}/Rii]bZa>6a1=%1}7\'1}g0_*001%o0_ݛ1%-̐	3\r3\'f(0Ōw`b&a&fr1S\\fʉ؆Ml,c~`~eaJ7c01KW̚Kif=\r^׏]lts+y\0+ŘJ9J];bTKm*z۾*ʝ*<\n&v+U	Īê	X:UvZ4V?Vv!L>v;֏Ww_bZ5\ZAjVXkXX籦Uf	X%-]?XWuC6Cg5ܰGnaa+Xx`^,fafX9,2Emvb.\ZbXl	pyKpK\Z~~,f&3WciX6/,J1rrMS=X0E`|P+|cEaEe\'Xk dd֦:3)FP<\rĞS={y蜍utabO΂`ŌX%c)u0\n9\"q`&r^k>XLZ]>g{;;{B\Z\rt```\\!2!ؐIlĶHM,6J|\Z	(6~GlK+؄\'\n6;lҏ}d	l656y<0}tSzĦ}>f[o`3We906\'L	r?bk0;dlB\n>|[>[؊-0Ėkþa_eIbX\n؊\n[1\\V6V`{7ck-5]l}m+~\n¾\r6\\mh6MUVwğw-R*ؖ%^/lK:g#llkKlk3MmgVc;WlO@;;x1\r;Xe<=a{b7R/%cͯS۱Swag6!?baga缾b>.bS懰Kؕa\0*nK\Z\'\0\'/\'y`\'q5F2mn;m^msm)qۧp;q;GqʇTT{`8pjqj?8s8=18ݸ]qup{>t0n8;pzS8}<>N$no(n(g\ngb~gxę1paXu;Ew4w+wކ;wA\Z/`58=>LlqZQrqG8`Apӊ#ٌك8Rꅣhkn8},2ı~ǮpƱpA88!4N8҈)įcqL\"\ri\Zg;w&y$FmV!m}c})\"Q~?Α觊;G99qNo[qΰ8pW[[-ቻ[cpu8=ep~8N.@\Zpb\"t$aM)`\\0:8/G\"\nCpsMM{	{,%\\܍~\\;dz5.n	ي{KԊ{=Q==våA\'qongqߍrr,pqqyP\\9[qZꋸI+K/{]qjW7^^%|+*eqٸZy9k]4\\󷓸X<k{=׎ZõO#pb\\7N\\׹op\r\\=\\/\rډ#9>=[-nPY7م>Syiىyw7^/n\\+7>1}}p.2f)dܔsv5T17Caf(f!_p?U~hqFqɸe&g([\0Ec҇Vܲ0n9\Z[~BVA/ܟgŸ0z8m866fq_qfozp/^f/㏗.PRͪzx/[jrM&ea3xoxA0:SW]	^]($~R]n;m	^*9^-ﻕo[߿T?47Tqxc(\Zo|Zo|\Z8o	\0o	o77ދ?T?do>?Ƥo㡖<a\']_C\Zx\Z~\'IE9xR[<l+⤋zi-x{?6gN\'|P2ؔnD7xSAdi:6h3{x)R9®k619)\"FŻy݂Yxw5{`9v:\'\n=1435yMxP\'9U{}_+A$QWx|p\0Ysh;<Ћ5G!yh1|̏|o|\\>|BK|\'ÃFA\0Yc7}gNay\">k9ղ՝0/:/؋/~/!_Z×\\;O+L\r<oަ|U՛s[\"Փ\Z<|9|\r)f3`|cyk;Rh1mb|k;u\0xm=%{>{k>W\"sa\0sv/P\07~(?ڑc*c\rqbG\num&\'Ud~~*D?x?=gXe9I&M\rgy\r~A>}mDQů?}\'k:2g+zV?sM7n6Bkfs^W6U¶iAQPFPl (NCJBR @P\n\"\\C}5@P4Of4n*p6/ %hoK\r{AЛ#WZ{/.}%~F؟=APΆ`&f\\\"f~<$E0W$T%9F+%	0\"ȟ# vd3c!`)Jgpʮ:oH+Aq/(5L B\"P+h#ڽVG|&p~Us? w$ęLJ!Q+Fp\nM8Up:*`M`z`seF8A$8._	._.Ğ#8EJW\\z >وpu9՘buk\0#:#}]F|.|/<	AƄM$RjBfR	a	ws	ubB\\!D&b	do!iw:!@HzcOHYNxԲBHmxDx\Z IN_&J<*\"d	?\"As=(5BtBoB^t#!ԗ߸P͖PdRG(*&p&%+vBOkm#RAB՘)9ފиExw{Ox(KhuAh)\"\'	mTBۥ;v,S+Kè\"_	_	&Մa\naa 0jO\Z\n$L	#Ƅ|M0Jo{DL\"0ٜK>L1%j%em%A%,(<Fu_u¯&[Y8a:CEº/\r9+0yI7\\GpN%n\\#JY#$JGe.D@}ll?qˑ-D1|/qcQIzTqqg<Qx!QUOewZM9GAQ?Ox`@4DFmDM2CaCMXo_GJ{GY|oD`%N:CD/g}D\"f9?Hĸ|\'b\\	fDB6(@$&CzDRq\r\"\"ҰDQw\"Ldc7Db\"&3Knw\"r\"a7KCD!hJ<K#\0KD{%DvOU3O#Hӵ=D\r5k6!ExÇx92xqLLt^&ƲSp9ѝJtg8˺u(ՂW*DK\'YDω/D/	+L$%ϊAS3P0b裗İw\0\r❟ĈC%Fޯ F)3Q.\rQ=bUiCb\"CL\\$&pI_])oƈ\ZS^*3?׈_mz\'\'Ww> f]#D0$GzI,(/ }&1%T~%!t\" &>-K|vʎ&)Zfr;X@\"֍%ֿ!NlجHlU\'|Ip߈ئbOl#Il#~<dO,Gh$~R{F{T=<b/&ΛŽدJ/\"s#[Ó}Q|6ql-֋3;֒i}		D<q#E2J:[La,T88qNSH[&,HL\\I}#5q\0qeq=J\\?FЃ7}d<MwM7M٠$	J}@YbpK\"(\Ze7;Pqh\nl@%׃%pp_P9LTyՒ	ZuPFYP#Xw_154PԶ}(hp=p_6f&7;*\rAC[6h\n\ZdADxc4)w7;@QU`h	-H*X\nIB70a ,o+ B[\" \nB \nĎXAb1n:dSI*+RLT\0vͪ (A9d  Ț\09$+8rW  %ȟ\nl@S5(4v\0Erh^K\0OXSSN~W633,CA{\\ڗ2@v1p?Y:x-[v3!x|7/\rdl(x9\"~\0Q^757cgM7*;A<\rz[@o\na\0kzv\'3k`0*0-@w7O`aY0Z9.[cXc`50^Lx\0&Z]j$0)>/|z|H7)r!0>rO-L\rN7i/\Z:i7fYOۀO{LH&Ep0;(e$9`0#\0v;G9IIPXx\n,gtXs,Ye/2RU#	,D|Vukd5A`m:۳K=~\0|6\r!``\Zln?\0[;΃(X-?vAv\\8~BiJS2_=<5x8!g88>}\rS}i}tp]N\0Cs~8\rϽYbA\\.-z[\rPD]&l!4ڑd/䤴I\\\"I~LDR$)\"),rHbI۩XҎ4%$ej4Iy{DҴ#iI{H%H:\\.K1Nڧu/2tO:PL:0D2t&GL#F2?tՃtt\"d8\ZtO:##2&YB<I	\rJNd5J:~nt\r	jϭ$_HN\"ȉԁ$	V/P{I$\\R	7\"\\$ұS$8u~4$L${ؕĮ#qIK;H<)0$I\"~#IttB^t\"ct0d!tdG%V(\"SIclo_.X.dM.ՍHoIHRICnJ\'n#y4Z:X۷$	R$)42F\n#h4HQ;HҽvR)vn]R܋bRR|%҃ěDdR<OzHDO)J)gHJGRIy6r_E3\"R11)ە@}M{Lz 蚐\n\njIE;ߐ\nHˤB(tYTG*+Az}5u2T>A\\+$1$醑,FHՏߒjɤkIukӓt	RoYjt#!rҝJjY#?@j婓Z>lCj˄ڲH/HfO> u=&uCIqOI_6̮dIIUHao!&ҰUi8҇41;O4w49$M=\"M~L&͜\'&%<cEi^	i>thE<HAZIR*ՠRjz3i_!WIݷݷ$K%\06yddL?,;BޒPGޒ!ˁd9j;Y^2,JV +\\$+>o\'+ْ+KޞBVKI#+W4OUUUU{d5RnC&Y2L֌eZ0GY󸑬;F1\'5Il\0K\"\\Y%	[Y&wk&&fgfdm>H\'٢<|w|3J-ߏ!ʞdm2d!#ddHFQrwh\Z2Q$KdrL S6Ȕx2Nf92g\\u.\'uc2d\r ރ,̸EN\"k>O:gudkG+)g46OMF- Y)䳮4\"<|!}{Gv;IO8Cv\"4\"\n!rȮt\Z#||Yv|~||ѕ|}\r<|C&{溑5\">`\'٧B\'\"&\\^!fw$OCɡprXl=ΎEr̵o䘛S{Փѻqugƒf+-I,rcgrrU-&f8rT1T*99êd/IhKdr&y?9sΞV(9_Cή p9ȅBrіnr!\\q\\|N~ҙ}+Ce7!z`C rUf2ZZ҇\\W\\HǐkT뼤o1oɍƯM./MoMyZ{rkO)r[#rG/ܹ/_ɽGB}}䯼&䡚3Í[#x	\0<:\r\'u~{߶$O\'\Zȓei+yFN9MM={<5<\'xDZIWEoU#zMenA$ku+n;)/4JźYŭ%4pE1E\"e&sK%7EUEZLQ_ʣGH{JM,.vh8R(:u딽\Z&6ʁJ8p%0b S)F14=bNbFR̃b)e\\ʡW#K}?)z̗ȥ\nP\0#|\n\"P(#(i\'\n	\nl>_g/QhWGi\nc/\nsHapLa\'pU	EՂ\"TDPNQNPl8\\M9r%rVэr|rZr66rNrݓr>VrCԆtԑlt⺓pcp\ZOLERrUzrUmr5OvHr|&Zy\r`ͺmg(rO)pxz)^E;/NKJUJP4_RBj(!#є)wQ¹(w6($JtJjJW)%ۄ\0YMyMyK$JR((Iy\r<%E?By@y0%ˤ_\"PKz)w)R$WNɼƣd<HyWϠ<(ARr:Sr9a|PJ~ʋ.+BD--J%!򒺇RښIyuRvNx{DRGy\r-ƵR\"OyJOeSjۺ)ur)j(o)\r=2ffʻ܇(~ʇZ݇(m(g(m?)NΙ6\'J#\\)}PJ嫾e&2ZRm!N)eH2t22*s*QƶQ|.RƯHQ=@|ǺQ38T[eʛ2#s27âj ٪\0hJg||e9gϙgM\ruĕ~*!@Lݔ@.UusZ[d	m]-TN&uTTZTUwTU(WTՌgTMX:Z!U-=uV)&ى\njPu>Qz!TKTQu2uMTTH5{j͓j=jvLj=୿T<8Оa]%a&U7\ri-kTpѸ*#\nM%SaWM\0hϳTܖ.* 0H4*f@HRR\n4g*}$2PY=TA*R-v \rU;O})Q̩S9bU\ZաXz\'(W`WTGX/ܗ!y\ZڨR;N_S}ͩ5eAT\'T}ԫ{cWW˨SEd@TOy%zpǊ#K\rԣ*yP%jp\Z\ZTA\rv Q^&RﴼwיԈԘ-Z{hXOԸ[z$mꣷ/vRӆS卩LRAlf:QW>?5+zǢ풧7GP2ԢWԢu9jZ/Z{/Z&S\n(jn>\rzJZTZRk,j=}VO}r1{t@mI}B}77B}J}{_cvjjـR;cjI	ΙOJ.\"jWZ\"UkhKosm)`-uXut::^-ʆEHD:!c:{iu:Go|H]Bw66.ԥ{+QUu5R=}uu}#ufu{׷=O#_-HMs݋&;L,1M@&#XҶAѶж>5h\\WhiJ	4K4Fm\'3MEc҅Iv]2t.R*MSMq`h{nPi{ =σh{zhڨVW	M[a,M_!W$m\"m%ځ4eAOa4(\rx\Zd;fG3𧙥z𴃘4s@a\nڑy4fDYю IT\ZH[Ӑ44\Zq\Z>M:id\Z9nFQQ`h44<xј&\Z[ΧWo8tƣni®4:&\neN<>H;yfs=vY.ɍrv&F#܀vn)v.v]څw4\'_4gIsw\"b(rn+ڵ6苴qRin-nyd<Qhޙi>|[#i[iWe:-fއ5ZZlC-g-\"Kפ=>%/%i}ش--AK+@ˀgўߣeIhϥhϕ%i9KZr\'-ϨwN{Fˏ0^+\n|UhiYB\Z=>Z3ZeR>+Z\')Z̓&ZwZYZ\\Z,V~V7V%@h\rBiZ)ZSGF,Okڮ-@Z{@}ֱe/#1Y@NӺzGz.e+>JӾ֡|H8Iw6pq6ԡD^ʹew\ZmؠM>qM\r7f\rgh6Chshd)eڒ5ڒ3Tɤ-T)VշVwV{nVi_h:?_\\cʷRh7T]n_?]*]d}](]1YcVtebAW\rOWlBרB>ZN~M~~p;OѶqnSJ7.쥛=Ч:N7L7ϹD?O[pbgV8kUP-ݪ}vCgp#Uӑc\rtT:f\ZkEǆܤcӴZw:nLM5:N:-h_I3:IN3ktƩY:#zΖDg9t̓B\"yjKtލB:A4҅~?1ti58=.ΏO<$Umu63tGMo/ӝ_/x]]t7U{y3F)7qc+c)}u6SNEߤ( }oAA`9z6z=EG.xУNc:zܿez|p]w\ZUzB)z/z,==,*%G\\?nHO裏3v;Yy^ZfRyzi^I/	aDEC-Coť_w&?\rw_w{轂؋ބ(zo5gVzr(>7GH̤p[>>E|>>^x>ިAm@F&A8y>Lv5[\"G>}_}n}.בhvhM_tܣ/YW+髚UC{2u}!qi,!Ɛ،a`Ȥه4bcaCn6C>&zPt-`(.80vj1O0ʕ{*eZcc\Z)C힘+%{4ihdhY3Hz%MC=`|{R7c{)}$\Z@Va0\Zf`dRGA݌c*cDmЊ\\5x0#&qǞA|Z\02BO5|>`32!֡ꌓxbɏrp㴧?v>Їᠾ\0{pd8|d1g2ί2.f0_1:*N\\\ne%Z&ɸ¸L2g\\g\\2ܼ2uv0s AUra\rVcڋ=uȸX~e3363i `F#4ZZ 3b?b-0\"TQM=F{_3`Ux݌ÌFYF8[G	Ͳt|	#Y7#{l1`9\'yRygz͌{\\\"H8.Q#JFSFE6fTtU0^92*eW%?op?Ui\0dTz2\\6FQg}^`[2{o)1z2o߿c463\Zkjw5Y{\r{>lcú`|d1>fJ1SNSs?ˉ\nxMbD3z=ջ}O}zWR\n1.ng<go1÷wI\'[ƔQ+ca&<cmke<|1Y<Xb,\Zb]Ҍ??kkU\n3\r9ߴ<?{\Z:)ܔp)u)ّ܌aJ㤙2Ԙ[/13`a1宾c\\gk\r0d/3\\ƙۦG{Pi4s:Sr5S7e]]gf1w]f&ܕ=SԼ|9^ejeOdsw2BN0. 4Q4Jqb\Z51c&&d	+Y=Cs̃=LH}桞8^aZ\" ih<{<<ڢʴ6dZleZg0ckLL`&(	xL&\"܌,bb\Z=;8*_}IeLe&5ImKf%LzI&[,ݭU19L,S(a\n1E7iL\r^*ȴO2vL{txt9t<</f^hztBW3M̋͘LKbMhLK;n6kC$_׳\"7dz8D1=1=	W|^AL^oOV&w/wQg\\a332̀kqf3lhyGN93y.3BqQwMbF>xʌd11DCz{\"flk}]}rfg]̌s`ƹv303Ĵ3fSfrWCw3IMΈ1|bTNef^af֘ϰ^3̜ߎ#̼Dffu	}̂t_f%,\\gh3K1KL\n>2_aZ[cbǜf)0\'0+}Go2s5Q̷Fon1׉f\nlcevR2o>fv?Ybvya9_\"k_=K̯-j!S^s-Зg̡T09b9HcECceLRCs\"J99Y(˜vǜe?aݙce΃\'<KyF\Zsee7ss͞1np\'\rϒΒT.bIYKdɳd<nd\nY\ZXn-,9W,w?Xz/m2*mjm,\rֶHr7k{CrqY\"7K&KR/fz$diaHft6lXzYzpޠAp־=XoX5AC/``YeeQ2jmcC,+,L:`#e2Ob\Z`qŲ:*`aYM&5>a[&7/X-*,K`!d3,\nQBg0,P\'obYd,JQEYo\'X,\rא{7$Rv%a	Y⚝,əK~<1֩[{YMlOUγra9]aJ,%֥b֕7,<e>*5uu%uquC.uR\\dyC|^<f|+g&|JYGX~ҫ,wY~x<+Pcf}\nwa9ʺ\n/8ºafˊ~bEt~cżu˝̊?e{Ya$Vr+J$d$eldRgXiv4_VZW?XOUa_YYrXy>VYV!V~N<+2U4Uc:Lffko*XoX5ze_ViKV;ղ?HC1ǗծjOcuh:9ΑJ֧ϷY]Էn3GcLJ!rYW~ kb5体5sb\rߵg}n`M)SY/ر&YSXtxǉ޳fdRSXs\\\\%k> 5uXg5d+ZalFVbwVYzGY\ZY6%to7=mdKdKR!|Tqv).&-sʝ-s;)Q|[n[^Ǝ-2[V}Vzq΀Uyll_*ljϗze\'>fc(]`uٺTH{_]@m`6؇<aa	f[D.>gC?`CٰZl|3gQҹlt)`qil#Vxe6>\0(\rNlR+\"UeS9Zl=wdFlp6*W9r6ǭ͍f[O|E6!-HXb{٢$<[4Ķf>V}mk^Ͷ]̶Mde6>cvg;4c?g`;f\'f8lgf29o7ۥvc/5d_ַd_/;e_d_QWf_mʾr2}mҎ}m}=ʀ}À0=[v=Z7^cW޻3wo>3l_;;X;;DfƳ\Zzw\nwOw\Zؑ4ّgّY$vT	;S1;	;:4}g޼};Obǟmbhc?d?hg\'Z`?5~ځ8z7;myv4;=\'?ٙ<v윁\Zv\'vdvnG80?g_~Qu]d.lg6KnKOK\nKo٥WXvs]am~ӳ]e6<\Z=ew\"]nϱϟ_n|bMg#ϲN8oes]a{=6Ğ@\'N	\"{ {+!PgO@c*{7b\n7s&{i<{i{0\Z{iUd鷱NE9#\r	F**g3GÑ\nlqpd{-9re\nu|b$GeGeGmQ>1h_Xpt/ps*]쳻g5.k}\ZǠٟc\'LscsСsYcn㘟rsC,<8q=ut{0z@>q\09\"H]\0edAg>`x%<݃pR\nLJs{ÝCrHK6r{>ΡX19oFQ>awqNm *p,!sU9\0sć8*.kJ5:s2(t\r2>Aqa99xqX看+\\H\\xJ8<8K^8\\Rqr\\*s\\SќKz6k-KS#IMx\\pxws|n.qnr8~\rDN\'X\'87\'=\Zz߃ȹ	qN.\'zsυɉ8˜xe\'X#\'E{pK<hsqsa#\rUN*IIs9IfIW-_ᤧKq2kKga,]NVSNV\n~N6}ґTɟ2H9%iO8/t8(NEn%uN%SMTvm]ͩ/xrގ 8\rw|8\re9fE\'N3:9-*8|NkC;Ca-a7ltv-N(to`\n8=I9=ʜ^0!NoNs#Bq[Η~ZNǜQ#gXj3{3j/-rƝqsќo\r)\nQￖ8bTI:gUg&ۅ33c3KP,zr~5ks~\'\'qdĜ`KG󜕟Οu&οx^HWre4V2-S\\-B\\WSWx*}e7WwW\\\\>U-W-\'sKD\\\r\\̀c\\(_v\\4W{Hk5ݿ{VO5l\Z|\Z)ypʑ\\c)qTL	II=kjr%*3lmvG-\ZM\\\\#;V6cc(.B=EDn\"os1JI\\)sń^b̸R\\\r;.3KjԠ!.mY.3/udUSe7*r9>\\z{Ą˽rg,B\\%W8W|\"׺\r毀{*2{+kkvkkG\r]:WܳgOrQָºNT맹.k2ҾK+w۹\"ՈܫosEl^`[soTfp=a\\B_n)Gn@n`n8\r9\rI↶<I˽v{g7<6n$΍ʖF}FqTn)On̪	>{9`,&*&&{pS/sSfrSfn\0nz]n܌\'ܧF\n(47j5B͎qvB~qsӃUJܼq\nEp_\Z}7nY\nnywnuk%\')ܪn*Uͭݙǭ|֯r:666]6ppM&vi6r2{ݸܮ|n_~#s-e\nz1Ke<v7Ekw|u;⎮厝IapǹFs\'q\'߈S^q*qgo{sgsܹOw?}ĝ.r7up?>|w5]WuSC0i_Nߑ$r<	7OR3OXJ9Ϛ\'-cɓȓ=S1<<ş]<hގWry^<՗<<:OXNힼӄi:4\Z44xZxZwx{nxxK/	ydy5|3<<1֑gLuG}GL<<$[ޡy<q:J,J;&?;&<;v\ray<}l\"Uüiaye\Z×kH%<2ģvJ<*=7ǔco]q-Gx[<ᶝ<q4D,D-Z魯\"fK$\"x;lZmϮϳs;?;[([s$\\9>LÕ5$ν?s9Ÿ<5z37,wYwA/[x\'\'ɘEyh]<DߖB=}H&/@//p[%/|Bgyah^8wWREfyQ^T/ڦ/ݗH_K#Uy߯Jx.xw2>Vy4	yϊxLx9]\nE_^i3Wk?xĸWbb+佔+:V{U{W+Uh]tUPyof\Z^;ּzhJ\Z5n\Zpek{g{|עznz<v΋ֵ>庛kx}6!b/:\'x_O|\r\r7J:~|fțD(]Mf	jo\'xKxKo>`yKy	\n7o5[[7 y#n7,%kjRD/o>ȗ˛xl˷4=Tyk|ŚRWJ|叇*k|u0wq\nk4w\nr|DK3|mp6-ͯ:~_\'??R7zo@@~MȪ|Q(mAEݭIPձ|ۡ\'@qG4ck|7UOr{O|%4\')2|J,O+齉|f>{p7k7&|i]2Z._T2η&e~|_X;Er.#p\0/[%SZs֑|Z|!c)D-=|/bWqWs~\rB;A1~!??G~oNe}]~Ϗx\r?jGqQm\'L=364p7\n~>?N$Ǐ_G<?%It>~::?C/~f$~a~E~7܆6~SWO3/os%~8K/KWGe3eN~-Jsuˋo#\Zݯ\Z2~V~x5k~/(o~HtⷫpO~ǈ/sܔI wM𻊷{S_]C. m\\)>?;AsrOgRS~3o/\rZR_״--	0[Re(\n@뿜y\'@\"T @@@Ѯ_(PC($v\rT4i(**TjO	Ԋ]ýLJU#莬	E\r</<\n6fB`n[phys\0.	(\"VY	|(yM@2ʅPN@P/\n\Z=[@gx@NR+|p6	Yմ@/~\nN8=XnX|\nNil/\\CF}̶rV[p^)PpnϐIF,p#.\Z<v.	.OOx!$5Ͻ-4G8K*\'	|\0_B t :(Uz`*^~RMpj bR_H\nľQ7\'$&\'xoC AX$HvO<n,H&x$x4R H}\"H͑<F_A6 W (-	?\nD^ŝ$^BSPq_[3SzD$xcTZT\nj6G궤	/ԧ޺!\rFkAh/	--\'_S3Cv<A|󇪠v7CзJw W1؏\'C3潂N(:E0,|y	-ߵ	_y$8-hG	<37	f*?rٞFBi|\'i%5%zk\"oPrKBi?B8t/Og̹[B0LpZPNPE(ׇ\'	_8fBڐpsBx pGpgFPU&T}rA.qS8T;U/.4r)4z(4\ZpZ8cPW!hBM0u\'!x^#g	BE?)D	n	QWJ!\\k{	!%2i\"!J-rB븭BI3\rᩲ0CUhExiQxUQ,#<\'8.<׵(<*<*]%\"(Be^m\r^bo|)5yE1zhztzˊ+~0߂0pG.ECQ9pSYao0BZuG}DV\'y)G{\"?C-N\nЍ|	Ħ(aIl\'L&\n7~\nSUiAaۜ0>\\-T?&̌$fH\nk>/x+Ff\ns}¼O¼2mEK(aqȐaқWY6²2ay7߄UU_Ǆuxa=灰^\"|;E6>6|6]66m6PR/|VR/*;m6O_a[oaQ-쨶vN	I?#O~=ElF\r3L##Q_P8O8\Z,&]-ֳMmM<Z=T8a!*Ip2p*N8sG ypp%\\g\n7E^ąѦ2?drhs_l}ۣ\"=4\"%Rm)vx8v<)1%)I,TD^\"h+S1%ڍ)ڣIi/	E:\rd~!*wP\"C\ZPdNdR?)2fE_\nDEۊEEYEfA\"Do\"x	<3MDUa\"JaZ-B_0/E}\"H#Yc\"0FGNH\"o5QD͚\"C\\PqԊ~P(^YYYԊN:Tl5EsE?GEJs y7?B5eG닢[.E+t[=\'vxMt}և\"ȋ~AP$ Jo(/MLlFBLE(]Qi(⢽(jo(N>\'Rŧ=ȋ%6\rEI.ҢK4ѣDE鐇F)Wy(3[W=R@e_ȋEٝQh۽7JD\\QPQpTT+-*.J^]y.zuQ&&){(5\Z\ZD$5ѻQQiIQ9QlĸQ?U\Z\"Gײh\0Y.\Z*\r\Z.KDcEcѸfxNWLR4q\"D?DvEEܞќNhiY4[RV$Z~M<Ѳh5#+doZ-o].V˔eʰ[;rpb,/ZxoJǴ;XwX̉w\\?#ޑuJ(++#abyXMTfK.5Pbk\nb!XX&=\'~\'֛mmŉn={V|ؠAlԵKl,Rl|]l2IlV&6%?;i\'p\\|+C|l[Xz,_CNZb`\'FtxC\r1+w	*Dg1,&%%T.\"f^Q\nb\\	me$0-|->u׿b[)-onLZlYlo.+N;xbWbG{=ߥ+JScKy+e+@}dV|M.v\\|i(qX|m*xM|/]|\Z]|랬أMi-7{\Z$ד(WNύ1\\XQ\0ea\"єd\rг{?v+-+\"\"Ew9w\0H\0!!;\0!Ol@x (?\"6\"|\07z7\0QJ(u@ԛ̀e@4?sB{b>*\0b?S^ H(\\\'\0n08cA\r\0\\\0/h2[yl7799EI)@A@^$D|P2Tl\"\0**e*_|<x<x	xJ<MɟԬ%]=uԾ\nk\0\0åuF@C@kV$c%EQ4	xu$mmF\0__(\0zY>^@,	vc00hNN\0C#I\0#\0z\0%ex	`,Aex\Z0L+&{ɥef0\0==R46\'&e\'`3`OsP{(g\0XXvXAVVϾ\0v\0֎\0\0֛&DFm(ߡc;@9(_ ʿ\0*\0s-恛Հ[,[-mzwnjIZR\nPPi(ШШ_h|84hhv{P29:phŎZ˅;wm_,M1@{tࢁF\0k~*:h:uNI-.gI@7@s@wR8oGO@ϦC@/6[xӷKڛ<Vtve`sm=\0^t^|g80H,0I@@M{\0@h3 f)aQ bh Ļ|?Ӏ@@ yhHiJ7XK m2H[2f*m\rd_\0-@=g#?@K>Pr(=J7!ao!Jo!c7>C߭+>Wg1$0z0X<\0L*=LI&C7>k9Gioc1߁Yp``v0q`+1yIys|_{Eཨ5`X\n,(,L,l	:,\n,>,\n,V2=gU\'jK2\rXNw\0\no\0wo;\0lG[lKSؙ7v\n|	~5M>\n||kD\0D?Gv~}$o	y;\Z8pb&8Y\\2ni~\0~ٕ	g39$Z]Og(G[n_rz\'ߴ?7mׁk7A27  \'ͶQ͒<}&-%b%Zzu%:V~V{H\0q#HwS7Hwg1Ha\0\rO4<\0\'4dd&x2/ev!A K.%\Z}csEgdmbv\0S3U:kB~wIAN[UANAΠ%U?7#e@GЉ  bB\0dqd=ȧY:#ځV7VAmt@@Х^((4S$S00&BA_$AxC\rD!I `ip= ܭn>g_DAS b,bW8QATW *>:@1ib(ػn8Z@ m\n$LpIr@!@@ѠVyPXQPd8tuPtc(f(V2C/@	Ar($z\":	zYЍ<i2ʼ5*leߺ\r\ZAyQf|&(PiPr7^19P	PTPrtt086TR	Tje*>N*@QPУSm*u 艷w?PSP/PQj\\	jzXj~jj5r&Q P|Jjp;j7ԕ#PO͵Po5g{n|_V:h0	hch*4\Zz\Z~\n\Z\r*hc8)h<\r4\raMGBrZN\0!ho\Z	Yd\rw<V{Zvm|\rq9%ɀe+`RX1\rV,+AJ5`ehxˡO8_V:x[@x[#x[jxifV?\Z5>k:5Z``΋ΛxQXقR`}I~;Xl\n64\r.XOFq/`\'`{TsdO`;`=z!{_YGߒN{>/@GUر\r|Ķ|4	 d1),e9l>^{|B{`΀=-^jf`wyw/	|RӢ\nY	\0&ڃ}Oi3:g&Ϫ#wχ˃/,=!Yp~e\0乀!`(b;GZ50FiAo`|@+w^dD \\T0&̔E0\r<~ywl~ž?%`i=Xڎ\0KǮC^p!CP:p(8l8\"b\r4GN.*<_1=y/~N\'zn\')8\Z8C\Z*Z&ECS7Eoo\'LoߛDS1α&sݢw!໘dp>\n\\\r\rw|r\r|.>.r:.feKepwpm6\"F+\0?֚W\0?\0?9~`-^?*?[k9)SK5)pmpC[3\\ibTn=ܚlnHݬ__=w}\"fGwo7,pOop7ྀ;3&]4xxf+y<}\0<ڧ\0bxX<v<0xb#xKOf肧\0_Kv,%(R-<zx\0I]փ_(nB4@#_BoCT *BT~@x\n![ll	qf^QAJ uS\r6&2BH :DKȎA4dǧ6Dt\0W\nR-dg`i\'P1\01:1ꉅkUBL(Ip4tuY>9bNyŇXWA,@ݭؕAZg[kدBC]CC>D88y@?Bߵcs5=q}\nr<<DjC<5 \r\'!3w|\'dW:\'(Qȩ֐3\Zː3 gm& ~{ ~V$9m6K!UZ R@`L3!D}`\\ eOn>/@E;!Cҋ:B眇05f!L*W\ra?AC~6D	q_0PDmDi@>B\rS!ѻÓ؀w(H\\7s	y?$l\n$P!r$HJ:$UJ\\\\V6  hH]kH<$k+&@!w6!9g+ yv|Ƚ nC\nN! J%HI-t)H:gGnVLy UlGȓʐ\'v\'ZTH\Z33fHm+H]/R%F\ZHKH3HB>yy\r;&1M\nc5q5ygC$(Ȉ[	d\0~$3\'K\n\r2~d9\r2|=LC\Z숀fdA~R\n ?yB7!A-_ EYY.xY?YK!+ݐӐUKU*$C@!!J.CeP}rP9ETf$*gBPPeeU6\0TݒN·:)BU>@4EPFT#Y88\nAuEwzǡzm>PHH0|7ԨԼj.ˇZ:9AhPkPk>m\0]7c6`kC?;@_A<@Cҁ8=cu:pC43.zPs4kSnu\"Iz2=9q\0\0s\Zԏ>,%\rzg;K%AP@M=Caٷ,(E܄\"יP)7C1CuP)%B	(#JJ%RPPft\'\nJPPqy<T9*)J&5h4KhM\'hhahX?\Z\Zm74R\Zikx߁FUAl^EFhCG\\hb4	XMEC\")k25ntYUh:EhFX4cfiiCQmhL{4/lZx-hXBBTGh	ZZr2ZE\r}B\n}\r}~?XhMfzZ{HZw6>5Z<RN0m>\r\n05v@;B;oX@_݊\rj\0}5\Z\0dbCBdݟRo;=mоi/[зϠkMۮA?8\0TmBǺ77AD@\'O@\'	[O_=~|\n:sEҡ?\nA3y!fbX%t		]>|\'\Zߡkп6<\Zq+t]&#m 6Y事a\n0ū\Z0\ZJql˗V6lm#vb5Lz\r+i^4i)tazr\0ӹQ\n0Y#&	flS3N<3`K`f\ZJ0>]ưP0V=E.A%ءyvs9s*srVy\r	7VNMD<a0st=EKX;\rD\0%0`\rCV`[0>öl(dT!\\WO`w&n	?킉tak0im\r\naZ`ᖛa\0ȣaWNîDî1%{KRRG`׃6înt2ej>eұ,c,}X>X2,p{(,ސ+ 8еV(	++,j+2+\r+	V\\\0V\ZVV.K\Z`:0X:JuJ	ONThÞaOoc\Z2{\0kkh\rkxku\rb`>q-\r9zS\"lRcwh؈{#5vfa`N>ρ}t}y<Mþ?M<}n}bf=as`C؏#|\\:w\0lѨx2JumؿM಼Ul\\]DWqŻ\0\\W@j~ p)_M\Z\\\\7j7\\\\oA׿7	7R=	7J_71>݀:M\'p3SpWp)|ܲ_qR[mv8,^no?0Ww,it;=\nwˆ8.퇻&ݷlJ{1~pl~M~	h	\'p689fpw;8FCNIpWN3j\Z8{οMb<.f%kprxHixHxPx@x,<><K\Z\05,c/ᱍn8]:x2<^w?O8O(<OL҆\'!7ko	~evwz#xm;<./x^(Fś5?xP+:^>iX+MQGǑsj#A?6\Zo\\7\r|7/7[Ԩ[8V:NU8\nZz\nz#mq@F\Z3BLp|$\Z|\n>\Z\"h>\n&ÿ~g@C9A\'X>|z\r/i</}W3kDzKFP)!x-;ߴ?R_ \Z\'JE^o[T_ P5CC\'\ZBDb;Wn\'4;ë;3m+&C+maD&eyQC\n¼VaveMu,X8Vm?ػֈpPA8-D8<GE!]݊88$\Zp \"AF#\\ k#%3ǳYRjC~\"NM!μB%ш@9\"RQ@C\0\\J@b28䇀szt>f\nUűAIf!(T\'DSES<j \r!\\Ar&D#\"TJGBW1W1F1.!b5DvDd=\"\"	{\0XHb\"nC$w^@&#R\"i+g7n nܜCEƶ\"ҭ)$Dz=\",\rȞڄ!}DܕFܝSFiACy#\nz^$#J%\nM3DŕycD{O?!sϫ\r+F1Dcd=h\0wѤhr Z.\"!uNUī W]rO5oA}A\rtCWF=sA1TkxcqvĤEbj?\rb\Zލ9?CN#濔\"~9mF,@~X<YX7 V,1KU&GރX׹\"6m_!X\"eT/#eʔvJHA\nrN䖾)X:r	j\0\nnT\"5\ZSH7HH	&H=H}~rgz?`?/uih1X4\"MG&5H3w1&ŶdE2ri$GGZ.#Y6QH[}{!!#N\"̐?W.9HV+_fOFz:Bzũ\"2#֍޳>sHz1wmy&y<y1,\"o C79<y^\0E^4!/A\rHH`\0	#A$; H&v	WCB͐0D*\"HQ$\\9 aHj	v+IS}HF^$\r׻[{#BH8)xBJҲmod.2d:\ZEGFAYȈ|dȨ_Ȩ{6+Y+OȫF7$DƽF\"&2Ͷ\ZV62/L\"A pdV5d2WP{H,E,!lECE$5yd,\0x>t}ȧ59duKvYKEJݑu#^ _4Z\"_G6=kF66 [ [hQI75ٶNGv\";a{#.C%!{]!}o咑oC. 5ޕi],rd2r46idTGcg,E+X29֔|FN22)(Wow;1rEB_ sqok,Hى\\UF.}\\q>;\rB\"׵\'N\"D*ddɶ(y\nJy\ZRRF4Q[~GmV\nNGQjVQ\Z	[QN(^Oގx.K2܄2.BELP\"PQV!=r\n=*((c=>Q=P6GA9Mw=QǶAsP\':-P\'&QQ^[PޏE(VIG$=\0BPͨj\'PG]\n)~_@(\n`(&A:P=Q )EnqGQ6Pb6v&E7@љWQ*(gJ|%IAIPҔ/(i%dBڢ\"\"b\\mP1Qq/\nQߨDpT(**JCB]IP	PZP7WnFE؎JƢ2VT	TtTZTf*k[*-ugDgW+IB?B寞F[WJJPeP]P* Zʸ:ԣ8׳+QO\ZbPOe7P5i*ZgTUc\Zj^QM;A5ZZP8]Tr\ned/ꕠեסsP7J7AinwƝw!T7~6jf}&Qfn7P/>>\'E}\rPQ_B/zo+Xf*P?kQQo#QQP!?OQ\rPQ_P?qMqЛrg\'r;\\wZGG+c~D[8Foyy\r5\rꞀV:QoB5IEhe@fmICV\r_@mE7ffgsܣmqmQ(އC	EL\'zg9O,<ϻ&9ɠm./n[΢ݎ~hoj9Q\'}rG:g\Zچ=>>JAFEA_<iIG_A_R/yT\"E2tߠl4`\Z\rA%Рh#h\Z\\胆|8)lEÕ2=hx\ZF|4NpA8hq4э34ch/4}fچfz!̌}h+4F(_o{\"M*F\0fh&ZPEhA=2:4PGG\\\\FG7q1]t\"\"rj:VNB_WAo@D>N\'CgUCg:\"tn~-n~:OE/g],@SХ貸Qt]tWtJgG?xǉj\'nSa)t-t-!]gh@7$_ԢMf\\t$wY\Z53]݊qApׇFAYlA+g1@!zgnCAfN:m9=d=\0F| =?s[+^W2+op5uid/F߼##ۏ̮bd~a-0(]bcvbcڪbtcKOb?l_wǨ]Ũ/bn`zoaԃ1Zg0:Xn9F7\\Jcm1#,c*AbLG]}KKMuUcl!aʜ\n1\n09ӯ1`)a[e0GZ1Λ1];9c/%M}9ǜ칅9߂99=vsn;La.Z^]>c.݇cb%qUSKb1G#l);׍Ơt10\rA+Ơ1^\\sCrÐg0w1܏zC00c%*5pbx0RHF(cD1b\r	b\"D!a\\`v`.bc1Wp͘xL?Lm/&6IǤ&R1i#9L$V`0#7)3VĔ)La08ʿGDS혧\Z+0SkSkԕԽoیi`^0/1MzLK**Ei}ƴmiyu0tb(a(̛vL#Yb}}yky:p[=ebüR0~0O0cc/0`&1MI\\dfmf\nUZ;zZ\ru9L<fzff33례q[3\nkfo̟&=bFfkb?fY ,gaV1k&0Z#fِlأ0B2pyM|VH>V)f\0y\r4v#}V5UMUj<\nj:\ZauTc:o;awc\rձ>X;I\ZdvkXݵ8<iBbj\rX^W=^j{`m~0w;CMaXg\n1;p݁uĺ`b	|w\r֫\n{23r{%E)_slֿ&pj+6\rşρ3X,\"б!,|g:ᨅE\Zâ|&-Bc1[\\X}6c87,,\'be²Y,;PnaeXw9,2ñ\"TJ~b%,V\Z~8Ćf\0`ÆIذy46^P`#FrƱQi+(}lBlL7ՎM\'aɅؔؔ9sl9׃M;y\n{#{u؛+؛\nfdc3JYav;^S؜/&ܽlnNl~#^`\"\Z-6cmؒ2p2^}x[[ލ>}4=*c2\Z$[[[j}m4}\Z׆m+¶bRmKZA؎l}·.{lbMb{w`:¾`Ya|_cvCNؑ5\'ر8X\rHq+KT#vNv\r\"aZ~~}׀M`g}Io`8b8x{|vp\0`2]`ҰM}\'Gc-oɘ+6dqʞU8tܖZVEp.)oRvqj9Zf?N!^Niv\r|ǷvRv`q&Πg003ۍ3c?bqBi|, ,i3Μb3O<35Y|(\n8$mգ88m26۫e;gOҌs\\z;xw%\0t+\Zwn,sI8s	on?,ɒw8_e8cW\r_G]hػ,^\\]\rwyWTA/ j8+jPNq0F?qP@>!>2p}q[xPNhp8uW~:\0#H_gpd\'8rEG9ꋣhή8m\\Ǹ3cUn8@%\'8z.88q\'yJ>pa[4q)pn\\Dr.r	U=RMͭUmŧlp	p	w*N*jqaʝt\n\\u.#.O=q{A[p\\A>\\v}\\	`bW\\ր+ggqVp1={zW=Yz\"uW_ksxy\\ǵZpmvp\\{g\\ggzW~^͛/\Zۿ\n}<o\07{7)7w\Z7q7\rGoFVq=p!YO^,T|=7޷fиYSY)sy܏Is\\HϔQߺ2܆\nnu3CmLilmG\r]W/*S-[[Y«Ujx}X^c\Zהy)p,uV;bzz9x}X^?+rop7\n;7FHSxE:~׾l~>-L=Vv~WwH5;/;d[GvJNgeǐ{n^\'n}^\rxߚ/xY)3w϶=ikL\Zk^w /AV I>zr\"px`c(1C\r}xOB*pg	qQlǣRSf3<:\0*mc\rxT2O;\'W񔃗<<Ւrxr<<#gMNlc<ϋxkx\"/z+K]6|,>Jϥ#Sy+7W	Z|\0>!>O>q,>%|r\"8O᯹h\\9EOoo!sX\Z&>>>$^_8k2_엍/a7|ez\n-|Z_`s]c]͏-L1|<|wz>w[3h~,p?Q?OOIO>__\Z>ώ4H*?drsu[iBQW僋zm~QGtKPF&(?Gج_IpRpݷ=*a{\\CPM#9Tj^A!A3bޟ=J	L\'t/v\Z~s9a[=B@$F!X5hl6yC	{{2Y}6\r?\"#8~\'Q&A#G\"{	G߸y^cL6\Zݹp6p<1Mh8K,\"x݈$x=3!xUIw	%`S0	Ww	߈	g~q?)vpnxpzp+upQFp\Z!DBB\0iK\0`s\n1! իȷk/[N%\'	k^b@ryJ ]#:,	d<yKv	lH%p#h Q%AbMT&D#DoQ+vܩ&\\)9OaGڙNK^\"{+<2!%3!~p]őp2-pV^	!\n!=-!N4 d&-١;˟	w1s=\\B~L(|n{C(.E(5F(dі\nRȾPYOx2Nx\Zut(>PJ+i\'<?:Ghd$T!x%%ұ\"Q!.yM~&tOd <CzG_o\Z	R`z:a$&aΕ00:L$|8M~u§)8s\\ѓ%nd*%7e·U·j6a\ZI>[@K#z\"_܇y\ZBwGE GXZ#,&6@2\"D=`|9MQi>qc-DgmH+m<8QQdB jA4F<In\"j[SDQ<Dm!ĝW>w\r\rJ{D0ɘ˗I@n\"ZGthǉh}fh\'ZmSv-{!\\\r}.oUc_2#OtiHtKt{Ety@tHt?G< C<-x1urѳ՗}$8\\,A.%aE/\'^TGU∁D\0c\0A:D4\"$	d\"Ypʘ$uhḎD\\<H\"R;\"tHkw\"2m!:$rglDN\"[Nvy<P(\"\'cDq.()X%J!RKbZ1bbؗQI<=CG%FEc1Hb8IEn!9 u$&>%Q\'!҈ijĴ[.o;oۺ3b&exkC7\'#wsb^n%1n1 X.\"<\'>xO,~XRM,$V޽L||0C%֘7)!\ZшĆ⋼Dbl,`eb˽XbkKbF# ؉\'h#;Jfz=*=vψ=/}iaľ%4#ۜ8gq(:8+q$EGcG87q\"h?qG<A	!N{#U~#7!.Pb⒊qL\\ Wv&k׷בB<\"iӦMHE$G	IiFRp\")^!)\"H\\Iq,@RHp$b+x#i$DzI=iEҊ\"iՔ\nH;$C$i\ZiriYdrKB2K2[M2P&!.veg,о$b7iwXi\r%Hz&	;EL* 9\"ى\"Iv\r4+i@`0tD=tOr&4ד\\}_<y$oݽǵI>|h|BHHƓN>$q\'P ]P#[%zL\nF\nVL\n]L|ݒ{<pF)@FI} $x-	z	:U%H1ĝD2H\"t!a$OԛDG\\%=#TAb\"*VGHygfK}Jul$$I)IR\Z7D\n\'_\"XRDҕ@\"\nFr\')ܖCZb~\'e&IGII/H7H7I&٤%Rf	}{t%rRn_Iy~HyUH&kq֝T`T|ThGzp6 \"TC* \'J&HegHeE2\0,GT>TqjTX%=TEIzOzJS$U[=$l$,&=>Mz@%=?#ɹyO!+Gj^ZeVI!V:=N`q;.\nA\Z\"zLH}i\rWR-Կ@\Z$\r%\rm]\'\rN\Z>r4<PA\Z&\ZFF[HP\ZOˤ\n҄O%ik%iO@.i6in7\niY҂1i=ҊR7LZNZ-%hCZJZ{HY?72YvSYn,7gG0	,ҞbdkmCdMd\ZY;Y	YoBHַ%룐dK䝤\"#86l\"ZMf6Ls.ټl [$aw6^6c&dwȶdۉlB ١i%og%Q/䣟`kcQcdep7uM>݊|<ŋ};C>9F}}dOPǷȧ{wl{@> EZN	89p¡MKGȗo+rp_T2S1!:24i}C!c؇d))1NF ިUzdL9r02*Lf#FdP-}?QGfY)dVH85iL\\-d|8Ckdioʚ/9\r9|%DRDvBY\'jg.Dk\"\' )Ԑ%Βo/%g\\O$g3w3䬮d`r%rȔS GYLy0r^9<94/rIQEʎA:C~49iVZޙ(\\ۆ!yOW|\'7Lˑ!7fGMh>ܬ`InD[ޑ[/%fɭ+*Eo*K\"W~׽.`5M\'r6sg߾J\'n%Ƀf\Z(RmT?\n<QAQSKnH) s \'/z-\ZˌciA?\n$y#m/_|.Eo%EN;\"nF(Ulil3~ʥΤS4vP(;St1->#PAi?s	\Z.&bLI1wPLQ̻:(߼(V-k766fA\rt؍nSR~@9\0.F9,rKh7\'c{c1[/<C&yq\\F9irdC/f[E9{rq0*7	ݡPp(&s%Eʥ\"J`EJ!\n%%X^j@PG(0v(>:JA}k\n=Xk)\n0XlL!s)J\nU@fRwS(̗֕N\ny\nt3/(&lE\n(a%b%_J8%7%6jw%d谛8$הSRe()]kk)<G(i)i)׿ZRn|\nQSR+)EJ?(y(\n%HwbRM)ͣ<\0lO)mYR҄{ޔE<|\'ao6r\'FylÎR4HybmAbSj)u\nw(u\0J֎R+Q귟<8$/Ki\0)z(?(c)mΙ\"K,.Jsu΢۷2mKy0~Cx{-eLHRp2y]2:2U\'CB|@C(3)?,(svU_\r_)(F\')\')&=Uo5ekn@lS6Xʿ9o/(>U{*OJ*ظSpT3T%3	U%ϐg_jj>NTTMTT݆cT&UtU/#U/)u\'%5UTӘj:>L5{M5o8LCLdA,9Mljӎj}7j}j	ږ8S,QQ,DR{P]~n?^Cu6`TuzRSzZdM=zO0^P@@٠^\n̥^B[ylt*Dk\n}GE%QGT\'e*j:b.S؇x/B%\ZQ^1:JҊdvs*s(~b:JKP#AT\"APP2\nGB*V|B?TJTIw(5ʋ\ZzN\rO}K\rI\roH+FWSc{q`jA25rJMݩOMRӞRo4SoR3SY*¨w3洞g_TQX`jI.jwCj^F-mZVvS\\>S>}B}ʐYjmC=#6/Pjܩ7m>ckҙ{_dM0<]_S=ԑԑzZuN=:=u|1:@~Eh~kPg39L%>\ZmÉ:WLGܡ6u.qQǩkwP׆R#S\"?cgip4YSM^Hgbi)4\'4o㴭rjirBjB!My\'Msl|Ek~DD38A3\0h0;͐fHyь\ZvLit |s*m5EZ4e4W44Ek\\?nƘfϭv`.}@I#wtYÊRHs\rNsZ_٠yJ;:Cy!Kh34o&vr(L.GDY|,|h)\\ک+^3:ڙ	(\\J/<E@;gL;GѦJ;oͦ)ӂ0MQ˦i!x\ZL#\rsm1iHY\ryX04\ZZEíw1_hD\0F{1ui,X\ZVع4Ε\Zh3&	74qtږMJEѐ#idZd4-jԆv\r8\\F|WiI>bZckߴkJiih_n`VnO:IKW\022)h},-{cvgZN-=TG1C\n6li[WfZv/Zq\nDVJh_io7{CҚ=?AnI=s=ü={Eʥ=W|Ek\Z az/ae!o5m5Ok\r伡:HZT\ne+UګikZ>>+ܚ](G{C:DO9E}}wJ+L{{.F{glK{w\\.|3m@ߒ6~6FKi+h\'YϿhXh{RitKi}}~Ia6XKH&lЦMcҾAh4wl\"6[,O}A~]2~-=9J[j}I[>B[yYhkuzșDh{LXh}u˕i+t%jJQ:}+	D4D_GhEט5lZ 56Lז*u{\'	tCS,hk+˶ۣneOB\ZGL[~mT#]8ݮ7n7J[G+I\02^uG\\At<So	=h>w~({N=)w}tύiNdLe}۰t?OKE3=t&ݿHP\\M뢟d3ͨ{+O/);/%/ZӃSyAt+:N#7ѡ^tLP	3xK>oD:7/N~ZtU:?q-(Ρ9tc}pAgWŅtaT).Lӥ-9hzz($=nrζ__I_?=\',\',{ӯiA6=\"===e=W\rN=f[\r߽}wp\'=OqE>ҡ(d?z\'_o3\nNjmjt&L<٩i3I=u\nGo8Eoj__p/[-Vjz?Nz.seUF?O6׬_\rf0akNw,A>	m6/;~ǝ\'7\'P}^vG\n}|Ӕ\\B_QWWWW^5\n}hzSJXfx#2\n}w;r\n\n-RbIRbC9+cs\"cM?c2c5e܅yШLeh3t61v_g1F/3HEivl!cWòc|êna}}aúc3whwÂa%þ+áuc~\r\04qS!G^4Ƒ$QJHKƱkW8:G2|<2|}13Ζ1䯌KɌ+&ی=sAƹ<ҹ%F\\(#>JP\0 3Q؂3`(ST;9~g_=d?3NQ|AfV14=.`0>1sGl-N#,C<q!mA3B/1\"3\"팫Y|Fˌ،FkEFJ#H\01T݌֌w2nP`,Ke,fjezH~#ʸcg_b8WF\r0q;QQԕxQ\\QqQb((me23O5J-N1!xhf4ƴ03Zw0Z]\"cF{wF5!㕎݊fQg^ceu2gCoI匑m!;\'	ZrތO?1>3c(Ƥ<c:P1ɘIƘe2arX|XYzʙ{Vgl@v3eϭr3g*V-{>3F~enfTߕ`gjT15fjǙ:\\<sǏ+L=_L=$s\'`f\ZNc\Z+m0wi2vgZgZ_ 1&\Zr;\'DC$<yɚh<rǜwt><&c0]_LoD;N{<fx>>KLߒgLӿ*®l?$OL@3	ĳ`n\"ǄJpoe&<KX)a\"}ҙ\'MLt1kLIgRәE&f2HoLde,S\Zb\n>3%\\fHyf(3;8s`̼\";̌Όy{3̌=deU3q;]}$,f93ofm&z7\rs[̌N\rf6]N<ͼby fT.N\r-ШY8̼1^g>Xg3K`̒rfɌ-Wf{1R\nr)11Yʬ[gVf1މ`Ù5?5GJϝh&o\"eYv\'3M/ݸNrgv\'1_mQbv^cvA]YefKb_OncV̱*o8L9/a1L12_0^̿#1c(kS-K;%wKZ{MV^RRbim$,m2󧏥ڑUa驯XX;ĲfϱL<,B&هedY\'LXV	b!u,;(^D־UX	֓,/YGVNXǰYǾ\\R+YYì,7tߒ:G3aL.&gಂ;Y7e.JX\0S] x6f,ts:B\Z	wY*\"ճ޲19ÊEE]bqYa,VA{;Źx;,v\0%tmb	Y\"K4\nteE \"wڰYWYW5ŬIXѵlVwŊ;Jֳw|`%hRRY6X׺cXi[Xi*٬[ڬ\'%ÙL^V֎V3+~#rmHV^6`+zqUlN`ֲJ.γ丬2\nUnzؑzĪ8Ȫxdz$Uuͪ	Y7j\rYf{BVKBp7\r5jcuDmaugO.zY=\'Y=&\r;b?߀ꯖkYCvyì6wֈNȡd֨F\nkWC\"kބEF_/k5QYǚXA4\\XSYo]mRiCUO5֜<k755k~Ŏg)֟x߉i֚dk=kkivvVV\"؛77|*-M9lS&ēZB-;vwVe`ay	٦ƛ٦l3ll8۲;mczmpmgv	f+bb_gJd;	lze:y&w}(a{v~e{)H^;lom[w%wNig3v@쳅=쳕g.QsgKrcK:`b&;sv\r?6`U\r![Ply6F\\a#U٨ltG66ZWb=β(96AuM\0k	Ml16YMvfSj,i07)cllh[-1eKؒslH[Z͖vCɇءaw##oQl/h옿eGqS+P;CvfUvA\ZN沯[\'m7WmٷFw2 |o);pފ}?~v|]br]Ƀ][.Wg?Ե`?l®sgW0&UXv~\Z]c~®eE-U^f7_fحZvǉ-.!V9S~kaNLnG>yǜa~Ö c26c\rG\'ϱSo1`OQ>w6\Zϻ}_A_Ir셳7쥑액0_eSc\r\\Y##ˑilJOerQ8jG!P{|6GRl5\nl}l{0nَ|Qas48Z~qstb78z?Z9679`Tg\'1f8f9!:+7g\'c]X?0\0?slq4g8v	gg?wC#E\Z`/ǹЃRqyqlad9ne99\'9N/-wu9iYK%笧\rl ČS#8pOs\Z9N@o/RP=RL\'<\0Ɂɐ8G8\'[!yqȖ2*PsWW8uWM5C0iMsOC-9c_9eW*GD7戾sBgp¤jO8g8[t2\'G3\'!ǅxI>㤍s97-8798Nz>((zNʹ1prZq_9\n8U\'8O9E41S(勜ǲ9o9\',95:1N#yq%OņiB8-ɏ9-7z8-VGNk\r8i+}i[t9b9\n8/99]͖noΛLΛ_#^ӛZ~3yk㼍伣p^rosr=8CӜX+_88c!!sGOYg98g9e΄53y:[\rOoIzʙ͙=ę̲_S-8oqs9K_sV,sVNpV9P\n[հ35Ά9p)+Aެĕ_ʍR|IWٿ<9Us -ܭ	NBW8WՎ8rups\rBVF\rv\\XIB%<ĵZ%qmev_{)r~rpE>krBXMCùUkHo#ܣ&s^.\\Mo={?qCqi.*\'^zxp=͹I\\?\\o-9Dړ\\\'?qzr6qq\Z\\Xm\r=g2=׸=/P^^GFp\n?`[\\xcи8. \\l_.a.]Q.ǥSpl/. &),r/	F-^\0W8QͮqydD;+J_irC0#7$7rĽBs^^} #(\'rcǸq?qs?s 9nrsnnʸ=\Z>{mʽt{ϽȽՐ̽g½f_fڸ\rYVmܬ	%n!nP7OΒ[^-<\'-[gsm4neF[)}>\r>1>3Z>s>W\Z6!r[1eBG[r_r?ss{κp{`y]gw\';bmw?}`DL~^+!xE7wj݈s73[a#w{;Lgq۹qW|f9wZwac\'_\'ҳ=sܿ\ZOy(ڡZw m(//OxOfoW|AB+e6t\'o[vo[{2OOtu>l]y<S<_]y\ny\0:tg̳dy }{yfxGdyN<W/xM:c7yy[\ZsyyU:3x^NN\0ΠA3Lv1û0]T\Znwòx&x{yGyP %Pby<E4OZ#<+j!*<bHNU:<btl1#W(c<CJL4wÏ\'	^jxB4OrxDO|1ㅾEE)EyQp>J_e^g/KLZRn/OnDh~Ļ5w;2//:/?ˊ*;;Kxw=k|;yw~wo xw+=H<+U^U>{<Ϋr«z{z0~^5WWÈժD\Z^=bi׬עk$0yL\n\0yoHh^o_H\r\ry[y1Wxyc/\Zx_xߣKx3ɏyƓx?2輟/ޯo2ޢs_8wz&o /TST\"S4_.Ć/Ϯ+xeOe`ʷ-l[\"[\'[[~o{W䫷*55=;;uwz|}6aoS77f;jdqo|\"\Z·T-/7F|O<Xo[roķo7S-mF<Ad!1X-i+&\nw??ōܐ?v\"y>٬?up53|$?\0?\'?\'>>6y#|@Y>·~aOZC|$}=ǟO36>NO)T|Z<O|30D3d󅽏|)	_z-\rԓaH;~պXE~?q7,yOWTN,\0tbyzu9y~C8?w/3>KwKFer?!$a2=_?j$/kr_:N~21~ü\Z~~:\"oY7iDۇ7_˾ww/+YL!spp0\'a@ٝ|?Ꮕ>ʟHL򿎻53S?nz_Co++CB\ZBF௽ȕ^ȕA4X@]}3@iX\n43MZ.w\'킝%?@mB\\`)0wFrFR%[`D`̇قݡVo{6}p>J` {Nu_z+pO8~wsY%8Z/p2(pG:.B`GN-Ix,^୺,89()T=i$YF\\2\"Dy.O	\0(\0fU\0=$x2RxA\0z	3O\0,\'%	:TW, ^NP_:\ns᳀U\"`8-Hg[W *@GN(@m\"t{U.D\\=KĊ8 N FCI|BHX$fn~ϞR!_gy?/\nn[NAZ t |$ANP  knA^1A>vfK`$(}ܷɿyf	Je\n뷂\nQ@a\nLT\n$ճN^\ZsOY&:\\Мp@<GK.x.,x dr]/\'/W?ArXkt^ c5OWy~A`#^QX	FGs>?|8/|Qco&>ɣ-Fogv\n\ns	߂NL\0]0-Tzf>b@Bh`፫`__,%&A\nPoS`P}VY4\\P[\\~QvX).j	uB\'	iBFKCBKyBcB\\	Hh 4שמ28*Uo%\0-}	Bvតֻo\nSIB6Nh]hwZWhwFH(O:xB}tSgdeΟ:^#tN\'N6B2йH,ty	]yB7WsxɞBB?=_?X\nV./^^R\'f݅A. `VBPm!.PBUnawBػGBBW$\nQBTP/\r_؏}B\\.Iz-\'V\n	_$!i!$\"dBLH~RO	Y.!++\\M&)\nBaPn/Cf=aaJ\nHxuQ!ɫv\n/	S}ׅig\Z7O;U	ob7soff\n:3;aIyaNj0OFFO6KZ	뫅\".aEa팰-DX%jV	kbgog+a}mV|W地i幡Ê\"x$/K}/_;_v?{v{o-	I.LXC8$%:?:m~~FplR8Z _-r$\"ڑ(*(ppvɊwippp\\+/}*ݭ$rQ,\\HM~#\\E׿	}=*Ԗ\"R85.RP0NxH1%VX1\'R:)R¶ʓDJ߶~mm5\0;ߞmO5T>t_E:\"|hǎsȀ=Z뉌{~L;̯͉v\r\Z,ǉ,-\"Nŝ\"+;]UHd[d\rl|D6,mXd,;Kdo4.YdhC@eP}Êˢèiѡ\0s?1ɈUy5&R&rՊ<@\"sբcY\"f?o>ul_HMtNJt|CtCQ,J\\-\n~]Q].ȊE@rfdGk\ZD`/.*/]\"9R.S̿*BGDTᔫD&%=CD.؛\\E6W%EFD\"HC΁\"dUeX%z5PSzK)J J%WR.NR/REiOEi?zE73onV-n>ݶ6meEwʈl4\n_/\rT;JRWQK;f\nvQE^T1@TeѓEO.=|Z!D^Du12?$yQӢEOԢ_&j]:\"P<&,^^PE~w^rD\nD=E}w)Ȉ>6%Fb$S羋>>}!͡hݒh1%}}i}+< NqE)ٿ4Wk_*\n_GzD&D˶OD+*kG>VՅvZܜhmH Z6&Zg&.޴lP\\m\\sX}XL PDw߃IbM/fYX+Xu,.4먿zb(Zl.6MMcŦEb3{%!bNŋUUn%w+xOAئPFl33(MtU-ŵ\nR~bxKuw͋?y+v\n#vS|`E3$JYf*v[֧O얈=vˋ=^nbްbhIWSDfS>]	s^šqq8(8G8{UDƅb/TP\\\Z?+t:asnbfE%F+GĘi\"\rĉ	AM1(&++by1q1Ͳ]L}+k.~@k1W1sO]j>6۾X.Žb-q-^敋öő{QWWq_\Z	MHqR8SY\'5i\r>߲[z3+6sg{~sFNsstyqQz^\\|[\\\\9(.&Kω+ߊ> b5/gԛ:q}7q5BqeUܴb/n cmLqs#PGܑ w_s~{[}Φⷼ{WߖCMgC}L\'\"!\nDْ+:,)\\pO(>$rVxflV<{&K<*]\"&k}!kg]Ŀ6J+?qix9\'PW\\+^So\\&8I6I䯜((Q$*V/9G$[C%~ܓl -ѾrI8WwOcUs\"љɔ)JP};D%1xaQ5ObfhSb4.1ђc{%B䝅d[bGb8,5}Vba.mXh%6ͻ[3M^u/URb\\_\0KrdjFl}FZ$qH_	x\Z`$%>,uT덑Tu119DI)^גݒ?%${K\\H.H\0ƉЎ?+\'A)`2_J|	n%d\'	e..7p%nXֿ]v+a>pHrQ^D\0\0ID y-ԄID7$U$dO+螕\\i\rDm<DHG%qubI$yG$u~ڋ_$7F%InI$SrgAMK.왔89H\nK\nI\n%F$%l$ŲIgIY+ER<%76II\'${$y0IcIc%ɋⳒ3O%MZwIӜY%#i+iS59B%~\'$/K^}t\'VHlz#)\")闼(pcH\'%	!%d84F2h!T$gT2&|!|||)|5|$v.o*~hwdFddmdVdnxɏÒx_;e$z?Ybd	8/YJI%$H֔~I֎VK֮J־$kS.%cRiMRYATTTTItuTc-UiLn&Uǔ\"J5Zo:T{T/IW/{NQTât$2Skǀryn9Ut$.Ԧp\\j= uaJKI|̒r:bGcSc\rRnۀx鉕RFW{\\dVwRzʠJzGzLMIϗK/{K/ٖJ/5J\0{)cJ\nB5KA3RXƠn~V	Of/E?	bRlHJPtRluPJQ*%RjjL)sCҬ,ä\\ͅ\0<*QFI\"YDf!Q{GeSv	%\n!H</9{s9{\09_U\0؀;=\\{@n}@K@Y4 /np\0X\0(\0r\08\0\0@1\0L\0k\0\0>\0~5R1\\\00ڏq\0n$0\0Bd@b\n\\\0_\Z\0\"4=5@\"@ǀ\"P\nP,n(\r((3\r\0JVJMg@T7:v:>(b0ic	!L^F:N\'|@g\Z\02E\0;x{u\'-F$oaNGS3@o<v_\nhk\0PH:`0<R7q:{ӕ\0^	LL2\'S/׻\0scJJ?+\0]\0V\0V/TT\"w\"i7_n8xܤ^T1n>\\3TTMT_\0f[cv}jujmw8p9ԃӁz/;\0\ZvvFK%@Yc/@COn@w#Nm@C{.ΨxБ<ct\0YS@wcGcc3o]g5IйMہ籯\Z/6^l؟[+N//`S:0o`0c,dnf^k>^}܀	0`\">cI?)0eL[L	L(\03[o\n;ٯs^oW2ywl\0P(l\0z\0AsX COE r­lk@xx\"A\r@T^M⭽D-K 0H\r$bg@*h:Ȋk@%nrm\\/)&@@:)P|%nt&L(;:oh\n|p\nX+d3?K5GjϣZړDco!E}F́Ok{¹pfg\'`+ruK<H`\'%s9`W\Zkp{<{fgIG9\0)E\Z%9pd\'puR7p-kgTpy788N|~h:N=oXZNgn^{?#|끿z܀?!*-	5K{ڿ X2_hCeIC2D9v\0R3RUwy xzIV>9x\nҌiR@A:>n	ڡo\nu`dXdØ XDɩ )_$ho>wо<YIPy:EtЛ\r4YiYmzd:\ntg:Gd=tK 4ܠ _gAA<x /\nWI5hw(\n>u\0|AA\Z7pPr$|ЅgAa@ᛋA P)(\rVPEj\0%Ԁ7AIW@)0Pʵ%P`\n\0J=z\rtc,(3(1(/\Zɉ|8o\\Y-\0Y s+j>gA@5aa@؂^n/r@Dh]Aa\0]0I sCABa(#$$6P\06s@rS\r*(oV:\nAŧJ鑠2D\Z5aK#`?OPm)P-OԈ\rz|z\nz!([j_+un2D@YzPsnh4<hd/\n4\Z-j{\r40h(h544l}4}hƥ4{:\04\'=1#VM	V} X3T\r$:ی[[}[\0o/\n\0 >`l|l\Z\Z+O{f&\nA``q{+Vw/`[nmض.||=qgBÕBC81\0>iH;mO	a``7[{2;2̍`XR5K*> Ϻ̂\'AY ^ph\n8}	84o/UGz\0ςcN׀cXo*8F\'Z\0\'~_kf>Sid4QC~\n8J|8?m\\,8|w~+.VB08^Cg|\nQGQ3`}F;s0Z,&[`g\Z2`=`:\Zت\0s̭``AXi\0-%jn{[<nH:le[*yG_<Tph\0\\|\\HWǶ!8i$T\0nxn: \0?ف`p3\0T\rnk\0RQ\0w<w@Z:AIo5?x[Oʑ>x\nOWX\\<zxd3<-`m.kx\\C_Or.\'_lOzgY9x:/i߀ך!ޏBL$Ey\"XŃ?0i	QٜlQcMC}\'/A`w;M2D;DǱ˼[?3<wɄCu V {AL {CL-Bm?	1GC,^\0XGAϸC6=9Z=nQ$)AlC- }xȉGg!j!n{\Z{=#|\0⁫CtALtBl ^\"Fa@|3!H\\H^2$	)\\2\\JC.DI!_k ?C@;-!qkF0Hk%9ZzȵyuquHZ6ȍ !\n	C2r 7!Y Y3슭qHNk8vv?rg;\n-yۦC\0N@	@`ڲlA;`es!xC#(Tl!7@\nKA,LyAh t!Orj~	aA	A8 *D^f \"\Z42\"\"3	y# =!ED1dRRfyXy6lԼ#!\r>	\nix\nҔV	yRIXAZW!@Z;@^\'A^{ ]HW/.an|jS|	գ@z}4 OA!>\\H_2U	2ԑNo|9/L\n=!ߓ ?: ?B.@f~C暝 s\"OMMy[m\";y/wmȟᓐ鐿q?r !>d\nTq/JuFTPU[Oy-G@kc\ZPm-$TAQn1T_\"tit盫]HAb	559pwBAM<辣9-jэ8~z=!!=jEpZsGlУP-PoPPd豟iP;7P; ~7a!,		u:U:o>uֺu=\nuvƻC]AOuauzn|T#Bϰޱ\'PCP?.W;@dnА%s=sCô@A/]J^(wh-4!MM~z]z4?M.~rCoj@3R[Л\'bY[j.y;8iAAPp\nIjAalb+PB(ZԷ:P.32\\t?@(߀r<PI*ԫ\nrOx*\r*Q*JnhAoiP9z.ȴZ\Z-}m\r}ZC2hUZ+	Z=`uǈF5ɖ\'\'&sFmB\0m\\>v@@[|Z-Vy\r4:ں4\rm=}9}}X8\r}gǇ_d~~j\n{\r<:b܂cow@G#q:\Zh\r6.ceX	51tb:y\rXBgbB\rBzBCe@f=+Z]tct[[wlcl#si\'J^C+00m/`jϘ0qؖd0lK)L=UN	ӹU?(1>3+a{m!a&\n0۪}s0aG)065a`,,vh%vXb܇Y\'s0a7ra\';SaNoa.`^$|y^aAs߰`x=Z5;vA4\"k\'aтM`16X,+U`qXXyXCX(#W`I$n , Yea7eʰ氬\n4,;B\rY g࿜`G-G!a.0<ge*aa0?%	FVqn9a9%Fclc\ZWƤjX`{0ws׸\rŻx0Fc`s0r/Lu&IF00iuLL拆ɿS^K;}؇\nFaa\n7eXէ\Z.X]1\0\r5N R3nss~6<T	{io{y/1ֽ \r{7#>S}~\n,}޾s6|lT\'l_8l|Ol267\0!¦wf\\`3jlNs\r`zq\ZxV\r0i;OؿZylXw_?WlDr\\s\n\\k9	5+[wޅ\nn746$<ໃl{\\*lk=?7\r7SXr_̂~=?Z?VkpG|S9{ܽvn}dNϾ:wA/<B1~X2\0v\r<,	<@&ʂj	xawz?)%4<o˅gug^\0fKsZwx+<cT8/Oa! 8c$8vG߃p8N:xFp\0Nj3M02\\&p9\0؅,c\\kgll\Z9ŋv:W^yZt^8!^DX719\no9\Zf/W]O8oʊo ߉*=?,u.<|(|؁G~^~섏>|\Zv>*|IT\'|Z|f8>z>{p>Z pjyXwtPPG(:F(/!qBlhKAn\"0\Zl\'&1Bl{Ѓl|@L!¢z!v|B!v5#Xnq=xB\'\00C|0A؏0_~p!ȶ ,mHjIZQ#O #6W#DXDmĉ\r\'K\'i))gkN\nt;yq8Bxovo#m*Da.\"IDuDPDpX\"D#q.@BN .ToE\\D\\Ba^0\0V?BĜCX#CIEE fD.DiDe\nqݧ\Zg%H#qDFq\n\"L\rq=&\ru7q<\"FY_By#EwS\Zw)`|xGf#UPn6q*:t?E\ZD_E8~m]<\\`2#XȿN?n9Q7\ZBHFHK!*{K:IBg.D\ZQm(~=(h#J~!J!pDY&<\0Q^xXp\nQy񘨈x\\vdrTyx\rXHG4~E4#~; eψf|/x0m@tl@tߩEt%goI:=!zJ=0ćO{0g/eP1YB@(+)qĸ/xڏ1=E>A]GGu#>!~M#~;\"\rB%k_kANC*KAn<ՆTEM @\"Uꫡȭǐڑ{1܌D4LX4!k#,@&t,ҤEܻ4>4o=<=<!DDAZK6MHsHǭ-\0%骑<X<\'B@z!.#bllR22 !C42ȪZy~\ny1bV12F+Kdcd~g!_ ,9 czqs,dTdy]3ddt62ug,25L9L+!Gf#o\Z\"Gf5^EN2ACvG歗\"Yא@FtD0c$3عDv H)$2f\\CՐ5$t߃$r[ۑkHڞ$-2cdԌ#9o-H^\'\rFlcPf=R0y)>A!Ep4R\"R+FJ_B!eIH/)d|p|xY T\03,h@!VixdQYYhEh vN \"rYUIU#j`Ybc##А\rcRdU&Y-N]ƐAȖ\rȶ3vc)}%\n8Zg5yzEv+Boo#,#W!{!?G}6\"nB~G~;=X܏OFl& gaQ?-uȥ}zȥ?rr\'o*rmpKFTMOTLT5&Q[`((GQZ{!(7j=6(Ԏ(ڋ5Q((ݨ=!Q{P{Q{PNԠ(3~{j?\Z?e\Zu\0{Mu\'Iկc#]s(k(XMԱ|/ʶa+;u|DKd8ʹd-e\0^rDpPF;Q^VϺe-EKP\\T@T>KT5TP8**	*4:\nBG,*lvuI<u%\0\" bPW3mPwF?ǡz$߫0uǨk9WP7_(2LQ2\\QXԝDKԝ_m j@\n(pMxֿEA_Dӯ(䛛(ԡz\Z;J((ʐ\0E5D1zx(61(@qQ7(OE	C	JQ\"$J%{&Q(i%J[ @ݻԌz@/Bj:J@&J7(\"ԣ֨JT2Tt0>UPn\n@lzz\".C_P\rhTuƂxTc)y\0-ն^>@uN::ߠ^{C܈zn\Zg/#PQ}.D$V9\ZM[A?@M\0&ݭQQG\"TԌ]Ouyn/=_y2.Ԓ\"jw>_/)fZ[pE+\\VިvUi+zIz,ZH	\\Vod5\'\ZhM.Z֎BkCb\0h;9+^GLERGħ\r޾B8<&Fݰr*4/1\rom&ޟ2>hmzދ~>FE&C;\'\'\'FNQSQhKhWӱRB?J9#>\ZB{ڣ}ѾF.h_EE;\n~8$iD[ډ;]>`G_/./,//f[Â6K&KtĬ?}9}}y\0%Vc_F_-My]SDAM]i@\';Gߎշ4ZtZE4:m8\Z΄}Ft*Aߤ/o>o؂AlށmG-2@K\ZԜעD4\rDyhhb4*F՗ч11hI4YGƚh\n\nMy悦û,{4\"4Gs͹SCmG\'Rx-*CK/{Ѕ<t]Cm\0cM{fsG׬ԭ\rtM&tm]~]܎n݄%G?~vg\0j,UA7ۍ~a	!jnE,۾;CЯEn{7o&tA@+z\Z=Tes z԰	1z\\=5BEO|@OBOCO1FXEϼT@;>A?^8Ԏ^LE/DF?i,ѿ/rK+BFG6FI)fi+fcfH>f[Q1a]1[ۺ1[`40Zǣ0گM1:3$fGc^5Ff̮*̮]okӵx>5YE+\\1s@Ѕc_>jډ9Xk;ƦYc{c{cg2_9㠰@LŜ::qqqρb<v`<V00gcb|9`|`1H_LP.&P~7:`7+cBԯaBcmń2h\ZmbL،1Rm(&Bs\n&z2&vW~&L&&&r&5I3zIb2_c2Nb201\0L6u1@|)+|0HrI?u`+b\0CPoahz).İ\ru0l3q5p0B6FL+Hf0El1̽;+ɘ׮`01*\'LI%.SyT	TݱTTwcj:SI31UP̋SVLkUL;rJ\r#LGs%塃z^Nـ.ü뾍y7ߋyo)ӏbٝMC9ke/0#;0s\07Qf*3ֆ$fj3u%3!a~q|Eg9%ܘ.v:kynf^,>eI,Oc,\ra\Zc01+Gl0!0kSG\nwaCjaX=ưa\r]7*]cU\0Kjvv6v4VV\r-v{75cu;bwy`w\Z<\n\Zj`w{>~Ě`M>c.k5{5߈5\\=tk뀵{4֖>݃KoHlƞHHÞX):`XT#Au6vƺb΄`7(b=\rwcz۪?سNسسE06lPlP=6x\rac/c/$`6bFaH*6r{y]8rylzl]׍nf_$[l)6i{769$\"6C{#&6C.fZfh\Z،\0p{67\\D:X{,Ў{c![V`,b7i#¢?Ģaw%X\\a,xKo\"d;,w`6,Yi`y\ZXWXVx+Yb?>P_>Y-;-[secfLb>zSTLV.c2ajؚغbl]n{[{퀭}ɻ+31tlӡ\0lU}6jE-LlKlK\n\rރ܄}}?Q(n-)}~GacGJؑ籣/ѿ&رs<X-v\nfc\'v&\0;P7c)a{ұ۞`b׊p\nBxn)qnKh	S]ũmDOq^8e8S8opZSqZtqQ],vG63֝ov;)=݊3M:ۧe37z3>;hw=;d>;3;.;g=w=\nw4g͸`i>y٭_˧m9&vg5qNFܩG8i=}pRpn8w%{^,3wAWU7ί?p2.f.\\%=1Ev8.Y!._يԾw lC%sp	tqI⮑Fppן qq)j޸Ժø+igqY[{rJ\Zp7V\08P!z3pHXr6$=S?㰌`.Woß#n}p8؞#>dȴ\ZG*q8DKñ8]N(1ĉu8w8HpdX.8+qJ\rSU4k**N㪵h\\*v*c4ppO[o}=Mk=;ukՄkµ}ŵρp/]jq*n:^W^y2Su9d?}}ܮ5|-z&go`+7`&;⾤p#:0ܘl7+[?nxqc7]~v73)T͆u?\'*Rqqܪp~qǸ?\ZpĎ?OqiVWkx\rx/IīU7^ë>loWكߚ}אk,k6^R\r9uܼ:)VxL^^\n~sxC<xÎho֍7f=yk7	77i7fMkxӧx3ތ׏[^[qRax+GxMx6W=?:w0;Da\'YOUO^vN`;%)!&w/{H{}1~_?AA \Z\\D7}9ǇO/kõNC\ZZEH=Hk|	|T7JS4J\r/D+⯺l_}\"U	wF	3ۗտSx,w|	K>[m\Zϩo߆\\؈]=\Z3=4ǃN,ࡵxy\nO#NxC<:\0s`0OXނ\'FIxR87<cώ7.^X<{2.x*^\"k}.|e_o3t|yy4a!4\"j_q52_v_!4\0p\'lu\\\ZY/\03|ۛq|?U\r{Go=O޽-y㇎CnE{X ~Lt?n\r\r?j,\n(O ~gDoBst	~a7OEJ	6~Y_WO<¯^UƯل9Ep6av6&k!a<ANPGB44 ZC	ZI\'݄m(;^1^SJU6`\"v$	L0\'X,= X+	>G8d3I8l&\"~\'^~D8\"j	6:	T6$y	c	#\'Ip\'u#<BQ./I-!BP!J~~ܟA}G0F@B䛻;+	W+	|B,N=#1q.ڷ*״	L!Y@HR۟R?4.!~+BΎaB؋󾃐F@L\0\0Bp\0ND\0PtӉ&h.#>VZ!I W(QeB@;@+K_W\ni2}^-ą Ȏ\"HxizAZKD(#vrEn.N;Bi?B组2urVC#9!P$Tv#rBD TO>\'uy,቉IA\0I/p3\"!0-m	WկjB,S+r2d2^DBJHW!8oF̦	#w9alw\nӄׄi<a%bG飄?>e_\'6&*c҉U+**D5D5^\ZeETߟDTg՟&j\ZKZkGguCWD]ؓCVJ˽EnLܵqqWcAsqKthz},,JFܿO4D_=\Z<%-R_zFK>#M핖{\":MtnSID&kukm}ݯ{qqo?̿!ѷx]?rݓ2I<AϚ:H<UO<oeA<_G\"^%^zM$F\\zKh\'FI\'Fm%FF W[8k:R(b6Rb:1\0141Ekʹ<)1+C3x`xk?Pm;\\bGĻNw@Dl\"DAL$B=0;DDDDd7PJDNZSDBHY wI:Drl\"vH%6D&\"5n9z,C(#\nD/kQr*(:Gfeݝ$ޓ!wI$>숏\nĊebw⑔XQLܖADvkk:b%AH\Z\'>׽N|Al6] [QNjkMvb=-b7Mb\Z{:&[{ ~%~zط#经Wؿ2JlA0M%G]ǧ	ɀJqpsqLUiF;؈%%F!K[fKv=ĥgĥz2ΘNCD\\\"?FR8CRX\')jPIHJדG$m8Lp@xk*ixIUIR;H\'\"mY!34|I%j(.6dB28$$$$$c5*i	iw$$d SH5$3{l!Q~$$Oųaҁ9pGա\'#*Q;\0($kzdt,\\dL$+\"/N:B@:y}tr8>)8:Hr.\\$7m	ɝ |>|HA$ɋx֟E\n!#&]HubHa]HHKqRd3)<))BtՔFz̝0<FJMJF~D^I\"t*)y[)U?\" tSpt/)o0)/twP:	x=	D&ߺ Hp\Z		AVDpUHs$R|D!jwE$fHDb) qI0@*I2$xCzM*\0\n]HEIH%AR)2lg\r<WHT>E\"U/I{>HKD\'\ZpCnL\ryH#餮xRYқ7\rHoWHoOe4%In\'}#}K$%͑ko><&\rl@ܯd$@6ia4$\r[FcHc\\Ict׺VQ3My~釧	i~GiiJZEZA@CM7NNV^7!\Z&RDd5Odd&7ɺO;(dN2Y!ܦLϓl&.\"n&D:@pdTyw-UYmB6oMxE>R%K><M>f V \"p옂 1K>@>EAv!4Ȟd3~7_\0%rur*94|@-B&r	6w~<\"_I%Whc7GcU/5xor|EN,LN%_\'7+}H9c!@#r zDΎ%j4Αzf{FPMTMdc2u2m8䔐Md̉d\\#K&yP2\r$O&E}d%2CT2\\) \\d6&@_d~%2L$6dI^,y,$Kdٛcdތ|%r.	9ș\\p\\bG.\'Ʌ*JrI\\G~\\H\0+{UrMru		epL6ry_\ZKrK-6In T!<I~F~ #H~m3O~O~C~gM~7si<SkE\nOIN[~HM&&ד-Ƕq!\\4y<uGy(y<Z<H /Ǒ\'\0jW9{JQAQPQzQwQ/P-T)(*KcCg7(\ZM\nm(;R(;}j󔝏S(PRR(FcY>xN1M1@1?{bbe K9L9jI9jiK0XS(6^(6uikm;>VPL8h>8NZPNJ)N\ruw/)vS\\6I).&(n0}{@ʙ)>R|$S|(~S)g>R8J8%4Ȇ&ES\")KȤyJdJJ7%ffr0r5tr(%yʵ(ɐce3J:LIO܄NRrSnkRR\0(\nȦv5@l(]h7\n̓KAXSM(^O\nHbT98=@R(WP()\\\n51B~B{C_0T(_(\nc5}IaoW\n\n{N=DW)7w(Qм\"$S((b\"=A:)rMʃvJ_J*p\ZI)eQRliRGy(<\n8C8hOϡT.nTQ)5&J J]\"屽;q6ʓ5J}]JyJSJ\nJy6Ji%)m\Zvw*MJG[Jnɐ򞸏ӵBY|͢|\"\\|ZPzSvFPh43(IKU<ʗ}/QLS(x[( {(\nQ)N](3)s|ZEO}W<g)ʒ*eOY\rU*D7Sҩ[T#\rnԍh-VE\'\'ߟnPU}Uj[[dԭ1_:-:/\n/S矦>Iw5UPw*ʩ;oS:Fc1{wS,S`{UvSvP-vRH<O=L0R+̩6S6v~b]\\zq\0?TG0qNdFuȦQ]AnROoP=lP=\nT)3\rgd/շ+E[\rMo{{R6P5`\Z\\8L\r?L=b@=WM-Q/msF?ArJr\ZS\Z̧lPcq\nj.}jaj;,5j:IMѦfS3OQ318j&9zZ\n5K+e\'fʩYԬY?6So=\Z>ME~QM,PrsiT(a\n3]ҨTTLe*͘_J%\ZdU\r*9vJ!pT S*g;K#\\\r8u\nYRO\"hUT@;P;ԩ?Q]7.RAEFŻ*%C,\"5ZYIO;Gַ>LmVS-P3$jsyR1\"ҞOmS/R;PNKdSjgj\0킦3料{FgFVO0~~Qw;Q//h[+7u[D$Q4SlI1IFm=@]1.&|f.RYGxԕoCu4E$M)RHS]o?FPNPOX\rMЗVOغ@ӌʧi4;iZl]v`ccMLM	mm\rm<fhD3?O3iIy*7ia^OWii!H,նc4S4+*f/Uff=Hov4}h\'Ni\'ݣ9М4{4Q/͵1Siôӑi_inʭ4w(}Q=<o@;{8Nh!1ZZ\Zy$BڅLOڅCkiC9Zx(-Bk|uLŭizwiIҒܬiIO\'\0ڵMkOhެޢ^J@Ci,DZv-[vvJݑJ\\GP]@/hX\ZH!74\Z2CC92h5\Z\r\\\Z|7pRF-ш4;IX~q-hX&\\!$f4F!MVF+\ngieᴇiljiU+*VS85OkL5l51h-UbZk-əN9C{i,N{Xu,ou^^I{})F;f8dC\\}}iJ!g(md66Vz6}$6^IA@Ѿ\rU4<6KTJhhs\n\'h%ݴET⟴Ki/V^-uVikWhk] L.}=	}C6}ß(g,}kq̀BtH ѷoWNR;\r=FDSqU}{}~-Eg~04ݒF:n n#nJ;nWK?XNO3\'w\'<tWO9E;ϑZI?{[Wq՜~6)hF񏢇$NCFC/_T_8B8O;M/]Gd//eӯh>_	_9WO5=J=Ezu=r[L]MO{NOo3)I=5=D\",&6=F-fqeMmI=W@ޣ&!WЕ:GDޢcIt.N<NϦ6SCi\ntfOgoF9* ḶN_t{+]{]TNrK2/E\\-~_~|~?˛u\"\nX=^H/Sdzn%zU?z]%)k)ETWzˮV=mzn=!j9gGk/F6rp?ypzFSSϥX?}\0E[	G#@/cfgWu>	;h3GA	}S4}΍II[n/C鿻{KOїCU+pʃNX}*렯~룯2@ §\'clu\0CyГ2ؔ8P`Ufώk`ehbh\\`h734;Km2to3vL]`走;;c\0\"%0wE_T9Za`88 f8d84̰܄fXV噌JG	%)k\"l3bvO3*&1qrTthp^g2df~p~D$sxU,bx{2|.gd00F/jqa5^ʸtÈG3.gdDYaDj2b2bw2bsD8F;cƵT\\F8#~F+o0ngdOO\"#7#yqr\nf?Eܯ{}˙e$iF9Ƞ`{3ytc`g0fp\\@c;KeG3C!dHܡ5S-Ƹlx:v`h#QQFR7zQ}Ȩx˨!uU3uHFFCF}4k\ZqhR.f4y[/hVƌ|F5s1uLFf-Ggtw20$3fY21z@?͌FWFVGSA;`111Rfa|;v#ac\"ȘX+caL10,Θa3->0c0SsBKNսunZywXRw>Pfnf*+h0U<r*c]3	L\rD&xht#SH2sgA\ns+{ӠMif\Z1\rG&FXؗsLS,Ӭњ?I3blL\r0?\09*iim<6<fXtqt<5t9tӝ)bqby_b0cWf]٢9czy7ɼhy1%vjZ~q֙y3%bOD233Mg3ʼ~;|OBWc<i`$f|>3so3s3kMf~ha10#qLF?l>0!ۨL[&f	dh\nGbbMԘL>0wI:$]D1I_7yLVB\n}	}ferۇܑ5&(?Te?WbtoSEcWg|P|5a~3X2O1K]bìl`V~D0J\'͘0C1:e60j=ϗ2s/3[μ`(1ۃݙ{|hf &&s̞4CGmgf/Og~fl|pb<`121:3f#_60b&Xs\ZaΙ1n1n1Q/똋Oo柭??Qe̿*+Y7&YJXHXN76\\b)Ϟf)/`m}tIT`mZ;R.eLV6gm^bm0`>eԔ,5,4K\rcuͰ4#4/YY,K,]^J,C62fb32b<ڻڷ6씜!|њe:Cu  ԁu됛uxe`Y1:XGXG*-YG\rlTX6=,1\\m#-;e븎)6	8։rz@Lf\\ߡY39.,/.6f(^D) sVЁ\nVp+S::u:?oȺ̃ue\n<̊|t}̊\rs`]\rźژĊxHfYoY7\'lY$V˗;5,5_lB1XI6	󚅫=aw(Ype1Όňta1XqG]eYe?YfKɒIa̰݃c?t_@YX+u\"[\"b*c9*\r**YamY,Yo*.C6cV\rϔU#ǲjFǅYO:YOX\r+DVFEV6eVSP)^zzVc5j?jm}jeuqYXL;XkaWYRXKY>[zY}s}k\Z <O|\Z\"ud)k85g<\"f}{Yo8k!ɉymc-aK%llEk[)[-{Bri:{\"{c\"ˌi\0{[u՘`SyΞ+[sՄ`nb:Uu\r?w2|;lOoٻu{ئmlSmm6g){el˝f1Y&	m>,eob7>Cvb>UbvI},A$}̜yd/,d{{Hi!loI>G\'cMbe]Rv%v\0f싾0#;uȌn6vT[!;&1ESv\n;FEΎwlf\'	b\'䩰r,٩G;٩z\roi77:~3K:zd-$;1Nؽt]m\"x \rf)lH\r5bC6:m1bcMlb8cٔllںlڶh6ftILClN0GaZ|%6v-a:	lٛP<?jΏఋcEJk3v1\"]b].ߩ~xن(O]%bWgW/alakg~9~~Y~B_ֹϨ+gkSB$mՌݮ\"``w屻o\Zo}ag.f؟7C\r1؋책,wT\Z{n>+T{ĂP*gٴz+{m^QX.(n(欷l\\ljTlv^l~QQQsGVqwq4~hjqeޜ9q8,G9c(>1,NqGpoϟ9\\@΁+CC$C\ra\nSÏ9Vͽ#8Gr:er==Ǳ;ʱq%G+(%Uq}Pp|^ɯp9۹8		\\s`s3RN	\'lb)a8ŉnDJ\r98ͼ8Qm(\'\nse9MYDpb9~9	$뗜T9a΍9GNmeC[?99*o89wrpqiq\0#9eY8[`\'W&o8D!q˶C	琕80z9Cpn;{%\n;XnQG|0G̥r${gsip\n8EcufRNq}N62sS S>h5c5֍S©;3ϩ<yay\Z<4fp\Z[9s\ZGwp)8;[9/KI-+]Mn(sه:yk*\0Pi<gl8	1@x?m gBÔ3i#8?G#l17sY9+g9+[9+C8.m\\\\\\}z\r\\ek5fQWS\"W3պ&j:a\\]wǦ!۸\\CBp5\ny5\'35I5ݐ/yo9wqy2\"̉{G%Q.uA&m^=\'!d3aX=yztҵ:f=s݆npI\\]+멠܎zp6=z3>bY]ܳS\\u[Y;Mnx+7\'n8n0l{\r5r^p{Ͻ ^{q7\r6r/}\\Fs4?pYnwu!7%ܒz{e7]|{G!7ĽFsau\\X5../sQ	\\bdKI\\J~.|KKqq\\De¹,\ZPD㊣qŠT+]J3rqާesܢn1[\nRsn|ϭ&q+ls+rvNs>>|}\ZgmmYmqz6xs+ϵprͧ/,r_/q[q/vq;4r;&np;wp_o]ݵ6ha~RD9۫rws[-` n;;6)~tp&_#FhzX2;`;yN;;r;p;	Yǝ].^..7r.iUŤqWw;xjxyJ{ZyJ(u<emO%#oHz5W){KmK@<]1~*O@~IyFI3uW7*vmX}vQy̝FyC<?x0_:Ϣw;Y?Y)ClBx.<ǼC:vxҭ&y1<b0C=yx>v|<9pxAuyA5일4/\\.E|<XbzfyWսyqyfxIVxI${޵y׿]_%KbxiJq4e/ލ\nͼ)/[n>e9y9x9rFyy_\0(ZSyண<4Ϝy򖇵ua[x`-i#syC{yL6ȣL1nW:c[<>)qy{<~\'8{\'jIͶ{yvyx{W^o:ƻfWuW8+HHJ\r/t*F-x,y9%$pWW}i=&^駼쳼S8 nƫO=%\rxOWO\Zx\r:2y,yo%5f4{u̔љTVu:u:;x]w7>9&ཉ){+{]&\\YOOO`oX=qc__lϩ;ռT,t7W})VҔo޿\0޿cyUx5S[9!oW8WXYWqo\'UmY|ռZ*0v]Ր5ҙ\nq,i*k)-?__,u;;ڶ3)|TGAg-;vKő.˷ w8?pE1X\ngo	^a^i/~\n5߆ZRwwKMua|vLf\rLV=K_ޟh}M;!:W\Zr§0kIfKiQ@??Ɓy˂m+2	j4ލʏ+\'-	q0o~J~j`%?e;?}=?#h3Oo%gog_~~|%PX=nf>22Y,%T>\\y^G+||ppOXvtA|n>ϧ2~/>qg:r>s)\n4>;ϛw8w%O%W%=o{~}nHA3_m/4vAEEKr~p$_~u_1ïͯ3?L?|+&,ܺZ%6߮xnv~X6͟>;tͫ/oj;=]3>U~F}#5/;/5XC:?TZ?^?q?_\\_x{{ i6%4_:_MռN[9 P:C4h(ؠ<)ظFV\"P{FlU>M@}q`zeL}[OR)I`W`S`tR`-0.p&c\ZZ}cOfO)ނ}@s9CyCBc(*G`sVnZ`:+8(Hp|9Rp,pH8\n\'/bssiu[)8ۏhAΊ TtPp1\"Jj+QpdRh r%z$j^*e\nb+o\n?\nj8hAR Gz>ZZ>.HW6[	27-\r7[Y\"A,AN3$Apg n\0*\0<\0@.*`+b\"$E2 @n7\0&	`B?V@t8	+	M)V@sF	h%LC8;(`\\0`LZ&,	I IHjb l@.\n3	f\n7UA#=AAŊ򜮠EAHzF釠&CP<\n\Z\r*_\rƬ\\l+RКV%XjIQ_یfAׄ:kAϠހo`<\rj	F]##HѸ`=SM}C/tSW?~LL\nfFm߂Eb~R.Tq`R_\\*[-X94.X	jH/V+Y!G/o	7n҄?U]̅[:\ZsV)RZ)ԾS)Z*	wwʄ;	zBzpFд/wAＧpWY9Fh&4Ob	-6od#m#\n]Z{ֿ\\vmiBLSx_xt]*;=X\n=n\n=Bc׫gBBU)YaCaW &ap00gQr)<WxB0h(OsD1^yW(nxrsiY¬[.&0`v 0&TT<%T\nH!($N~5.^3;B|e!qCs,*3Bʑe!]H	Yʅ<B&[ʄB+1\'>\'n&˄35cBaeaa/,k2Na!,\'>,*|4%b*	+KJkgڣZ7ZCvXWX\'cjYº§;w/	_Z/	o:o/?Kء뚄*þapՈpXJ8E8j RcMc/˄>_Ko(Tprpe,]pᢚppCc@˧E\n,H^&Kx_QF=/SznH_Wc\nFt3D;lD7D74]dT\'NG_dZ)2[,Z,/E,%䈎]lDvj\'D\'EN#~\"#e\"RXUMK)(yyYy./|V\"8;CY碳fD5BQӢQI(x[XGtQhgхECEQAtYUQr(H*%PsEI*뺖@(yWҐ\'E7z\ZEx*{QK.QeQ6Pt6OtV W^DubSvaaiE\"l1VmA\":^\\foq~8BEqyHŊd\"\"y0Et?2OI\n@Q\nQXT(wpMrFyLT*Ul^mmJqE!Q}V4M\rыK|ыE/D-oDZ֖{\0Q68IꗡuJEϯuu$LnŉE/DD˔D#EqD\"	Vh\\A4B4uh꧑臞\\4(ͽM~b\'EkU藃h\Z+s\ZOdh&ZMQ\"V|X齷XQQ\'VqU)D5hm\rbc\"hXO>$ֿc,6xTlVl!6RB{ۻŦPbWAŇ%Ķb;^A*O,`(vN.>\Z,vQX]2Q1ϋJ/jbbcb֌뽙ػO^\"W^oā@q`^qY_884HZ_P~\'|/VGS7ė7_(%2 K4։Rŉ\rit̷,9qqAMq-2- qn8&TC|,@ŀ\'b3bÜa1qN\0QnbEe1z,Wb$JӜCĴ/f9n{y1?+9>\"|]qy^%RsH\\iWUF5ĵfwgHӝO\rlqC팸QjyOA_\'~PKz_܆_,~6whįu]:⮒_wW=iBq?xtx0U<vOHBēC(}x6xv*&i~Gd$\'z9yW؂}WMxKK\r	վY:gK=OCqDiDDvmH6/Q7;(QΖl3-d\"Ȱh`1zD)ѿ\",5^!1K$-%{4Ht{\'ٿ:*1>!1Ϻ&9\\xYb\'Gb%o鮒K&J>J>HW %7$\"$Γ6SSH\\$.U=u&kRB&a)uǧIvJ-%!\Z%!ɒsW$O`%QE[$IN ®DK`pQɵ>d	IԆI\Z(IkFI2%BIfF} U%~![\"C2PO 3U܍?#N;(`%	d	L&^3t%GF	Z#C͓z	nK%BEȦIc%!@3#%ˎ΃nCbT\"\Z9,\r$r+{	ț7JP܋R\0%	IgII\"IiAcGG)	=$Œ3T\rI5JR{%MR\'it(4Jz2$4IIJ%=F{Nқh#;\"7[`$Œπ>@dt/՗LH|/H&H$?l:%?JJ|LCH$3=YZdwɢdX8!ɥJ6$+N7$=REmR@_bT~tt}6}<OTC%gY\\e]eWn&ՄJRRmR?=RJt{tg.eT#m|Oj#m$c.ݣ.5y\'\'Jͤm҃~CZR+R+Զ_(JjR\'SS?8IOOzzI=1R.Gԧa@zMs4$4D*=tG\Zz\"\r+	^uFlM^)NIcJcRPҸai|Id,Mn\'M[Jo`¤\rҌbM;Ҭ[<7iN4V4[Bz;+%͛dHBJaOiRTD{\"~פ#RSJ>W(4RmHiVRg!h2<LV)rF\"IR;C*W\"GQ4ztEZIZj\'-m)I˝]ޮH\rzH+N8K55Q[ڙۏJ1Kk9k鳇2鳶#s|PDzPC~,m\nDJ/Ϟ ڷK;J;<{N/xNݥ;wYA;ԍ=48I{Ic_[ҡᇯ>)ұ	{I:s,46kHgWsKҟ{:JHTHW=JWkӥke\nXjLxllGťT~KNy)S_x\"\\-i\rɴ*dZWA2-L[sA*)m!5ȗ.ӯNɌ5eƨ\\IWk};5do,,ŲR=١{dV22+zlj!;%Yl`eǲ@=2ͳ2pgO6wN̝ܕy	y\r|m4d|-#o9[)],W_,P\rd!G3e^Bd烃ea[DlE̗E._Ȣe3e1s;d12,,N/%$eIe1dp,_,Bˑ<Z\'K\r&\ndT_\rDF,9YvK\rQyxUQ>Аz\Z]IأPG`2|UM*2\\Mh$#&fH2My9*\09%1:dk&PƎ e*]L$|Ȥ%s{hٽk6\n~\nϞ9$Ȋ>esG @V\rOX;dreO\ZeƠLYcC3y㻬G,k]A,{I^ܕuh%{gsXnAa٧{C?Ybv祟lh\'S.l{l]ǽ岟e;d7iȖO8\n}rrrO}\rr]@Jb|s&*\\\\\\c]\\㰓\\+LȵZ9	rm#\\|\\\\tC\\X\\Ԉ\\U@mTn \'7h.7\n*~P>NJTDnj*7B}wͿNI8mY\'?4Jn#?)?b$?zUn1厼2`6sr\'L>F\"wiV\"!r7g{:v\\W	rwyyP:B^W/X-K,cqd%y:Vy[*f@*G#\'<ϲ׋ȓix\rI<@1]~S9@~T<%yNoy]I~{K~yn<q94ړ\'G?#G#9r̶Krl۲N39^+\'$?9#˩.UrZ g09g*y9rsEC\\&U~|?ZRG~=%F++\\MU9ٻBpM^]x	O^? o|?{,vPUyy;JA$ZRb$EC;Vʻ\"]W33w\nw&Y<I^ܐ@y쨼I>.h*ȇ2ɇ1QX\\UE>\'1\\\\pQ\0)#IeF(JJMJf*Ɉ*)Hx>|ss;܈j9s::sǯqw֝v8#}sVsڵ?o:Ot.k	z\0U\0E\0\\>@@Sue1Xm\\lDll>|D	،90Rg|Q\0# `Kf`K[&`{*`I]\0\0+SK5y	`]\0\ZM\0?bpؿp8 0pQ\0pK=	Ydxxi\Z\0^3q-\'V	xC1\0t4~EBZ	8}pJ?p^2 HU	NqK\0Dݲ}ΆǾ\0\\\0b-@d >\0 O#.QV\Z \n\"H\0$:$F?\0$$H=s\r\n=H|pg@pa7&mp\0Tn\0](ȹ\0((y(\Zz\r(ax\09]ܿp_zPT\0TU1l@՟x@mC/\n!\\h\rhtfM$\04݀,[@Wu\0P\n\0@Y\07\0@Zc@\0j3\0\0,\0\r H\n\0]\0=x\r\0w\0wE=\0=䰫\0E.r@ix\07\08@wg&P\r`d*`o `|\0030ud`\0L\0(`)m<`fY\0\0~*\0,D,\0K%|dPPuh?P6T\0U\\C\0:o:F@w!^7\07@C@7W+ǁ;\0wwG\0Z\0--{T6o3жp_*СoQ	t\\.\rwCx7˗X]_ǳ@ϭAǮZ}@h	@T\r\Z>>)J_\0þ<_O􀧧\0X|\0F/^8S y]GBlq;Nxb`|xnURtC`bW`\",\0\nLӯaPS`:\nxO`g`~` ~`CS;/	`ap)y#G#g2X%!XYX}oq5E`mz`<Xw3I\0󁭫?[-[ag/v@q\nbwY\0\0	#@b>H\0R&\nT  c\'Z@EZ,:P.^vK\0{!ۙowL0,yhP\ZQE|Ty<8n\r,\'.NUdل??R?_٣ooԍ~{2r	zH^V<ԅ \r7a@k@hAB@\ZfaoQiOh#\"hBd;;	vR֓o\r^b1~`@{?li,MA鍠R?e&\0Y]\0:2\Zrp w+Ǚu X|Aڪ  >yT\nr)ԀB.BσB^m}*ERZAg9XйG29>tj=1t/ /(\0t),tt\rt_jPrP9(\r	Je2\\@YOrBA)-7\'<F(N]P,\n*RAϠEGA{AQA}CAoՄ^^ŀj@uPNPyԨ]j>AsU@YA͟@-\ZAm(yWn@8;bJ@  _ATlBAȭ@A&V&etqD7k(`D{Al V4	jqox@gM I=Hh\0@E:ԽFԷu7P#YPE_1\ZZ\Z $A5ADS ˠ\Z@Q<h;$з:4Cw\'j#(]\\hA\r-TK>\0\nS_v6Xe\rVm<^v=X8+nm9X\r^61&olxu\0V`b]/=ւmo=}(l?| |!|@vhs	>d=jGs^~>~5m&ă>!o~%\'H s)8(2[8B8\"e;pT 8z8$8>~RD3	p)p	8er8}3pŋt[p:9	?g#Y/΀P,v͇[l8;-8\':8Y	}1]\0v{G	Jipk}pup;pm0\\w[\0dnH7OU悛RހXহV7Zf/fpkfcy: p[0k`N?0\"Dg/h0Ư/S}`ZR	B)]`0n;IOU`~X(<\r\r4tX,mw]IwU\0w:;؀IPz_oq#O(C4<m/L\rg^J3x\0=<{kW}d1_??bxY\nx)hAVn@V!jq~#/ !Zwa:Sk\r*!9\Zd> \0b(\'BLK \rSZL٣)ȖG\"Ȗ~E<6dK+2sFŐw!vٶ} 88.@3m .SqM)@\\vQG*vĳ9\nB>BxN;Rv9oC@Ai\\șo ɐ\"Hdf$_%wHlO%$.+$>Ur#H\\Hf~\\r=i$Oy-tOHV$\0r{yHދSHm4*.\0)<5B?C*i!Ut#U	Z.3-H}IHC@	!yNT4W!/A^A& /{9$@	q\'A@!ҝe\r\Z	0eAUQ-o*k@DiG RD!ʑwޛ,Hߥs7v@Ȉ0dA2M{>t\ZdLCB&Wl Sw} _OAl%AfL@~C~ *!9}3z+wG! !ib)dEUQ@UlĔ@U<cjfPlvڧPV~Te]%g[ɃnvHn@\rC܍nyIgA\'@mAA9ݾq+t))e,vu>5\ng[t?vW7Զ[辭}B}*]GK+zZuУbGCҠtc@c-޹P.PgfP\'NAO@f@ߋ!Gy#Їao36NгK[lgzChO|\n4=\ZYaA/BzCЄ$^ռ1hB+ZZ4i[hRhr7h(h\Z~~	iAsCo;@\nJ]IhacZ즀<|-y-i[߸-r>jVVfBjF\"}hm]U=v\0	mdNA~>5>)6#Lh\r3zmm/vC;.vp%P؅Pc(*By>P\\k(7zi\0JpJ?uʈ{B9P^~(y\rTZ\\Pg\'4r*b_UAcAݕ4thN\\9_h\nm[	UBDC\'5;Zv,\0tr*25EOs՞};	\\t4ʆ.}.z]fAW-`hLu+Lu\r\n[Ӧvô?ށi\r[,~fu[os\0*<5fHmEYYaVma60ga{ҁ=`{]Ek0`v~B=N\\;)=laxaZ yD梭sᭁid\\q0ׯ07O0rؿ.q0a\'`XG8,HcRwĀ9tQ1Q;[:Ȇ0]HքTb.\naS˰+;U`avm]:.,K=6xv=sv㎆AavXǵiP]\rI!d-t\rvo=\rVvV	{V	Ui`j`j@Ay}X\ZXNӸXӇ\r綍!fe}\ZeA˪Ў\0%aiX~ Z0K1FQLa```0uv1~<	Sa01LS.߄u`}iίaa7`ZaCذ)\r467q>que8l|6\r\\~<}][7W`\0[6VpRjccfe\\I-\0|mf*\\;z\0Sl_{<,8\roZ_7M]av;a?w0WwE50{j}{\Z0=^B_gM	pWpYSo&pP/܅\n\"m\rwo=epֵcwޫ0V_\'|OjOyz8Tx@a<zX]	z\nt`/?0fp\0~-\r~p<p~,B/xf<&s/<<>^~	>\nO_snSF4Swxd<C-<cIxF=<9<c~%)pg9X+nHuOw俅!H+:Rx=x-C=kUx٭Gc0Ax/{xmAx]E=A77~4xSW	*xKD3a\n޶^\Z)5rp{p)O#4;pNHÉkp=N3RYpk]\'s#p~Y8_.EGb\\bzeN&pb/\\+XKpe;8:\0ޟoDE\0|	A?u:GkO?=3rm\rǆ[	>//*/)q\rUF9y܃W0wS=߿\nK5B1t	Ch}<@t@u{X{RI\Zb0\0\"Ly3LIya\rcj%{aY@XŀVk,7!®]a7t$&bf002\nѱ8qh	b8\\p9pa#\\=nwaQ1?Bxp#G#\Z: _\\A!M	7\"@!9!¡[#\"v\"VT Bb1DWDFD|+\rpuv	q-z)\"Qu\nqm8t\n\"5hZփnhDdu\"n&W##ehDξ\ZDSDYMD>DVD!Dq\ndFDE}YU(؂(DTD#*=BT;vnB<@ L#U~CG<!j<Oe!*B<	vuG!bxx9uѮ6h\":|Ct0^#^MZ#\\#fBiCeG2#`5 GP\"U~B|Dk]m+E(XߠX#10l!<u#\'BF(G]NTw7w:,A\"C={fbp!\n:1:IGLCLJ_Ի _\"~E\"~\r\r fas4}?x ~O![+F#;R#u\\	1\Zw\ZG)A\ZpH#ertsru\n&roOvw\0i?A;G߾_ #H<K-W#=<><WG@_.Ez+>(ȓ۽\'ۢCd\">\Z&y+dydy@ƥq7ceK6+3ȫ-=kdҹ$d;2\n3B13+37WY\n?dgdߡ̯?o9,x,4B]9,vG KAӽ1{|YiR||E֩ \ry)yg59}ܚl]\ZBAۏlCC\"_\"{JHp^RBB(\"$4&\0	C#*NHO$*EbrL)$Id|dAm>Hv8h	)<\0 3܇Hi.~#|HBvy \nΑ1rDsoA\0 G?SI七rM䄧DANE\"EN\"gs?\r?_1Ş%ߝ1(K\rUjP<QjA1(uqNHWCiBiPkً(3F(GP/CZ?CmȯCBm428MGme|x58ezj!ԖI(}mž̿]/PQ2CͻXԞu}}ޣ(GP\0HI=H;d-roGy3QP(\'Q\'&QD{+P6GP!*<\'>?:Ey:S	u|\ryu/}\ru\r;P=V.wPWMPWŨkڣT\ZA\ru*u2fd$v?T-T>2*މUtoU*_A.ʷOP}ePZ1kP!Jv	:2U@=n.Dl@GմjKj~zH)pW$jjԼza)\nt`lqTnjZP-[PmRTu![Bʾܴ@GQ {Z:P\0R\r6mCBPxQ>\n! D(K1E@QgףPgpsE0\0>E,>O\\P\n\'p~%:%@d\\@)6(%؇<Du{QM>\Z&$_5V\ZPB\rnA\r&PYwHwQQcsQP:ϕ|a j\ZWA}rQTP7fP♨_	4Ԭ6u\'(	t.n/jZ%^BZ%Wqhu.Z{hM5kk_Ak|F@뿽Bo:R,kߢ=&:i=AڬP	|m36/G[L%Do}&#(z]?=J9zogz/:zm-poh_hx5a5ڻh5#\05+d 蠏&G{=Ġ}h?TpI\'\"Tv8X#:p$CFaЧ5ѧ#\n7BG3C_pDF\'B\'Ġ4nC_i\ZA_ѧIQۅDtZNt:GgFg^o@چ@gcй|t3;mbt$(L]T\ZW&@Oy*6t\0(]]B?-G?>YLGן)E?QA?1C? AF8n_-|GQhU4\rFj8h4\r4=@4иhM\ZCoCSo4y/{_\0тB(Z?33\n-9كm*D+X{P-.Dw=z}ot!0#Ϗ?c1ON\ri5zJ=SzD֋F8A\\A\ZBϢ||suNEE+փ0/̪cZg`DczcfM~ִ\r]~Y)#c֟	1l\nlYٔYfsn0U77f`<1\Zc\Z{UP4X&\\X?`b1V\\ fE1*ϳ\Z}90fqP881R1g4mi5̑Eq-ղ~H9jd9V97\Zsos㣛񱹏M<]00͘ɘLLx^L8-&&b>&&yl\0B&F[c[((\\S?I:|,Ĥham11U170z{07o217cbwb\nL!m)S܇ĔaJ1e10e0ṼvLO*%\ny&c-_<>k1,cj4ڇiby4ļv`9]\'N;yxD\05D;rz@CL10n59AycP^T,	߅A&l܊bp9ܐ`Cl_`1-NAO{0;;kyM+I8f83a7#=؀BLDc]0S=N\n@ufY9YۃYn\'`7w0+	USOܰ\ZxqvͱCص}&X#X\rXOMlkA5.:55Eb^csc]X&N]zVKֻ։NXdd-#[o?=`8=贄=x:`m3yX:31օz_\rӾ={,\"9:֧=ƞƞ2Ǟw-b`C◱-0\Z6,\rôc8&b#l%s8s$l	b-^^JMH3^9Jr^XMmMM.M{폽\Zі1pYcsKmzmUl^nl1[-j-a`/at>cͰyll9P*>(}~[i!V%?>5W_!ϳ-̻ؖV|lke<eKKNc,@ohtzcbRPXXf,~]Ewa/˰XKH%cX0\"~t\r,~5m5jf,	+>c	_RM\ZV)+ₕ걊hQU6*;خ9lwlwc\'g~w1v$0&015sؑv\nF=Q5؉_دt*?+sӳVE5o4u쿇b!\nR9SڂS}[e3Sli|Jŭy=[{-NX[g[[OH(H5ٸs8qN`qg+DEۢۊ㶒_Qmvcqqo%8oWq	wqb/\rs8nn_>q)i;w!i:^.[8}q|/|8eop\\.\\\0*\">	q=wqwvB;2paz@i3,\\Ԧ\\t@\'|P|dŭn]v][Klv]lKNK%K؎Kx^Kލ~`.2Y	w7Gj\nኍJ&pe;\n\\Ŗ6܃T܃SpV*O㪴}q5V걽\'m\\ca752qop-0\\ˮ\\^7\\^\\Q\\d\ZmupRpR(Hd pP8,b!?Ca(Qq8QcZPp̔Fs1[±6pN8K=N,](<qn!n+\\w3\\d\r(__½=t<=kdqv8n|}r&}g>Mo\\}2TG~G~F~Y~\nf-f/Upp&c}˸Ň?p+p>x2^ejs\n6װkNkk.66 Z00,M!~S#t( Oo7c4Ûnۈ*D{F3;4T;e]_5CV\n\nކߓ5;TU;X]t|.Γn#x?xjxIGx8Nb]AF-= )|-|<|]|%|->e	\ragX|<f>e|\n(bN|N>5 	?\Z	+)˧X|_eL\\ɇQG|Ets:\rWw\'EQM|iB}z||Y|Վ/*\n|k&\nW	~k3u^Q:o72yjOKO ֗mc^	3<*maaxD#ڶQcxt4\'\rOjWǓlSUxP</Ow|-xJ7YgP9vx^ي,N~x)x[^2N{vr==c%^p1>w|--k\Zw\'{?#b\'݃Yϝ/\'S.o]-OϖQu?}?Pp\Z }_s]_OPybJP}\ZBP3t\'+a-skl	ڟ?֝8AX!aC=DB3i6,A,¦@uWiњ!a1xdE12V\"ai=IO=p@pAp	ߢS?\\!fƇKJi\'[$_sp|0sf;\ZEN#؟E8u!lCݕBWNNNϼ\'pfH8@8[BBbG<ź(B)!~4p	dJFZSKKHIH}2EHYG<\ZK^O$#dV\'d\"b7&d9@~fE)8O_CL\'1A\nw&KxBɥRB-6?9BKBٮBY:D!T,~$<8PjBxt$8>P5KDw\"<{J\"((\'ڷ.:	τWv\0Q(&o	C	#@>d?-_<\'SMsj=E`%k	쇚 gGC!K ~%H	2OBۄn+s!zO&zS>L~%HM%{JDFV/	}	I<&|\nR\'|\"\'&Sw	S̭Wi_фwR\n	\rބ ¢__Kiz؄߄)kAU%ǉkk_Dpvc\rq^=hqT\nQ7{~TN4Hb\rV7\rx\ZoƞDs;1\ZqSsD<9{hjJS!xo#&-_O&#vD&ODD3W~K%:$:WΓnnzD6z[]J[}qSI\0w\0ZbX%1܋N l!#^#F}\'FAc1ċ$++k%bm:1$<Gî3iě/]pω9Ĝ?\\>mͿ{ĂkĻvFbR6bivD67)CUć6G:b]6bG\'͡z$\'Ӑ+gg\ngMM&pb[bb</Z#/{҈.ED2\"B	Pk\"F\"<AMk񷴈DoD2p7΂fMd1̃7L.\"3\"wҼBdA	DVn\"gۯIEXo\rD=(&]^b7==MȉX[s7;gwAD⻤Z;(q\\BG|__OL@D!yf#q̧8Nzu8MLY@@9MK&$l%o\".$.J3<H\\<VG\\dnI[F۲G\ZoMrœTHj\Z$W9$u$\'$>)I?i]Hf 3H:I_%m0.\"mH?<H6&!m6HOHBGQdbgO2%>@2!E&m${Yï,ntv?H4#Y!Yх$k{$^q*q P\0tE:@r&l>Fr1#yT<@kI>}H>E$\"lk߁-$S֓NZ΃IvRp/Rhx\n)ę3@\nCNϑ\"6:\"\"HgI΃_.KI1GϓbI`Rt\')A:)DJ(DJ #]!]]CJJ!]{FJʙ%eD23\rIYHY<I*Hَ\nRD\n)EUIK*R#DJJ;E*8C8TقT#U-jTISI\r-ƷIO[H<ҋo2RhfKjEj`Nj7DjGjۓ:O:Ɛ:^i^\'u6>\'u!LHV%	>	|Og gI{	{$#!$u7*.M%ϷOHxLj (\'~zƖ$r\rqYHb]8WI7&$@,IoHf$I/I\\q$E	I!BR^0$)$mRINMY#\rړص0O`1Gҧ\nҗi۾4HH7I?\"K+<C@OZXMZ\'-@ǝ|0&t+ȫɫW&EÞտY5N54ZOZgk\0:f~dV\ryȺt-d/yS ٨ōlD⒍&!&dS^\0:YV<\nyf8cvG\"sȖ.-V9!lMBU@6w{ad[\rn*-l!#י%癐EA䃇ޓ^\";t&;*GJדΒ݆u7CGG9NdߚVx)rh59Mr\"eO:y9ԥvp|:Ї|Ziz	쉵.!_(c^ɗX+䫥tKkUɷ~+ޓSȩflrzr+9W>Ň|*|Q79j/9K!g_#g>oKw󨜜@έ}A;NΣ=$߽jC.,&V-\"ryrWJ.N.ݭG.\rAo{\\:E._N./X!?\0= ?1!W!W{Ձ5^kDD~Z2K~&R#7 /|[uȭgmWmm]vCr:y4ؖ@\\$CD2d@10hHVqo;2q=TD&#^)&82&3xdv;25YE,<,,\"cbdYrYz3,V!Z䮱Jr)H&fߑJC~EQ,g׻//Cɝs{`\n3??6m\"\\l!~B<DE^ZN^zxwQAQQ9LYaKQۀhhdR4ߡh҉5R2e͏#-ZԞNC1ḥ@R\"(S6CR6c)gR|oL0)u)(g3!e[mn/#OŲ\nFAvXWGPlRlД}z(n(aG(f(G)A)$ʡ/) 0HgJ)ŭ4;E:M9r%Gӣ,P0J?O)aM3ȓR)Q.88F%!N0rYcrO r\'rhJU7klUJb(%HIRR>QP*P87JYJƓ\0JvJo\'%)LꜦ䅒(yT)w>q)c7Q>F;H){L)2Рx(m](QAJk5Z6|X/I닠)\r[)O;)])M&fJ$\\<iJ&ҢSAy!0(/(/(uYp LM@S )}~%k}P0Ng)L@R%)\na;BJ!kfP[7Ph-\n{\r͟Mp7Rx({Q`0Et\"m?IDyR=0J6J70Oy]A8~2DPfSލ(#g)#7)9PF|YlJ_u21bKLLuާL(v8ZwcMuٔ,1cBJU=R1eJYRAU?IljNRVZ}0Zs	U;Õ3a;UU\nUU?τj!j\0B5Xjn^mF5\"QRMf-}抷T/۶P]]KtjGLΥZPQm=%Խ-v+T{\Z=՞EI=xz)zpz(e$JuCnT.ST1z&QR/PP}2iTa{:z=S+U>LjTzcujiCj4DSc~S/n\\GI/ХW|/	zSpjҟcO$jz}{jft3[nPswCBy~ԼK|EIj\0z$ncj	dZ˔Z,-jZ6Z~ɄZH}pݓCÐ*U*gjּ\r9Ā|ڢ-|Q;7NQ!FUTI*\nK\"T_*Jd|{N*5J,qaT1JD8PҺTjʦPn[~OAR_îRߤRUSQfQ?l+~L~OJ6WX5:KNRo(o*7	JuBuR:ul{@S1~VzPISix=i\ny̥i.ii&Ѵiiiva4ӴMi!(!&f\ZCʏJ7ӶhShAc4(k3VLm3_h;}v,,hJDͪ<\nSAL#JU}K]zL+Fw{Jvv\\JsB{ќi.ڑ4S4W$[=2=>^^KcӼ^Wz||ۏ\"h\r JZ0h=-X|vHv>iEw\"9Ly[Zk*-49-Q Bھ\rkcdZ,-)LKBKMɢҫ/Ю_ݠiY#$9[c< ڝHZ!TVF`@+7Ch,CZE\Zڃ5{h5*-fh5=\Z0%ZY5=EZӪ/#ڴὴ|ZsPN{abUPA{aRC{EqjoO@EWh1\ZA\Z:OyC@\ZONup4rn\Z?zF6%L\Z#J?\rјJ\Zt­/Ɖqh\\qJk4E4EY\Z=5Lʦu7mu/zki}޴>k>o/Ox5C\r޺A{XE{\'\'ӆL{håN,j6CӦ̹o{Xo9i?^ͼ$f\riYI>\'7C+]C[I<,9WIu:隃k@t7:v/QD	\r=麱t;=7&Ls\\;s=醙[э9tYC\nH!K1IK[K\0mk}Mϸ218}t{l.qÄ\Zݱm~HHw2_;=}K?QB?cݕ3IwWGw{{[=ѽ^N}jEt?0DS=7NCadzez.=\rL-==b=ːSA?kHLXɦA9ONh><\ZEOJKO*\rlg\'=voޣ߂o1~aـ;Oۼ<x=\rN\'zAm84}z]za3\'D/zR\0MzŜjGZC~Hl׽(׽d9z?ƝgӟI&GzS*	VFoҟ=?~Jon7z[?[V=/8w4֟#*f;h3I@ot7QtDƌСB0:nEi	Utf:{:ʏKD|c*:%G`ttx:iG>fBiЙLJEg9tW:MB}Attqg.9r.KSte4 6G_G\r#?:.ݓ/>w/}CwwohLs?뉒>>S>_Fo=OK/so+WCUdcSz\\C=\ZCCpC6CX36\0qbelL^bl~`gk2B=\nÐ0=̰8:zT40\"M	Zɰ>dɰ3~d0삅OYuAÂ-#OEC_ka}uqcãiqtg2CXXq#+\\2N\'!S5wFjFOFF*dd3\"\"0\"^((qnGƹݏ1곌ح=-qVKT	m]FFx #a(B2n|b*qfm~e/3a<g /1JK71q:2@!BQ1Ȩ$3jnf 3\'u\rMͺ6/Wmƫ{\0l^lÀob@ޘ0+VD60pSbN1\'ގAoeПe0FZ3і!b2DW2$O30ay.!P4]EnH8GSӛx9fO%:c$1Hg}x1{1὚n+`|:̘ڜV̘10wW;a߀4|l\n\\faRg%1Qw̫?$1\rOz1v2[KL3Nys[Yȴl1JW6w{&62_fy8tjtA.K#LזL7\Z{%7:iLo\'\rG!yg\0f0=<{yҊ7iea2&z[A-$f\ry4fͼPf^[n3=e^}yLve&IQY>17f3B;3Ây3\"|gʼ5tdfOlc0o00M;qf̂Xfax 5Y4c`1K_~ffI1	̊WGϘ^՘,\'g-̦[矮2k/F2י{_2+O02_nb:0LL)	?<D_c왤LR3Ȥ~d=f3ُN1[\"LQ]_)^eJƘLY.SS^?캬J)avG0{!׵_oRtcwXpss%2?\Z3tWcṈ̉!Kp(K&>s,9Ng~EeNGBߏ0g3O0`=̅u̅Z/&_r<s%|2ZUmZ6:OZdb4XU,M)֚XkXkDu֗Y_t6toa(fi6q%,͇,,8=,.֖d<B-5k\"v[\rGN4k,UZ4ˊͲymړβȲVXv9}kXXLW`9ZYNo6d9sY.)X.MB*ֱjoh˷8dNN<:/+)\nhf&BڔЦ+PI+L&dvcE$\"`YsYы.LfńY1uXqGYW.}e%\ZU7JHfXilVzGV:Ǖu<Q̺q+3Wzy&5ĺuFu+n\01%\\IV%v<+^UȺsU*\\~*zi*w4u*Wc?*ob=/d=ȼzقUIAlX[XzV[]sGXTmY\rXϷ뱞6%KKwKz*i\\c^f(X`vςnlxς`\rr8c\ZYǋ,m=eYd+yZbFAK%ܛcYKZ̒;d	,Y(%qgz[\ZaYXCXw>n5e}>cnF-XF6~	kBe}adMNB7y.;\'B֯OkQm\'SֿY+YjOw+[#ɞiYSֺIek=cku6*:MlIưv&Ԙm(a;(IlI8{˭ۧwbwwwwe[-66g6*l[2.ڗ/%ycYۑ俋}S\rۥve&fqd䖰R~*\Z\'O鸰_h\"cI;jLv:v쐵쐛NIvysg\\g2yJvĳ+v9	170;fNd^b_Koe_{g_tN2jLN]xNKe:Ǿ!agazcg99oٷ,\rt+;þe*؏>ڿ@]n(c7ܯa7<`?Mf?%<2<vD.y\r9%ƍְWv{	Zaw\\ew4awb]lH0bþSp!`c;^;^lw\n&WaC6Mk˦Yq6j\'C|p[aν`=.寊J=vݝ~\\{(>{>=\\/aOb/a?|u=i5Aʞa{Y̞uȞyŞ+>{֜Iv\"ރ4c//rTd#8|*AʹjY\ZQYu,ggm1gQj:[>g]zg4	g0ѵT~;٨h1x+S9pɧqs]8JygJgggg;g\'y^ͱX%Xñdsvqug9m%#bǑsأs80q#xXnx@98G8p6rxp5x9>Þ_i\0		l	r}__pVsp`6ND?\'I0k9gq8C9V/8nshx_w:Ur.\\:ǹt#sϖpj\05\\r9i幜97[8f;9@MsSDz19\\6sgS47)QsJfrJwsJGwqʛ_r*9ba\r^N6S%3TxraO9O=˜zS!γt/NXӢSi٢Xq^p^M8OZ9}Ϋ_N@9\00tq૗8]	dZ(3ER8^)ҘCN\Zs9%ô:s8_8\\w#u	Gԭɑr8`Lp<)⼆Mr6[qp29ΜUU+Ѭa\'X@θ#gbdfW3&LoΙ~V3Ej.s殭,P8\0G8_\\@3WUr5_s^js}In(@sr7=K\ZsM^rtsr]ǜ>*Nrq\nwwe;dk_ڈ{ǹ{+GVcøJuәzakou0YQ=r/x\'c듺{Mp T87ninX7ōFuq˸죹11a1Xs{Q?{˾r/Y^&DqR͹	w	#L6A7rg57M݁&1iܴZn:f7br3ǸTn,7k˽iWʽ6ǽ)7g--Ev#Tnc	~3[[[HVG8pߦrFU\r>܆N/͏¹ͣG-wmk;/xH\'p\\\'\\kS.(\\D.$m5»ͅB}CM\\XU+r縈>g.B3)EIs\n8 #R$$.E<KeU$.5..os.u\n?qnW+v\']\'nuМۗX}m}K¸~D !N;1ٸ;r	pxp#\rxsXW=`ܙ{]?봸˸Wq.-p-ۈNCi݊iֺ֦Pyk{֥t֍6lm8nӵK~ЇxFf<H}A3_gncʳY\Zvt\rvμγ\Z&l*x{5sxv}!<5|Tf@_.C# ;Rwsn?<<xGOe$ry^abNXHx\'2!<xqv\09/H/IBG𺵼p	tw:=\\gʋX}Ŷk.n;ʋK0Y% y	?By_]Kt5yhnݚ{yf\\6xy_N\n<yS1BS8Ȁ+ʻW\'UD*w|U\"xx5OCx5+1^o\re32vl׆x{6kck;x1{JjxIia&by&O{<bSq#ui(fOx<lG+h$h1$yLYӃǚqv%<׃<iOX*<Q9u7S={j{׏ugyxCwFFpg\\ބI;o=o*/+7#o)>\\7w~G}[U7UjWWgWW#\Zo5\'kRC;E\r+|S|7i|_5|-s[WWo[\'o\r͸η0V?֗={|ۿ_}mc|zlwv.C#M,+ẅ\ZxHx+|J\r?3?0͎Ƞӣ~RSGN/HVc_u0~|?~a#R!^~bE:?Og(>o|gzo=j.g_:6g?g9>o.rc~^{u#_jǯkk}\rWFCqƚ$?~\"eʃ߾i+#Y5!c?6>,6K#I|ԏ|ȋOk\'P	3|>9c\"t>=*gv]s&\\F>>\r\r|Qv7_|x/p/\0lW\nIu~oW@v{`0~F?1&\Zg4%1c=_֟3Ng!V]8_rjU/\"+z*&/ՙ(uEFC@˳U%z.xPN@T@h.\Zax(01*0Y	vv]z,}%,ߛ\n96l{6l؝}&\ZwN;8L	2_NIkn?<*8tN3+8Z-8EplX\r-vPnI+D:/=*8W j l fA4U\"8??!`f*͂51[	.>!ÓlAY 9Qt|W\nңMQׇ\'\Z5\rH6A[=u9]AeAp vyAi`:AセjBA񡟂ӂtw4Y $Vp?,(3u/\Z	g		-2-gAǩWSWtj\0RC\0@\'ge}Z(N	P! j~G(\nTS(`CN\n3zё*	@<i)1Htt@6,P@hś4AWeYwmc@J04CS+Fq\'/I?SVӃ7󣂹^x[x(XZw@\\zp6mjߍBFLP+Z]&9 !P&g|jBP{	N(4E	*fd-շ0)[h	wbr6{6½wv.BVB`-~|=,WxP\'t<#t\n]l\ZRkZme]£m£kl7zL}\\˅\'ۅ;\n|Ha90Aa0h*E%ݲ\"k[\'<mOYNx&bBx͊0\".Ai#?\"FFx	/c#ج0a,Xx1aEh&#L\\^ L L.L.tm۱{[Gx+k»*EW\nKm.I>vg\n*VV\'VVwrIoj@<>#<-*RዊDa]a{v l\n;P+B!<|M E~\"\nQ؍BgG!LHDI.4֓*d̇B,:#\n\0mP~L($\'BY0U(:JS2v		=.\n{xU޴^ma}o\rDدc$p8%|phQ>+A1 Z1]8?(\\%<M8f,;w	G]O8!N:N>NAOi~<\"~\"Nv	d7	pf^[pvSpJpS%\\\\,\\,/\\B^k	HDn?DٗD<BDj:f\"5rCCQiN4>45^1\r\"\'kDDD7DzM\"#\"#5I~ٹ\nֺmK-mA\"kl\Z%A?DKDE\'D4\rE!UB#r7ܝ]EoE2EEm\r6c	E5	\"\"\rXYW\":(:e\':l%\'rjDAGvREfEEΞ/N\ZE.O/fxpe(QO8)%#RDLOx%-wrUJEˢD%\n߿$Uw\"Dƿ*l=D;7ED\ZE3E5ץfwz]TIH\'z5\\:+zC,FXԴST+z\'z!ڞ6^J;E7d͟EW^-\0\"pW=L^(BEf0E\"Za\nEBzI\'qPE2;!D^#[\"aU$$EbB$!GD}\"լHGR墮(Q\'DEPE}8Gk\\z,zQ-+\ZMΕ(\Zh/\ZgS+\ZY+\Z51}G>OD_^ESD#Nff 9c_?H|ѿ}bU\n*%5+X=)@]9HxE!px^b.-h\r(f[xh 63y+6n#6Ɗ-m2;Bߊw?.*[n[[M[v7!*Ų0kAkqXScB@\0V*v\n:!vo;_pym{{ǽ*hK*\'۞-{ȫ$>_M|4K|QؿؿQzڈ!gš=/v#6ƈ#~G/<:\">4T|qDUϙ_)NXNJPtT|\\|LFrhQ\\[V\nQahq:fZ%{B|]!<\ng.>7g?+g,s(ۂ	q~De5Q\\#_ߧe⇞ʘQq%xꟉQnG\\q\\,Mh%~vyL7?wCI<Gr+T2qW2^Se+n+n\'(ŋ*T1@{Apb\"U1z1r_#S]HB^x(i],ƙ8qĄ)1Q&&iŉIf\n1}TL/\"fًW7bKW$s׋<ł:Xl$HX:˽݇=V}soJoFS\"#&=l-4`S=6_(W{gF_\\^)BxcFph^$^\Z-^38VI4F*Mhn:OH:X7Mb\\ʖXbILG$[-%[%%|/Zd>d;Xd/dݿAldOdH.Zb׹Ub\' wEW%9ıdV;}%\Z(qy\ni$?%nU%aϕ#H\"HeJ|_{hIߒRI	sI(]JDDnWD<$9IՒsuIt休b$d$^Qr*Zri%\r$K9HKR$)T\0EV8H?uH|\r$ӯ@	~j䛑$wH\nz%E%Ż7H_?%jZ%m~Js$k\n75=Vw**;ɣFmI\rꑤF\"=.,9!\Z$A\'I\Z%;%σ%rI3v%@=Ht<$`	 ZFN(~I1dʕ$}Lg !9IHyq\n	UsIB\rH	*pfoJ-E\">zH\"Id:SyDJ(W4WHzr$+ Iwu`5E_F)y3a y<!2VJާJF[%:$zUk,$co5%[o)o$\r$(˃-7$F/K_vHh,%YJ,HUIUZIR6/RM	+TT˸Buwt3G&]7n#ՙH7`F6J7LzwI7N\'t:Iy\\;WtK}!VttއR˨R։=?{RDM8aRg%W)uɔzoz\Z2(=~!鉐Uғv[\'/$\r俗9KC\nih5M\Zږ&\r쒆-K13\Z陵(4ꢷ4ZWzA.@NєtqI`zui4sJ-\Z-iJ=vUz[zS\"Qo,-,-&-nQJKU]fiP)LzoBz﫥Fi9B놴bzACiJw:\\Z]#ђIk\Z5fmi]B.SUZ@;JKJceǤ-FҖK\Z/ʶH[ˣm6ݶD\n#R\rB=4)\"[)בbXc)Z %fI+R_ʯ\'JWK,_-RggrnJڛ,\r7oKKڤK(C#P]aGǘҏ$tK\'LeY:MNfJ2߮ UJIyPғV\ZrƨtetexXrrJh,[=M>iHd\ZdS2tL&*/[-ӶfSddzV2=z2_2}~L!SYKfp^f 39\'3w2s\Z5EfvخWf=\"2ٺl/\Zw9Gd ١ǲC횲C߸#sVKdGʳeo4dd76ʎyekȼU&˼NNmJP[Ȃ~_۱e*e0Yȝ+q,~YhGޥEn@\"wg\"ö\"eQ7dQOʢuʢb,zd1nbI,LcNC_&TE\0]=T_T5/K*\\+K#d7ʮd`o\rٌ,,kTv,[,dWdynYٝ@ٝ|YA\ZKV.+RM}\ZMmeAY2JVIΐ=z${FV=TVF\"^0ʖ=.kN.nK+Z٫RYaYg^@\'MeaH|rm,L[0dd	;>TFH\'#9!edᄌK1Kd,\nGNӣ|PLTU,0eG2iNt MօLuaȺzte=k%+p\\޺\rF|Wd#>>\\Y#etԙk\Z2싪lr!dOlrG6ul}},uXU6$-\\+[(?)]c+QpT/\\Š]+W!WZ/׈5T䚽b5OU/,rv\r>.7Pn\'On|?Nn<\"79BnN\06M\\[8Hۊ;;?;K]y]ݙ䖁r$-ܶTEnDq@n{N~0M~تO~:<Z%.B,ʽ.˽O}6}=\'V/OEʃ,yZyX<L9#w[{#u#F$y5cJhu+ظ:ye<D0$\n*lQh2&O<%懑_*O^\'h!<iy\'44%UH~G_~zMIyI^XV^L /BRG_kБ1WSU&>jS>Ky]ǰq[zTkNy-,yǟΡ\n9@/T9ǤWñNr\Z9biW,Gџr)ߐ夶e9yO,{*gٟ<ҊosT.\"ʅNrѹro\\$req;Wޓ$m7Va;|~Q%_\"8n\"%|G]\"@Oȧoȧ˧W 0Rwnb|pH/2U/;JMV.S+4PhPMxXcb]CzUbC.ņ}\neUIe;V+=&nX\\bs#MkEQVUbvbk]bJcǌbwbgkNy.՟run͕]L>Ka,%[z:8!>o/;DqbXqBKqs93ũ\n\"?RW{CL;#Sei*\"N)\"Bf|Ymsk+.pr0/((]H#PQe+߁*nlW܈Qd)ZE\"f\"W	W䭼R)Gw*\nڊ{6`EYzEȨꩢriAQsBQ۰Kݩx_h&)M),E5NduH&*:3ζK;7Wۂx=^鬠;+8k#F`+Xj\n#N6Rp}[\nZV*D\nqBU!9ѫ])d\"DPV_Pt*^߅*wzw؊GbbQ|bǏEO1bLb<T1uW1GeCSbrݢb2vǹCr}4w/yb^+J1]1b9ubL2ST?TT.Q5*(5_+BuJ\'(u*\r^*7K_)\r--6+w}MSZVZRڴQq(5J.Lyh`fVyHt\nB(WR:G7*]/+hT)]KJhc״QZWyGOyJy\"<iU4Rtse]20q{9Nz{A:f)fV03qהQ\'~\Ze|*2]e@yŦEyu2q212p[ev2IJQ&*(Sc*Sg+3E%̏ʬZ孔!eeNܴ2牵2#e>\",hWtw7;(kR\rn\'e[彏Qyʲte%Sڥ|?`+UVZceSdl<|\ZV6}S6{(_)8k|;	vZOV<vVQSઃJXQ.G+Wȭ딨X%,LU(\'*l%ز_IjIWRd))#cJW[p&)B%3SW9a_+94یUrMRЗ~/SJ!JVs|qRQt_R*(}۔}6Cʱ)D1Y9_PNeVN\\QN-\Z+?h+(Gqysu\\()!MBFȈPF	R(l*ٲGTRV}{i<ϙ{rQrɶW~:Wtj_QO_񿒿.u..).|wEw@@5.7P\'wVVkM\Z%=Ӏ\r\0mEδ=@גQVN66hlj\0l~\0}U%oB\0\0^޷r!~1`_%p-\n`j\0S\0\0O.\0\05\0Jv&`p88808{p;<8V8~n.ַpr}k+.഑Q	88w	s/H\0As\0B^\0B\ZPRũкpˀuS@m\' \\]s`n4_4|\Zws߻\rH3$eM߀sL@m5!#@L6p\r s\Z I4 u/N@qf@\nP6T8dyu@9wn9mw\0\r?g\0jk7=8\"bt~MIM6w{\0F\0mF_O@0@q@wS.CF|m=xD\rdcࣸ$` ;\n0|||-|6c0LNfA%`6\n;,	vp)ɷ\0\07O\0$<tkWH	\0J	RN0\0B!,4\0\0=0 i\\=p2X\"@~X4X{x		X2м*@ppձTZ$Pc-Pk\0j7mnn6\r;\0H/|n+9ܾg_p\'phxpk:6\0hhh3h\0ZNZ%-ZVǀ[]6F@@G5@G3QS\r謦t|r`\rR<X\n	HztgO=ozTz;^5a6^3C@j0m`ps9Zkๆ`+`9\rBh@WR`w``05\n>PƼ}8k``?kOIiɍ:LB#·\0ང%l^`v0;	j\r0wi\r_\rN߁O07%I\ra2:\rPO.Xw\rX(>\n|:u,d\0;)i`l||M-q\Z\0,\0yM\0;Ӏd`~`-7Q<ױW:%Rc_G5Pq+\"p,^Q+3kky{~\\mDr  \rNr\".@# Z	DD׏	$@\"r;;}sʀ0AJ2V ,o^X_rGs@@Y-PcPkdc&KFt˪ULzz\ZbHcbhh1h}d#h=Ai	\0醀A6<Az%Vg_/O=4m\rÀv:|qU\0%\rڭw	ǏڻZR2>	:sdy̫mAC@ԪAu?l0@Gg@X91+rh|.4|׃<\0@i΄UgA!cA?\0]\0\n4\n]q]\0\0nNNbWo=I%0ށn%%\r%WRmR$Ґ?A*;1s;k@w/A97r׃\n&@AEϠNWA%_J\ZA%$T	***@AUgA58}C\nTT\rzTzj}z\r\rzqԚ+;jryqs#Y6ǀ@>T^A21mA\n`\Z48h4)\Z(W&z@>/A\\EANwYG?Ǘݠ_\r߬}?/ \0Iܷ	k- oR@PKL\n8	~bt@l`Pq޼qC %\0A@\0Gu$}~$s&;Q?*wUs;̟k85Uu`݃wlޖog-Ɓw*h`&\\\"i.l^d6:E`ۛ`{ H6`v;\0_{*{?.O7y}kggY\0\0z68p&H]\\nkϞ_9|%G]G~\\_odۃof6ccqep\'\'26\0RFo_\'nԞല0pZp\'8]f\\7κ0΂~gby(p6{pA!p/pisp\\~\0\\q\\kg\\ץ?~\n7Og\Zg,sO;7gkw6MYt+)!W%Nq\n\n/;lM\0p	b3×)p5\Z|W8?xX?;YWG.G*Q(khggKSWU.:x!\rODx?{3\n+nKpp*_p`G`}6^Fgщ;00~5O)\0[``R_6	SV[`C0D4:6.Oz(-lr0;U\r[`WomQQ3;	Qg~hWA4L _ ZLE=DR!dS1ȖU3C}d[X.d[).\rc\n1l981bDs#b}\Z\"b)JrXbe΂bC?Bq8z8%/C!.!Bp n{Av{ěr:$H`I7$dTD[d\\P 2! B\" W9kidgHTr;FG8f\n&\Z$P\rS}w<zV\0W$G#Hҙ}HH*$=$k$z$S|rt䎟+N}zHv/$o\0ɯJ!! 鐢b1Č)&>)\nT.B9z?!Oml!O=[ OC\Z}!\ruAuyxȋZ\'(IOҜy9\ny>is١y.\r\ni}}Q\ritҡ	 ];!]^ȇUMCo =$HS/2212\0|2$d_X2i|;XLBfr!~C, _!Sk,1x{:\n	C6\rmB\n!n뇐6d@;L!S! a=Npv$ȿ\"\Z@Ĵ-i	D\n[kBWCzE?P,cZ=o]CAu=Uy-[@<ny-6t t{:cto\'}&C9\r=ح5\rݬ@͏jA36C-j.B-+^@bP;q:~Zu	z\nPWPYu0@Os\'B=;>\rPg	=wvoԏ@٨A)^ACCC~*BþC}+2hMЈЛh4;譇$,h\neZ	V\n]慴BB?f~\nZ֫V>CdЇ\'C&Ak.Bk&ڕ%h݅ih]F\Zn<\r	C/@vC[f^C[۠Sm3xhЮ`h9hG:?8Ё s.tpe:bkBbTc3Я@@@g{Ԡ?}?oFCT_.օ.((HB>A!}PV(|h\0nE\'A1R(dg\\<	JlN$PҭPқP(eV(m=W`HSeKrf PWPR2TJv|b)Tk*+ХuKա˾G-BNT<aƹ05`E0\'&0=õ0=Alki#Lv7l؎a{lvAF;\rLv	v]ؽf,L4a\003o0t雰Ca~ìa65}0{9}f?s9_aΤ#0(	0O07,#\0\0;q&TG/7滸]\ne@4,ˁmz޵	vnv.#|!vy<BvvI6E>M>)\"aaOK`WwG®=	\nEoа߽`1!JX,|K`hnn[[oRvRbB`))X,}	,	S*x=4	Ev0aZrXˁl\nC`E\\2xTV+5f]Ua!Xe&7C/=\r_8{:k*5:a/6a`6^j5yھ.>:l``]ᰮn[jX37X_#\Z>\r8[ÆN\rݸJs\r=TF`]1}񻰉5>.lum:6=l6\0KKn;I_W߇Za\'7\rg\n6!\naa6xS	/Sa̔,#G΃>xJ^L{a\nI&Lٿ>r>W{˂Du5#kn5lupn\r(\\.N\n\\N9|cq|S,|S)UW[[~moo߁~w#޿v9wy<i<\rFNG6 &ܴW7kO澥p:	Uv+n}nwan	~;tᎯTGvOɀ;];;?+Z]ݧt\'v\rpst~jm)wLx`e<\n~q6}\nCˋ0\"<\0!\r~}rEgcc\nlDD=x\"8<xO낧F{~Wz>~J?\n?\nRxwR<7u<L _+Soj+m\'|m[x5xa:m	xǝxP#{cGc!.ʏON\Z§ɽiW\\>> >*_I[2km\'UppM+.&pp|f8\'[7\\&`\0r\r.6iD\\+O+\ZJu\"d_.1uK*6)bxĚZqfIBwski$BMxmw3A^!bϋCc{I%#h xd\r=\\WC7UqMk08Gs\nؼqtlpB.!u1[-=Z8y	q<yl_\n^#r\0k\ZǤ5]\"hq~8d?8AmE\"EIs9\".V#.#BȈФ)fĕĕa>`D*)\"R#FD\"HH*@\\@!R3*w*w#,(DV}ܛs8(~(FN\"J`DEZ9oDuD\'ǵnZvu kE\r`\'s\nE9=Je&A>DDDˈۣGq.~чF|FG\\Bfd!~ 9#Q7\nau/R*bbbWDyTfbu1CbA\0]F,|E\0PpcD;	ߏ@o@\'OA׎AX<i>,E~g#D+_A[tr!4T!0byĲ+pCK#UF*KHu\0RGy\\불r/CnxԎ5GNF%E#u⑛8H=YRd	Rӎ]rJry\ZrW$rbޅHkHFȃ5H(%UãsHM\"mH6ҾyԝtJF:e#.\'H{vHI;ǯ\"]_ #=HϭiHϏEz f\rgba35_gH}ȳJ2B2\"rm-O, /_yդ\nyUV׀\"\'g\"?BFOA\\V)hEƮFN#iȄ=dJI2JtEJA})Eޝ+Df%	YH2?52_yY,A\"4EbeO3W5	9Ⱥ4M# 䓓OB-7#.ȧbdZ$U+_͆73w}k!ߟBy|>CvlF~`\"{TȞ?doٗ5쫲F\"^#۾ G GPgkx	CQ5Tԗ7m46-+UB@>9|50rG5A\nT ܮuw#7\np`QDKHT\rĎ5!$!2$/<F{HQ$cɐL\"Y${\\!FrS+܌H޺R<#cאR\rBJWFHsH)!xr3ܟ5ߐh2\rr3?\'JE @ڜRHDƩ֨EihrQkY4~Bi-֑x(-j>jCdJJg;Jw+d	jzԦjfJ+J/7}Pڹ\Z_>L	jn22ʓ]֡Ljo\'P7 P!/P(PƧQPTwGt2j&\06kr\ZI@Zk:%hAy0lQ˨\0*,**\\*h\niE@oBB?1PW7P47\"\\B]n$P{wvPqT$*~5x\ru;TJᡒ?P)ܙ._CeEg}De;@PlTTѽQԃ=2T	LUYBUD:٢j{$ZfT-;-AŜB\rA=rA_.B5<\Z\Z3rQRE^mCqM7P-!TK2tv6]G}+Ti<TW\Z#@?)T#jt58\Z^&FDR1\"V[|#j*IVw=.j/z례Q1(л^x<rDP6\nD!M((yt\n3݀JQء(-e])(\\[Q̖W-Dq0P]`J%\rD	zP=(/(Ű5j)F.jڊZar*돣Ugw˞L5]GkXZ58Ih͞{uI\r@JZǩ\rsmZw/zz$z*zs>l>z0;\'wi%\r#}[=oіcV76\r67ʌv\rhǧh\'KKvQ_]hhhhV._~Ov=.=ЧMhO\'ڗ\r}F\ZiBV!{oז@eWn@_50AGFGDG=BG7.7G+q^/ѷѷLзcۛ[-ę1tZgtitzC:#A@gFgiyV<Q(@#]@@C.=Շ.}쌮LwBW6+Dtu}f>	T,V9x~~|+6~S~A<nګn__{~1A݋ny]nxߪC]~/X}RA?Fנ?V=CZXg7LoE-I*YaM2(=@EmCOף?j*3ГFcoN8z*~[cvM=пG:04p7\ZACT0H\ZxFz~hƤd1h(\Zk?@8hw[49<BS.14s3}fǺ.\n4?	в1<Z.-ҋnn7uP@J.jQCa֬a4b0vlX>5݌ԷP`P0ztV~)Ƙ$f筯 )fw!c`b_b+S0\\0Ff㵶Cs0&iw011W0礼e`<iT ƙqi9cwaq/`\"c\\Uc܌o`4L/*\n`20~J)ƿVߡ	pb`\'V0D0G1e[0!ez11ݗ1\'va0ݘ(`.Lw&\Zp	I~II`2ba>`<0]1;arʌ19o09091yArL{S0\0mY++LeL)!Lyc(r7\0S҉0T7cg1M\Z1a]<\Zc\'QLrLØ?ibތy^`y!.4k`;17̫siLLͪdLt\01eaJ}0}=6~L\"f)dd\rRfk5fv3\n3e~d&ǎ\0ϔo_,1ca0sO?0:Zo]Bx&`\0N`,t@\Z0Vk2`C%ߴ	CQPFj4zna2°F1¹N\'F:G`đ@R/F^}Tt\rLS+ĪVbկ^êOcWnƮZpjjuupkz*5N\nvsE8V{֛Obw?\Z1=ݿ)\Z\Z2&C{XF)k~{YZ|njcmXT>kOu?uڥu9Vu+u==.wQUC`O3bo:Lu2kUggM؀ r+6[6f칼^칮.칟/NUb/^^^BWaC^a5`ݎv|/6C\'O7YaX*l<6?h&Kw/aSܱaރ8b9`o#a:asؼCl#)[w--ZV[VqV7ckbwbk?\'ac\'/a63C]웓ط;pß؎؎ﱝ]e/.ClWClw!]չ5a%bءءQpPv8R;rvEv,\0;Vو|;᥆?cf~;kJ??:;H;&;[u;ԃ]6{2 (,A?^ÂN>Ăo`7csx<`qKȋĒo	X*,{@Sb9XVbPXa%өXɯXQ4\0+K8~fba;lJ].]._ڇǩ:©WuyV[­#Xi=mVt6q[dYj5^_nmSۦm;\Z;n\\܎q;q{mpƳ+8c9A8\Z)άyqF88F-+¸;~wB2u\rݍsY¹Kp\'|q\'h#8H=\'Twp\0y\rg?y(\';Y;w\n.`.h!.xM\\2\\pBEo1..4	޻wٸwEwD.h2zY/\0\\.j	uEsp+.=󸛝Cbq14.N..>uw#.]).i#.9-ՊKـˈ؉2O2i%wgq9Ɓ\\N/w[Uq%qU2O\\yH%.W{d^{~\09W?k{5,;^!Zpp\n\\q:\"pIո ܇xs\\]\\OK\\\\R\\3\\_mǺ7\0=\'M@n07Tv71:[,[&N&p&K\npFnMXXfpwqŸKt=_{V~\nqkGq@-~#6q885:Cny>8d>9Išp+8LE\rCYY8G|sGȐ8G[wZ麅\r4_6ㄬ8QK\ZNlɺ6_7\0qxܿ#FxxUXWOkX5Fch^)[~*M[iDw[wk2}|^cxC7*0o8o5/\0\0(t=޸.olYMu?ěZ \"ޚ)(xm7D[ֺ~:wYul1ar-tJ|w\n>v	ć|_ߌ_uC}_2G+G؟_\r*49(1|T}|M{ckqI:~Oj:[\'w#wJlCnⳗ9\r_H8/\"?)ŐD||H/𻀯\0U*Y.Y5\'O\r[OĶ#hf42yy|S_||;{/oNw֗Ap|{2ߩ!?￾j?g	?,~t<W~rs~?\r?^uMxȡcxh5urxDYģ_x]<{Oޯg:aLJ6UϞ*-|i%x6%6Qxy^9ئ_qT7#t\"TmM5	VH} Ak;A#膟\'>$l̙$l|9OBЏHo1v~#2G0o`E0M0U\"	&	M3 |ٙph8`iz``ٗ`]F 	wR-H`7Jp#8m\0On!E8v\ZMp=CpmzEpJp+|Lp\'N!M8$*;\0k!8ȅp>d5ŷoaZm	e	ЮBNB!|[4rK!A{5$D7r	7`LBn!&Nz	BB!t.!l_EH\"d\"df2DB&pG#=B\'=pE7E>-%o%o.$p)_PF#TF\"Tn\"T-Zij#	k#<JxfxnP\'Գw	&yZ6=nC?	}$@zOY	ޜ 	Ca4DYW넯d60sDNEу\n;)c\"aG\\$̻#?ޯ&m<D\0 7MΏ\0RIeZD	\'BwPY\rcKZM`F	\',gD\n {hAdNAez3OW G5aE*a1ɍ4l\\BX)V&CU\\`U6_jSTjq)QR@\\{.0Qǻ%nDbBϿAoo!n\"nW9w׽ Fu\r>tfMO\"8dN<PE4ZH4Q@4I4H<4Gxh Zʮ▉V5DND+`pt1\rFN<rѡوW#:FM]zwגnDDC󟉞`;u4+F=w?J+#VH<JD\'>I%v*ʈ^G[&7\"[\'Dpl\"2Mj$^$Fj\"^{xI1\"bS1bB\01Y.1ELGL/K8|9B˅xh+1ˀDL\'sCE۫EbW,xN,q#qĊzĪ_!׉5km<F|B|TPN|^NXOu`nGl(%6xO|A|s*+3{.[\'7W;Fwލ^;b?- bJYE\"y{mϼ#w\nq&]q.ğGqqVI|\".At0\"$BD\Z#\"߉=D)\"QO$1\"O\"&9Md#%rQD^h\'ǈb=wwQq-QQ7AT]\'.>{N\\#. .\'.o%.\"WfH*u9U$U ImMi{aIpn]\'i7Ika?i$m=i3iIS	.u]M\0F/[=ҁ\'Iƺ$SC$գ7PUl9·Io!!^%9wΓ\\ߒ\\Av$$Ok7HX^O:\"4$&:JR}J8M~9D:j\'#Ր|mIAUHw&]\Z$]%!!],#]1$]!;\"H׼ȍ֤HKBIQ|R~R4ts*$WHUu-<)ȅO$#IfHIv;9;G)\"eUսI䤂=RwTcAzM*&]!U7*7j6GjO =Ҟ!=O/2&5{$5_t&v^Ajit I%-\"ZZ1cIVƤSR;O;O>2IU:oA1YoIS`̏bMqJM aّYI\0)	A`K$؈:	IȔFD\"x%$$)DK:ؑh_h1PVHbi!qo8\0ߚ$0%	I1$1$-\'\\$l$WƑR2~_JZVbHINzŒUnl\"ԔUdZY1y)ƤYUND~!;|g{[ԭ[^\"o%mEV#\'lH6M6~K6}\'m5#K\"Aid+{>V!o%ޠ|&aKIޒ|슑=dt$D\'\Z$@ȧm\"6M$nq\"ZۏϮJhrrP2tl}ЎF|/9`,By.rr#9ԃH`.WݓW/9꒯&_@RQ0fkɱ	g[[ȷRBrjir仝=6rn5rA\\$1Nܭ\'KZȥf6xCr!ry5\nJk*]ɵoRȵ(ri(04q7!9A|M~&%7o\"7`_)ޓ_wo۞\'=ɝjr`rr4r0f7@%%]\0rϓ3^Mdi\'yb{^ψz	oO8wT.۟%.\n@2(3`.2BH\'crȘds2NL!OL_dW2nI(-KdF2%!	%s5Gcd~Yֈ,8G:0Y(j!YTd;,[h#\ZJQ2#ȆRy%`EMY-hLQֺ)S)uwRjP6_@эxO-AS6S6l>mAe/ԙbeשk]-ʮ(`-_\0ޢ$FO)z)F1g7S)_S,=+W|:rjbCm=Ҥ8\rPfRuvQz(.)Ǵ3(nJA9J9aH91r/DPJ{pחM_E	ƺP3(S.S.\"(K(GR)]+2U:r	%3%#]Hy0rsОCsĒĔ1mDU \'JC6%3$%SlOddYܣdSPbR@J?j!hd{RJ)TlɡT=TTrl\n)5ƪog~g9sa\rņ(9bJ\"jKyclOy{N#.=]!4޻S:R:F(]AwC\"/ӊWѓ_$|ߦn)%iS)\0*eeTe\re잂2-emDsz9s\r+ʗ\03ʄjD^D\Zm74˔)Dm.ߢ|K|M,-R\0(o\n08yJTwS (0ػxx=qAO x\n͚%S+O),yB>6JU_0SIcGb)k)O0_HS$I^\'Er\"\'(4)EYL,\'R(KEAU]ʿÔZKTU%585W?P5R+S4zyUW9u9O?4[v.P{G+mnnPw{R\r6n\Z\\C7ojdI59E5Z_ZjEwv^vTPq9TTy3˱Iq2k*1+(MυꮒCu	dD=Ոz[޴a>#iW	5̿6G&k	멁ߩsiG\'tMjSjm굍`5FN7S^^F4Sc\\J/Ʃjb-5njĄij_}Ԕ)%Ԕ,jsWj.5-IM+Q3\n^S3FS3\rR；ޏ>S~PjaZ8X@-+mΠ<>>D-=J-Y-RONQkQhjqfLԧvS\0Omv\r7NmjD}OmTS\Z]S?QP?^~*@զ<=<A>:*:Q%>8*uFJZDB\"\ZPg\'\\{3ԟyԟM?Q瀫ǍׇT`)*XG\"O<b*HuyQqTLHTV*HenFPYT7aJM\ntTY{m\'U1yxFWMK7KS6\Z<iMh9Lӄޡ8A[fN\Z#62i0/i4~m\Zm4m|V*Mȝ*m[	mK?ڎM]]Kmwh{QH3\n7}&\r,R:,.,4+4[>vpvtA+93i.ճc]z8k:q͝B;QF;yE;JyZM;M}:ivhM;cwgILhӂb*iAoiX]yvJN$]h%c8ZT}5dڍ81-FTM۬O%4HL/Ĥ9ZDZJ-Hj@K@Kj2ve\Z&22hwiTCв|e!i/$ӊ6ZIv4eVgЪިѪӝhul;cc[ǂ\'ifZln,-Q)Pګ\rګB8e$\"A{Ў6М>ܟ^@|3M*cкW;hCtHnm>6J]mmu k9[L	m6mCKy\0s?ii\ZF4\Zd\Z$\r֏\'А1\ZwFxFDШ`\Zm-ư1=i\\]4\"L	?4_Mf7I\'4w460H[<O[@2@_𖮪\nվb\ZzXg#}o}}9MתOyKIgbƐ[M^[/Ow؂;Yro!ʑ\'.ݤI?=n7K7;QK?dH,O֠[MQhuQ5͖n~AJwEw,;z#Gu\ZNN4a3YaJw(yzq;M?qotϊ(A=׏Oo~ָ~=WАFzH<:C~_r~Qe~4=\">==kt3=R~}4=*=IO%㣵)_uۏZI=m8.Wg_EϨ-gLbZz# qzP\'=CC&dLeBx\0y=T^B7ѫ?#_O_h_@x&}czSZNz--^7Z7{ozIzG&ǘk@HP0}t!}X}\"ɀ>eRD\\_OA5D;3MXLСt\'::bC:f{њ:tk:z:@D\rt,چN,5-Db$H\'TtI:C.Ui{_>t~\'~xD3(t&@gl>ً:Y\r[I1]t1@?Ctdm/}/EЗK^EJWfj\'C\nPK`ubjc#Znf cEz\\vj	.C\'@=1t\'5*?N0vDE2v_ػ+cax͆abJ}wCfXQ3g##G4GR60,2OYos?Ùp9pI>p)8.|p+3P\rnG7q5qyڅ`xeex=0NO g`/~\0#Pd eYf{8_2)ud\\t#TNc\\s~θNfD3\"He7zQ3#ʣcĈm0\Zڌ5{ɥ)9T35Nw}w9]{݌|FѼ\nx\0xFپ2\'bŨQqgT3=3jgԌ%2ju׌GTu\'>3jE1\Z[MZWMM0F@Fs{od4c͂nƻ]?r8{F[=%#p*\0腕1512\0c1y1tvι~11_}1%c\\K80>j3>M1__ɖFq81gX\0\0eg2H%pw@n@=0020܍,`\'1p[|A0(7t4m!vVàN0*ܕFbpLZ@;|ac\rR1!PPf,F82f+ϲ+g/LOGn1U/0U0UfLLuX s~#0sx\'SDednn<ܲ~ٌ?pܭgs+~\Z=MLAAXti\rgҙ3G3N2-1sLwm-Iiw>~=>wi_ydh1k0K1,372]73ݞc[2O(T*LϝG!טgTg0UL){Y=3Yf@>3yƼe?Kd[G1i@fr?W-W.1b1`F\"ћ1c[љư7ki\nff3Aļ<:Lafc1̾Sny̆ي?\\q83X&3\',Rb9w2<f>$1K<R5fmJCf:}ZӉYSŬ)^bo`~1낿1?|rw0l/g>z|w)|e;l$0<`=Bg~Kb_`<}f~8T\r{ٯy9*9|;ǜx<9w9b1t+Ek|c\"s>}9g)g (&	΄1wL8#!0q<&;& I${2\'DII3晴d&\r c`L8?2LNeCgr\'0))[e`Z2!sERZ=yֲ/6Y:V,Xt3,o&c$kSkSYOmf:`qe2u0e²}uH}uH+e`Yj,[!œejHkrzr\"YYS,g\ZR7r!Nسyr?rgYS1ˬS#,}\0̵,&V@+9D\ZUVH\'+$;R7Ⱥ4ͺ4\n_e]9ǊeE6Ċn`EWn5bܙ̺\\?`ſy͊_4b^e%f`%5X~լqVJYV*(8~i,be	YsY9mT+вU8_z;t=VlVewV[{VU5U2`:*Xo\Z\0X92OӒUq)	~1w\rkW7IOXo_XWSdV\"ի>fcU(Y}ʝk+;XYq^/-oX߈67XӎXӤ8]֏WX֯eUP\\Hkn&5\reG|d-g-LZ\0;Y,\0~di,h~XY`P7XY3E`,r\r%ˢn!\"m+vM^X{WX\\q\ZKP%%r-g.d\nM\\k\'K4ǲ73,YKr/[t{U:^Vaׄq\ZZclRƳ`Zډ9W2{mԇt`&M7leogoϚcoߴm`6(>6薲&:؆l,&@2T6)+bTaD;feζ/e[E[b`ۘumlp=]\"mdHdMub;>e;RN&l\'9ٶ}ܸ}BeOLeĄ=اl*w;>/j*\\_yLz{E!Kv(;e;|:J?$;\"QǾzx}mڿ3Hh/ɎIc|mf뫳Kٷ؉^vꛭ0vv&}Gr}gye}qKbawO\"@vjxIvѬO1W3+Y\nO/v	svzvt-p~8\nc?a?re?hd?a?7b?~t;v-5^gI즵fKHWv;دg^[?[o*o߱[#mH}vG.]7re3O6;.!\'!\\{Qt)MlZ7{%k,{r=}+o\rx۰?N;P6FlHJ>F߹\nxq6CM6dr\rl%^~S܄&6-hc%\nle4{i$^92yG}gգ8\Zk8kՇ8qֽt嬏dp8\"\n6ު*g+(%ggm.gІ~WcTc{*%\Zs0;spvmcÕca;ȱϱ|~cc>9,{ȱPʱ1slW8vǲ8vi<_c]/xs&ǥs|\"s-$㖚qB=xxq|,9>8Μ38g9~&fll9NvN	}Npn9\'f!(\'I\\Ź\\͹ʑsE3\\\\MZÉlsnf97=/rnĀ9íĊ͜d=;5DN\'l\'d\'mN,ݱ=d}|\']N`\'Gt_)_)b8E½^}Ev<ȩxy&0>S{SSgVǩN<Z.<Y-k4X4qq^q9M\r6IW78\r8-\'9mW\"9mmv`Nԓ_z}X9=/9ɜ~OX׏JpWgtl+gl#3{3>;ę!p&x7]\Z,3~ΙnL9ęL̐ٶ`w?8O_Ŧ9uO9G8w98 A]8-`^rpyou\Zb9l[ˡ94}mpy+9z\Zp8!@!GP`98GW#ȑ r92شw\ZF]eBVr\rs׭]oӇںurcsg	sZdסp͒J#6ܽ\\C\r!5\\\Z\ZsM֌sMX@A3״(tkj5SFrQViVmV|׮u0uȺu纆p]q݊q#K&\\oZ֋`P\rBqksyPXd#КCFKn(6Ↄ+gp4pMEܫ)xn7nԫh+7\'rcX,76-.{M<+&}+׹i<n79n:Ǔ5fl5\\r[Z3ninJ7_-:V-rH0b/[~<\\>I>:}d#1TPmX66Rm)MܦC-W+wVV4=m,˚ە%q$R`.;2Y]!;Q;zņ;	~sΘjqgMqg	٥?\"?\"M?wZK΁;_t;SpNs]>\\ UゑH.~wpK_$.ћTTr1F.>:Kt%d..eq~.w\rjs\\%W\"sJ7K\\^rWPZOe3oOUڴ	orK5<<\r=Z!oj?O+.OtxbosJ:OIooLvg֗];3ܾg(w\'?\rϨMg3i];);(w+g.g\'goų`ϳcĳe<<y~nz򎼊99&iMVyNh i)sr2`myx\'y\'75<*|_|m%9..Y#yyam+yWixyKx1?bd5Xw/\nU:x+f^^0/u/\r<ˠy2xw^yxYxYy9Iqͺr^b/p^퇼b\Z^;^+۝+c\nx^Ż*^+҆˫ȫ&oI:y\r\'x\rm;y\rދ#RK&#iQ^t1$u^*}gp.׃$>>1My\"x>_x%AgF`&ox7SA{/&PxBywy`\'9om/9|1O\rBoW+w1PA\0yPA<PVf\0˙EzHz~zb+zG1l1طy=v<N/c.y͑<~HOOZ$D\r<AOShy\n1xoeoQ,᭔yUvYU>*b_w|U-__9k5ͪT6.ׇlN78MÊF[7oBte4]߃woq_^?j?ŋ\0`7M|\'|S|*m|ߥ|<52vl|g%rwKQf=Z=\'O2nOJO򽍳މR\Z#~\0Џ1ʾ?1+/mſOz*6_N_GlGn_\0z~Lc-?vۼ;\"ǢQ1~bu5?鮂;K\"~?mEY;tpM+<9~*\Zq#QtIj)Fo7NJҷ,[L/Z濾\Zcdo_wwzLw{՗h~&ȳ hc<?O}Nɟ~RşM	*Npҋr |Г>5>tM	ZCQpB\rc_cX|l]\'1EI|<ϠO|e>=5ՍC_|_#@ejLV.Xsy`͓-kwi>].h\nUu;=>k\n[\n\\ͮo[l~/J#!g٦\n})j\"	v.	vwiW\n&\ns>z	LOLZ.yA\\$xK`)^,(Xl9YvZuNj\'pnu\\m7{G8#N]x-8ZŢaϛ7\rkAK]A`]ܱ(zo)_\\\nBB``A#(տ%w@pKpUYpzt zAL F)~	RR_CiN:`;Ac Q  S&S*{nA<Aa@#BP~{2㨠ƷJPU*<</H\rvYP3U1sAv+Z}WvF	mjA%AG$hoLt)t>	cmnh>>\nzz}=F:A(Dz(LhU]_*U%\n	.1_`r`Rj\"(.!K,HKI0wF\0\niW;&(+`OpayI\0+@:U;+\'\ZdC@^- &Է4CfW\'`X	!>vUX )},ft,%FG,9,k	VcjժV՞\nպB3kᗄQ\r^pB}.\'zz;;}=B#oLChQh\"\"4\r+͓M_3V	B57\r[hQ&_:n&<sli9	XBdqL$<q{Vx <f.<z>zzB38tf9ᙸ|aPՈaHAb6Oxq.Yx0̵^n&<*^w^G\'Q\07avLxCKga̾ta̩X,a}¤䶫dn0#LR.L{+x,b\"{JxO7_xK(̆掯毬DE	l$¢w>hkaI4BXͽ/֢ͅ[º\ru:@a~DX\'*|)|6cϫ_F\nUMWyVc}f麰mz}[=x6\\\")W?tl#*XR8GGC;Tp*q(?i>Nk)\nݝ!8&>&Z	(A$l&1	6#:)kDy!ꀐ|Zh|\"dm.!Q`kW(\'\nNB])~ʿ\n+KBpg\0\"NtjTW,eurE}YFh-h-eQ>-i[tdSMlі#-+q{ 2Ut0GdֶUdZthS8W\'D9\"{-Nא-Lt)rz*rQƊ\\w\\D9\"We[]CEtj?G7VMN(K(:#:;<?Dn)]H@..%PZ/ܻFqTA$N];T#vU!4-2|!Eg鈢qD76nnEqt(G(q!Jz)JvÊ22=\\(;fTh((,*tMDDR닢RҶҟh5Qr=ל=)OT}>_T=L? M.=YZ=uh^ly#zQ<++9+z}\"j=^\"jm>&zm͚3E^ˢ.\r.n@G]-?!w>==\'D9/\Z<\rm<-\Z._\rƪtE_ɣ<d|蛱 v䈦=DAߢ`hna\\4;-,GFoLE\"pP~A.\'\rX:%auD^D\\\'\"}&\"?ћDLKuIĶ9!6{xnLH	8a\"ɟti@$-RL׊UUSUmū~9U5Īqb\03\'5;\ZzZFxCwn|xcQm;[;ĻĻmO\r_{Vl+bCbSqbbbzg-Bl);՟;+vO<,#S]4qg8J\\.igCDc/?_J9!C|[yAq_2AJ&\'oouIs$C$NNM\'?8,NZ_\"-%Si;6eBq^8/tXC\\xIM \"I\\kKhqهNq#88$; tY\\9e+rŋk>l׽x-~\\^\\U\\O~+~:)~$7ԔH^glf⦅OfqsLqW+Y8q˶_+oj;J;~}UqMq琸xp6Y<.W[\'_4\'k_O\\O\\OgGĿ<ĿWΊm+¾1ШFCHR]J~V\ZD!1y{ܳYYw%bVI>!f͋E);ŋ|I{RU+^JT~LIVGI46K4\rJdpDDdSdQ7ɖA=ADcdk]-CA>ނ\n}Yc#Vbz@ Y+LNX-\\.CJl\Z]$6L$׏HlKl.I7IӒ%|equiSsI[Kgk+k瘣]$@8ߑ}*	2ؒibCL\"k$\nQr-YQrf+2-$&YY-*aInHnhH~$飫%M;;ѯ$Hrn.Jr\'$yF.IQSIIIakP.)nwHJ%oK*=I*r$U}aՎ8IDDfܓԥa$uڒI:䉞8V#y攤<T i]AIN{G)-Ns%$HVa%c%dK2d2E2d{dn9Two@YJ=8JjBH0\'%*	5VB:EB\Z_%cJr뎄:!HHXׯJJD?$biݨD2a+7J$pźC]֒Cw%UMUUT5@f\'U}j@HJ.HYK^ͷ~II`̥ۦ	RNtOv԰\"Uz/5&w&RӧRنRվwXBz:/u&u\"JKБKW\'^ϸ/G#uUҠэsQ!}!I/UKÃH#W}WkupF_9*騔LђƉf7B	M҄n-/&um`m.$Ҕ\\iʋjijb4mRW%M-ͼNzǧWz7I4YzVi^}4{薕xs_ZڰNZއVH+wOK+[J,ӥU)Ҫ7ZҚ҇\r:FiOYx11G%}Ju+H\'HIK_aKWH?r^,dH[xG$KikV:iGgiǭ`i\'Wp_}RM7@B]?GoHjZҡG:ҡAtptD0-~.V,,CtPkۼW]`=%]HJ1RȵR`I\n@HP)EEjtX)6ew,_I	\");)3XJM;\"VR:o!_\0HRFӒ\"oR	]*Ke7\rʄ5ҥGKP)ZlCٚ\rue\"dæe2/\rd2ev22@l;2}q>roT!3L&_N61eo+ 2u2#<Vvn̴+3;!33\'H0Yz]vhJ0AOf_/_ˎ\'e2W)2[Q2ޏ2Wn[9W-T7/y ;ů|ZO|352ɲ@bY|\\X͏dSeh+Q+HGYk*\"Rvm^ٵeȦ<Y䈁,:,:,(%ݚ|,\r~&Kl˒ԣd)e;,\r,Yֻ]!Y.2LW#e<dųBYHVIV:%+)\\({KV$,\\jKd=lnreNŲ?rY;gdz2d/=^5^eeoY6kFYeY;)dz7z1eU\0\"L6I6&}֔}[̓MUȦiWduYXlÔEknD雲?òb_\r ɐd{e(?CMWp7;dNF+#>U/dp͢FFÒdtz8CZ#c+c18;d@Q(pjde\"k[ULQ&J/ʔ\rejtmٿ|3ٿ;rA|G`||MN|\\nuwɵdrA\\\\|q4Lc|`|\\wPMn#,߿n\0<VnG[n=Wn/7<+7~Gn֝-?l\"\\;+,2[\'o?#?~[~6MP\\@lQ?˝N4ȝF^OjOH=7=\n&f><χPr&r_gYX\\ȗ+TxF C_)IGjon<a ԓTqE:<gAJ$\'S~?@SۣyIpyK<oD^,/GKK+ҡ!y:OȳY8Ik!YZPy_Um\nYX ױ oem.v׃fyC);+;nYAZaI}||S>*!Ǣc?/ɿOlO˿ȧRgGgnȿuݑASb	\\ה*^ Tɡemr褳$J1r~p^zC_cw1XwДlR&\'ѳ\0;9u&gN3l<9Z29/맜a7œ\"HT,	5\'Kw˗DJ|vBC20XY6Uo>P?XqB8DabDicbK-XK}H-b\"I36S0M{U,]絧}D/obߧ\nNKH{TaHaQ=ܧ=械ߴpRp)pRp5Vx7+<9C^>\n/?mp¯Cﭦ*^sTy@<SnU};g)΋r).G*B+SbEx2VqcJqe(Xq\"nFq\"v@7lRYqrv\"q@t\"\"EUH>Td\0)R~T̄*r34ˊk]QIWQn()*G^CJ\"Eefuꨨnx󮢱^K챢l⥎UMk3׍-${o[E[t3?N蚹ިpW#S*>+(jl)btbl}dزbyիwV=\0T\0\Z\n\Zb@R O)PKx\n6a\n\"篂**)k|~Fg*]kV\nB;PޥPR(f3j\0Ŋ7J#MRP\\u%^jT+w+]t^Da\\czN3NSSأ\\5Ԣ?UW5+uՕ=+7QnnPnLVnJWv\\ոrTOv_OJCrK>-rrߵ*8 \r<ȉVTQTS*;tRZVZ(mΚ+N*cvE}U(#Nl-P:Sݕ.Tk/\r\\選rئBPl\\<$V~}RyM\'<+pWԅ*`z9tʋ\rʰAGW[_(#+\no)K)ofS(oT*\ro)K+5t)y221[mVemRw*ߤ(Z)KW(K}ʚ\'5,oovڕ|e퇲NT>ݩ|{M蠲!WHR>8|~G\"gV|6U_}TOnЭlWvR݉iʾȫʏeBr?TUYQ\Z##p-_%r\"kr2D~UNӔluWk))3sm-.J\0J	WBn)aKJ8UܥP\"[(Jq%앒$\nPm*)&Ԑ%\\ɜu*hC)OXr!bq\Zx >EC+rJi4.8\\CK\"B	NIIHT$\r%PT$RtҥzѠPznng@(%虳zCQe軣@(hP-/ˠygZ`|WA;=]Лz,~_R\r`F]Q}rp`<=۹`c$L5i%\'a50c\'Nyf`1Xt:eX\0]ym-=v`k0e,P+G,}4\nnu\\*en1_<﯁R^`tY|d;iC}gF}?=6&q:lUD6uNm9>qaot*xB D\'Bo@H*84JLpDg?9eD;A_eS}b,ؽ\rqVBEwU8b$N2$HRggP#87k=}.Az\\H_<2lKw2o~\\\nWՕpͰnV@T;p37Idc.=}\nBQX)<MG\njP|<<q_=yTCx\'\Z;~Ibp\\\0UGW_+\'x}F@Q&4jBh_@p2M2|w:[Ows|z3*`v֚aOYJ\ntB\r{.>Nި|\ZU~t/;΢8`\'/Aq!vQ{P#7WhpGeq8ƬtGKGJ>kU	/\"pb\Z/Vt)$MI6NiW4ph\rQ4[,`Q9CWh~Z\\-)Z^|izh2F2*C;l/:pK9.\rU!i=tz:WMDwQ\Z=\\G8=ߏC/Kw5zrBV\\7L\n5?{gMCߜz߃~I1@?nL@+9nx[bq_wp5{o{m^44_p?3x0\Zr6%x8ãNvq0[w\n}#y&<$Cɚ0?`=1c[/5eW+̲YSzK=f`Nbo읆7{oM?ǻ5e{e%j,BXd\\\n|şI?G,\\eϻ㳄h|	\r\n`5+kcո]ҿ_VX]\rk<W`Iob]5?N3n`Ky~Vٌ\rFI~dw~H3\0t${ȓI4?n.}r\\E=3Iig5˔zB}:H9/TPi@ѤMҠqir\\[B5\"i]J!H{Y霉a]7аwIo	=n&dL!/Ȱv>\rL%40M*J)\'iʢd^J&$hځ{4|+M7/d溚dnLH\r&d9͐mE}S9,%6GBBEF9ϥ%\Zts-M;L˜ywtsU\\Z@ՎeyŇeZgN>䛹|O%?05;6XPږ@}ӂhڇ(?K|Xc:M\'P52:H3/PTk\\	tjd+7(n1JP$JPkEl(Bg>J-Ԇ:?b)Q5S1o{A]J<(kv\"]u@^ 6Lv~B9FGʝ|r[]274PTDzÅ:*J]ORg_*\r2s*\ZHeP-Fs=U;2uIGһL ?fPÔ(-oRs~hKmKj_ګOuUs@\\ًʆp];-X!rSYq?Φr=VgU.yɪ]GSVmVuXm~\'eA}<љАJYpuM`<ڄeO``56#Va<x	#\r<[l̖x<a:O\'ڰd<Ý\')3٤L^3&i~ώW`M<[&b+,p{^0ZG;5t/_W˃?\rRmŮ&_ͫN]eyu-qِ=c&Bxe(ղ&{\'?bʾOoPf.@-\\~9]wmݣQq8~C8tq9ީO{pؚt˨6|s&ٕg#G_8ҹ#	c\r>QS?sLO>xO[ñ9VOo+pݕINMy(sy|qh}Ô8&_fk-|{Nѓw}||..(̅;\"ü(~ؖΏۺ\"pu.7IE\\Ѝ+^sa~i;n#fg\\Ńk5sN~S؅;n;m>rHn|Cp}4@?ֿ%MώY~^g3bگQP6]Q>Q\']jQ}!eWd5!Q䄋vhg}O\Z8Wt\"~XO)ݎ2줱*4$?C_Ā(EH<8(c*AƙdDjIˣdJLm6ފ5VQbuJSlU6Ķ־w]T)[dAHYxU8*%ʲԌeiL8ӫ4Y5tT#;WIɺ)	_+KY?{W4Lٺ3M(Jzi(;%X\'JzLҒvИ>rx\rkx+.WZ9D5?TPX-	+NH⑋XV()k^KJ`\'c%uFSi#$ӭHIsɪ\"Y%r6\'A\"$\'*Rr%ש@޺ɝR?T$R01J\n\'ΓBUyV*u\nq<EwIqMHIgy:J<$cʤ@I~yTx{HŶRY Uwe[BjޚKMZ=~B;NEMȓ9(\r{KۏО%.i|2 -fR+H_i>Gf͓gk{|ʷQ1]:HG\"nK\ZS MЧ$aͩfl?wZjȑ\0','no'),('manualScanType','onceDaily','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('maxExecutionTime','0','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxMem','256','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('migration636_email_summary_excluded_directories','1','no'),('needsNewTour_blocking','1','yes'),('needsNewTour_dashboard','0','yes'),('needsNewTour_firewall','0','yes'),('needsNewTour_livetraffic','0','yes'),('needsNewTour_loginsecurity','1','yes'),('needsNewTour_scan','1','yes'),('needsUpgradeTour_blocking','0','yes'),('needsUpgradeTour_dashboard','0','yes'),('needsUpgradeTour_firewall','0','yes'),('needsUpgradeTour_livetraffic','0','yes'),('needsUpgradeTour_loginsecurity','0','yes'),('needsUpgradeTour_scan','0','yes'),('neverBlockBG','neverBlockVerified','yes'),('noc1ScanSchedule','a:2:{i:0;i:1728784800;i:1;i:1729044000;}','yes'),('notification_blogHighlights','1','yes'),('notification_productUpdates','1','yes'),('notification_promotions','1','yes'),('notification_scanStatus','1','yes'),('notification_securityAlerts','1','yes'),('notification_updatesNeeded','1','yes'),('onboardingAttempt1','skipped','yes'),('onboardingAttempt2','skipped','yes'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial','1','yes'),('onboardingDelayedAt','1708359420','yes'),('originalScheduledScanStart','1728525600','yes'),('other_blockBadPOST','0','yes'),('other_bypassLitespeedNoabort','0','yes'),('other_hideWPVersion','1','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_scanComments','1','yes'),('other_scanOutside','0','yes'),('other_WFNet','1','yes'),('previousWflogsFileList','[\"attack-data.php\",\"config-transient.php\",\"template.php\",\"config-livewaf.php\",\"config.php\",\"rules.php\",\"GeoLite2-Country.mmdb\",\"ips.php\",\"config-synced.php\",\".htaccess\"]','yes'),('satisfactionPromptDismissed','1709080668','yes'),('satisfactionPromptInstallDate','1707151960','yes'),('satisfactionPromptOverride','1','yes'),('scanAjaxTestSuccessful','1','yes'),('scanMonitorLastAttempt','1728571900','yes'),('scanMonitorLastAttemptMode','quick','yes'),('scanMonitorLastAttemptWasFork','','yes'),('scanMonitorLastSuccess','1728571902','yes'),('scanMonitorRemainingResumeAttempts','2','yes'),('scansEnabled_checkGSB','1','yes'),('scansEnabled_checkHowGetIPs','0','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_coreUnknown','1','yes'),('scansEnabled_diskSpace','0','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_fileContentsGSB','1','yes'),('scansEnabled_geoipSupport','1','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_oldVersions','1','yes'),('scansEnabled_options','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_plugins','1','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_suspectedFiles','1','yes'),('scansEnabled_suspiciousAdminUsers','0','yes'),('scansEnabled_suspiciousOptions','1','yes'),('scansEnabled_themes','1','yes'),('scansEnabled_wafStatus','1','yes'),('scansEnabled_wpscan_directoryListingEnabled','1','yes'),('scansEnabled_wpscan_fullPathDisclosure','1','yes'),('scanStageStatuses','a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:3;s:8:\"finished\";i:3;s:8:\"expected\";i:3;}s:7:\"changes\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:4;s:8:\"finished\";i:4;s:8:\"expected\";i:4;}s:6:\"public\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:3;s:8:\"finished\";i:3;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}}','no'),('scanTime','1728571903.0355','yes'),('scanType','custom','yes'),('scan_exclude','','yes'),('scan_force_ipv4_start','0','yes'),('scan_include_extra','','yes'),('scan_maxDuration','','yes'),('scan_maxIssues','1000','yes'),('scan_max_resume_attempts','2','yes'),('schedMode','auto','yes'),('schedStartHour','15','yes'),('scheduledScansEnabled','1','yes'),('serverDNS','1728585475;300;104.21.91.141','yes'),('serverIP','1722275427;38.65.227.103','yes'),('showAdminBarMenu','1','yes'),('showWfCentralUI','1','yes'),('signatureUpdateTime','1728212022','yes'),('spamvertizeCheck','1','yes'),('ssl_verify','1','yes'),('startScansRemotely','0','yes'),('supportContent','{\"top\":[{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site\",\"order\":8},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":9}],\"all\":[{\"title\":\"Wordfence Free\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-free\\/\",\"excerpt\":\"Wordfence Free is an all-in-one security solution for WordPress websites that includes an endpoint firewall, security scanner, login security, alerts, centralized management, and more.\",\"order\":0},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-premium\\/\",\"excerpt\":\"Wordfence Premium comes with real-time firewall protection, real-time scan signatures, an IP address blocklist, country blocking, and Premium support.\",\"order\":1},{\"title\":\"Wordfence Care\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-care\\/\",\"excerpt\":\"Wordfence Care is for business owners who place a premium on their time. Our team installs, configures, optimizes, and maintains your WordPress site security.\",\"order\":2},{\"title\":\"Wordfence Response\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-response\\/\",\"excerpt\":\"Wordfence Response is for mission-critical WordPress websites that require 24\\/7\\/365 security monitoring with a 1-hour response time and 24-hour remediation.\",\"order\":3},{\"title\":\"Incident Response Services\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/incident-response-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":4},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/api-key\\/\",\"excerpt\":\"All Wordfence installations need a license key, also known as an API-key. The key can be a free key or a Premium key. \",\"order\":5},{\"title\":\"Account and Billing History\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/account\\/\",\"excerpt\":\"How to navigate and use your Wordfence account.\",\"order\":6},{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":0},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":1},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":2},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":3},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":4},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":5},{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":6},{\"title\":\"Using Wordfence Central Teams\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/teams\\/\",\"order\":7}],\"order\":7},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your site’s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":8},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":1},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":9},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the firewall rules that protect against various attacks, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":0},{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":1}],\"order\":10},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, and shells that hackers have installed. It also scans for known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":11},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Live Traffic analysis, WHOIS Lookup, Import\\/Export Options, and Diagnostics.\",\"children\":[{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":0},{\"title\":\"WHOIS Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":1},{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5}],\"order\":12},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":13},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you will find the answers in this section.\",\"children\":[{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":0},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":1},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":2},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":3},{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":4},{\"title\":\"Compatibility\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/compatibility\\/\",\"order\":5},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":7},{\"title\":\"Plugin \\/ Theme Conflicts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/plugin-theme-conflicts\\/\",\"order\":8}],\"order\":14},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available standard contractual clauses to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services.\",\"children\":[{\"title\":\"Sub-Processors List\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/sub-processors-list\\/\",\"order\":0}],\"order\":15},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either can’t or don’t want to run the full Wordfence plugin.\",\"order\":16},{\"title\":\"Wordfence Intelligence\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/\",\"excerpt\":\"Wordfence Intelligence is an industry-leading WordPress vulnerability database and evolving Threat Intelligence platform that contains over 12,000 records for vulnerabilities in WordPress plugins, themes, and core.\",\"children\":[{\"title\":\"V2: Accessing and Consuming the Vulnerability Data Feed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/v2-accessing-and-consuming-the-vulnerability-data-feed\\/\",\"order\":0},{\"title\":\"V1: Accessing and Consuming the Vulnerability Data Feed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/accessing-and-consuming-the-vulnerability-data-feed\\/\",\"order\":1},{\"title\":\"Wordfence Intelligence Webhook Notifications\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/wordfence-intelligence-webhook-notifications\\/\",\"order\":2}],\"order\":17}]}','yes'),('supportHash','b08dc0902cf6fee340fe72de085ba1e37233c761a0f6c4b950152647b3a5abb8','yes'),('suspiciousAdminUsernames','a:2:{i:0;s:46:\"/^wp\\.service\\.controller(?:\\.[a-zA-Z0-9]+)$/i\";i:1;s:55:\"/^(?:wordpressssadmin|wordprestadmin|jaime.besser56)$/i\";}','yes'),('timeoffset_wf','0','yes'),('timeoffset_wf_updated','1728582657','yes'),('tldlist','|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|ceo|cfa|cfd|cpa|crs|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|scb|sew|sex|sfr|ski|sky|soy|spa|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|aero|akdn|ally|amex|arab|adult|army|arpa|arte|actor|asda|aetna|asia|audi|auto|baby|band|bank|bbva|beer|best|bike|bing|blog|blue|bofa|bond|book|buzz|cafe|call|camp|care|cars|casa|case|cbre|cern|chat|baidu|citi|city|build|cash|club|cool|coop|cyou|data|date|dclk|deal|dell|desi|diet|dish|docs|dvag|land|lego|lgbt|lidl|life|like|limo|link|live|loan|love|ltda|luxe|maif|meet|meme|menu|mini|mint|mobi|moda|moto|name|navy|news|next|nico|nike|ollo|open|page|pars|pccw|pics|ping|pink|play|plus|pohl|porn|post|prod|prof|qpon|read|reit|rent|rest|rich|room|rsvp|ruhr|safe|sale|sarl|save|saxo|scot|seat|seek|sexy|shia|azure|beats|bible|bingo|black|boats|bosch|shop|show|silk|sina|site|skin|sncf|sohu|song|sony|spot|star|surf|talk|taxi|team|tech|teva|tiaa|tips|town|toys|tube|vana|visa|viva|wang|archi|xbox|zone|apple|weir|wien|wiki|amfam|amica|audio|autos|canon|cards|chase|cheap|cisco|click|wine|citic|cloud|coach|codes|crown|cymru|dance|deals|drive|dubai|earth|edeka|vivo|vote|voto|delta|work|yoga|zara|zero|email|lamer|broker|charity|bridgestone|camera|career|casino|center|chanel|chrome|church|chintai|circle|channel|comsec|brother|capital|caravan|careers|citadel|claims|clinic|clubmed|coffee|condos|college|cologne|company|compare|press|contact|cooking|corsica|country|coupon|coupons|broadway|courses|erni|christmas|events|expert|fage|fail|faith|family|catering|catholic|fans|farm|fast|brussels|builders|business|fedex|capitalone|fido|capetown|film|calvinklein|final|fire|estate|cipriani|credit|cruise|dating|design|cleaning|datsun|clinique|clothing|dealer|degree|computer|dental|commbank|community|epson|direct|doctor|dunlop|dupont|durban|consulting|emerck|contractors|energy|creditcard|creditunion|construction|prime|bradesco|radio|author|promo|allstate|alsace|alstom|aramco|rehab|reise|amazon|quest|ricoh|rocks|rodeo|rugby|salon|school|schule|secure|sener|sucks|search|seven|smart|select|shell|shoes|style|analytics|sharp|smile|shouji|skype|sling|soccer|swiss|social|space|sport|store|study|stream|studio|supply|suzuki|swatch|amsterdam|americanfamily|americanexpress|solar|sydney|tatar|abbott|abbvie|accenture|africa|allfinanz|accountants|boston|works|bostik|quebec|accountant|racing|realty|reisen|abogado|academy|agakhan|abudhabi|repair|report|review|world|agency|airbus|airtel|alipay|anquan|bayern|beauty|berlin|bharti|rogers|ryukyu|alibaba|xerox|safety|sakura|sanofi|airforce|taobao|target|tattoo|yahoo|taipei|tennis|android|auction|tirol|tjmaxx|tkmaxx|tmall|today|tokyo|tools|ubank|tienda|unicom|athleta|toray|audible|auspost|attorney|total|apartments|trust|tunes|barclays|bargains|baseball|travel|barefoot|aquarelle|trade|bloomberg|tushu|barcelona|toyota|associates|banamex|booking|tires|tours|zappos|basketball|bestbuy|vegas|boutique|bnpparibas|boehringer|viajes|barclaycard|video|blockbuster|vodka|volvo|watch|weber|bentley|wales|viking|villas|virgin|vision|blackfriday|voting|voyage|webcam|weibo|walter|xihuan|yandex|bauhaus|yachts|cricket|fish|flir|food|ford|free|fund|game|ggee|gift|gallo|gmbh|gold|forex|gbiz|gent|golf|goog|forum|green|gripe|google|grainger|graphics|grocery|group|gucci|guge|guide|goodyear|guitars|guru|gratis|hair|haus|hdfc|icbc|java|jeep|games|gifts|help|gives|here|hsbc|giving|glass|global|kiwi|globo|gmail|host|ieee|honda|horse|jprs|house|kids|godaddy|itau|hyatt|jobs|homes|kddi|goldpoint|hamburg|ikano|hermes|hangout|hiphop|hockey|hitachi|holiday|hosting|holdings|hisamitsu|hospital|imdb|immo|kyoto|health|kpmg|lipsy|hughes|info|kred|jetzt|locus|hotels|hdfcbank|imamat|hyundai|helsinki|joburg|infiniti|jewelry|jpmorgan|loans|lotto|lundbeck|memorial|merckmsd|miami|hotmail|lease|homedepot|ipiranga|homesense|irish|koeln|intuit|legal|lexus|lilly|mango|market|marketing|marshalls|mattel|healthcare|london|lotte|marriott|media|insure|jaguar|madrid|maison|makeup|ismaili|istanbul|homegoods|insurance|luxury|markets|institute|mckinsey|melbourne|microsoft|pramerica|praxi|juegos|delivery|digital|lawyer|cruises|dentist|deloitte|democrat|diamonds|directory|domains|exposed|farmers|fashion|florist|flowers|forsale|kosher|leclerc|lefrak|express|walmart|yamaxun|youtube|discount|flickr|flights|exchange|ferrari|ferrero|finance|fishing|fitness|engineer|firmdale|football|education|lacaixa|latino|lasalle|latrobe|download|fidelity|lanxess|xn--p1ai|xn--qxam|yokohama|zuerich|discover|ericsson|feedback|xn--node|equipment|futbol|george|kaufen|gallery|furniture|gallup|fairwinds|fujitsu|juniper|frontier|garden|kindle|genting|cuisinella|frogans|limited|firestone|fresenius|kitchen|komatsu|financial|locker|lincoln|living|wanggou|watches|wedding|whoswho|windows|winners|kuokgroup|website|woodside|landrover|weather|lifestyle|lighting|ventures|eurovision|foundation|vanguard|extraspace|vacations|verisign|xn--90ae|xn--90ais|xn--c1avg|xn--d1alf|xn--e1a4c|xn--fhbei|xn--j1aef|xn--j1amh|xn--l1acc|xn--ngbrx|xn--nqv7f|xn--p1acf|xn--qxa6a|xn--tckwe|xn--vhquv|yodobashi|immobilien|osaka|otsuka|pictet|panasonic|paris|partners|parts|party|engineering|pfizer|pharmacy|phone|photo|photos|physio|philips|pizza|place|pioneer|realtor|plumbing|poker|politie|recipes|reliance|prudential|redstone|rentals|protection|sandvik|properties|reviews|rexroth|samsclub|samsung|schmidt|schwarz|science|pictures|property|saarland|services|schaeffler|security|richardli|travelers|realestate|republican|restaurant|xn--30rr7y|xn--3pxu8k|xn--45q11c|xn--4gbrim|xn--55qx5d|xn--5tzm5g|xn--80aswg|xn--90a3ac|xn--9dbq2a|xn--9et52u|xn--c2br7g|xn--cg4bki|xn--czrs0t|xn--czru2d|xn--fiq64b|xn--fiqs8s|xn--fiqz9s|xn--io0a7i|xn--kput3i|xn--mxtq1m|xn--o3cw4h|xn--pssy2u|xn--q7ce6a|xn--unup4y|xn--wgbh1c|xn--wgbl6a|xn--y9a3aq|enterprises|international|monash|investments|lplfinancial|management|kerrylogistics|money|mobile|movie|nexus|nikon|ninja|mormon|music|moscow|nokia|nowtv|museum|omega|mitsubishi|nissan|nissay|norton|nowruz|lamborghini|monster|nagoya|netbank|network|industries|neustar|mortgage|motorcycles|netflix|nextdirect|origins|photography|playstation|productions|progressive|redumbrella|stada|office|online|okinawa|olayan|oracle|organic|shiksha|singles|softbank|lancaster|orange|staples|shangrila|toshiba|observer|shopping|software|supplies|trading|stcgroup|solutions|scholarships|storage|lifeinsurance|temasek|theater|theatre|tickets|statebank|olayangroup|sandvikcoromant|support|statefarm|surgery|systems|stockholm|tatamotors|technology|training|university|versicherung|weatherchannel|kerryproperties|vlaanderen|kerryhotels|williamhill|xn--1qqw23a|xn--2scrj9c|xn--3bst00m|xn--3ds443g|xn--3hcrj9c|wolterskluwer|xn--11b4c3d|xn--1ck2e1b|xn--3e0b707e|xn--42c2d9a|xn--45brj9c|xn--55qw42g|xn--6frz82g|xn--80ao21a|xn--9krt00a|xn--czr694b|xn--d1acj3b|xn--80asehdb|xn--efvy88h|xn--fct429k|xn--80aqecdr1a|xn--cck2b3b|xn--fjq720a|xn--flw351e|xn--g2xx48c|xn--gk3at1e|xn--fiq228c5hs|xn--h2brj9c|xn--hxt814e|xn--gckr3f0f|xn--fzc2c9e2c|xn--imr513n|xn--fpcrj9c3d|xn--gecrj9c|xn--6qq986b3xl|xn--80adxhks|xn--j6w193g|xn--ses554g|xn--t60b56a|xn--45br5cyl|xn--4dbrk0ce|xn--eckvdtc9d|xn--rhqv96g|xn--cckwcxetd|xn--rovu88b|xn--s9brj9c|xn--h2brj9c8c|xn--vuq861b|xn--w4rs40l|xn--54b7fta0cc|xn--b4w605ferd|xn--zfr164b|xn--8y0a063a|xn--tiq49xqyj|xn--yfro4i67o|xn--ygbi2ammx|xn--h2breg3eve|xn--xhq521b|xn--jlq480n2rg|xn--mgb9awbf|xn--mgbbh1a|xn--mgbab2bd|xn--qcka1pmc|xn--mgba3a3ejt|xn--mgbaam7a8h|xn--mgbayh7gpa|xn--i1b6b1a6a2e|xn--jvr189m|xn--kcrx77d1x4a|xn--kprw13d|xn--kpry57d|xn--lgbbat1ad8j|xn--mgbc0a9azcg|xn--fzys8d69uvgm|xn--mgba3a4f16a|xn--mgba7c0bbn0a|travelersinsurance|xn--5su34j936bgsg|xn--bck1b9a5dre4c|xn--clchc0ea0b2g2a9gcd|xn--mgbah1a3hjkrd|xn--mgbai9azgqp6j|xn--mgbbh1a71e|xn--mgbca7dzdo|xn--q9jyb4c|xn--mk1bu44c|xn--nyqy26a|xn--otu796d|xn--pgbs0dh|xn--ngbc5azd|xn--ngbe9e0a|xn--ogbpf8fl|xn--rvc1e0am3e|xn--nqv7fs00ema|xn--mgbcpq6gpa1a|xn--mix891f|xn--mgberp4a5d4ar|xn--mgbtx2b|xn--mgbgu82a|xn--mgbpl2fh|xn--mgbt3dhd|xn--mgbi4ecexp|xn--mgbx4cd0ab|xn--vermgensberater-ctb|xn--w4r85el8fhu5dnra|xn--xkc2al3hye2a|xn--xkc2dl3a5ee0h|xn--vermgensberatung-pwb|','no'),('tldlistHash','e3bae2216c5686cb06ade91dff3dccbae71f3096b5347514a1fc1ef76e747abc','yes'),('total503s','1986','yes'),('totalAlertsSent','42','yes'),('totalIPsBlocked','1986','yes'),('totalIPsLocked','167','yes'),('totalLoginHits','3140','yes'),('totalLogins','68','yes'),('totalScansRun','313','yes'),('touppBypassNextCheck','0','yes'),('touppPromptNeeded','','yes'),('vulnerabilities_core','a:1:{s:7:\"current\";a:4:{s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;s:5:\"score\";N;s:6:\"vector\";N;}}','no'),('vulnerabilities_plugin','a:11:{i:0;a:5:{s:4:\"slug\";s:9:\"wp-rocket\";s:11:\"fromVersion\";s:8:\"3.16.2.1\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:8:\"3.17.0.2\";s:4:\"link\";b:0;}i:1;a:4:{s:4:\"slug\";s:28:\"userway-accessibility-widget\";s:11:\"fromVersion\";s:5:\"2.5.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:4:{s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:11:\"fromVersion\";s:4:\"7.86\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:4:{s:4:\"slug\";s:25:\"kadence-starter-templates\";s:11:\"fromVersion\";s:5:\"2.1.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:4:{s:4:\"slug\";s:14:\"kadence-blocks\";s:11:\"fromVersion\";s:5:\"3.3.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:4:{s:4:\"slug\";s:26:\"shortpixel-image-optimiser\";s:11:\"fromVersion\";s:5:\"5.6.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:6:\"7.11.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:14:\"duplicate-post\";s:11:\"fromVersion\";s:3:\"4.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:4:{s:4:\"slug\";s:13:\"wordpress-seo\";s:11:\"fromVersion\";s:4:\"23.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:18:\"kadence-blocks-pro\";s:11:\"fromVersion\";s:5:\"2.5.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:4:{s:4:\"slug\";s:17:\"kadence-theme-pro\";s:11:\"fromVersion\";s:6:\"1.0.21\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','no'),('vulnerabilities_theme','a:2:{i:0;a:5:{s:4:\"slug\";s:7:\"kadence\";s:9:\"toVersion\";s:5:\"1.2.9\";s:11:\"fromVersion\";s:5:\"1.2.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:16:\"twentytwentyfour\";s:9:\"toVersion\";s:3:\"1.2\";s:11:\"fromVersion\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','no'),('wafAlertInterval','600','yes'),('wafAlertOnAttacks','1','yes'),('wafAlertThreshold','100','yes'),('wafAlertWhitelist','','yes'),('wafStatusCallbackNonce','','yes'),('waf_status','enabled','yes'),('wfKillRequested','0','no'),('wfPeakMemory','27262976','no'),('wfScanStartVersion','6.5.5','yes'),('wfsd_engine','','no'),('wfStatusStartMsgs','a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}','yes'),('wf_scanLastStatusTime','0','yes'),('wf_scanRunning','','yes'),('wf_summaryItems','a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1728571902;}','yes'),('whitelisted',',141.94.254.72','yes'),('whitelistedServices','{\"managewp\":true}','yes'),('whitelistHash','bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),('whitelistPresets','{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),('wordfenceI18n','1','yes'),('wordpressPluginVersions','a:11:{s:28:\"userway-accessibility-widget\";s:5:\"2.5.3\";s:23:\"all-in-one-wp-migration\";s:4:\"7.86\";s:25:\"kadence-starter-templates\";s:5:\"2.1.3\";s:18:\"kadence-blocks-pro\";s:5:\"2.5.0\";s:14:\"kadence-blocks\";s:5:\"3.3.1\";s:11:\"kadence-pro\";s:6:\"1.0.21\";s:26:\"shortpixel-image-optimiser\";s:5:\"5.6.4\";s:9:\"wordfence\";s:6:\"7.11.7\";s:9:\"wp-rocket\";s:8:\"3.16.2.1\";s:14:\"duplicate-post\";s:3:\"4.5\";s:13:\"wordpress-seo\";s:4:\"23.6\";}','yes'),('wordpressThemeVersions','a:2:{s:7:\"kadence\";s:5:\"1.2.6\";s:16:\"twentytwentyfour\";s:3:\"1.1\";}','yes'),('wordpressVersion','6.5.5','yes'),('wp_home_url','https://atlantagynecomastia.com','yes'),('wp_site_url','https://atlantagynecomastia.com','yes');
/*!40000 ALTER TABLE `hyu_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfcrawlers`
--

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

--
-- Dumping data for table `hyu_wfcrawlers`
--

LOCK TABLES `hyu_wfcrawlers` WRITE;
/*!40000 ALTER TABLE `hyu_wfcrawlers` DISABLE KEYS */;
INSERT INTO `hyu_wfcrawlers` VALUES ('\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>b0oQ1','verified',1727989402,'crawl-66-249-77-75.googlebot.com');
/*!40000 ALTER TABLE `hyu_wfcrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wffilechanges`
--

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

--
-- Dumping data for table `hyu_wffilechanges`
--

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

--
-- Table structure for table `hyu_wffilemods`
--

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

--
-- Dumping data for table `hyu_wffilemods`
--

LOCK TABLES `hyu_wffilemods` WRITE;
/*!40000 ALTER TABLE `hyu_wffilemods` DISABLE KEYS */;
INSERT INTO `hyu_wffilemods` VALUES ('\0ko\'賞','wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer-woo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer-woo.php',0,'v9&0FJ\"','v9&0FJ\"','d;.+-F}<\0IK\r~|','',0,'?'),('\0;J5#6K_','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/EnglishInflector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/EnglishInflector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Ysc	dv','^P\n\rQ6(o}-j-i}֙׷!','',0,'?'),('\0rWІ.cY','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6X\rg6[\'','yqiaVm[Rpr\n2<Cvl]u!','',0,'?'),('\0=V%k]_','wp-content/themes/kadence/inc/customizer/options/header-html-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-html-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sDHi','ZS$o3:\\&xy9','',0,'?'),('\0?H\0E}\"','wp-includes/sodium_compat/lib/namespaced.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','01vnG\r',']/r~ʺOCcxBj/oUI*','',0,'?'),('\0)4\nTYd4G~','wp-includes/images/w-logo-blue-white-bg.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/w-logo-blue-white-bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ȉk|Ѽ','OɗoCA/x<%4=?','',0,'?'),('\00#9Z4j$','wp-admin/network/user-edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nd4VڋS~tɱź','oᕑ\"tySM8!9/?YX','',0,'?'),('\01F13I	7=B','wp-content/themes/kadence/template-parts/content/entry_loop_taxonomies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_taxonomies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','և఻S_','IwlǀtH\rۓsGػu$|','',0,'?'),('\05g꫔c0\"D','wp-includes/css/media-views-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/media-views-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&_\rc(','yjSqW8eע{)-~b','',0,'?'),('\07gv%2Oջ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/LastChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/LastChunk.php',0,'6W^+m־','6W^+m־','JKZqԚVܨ./|Zp@','',0,'?'),('\0C_\njD@k','wp-admin/network/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tE-} ٤~',']?0\Z<08\'ÿqh`]','',0,'?'),('\0DOE\nVp2','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/ErrorChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/ErrorChunk.php',0,']JhP7;',']JhP7;','*1\'	zpX6ރn*~>w:`','',0,'?'),('\0EQi}j/','wp-content/plugins/shortpixel-image-optimiser/class/Controller/FileSystemController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/FileSystemController.php',0,'P~ˠ<-','P~ˠ<-','ϫ}Yk18G$q','',0,'?'),('\0GM(YlWz!','wp-includes/sodium_compat/src/Core/X25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pZ:!ټ','3l@o-3SՏ&!','',0,'?'),('\0\\sTÐ֘8','wp-includes/blocks/post-excerpt/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9aN4=\r^','~ŪAWw@7vz4_','',0,'?'),('\0_]wgGSK','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ContainerInterface.php',0,'~rD5yE:','~rD5yE:','蛮!Z|Lx<A6&','',0,'?'),('\0`YϭrG','wp-includes/SimplePie/Restriction.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Restriction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\"~\'$|2*','>3	vj\r|\")\"5SR\0{k{6','',0,'?'),('\0fJEG#N\0','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-submit-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-submit-actions.php',0,'T$..\"LЧ2:I','T$..\"LЧ2:I','<0EVcaN\"بSt.x`','',0,'?'),('\0wma}hj','wp-content/themes/kadence/assets/css/src/_blocks.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_blocks.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Eғa?Df0','=;y\Zzeph*JS~>?D3Ψ','',0,'?'),('\02 Kyv','wp-content/plugins/wordpress-seo/lib/dependency-injection/container-registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/dependency-injection/container-registry.php',0,'rƉM7+D','rƉM7+D','YjxJoq!bNgkY@','',0,'?'),('\0;fQ=*Ǖ','wp-includes/js/wp-emoji.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K2~QLel|','=ԄDρO´ZMP~>/l5','',0,'?'),('\0|a#gbwC','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/NullLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/NullLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VhScSH','A@v7c\nX;?&$','',0,'?'),('\0\'6&Hv]','wp-includes/block-bindings/post-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-bindings/post-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=n=FU*J','McC#Dʏr2e','',0,'?'),('\0%ΥJ-p','wp-content/plugins/wordpress-seo/inc/class-rewrite.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-rewrite.php',0,'\']Ǵu','\']Ǵu','6invoҁ\Z:΋Kb8IA','',0,'?'),('\09k5&ٙ 7N','wp-includes/sodium_compat/src/Core32/Curve25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','43k&t8p','j+JL¦{׹\ZI]ً=','',0,'?'),('\0XL&\Zf','wp-includes/blocks/page-list-item/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list-item/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','--ªZ(ΡRC','?5࠰)\'\\DMh_','',0,'?'),('\0SDtɊqߍ\'Ě','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/ParserInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/ParserInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$!yedҲ0[','>\rǏ].RX)i$mEV','',0,'?'),('\0y.r`1Y','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Registry.php',0,'L-E^\"%','L-E^\"%','n=sT2<pA','',0,'?'),('\0ПKGz낿o','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php',0,'Xu996','Xu996','%)[CJMkNQki(DHک','',0,'?'),('\0|9ue@','wp-admin/includes/image.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`)`iU','}g%D*kuu(2rK&mvL','',0,'?'),('\0˫I;GdTz','wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wf,W[','YtzLeA6tĖ','',0,'?'),('\0D`8Rɲ%','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<6<',',=CcjxffSL\';','',0,'?'),('\0-qOhq','wp-content/themes/kadence/inc/components/template_tags.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/template_tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l*Bھ+H ','%\0v-0>[Nz#>4Tr','',0,'?'),('\0K%5,$ˣ','wp-includes/blocks/video/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̩2^n>]P1_','}0\r}pu\0Q(VAK.9q<','',0,'?'),('\0lDdu^Y','wp-admin/user/privacy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dIU{x1A','FuX\0og:~h_5pt$','',0,'?'),('\0vئݞ','wp-includes/blocks/post-template/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0X`=q','D?#\"cdhY=6	1','',0,'?'),('\05Tߋ46','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/LazyloadCSSContentFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/LazyloadCSSContentFactory.php',0,'\'?<ţJ','\'?<ţJ','X#87u8I\Z,\ZY\0','',0,'?'),('\0R\n;S^g5h','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php',0,'J]in#','J]in#','}iD$J9LL1@S/c/Z','',0,'?'),('\0$XG-tUƹ','wp-includes/blocks/navigation-link/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^tcJ','*0<\n\Z:֢Qu		Rt','',0,'?'),('\0 $ә\0֫','wp-includes/block-patterns.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\Z\"*J׈\Z','E4@f[\0*\';:_`![A)M','',0,'?'),('\rx+Uڜ','wp-includes/css/dist/list-reusable-blocks/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/list-reusable-blocks/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԹurY','DȝMt-ߋ8&M^0Ja#','',0,'?'),('\Zף(&D%0h','wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W!pm5RHE)','Ҟ\0[U =b\Z^ճ','',0,'?'),('/>(3','wp-includes/blocks/verse/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eˣRR|','j/+H+׈z*c*aae','',0,'?'),('+sׄV\nH] ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N}o\'rq?','	B<XX2ـDkY!#KI5','',0,'?'),('>9w)@de','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Resolver.php',0,'Aa<JhvL?','Aa<JhvL?','/y\Zz(i`Y(1iAE\\=d','',0,'?'),('C(LC*R΍\0','wp-content/plugins/wordfence/lib/wfCurlInterceptor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCurlInterceptor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FHim{X{bȤL','\\OqL{3<K9\n=','',0,'?'),('FѶ&!q','wp-content/plugins/wp-rocket/views/settings/page-sections/file-optimization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/file-optimization.php',0,'&\\Idڅ','&\\Idڅ','&/;}ty-2/y9P700c{buM','',0,'?'),('NQ\"*hzrw|\Z','wp-admin/images/media-button-other.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-other.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ayO1/2|	{&]','Lp-87Q|Ji`1O2c','',0,'?'),('O6D023Y0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&<[kq|è','*lW&G\0&\nj}ɤg','',0,'?'),('T\r4}^a@|O','wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-plugin-conflict-ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-plugin-conflict-ajax.php',0,'b9<ҕIrBzL*','b9<ҕIrBzL*','Ͻ\"_ĦX%O4Ӆ:Y','',0,'?'),('X|UNTzy','wp-content/plugins/duplicate-post/common-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/common-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','صa[$!<','J8]#{k\"7Y$v','',0,'?'),('Xɘy_7XN/','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\h\'\n䷺',' 7RG$/-iNm(W;̅','',0,'?'),('s\\73n] ','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-google-fonts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-google-fonts.php',0,'-K*o8V','-K*o8V','c^Q$r%dtM	J','',0,'?'),('),I:ĩ{*','wp-content/themes/kadence/inc/dashboard/react/src/recomended.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/recomended.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\0*[;ZA','¼Kn-Ne|fr;','',0,'?'),('9Хb-o;kć','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php',0,'5qyCļ!','5qyCļ!','yG>E:$F$FGT\0%^','',0,'?'),('ThzPr','wp-admin/widgets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z*Np=2','|\n2U)j+oL	)o','',0,'?'),('ϋД\'OtʗM;','wp-includes/js/dist/deprecated.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/deprecated.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T@UJ1	+4iK.','׎Y?gqb6c\"~lCQ','',0,'?'),('u95EzV9','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/GuzzleException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/GuzzleException.php',0,'RDH\\0rs','RDH\\0rs','\0f]WE-]v#SWKV׎','',0,'?'),('_Рp\n)Ut','wp-content/plugins/kadence-blocks/includes/assets/js/splide.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/splide.min.js',0,'S)z>\rW=vf','S)z>\rW=vf',']	4V#$p^\'S\n','',0,'?'),('k峵3+','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php',0,'B9kkпZ]ω[','B9kkпZ]ω[','\Z=[,M^Yzv-@_KJ','',0,'?'),('í[0*uD\\Uj','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php',0,'q?!','q?!','W쪴bIkQ,߸i','',0,'?'),('X|_wc:j','wp-includes/blocks/search/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{.7@:AW=','\n$ !x>nMtX_ڥ\"m','',0,'?'),('S8R','wp-content/plugins/wp-rocket/inc/Addon/WebP/AdminSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/WebP/AdminSubscriber.php',0,')J<	GS8',')J<	GS8','TGc|c6X`QӅxV\\+','',0,'?'),('ϯxd@23h^YP','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/MailboxListHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/MailboxListHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}VnԷl+','I2!\r7# ꧱y@0bUnU','',0,'?'),('_#{','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_psr4.php',0,'N`Rx8Q+v','N`Rx8Q+v','ѕbQ72/j=J${@N9','',0,'?'),('{1*hM3','wp-content/plugins/wordpress-seo/js/dist/externals/uiLibrary.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/uiLibrary.js',0,'P%M`\\_QN[r','P%M`\\_QN[r','YƩi8 +8Ugv\0[C*','',0,'?'),('E?tB9bvF`1','wp-content/plugins/wordfence/modules/login-security/img/loading_background.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'2p\nKX','Ύ%XŖF1s;Lzr璻','',0,'?'),('닭N{=;_','wp-content/plugins/wordpress-seo/admin/roles/class-abstract-role-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-abstract-role-manager.php',0,'-\'\nPiw?','-\'\nPiw?','$-](nhzdǅ3ptXls','',0,'?'),('>NL^+3C\ZS','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Gn͐','l<U9\r2K<3T*L','',0,'?'),('ϽFٷI=[s','wp-content/plugins/wordpress-seo/admin/class-admin-recommended-replace-vars.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-recommended-replace-vars.php',0,'hxlMι,','hxlMι,',']Էāj\"4L)oE=d	hٱ','',0,'?'),('\'YĘe','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-repeater-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-repeater-block.php',0,'>_k(T','>_k(T','ڨF\\-+iF2\'','',0,'?'),('\\|Lh2w','wp-content/plugins/wordpress-seo/js/dist/externals/redux.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/redux.js',0,'4IT}vZt.Z','4IT}vZt.Z','cKR֌:35^l7','',0,'?'),('<\0$М?-8U\0','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-watcher.php',0,'nV%A!XP','nV%A!XP','	rR9XͧoHnM+9$=','',0,'?'),('t]ٟuuj','wp-admin/images/menu-vs.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/menu-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qL,_;1/E','GiH|)E;\"_;ԣ4Իwly','',0,'?'),('~w`5;F㮮','wp-includes/js/jquery/ui/effect-size.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-size.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_yvV\0!','j`燾~2G\\c:','',0,'?'),('=q\rljA+','wp-admin/user/user-edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<D\0\n#E','Xxno{\0\\䞿e[jZN','',0,'?'),('*&5,qV׷0vc','wp-includes/blocks/post-template/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LX#R\Z<','=NB]u9a+855#p','',0,'?'),('7Q,G','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/ContentEncoderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/ContentEncoderInterface.php',0,'՜Q7JG#|','՜Q7JG#|','=Զ̏ho?܈DPY','',0,'?'),('7Ĥ񓆽Ҡ`','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9!A_\'o#+','t<d\0 q=JY޴','',0,'?'),(';f\Z=skO','wp-content/plugins/wordpress-seo/js/dist/languages/fa.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/fa.js',0,'Ś+UDK\rk','Ś+UDK\rk','CH0loUD2SÜO{ml^','',0,'?'),('<)8T*.SuSĺ','wp-includes/SimplePie/Cache/MySQL.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/MySQL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',') fzC0','	WA2Lh`i%iv2޴','',0,'?'),('=f Ȃ7K','wp-content/plugins/kadence-pro/dist/archive-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/archive-meta.php',0,'Q`	C','Q`	C','ԬVcO6Go\n','',0,'?'),('?z\nJ.+','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-row-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-row-block.php',0,'!(T\\W,6^','!(T\\W,6^','k$0׎=\"pa','',0,'?'),('AP*꟧/=','wp-content/plugins/wp-rocket/views/settings/partials/documentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/partials/documentation.php',0,'>)[lǤR?\")','>)[lǤR?\")','Soz^$\'X^M7x`','',0,'?'),('DuMu<]','wp-content/plugins/wp-rocket/inc/Engine/Plugin/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/ServiceProvider.php',0,'|3ˍ.','|3ˍ.','һm!F\n?M&OǸ$aH~','',0,'?'),('HC!\"(','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wyBo|','oJj$scRQc伍F','',0,'?'),('J\rӷG>','wp-includes/class-walker-page-dropdown.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-page-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z`Tuϡ','s>w`kP䐆:x\nqpe(','',0,'?'),('VF|j/ c','wp-content/plugins/wordpress-seo/lib/migrations/migration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/migration.php',0,'.0\'vyȯ\nS-?','.0\'vyȯ\nS-?','.ݴd<jLypwùRϳ2( X\0','',0,'?'),('jI%{A','wp-content/plugins/duplicate-post/js/dist/duplicate-post-strings-450.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-strings-450.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nԟQDeʷ','5)~[P@:Y)jo1Ne5','',0,'?'),('usy6\'v,=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3\'oQY','+FR{K[&4iZwu.f-&\\','',0,'?'),('\"qUy9%Q','wp-includes/class-wp-matchesmapregex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-matchesmapregex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%`^`|j\r','C;ZzZFT{^x}Z','',0,'?'),('ݭ|	=0','wp-content/plugins/wp-rocket/inc/Engine/Activation/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Activation/ServiceProvider.php',0,'ʣr3&\rP','ʣr3&\rP','z2d4v#V:JJ2','',0,'?'),('651*kR','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypes.php',0,' \'lM',' \'lM','SoW*y<`떻@\r\rQ\0V*ܢ','',0,'?'),('K[-u¤A','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap80.php',0,'atK','atK','[Y,??l173SY\rt~.j)<M\'','',0,'?'),('ȫ(	?b>mr','wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/wordproof-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/wordproof-helper.php',0,'?k\rFZke','?k\rFZke','صn	^K$3HJ]i|S','',0,'?'),('f\'מsmk','wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','54','7`\\§.r}-.4|.gB','',0,'?'),('W-	<','wp-content/plugins/wordpress-seo/js/dist/languages/default.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/default.js',0,'CZj\ZPRao','CZj\ZPRao','w\nqެOԽ1Q:p#j\ZD!','',0,'?'),('ʒg80L','wp-content/plugins/wp-rocket/assets/img/imagify.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/imagify.svg',0,'Fv?C','Fv?C',',ױM\r$X{Un*%R?gHtȇނ','',0,'?'),(' K iDt','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zz#H','n]x\Z_ѪkB-a&̃','',0,'?'),('ҩ\Zq(','wp-content/plugins/wordpress-seo/src/config/badge-group-names.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/badge-group-names.php',0,'j>捶c','j>捶c','`s2[+,bKlwȀ1\nbǅ}','',0,'?'),('VI0p&','wp-content/plugins/wordpress-seo/admin/menu/class-submenu-capability-normalize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-submenu-capability-normalize.php',0,'u	|$=N','u	|$=N','LO-~;#{uTFNue3\"xwK','',0,'?'),('7&Ȁ','wp-includes/js/tinymce/skins/lightgray/content.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\PIɥ<\\',')Y@u&Kg\0?\\F\'X0ǈ','',0,'?'),('޺5N\"~','wp-content/themes/twentytwentyfour/assets/images/tourist-and-building.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/tourist-and-building.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}do<yJ)','[zɵW7G~e+spC9\Z','',0,'?'),('*(*+Wjcp','wp-content/plugins/wordfence/crypto/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Կ:V	U\'','|<P*tg3dYs/','',0,'?'),('	Bs;\nz','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php',0,'%QHPfH','%QHPfH',')fX|N2R','',0,'?'),('0rH\"YK]T','wp-admin/css/site-icon-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-icon-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԧ	H43U','\"Qrr..$S)RFkxƪ','',0,'?'),('SYYT:7','wp-content/plugins/kadence-blocks/dist/blocks-image.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-image.js',0,'\0Cp(iX','\0Cp(iX','lR0im6Sq-\ZdV','',0,'?'),('\0[2q|','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seo-framework.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seo-framework.php',0,'2Aӥ>8@ո','2Aӥ>8@ո','v_4BεmE:g]H2:\Z\n	','',0,'?'),('![ذ\ng\'','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectionException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectionException.php',0,'/RdkQHbj','/RdkQHbj',':pE\0[T;/\ZA<=KP%_SG','',0,'?'),('h\"Un(','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/UnlistedNotice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/UnlistedNotice.php',0,'a#FΗ#VK','a#FΗ#VK','\"sףy¥)XO\"L\'','',0,'?'),('ϵ\' $1','wp-content/themes/kadence/inc/customizer/options/learndash-grid-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-grid-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jߖ[Ћh$','\Z<mr<Eǂ\nG^(','',0,'?'),('im\Zh<BX','wp-content/plugins/wordpress-seo/packages/js/images/yoast_loading_spinner.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/yoast_loading_spinner.svg',0,'F=BIs$\'8','F=BIs$\'8','B]q\\;$vm7V˄{J19B','',0,'?'),('Mꬶs\'B','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Retry/RetryStrategyInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Retry/RetryStrategyInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^l՛Ys','qG\ZM$>腣j\nLz\0','',0,'?'),('\'\0\0>;!','wp-content/plugins/kadence-blocks/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_psr4.php',0,'C\n-X;Aa0h','C\n-X;Aa0h','Ȁ}(w$܋UQ˒:','',0,'?'),('(9l15nq','wp-includes/blocks/button/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}$ Dx\n','\'7pHt|U]y=TUFQ߅ Li','',0,'?'),('(љ\0H<_','wp-admin/includes/nav-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z]/gC^8r','-&VRi]Cũ%','',0,'?'),('3x2§h_','wp-includes/blocks/shortcode/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|xPۑ&P','gµO3QȂWq1;}]','',0,'?'),('<.4vc\"`t','wp-includes/class-wp-simplepie-sanitize-kses.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-simplepie-sanitize-kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I|/U1[ņQ','יTO	-6	:Dy3`EL[GM^q?4','',0,'?'),('Ek(u!QU^','wp-content/plugins/wordpress-seo/src/conditionals/admin/licenses-page-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/licenses-page-conditional.php',0,'vr+Uв̋','vr+Uв̋','a\0Kw6\'nI\".4@','',0,'?'),('G#2h<\0<b*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Z!K2?','8׵`?:};sw_	s]Okl','',0,'?'),('PZxxmJؙ','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/keyphrase-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/keyphrase-data-provider.php',0,'s!ђͨ<P/','s!ђͨ<P/','7uC	s>vZR2\n?','',0,'?'),('VN6 J\n','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/HeaderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/HeaderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d]zY>>i','й_֋C\0]H5;VY.EX','',0,'?'),('W7LK,','wp-content/themes/kadence/template-parts/content/entry_summary.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r*Cj3sB&c[j','9k\'!ѳzbjX:qƧ1x=^\na','',0,'?'),('a?niDLi;)','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php',0,'.r6IնJ\0	','.r6IնJ\0	','XSZL,0*%0/\'g','',0,'?'),('hl<','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K)`J6(','J]4	FW\\YBJ@l)','',0,'?'),('iPÙld\0','wp-includes/css/jquery-ui-dialog.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/jquery-ui-dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c.NY58','à,IXֺo|.2d9rv	x','',0,'?'),('k4c5<\"','wp-includes/js/dist/autop.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/autop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U>CB','e@͂8=Ld\rWu2','',0,'?'),('wEykzP)4','wp-content/plugins/shortpixel-image-optimiser/class/Model/StatsModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/StatsModel.php',0,'=5K<\'hjl','=5K<\'hjl','qJAcc\0ysNWtaK','',0,'?'),('~Iת(vV','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/seo/premium-seo-pack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/seo/premium-seo-pack.php',0,'МbLi\0$?','МbLi\0$?','\ZU_R<[WfN5R*r\ZM','',0,'?'),('i%b-G$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Retry/RetryStrategyInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Retry/RetryStrategyInterface.php',0,'`N.Y!hrwb6z','`N.Y!hrwb6z','pzC\njDk	RgVoMq','',0,'?'),('E\Z8h-','wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager-interface.php',0,'J\'̥\'_ v','J\'̥\'_ v','=djҍ?de l\r=CKZ!','',0,'?'),('\r5&dC}','wp-content/plugins/wordpress-seo/src/promotions/domain/time-interval.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/time-interval.php',0,'G˲\\(	ӺFzg','G˲\\(	ӺFzg','̣Zx;\0\r7F2nNԓVj','',0,'?'),('2<x˛hy','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/TransportException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/TransportException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')~4볮x','o۰\n׊d>M\n\Zs?vs[;f','',0,'?'),('uAms,)DEv','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php',0,'bfyy','bfyy','QYpC=3;uNKoՄ','',0,'?'),('8ƓIz]0Y/','wp-content/plugins/duplicate-post/src/handlers/check-changes-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/check-changes-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\\6b˧)b)','}sB~/_O|]f뼳u}','',0,'?'),('pmq}P','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php',0,'Ai(<hT_l2','Ai(<hT_l2','H^q4֥{gj;\rd\'_{]u','',0,'?'),('M2WYxMUCkc','wp-content/themes/kadence/assets/js/simplelightbox.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/simplelightbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!nxHחn','e:\r}`tۋO֒W	ί4-a','',0,'?'),('hBБ<k.','wp-content/plugins/wp-rocket/inc/classes/dependencies/wp-media/background-processing/wp-async-request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/dependencies/wp-media/background-processing/wp-async-request.php',0,'1ˎ$ܚG%','1ˎ$ܚG%','MfMhdՙP^bpvc^','',0,'?'),('X2L1\'lM\0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MiaoxingInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MiaoxingInstaller.php',0,'XYol)fXz:s','XYol)fXz:s','B\0MKn\'jC_8mc,u s\0J>','',0,'?'),('N.!A25L','wp-includes/block-supports/utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pm/9ljT	^','WrW[\0K)\n\n.^u','',0,'?'),(':kx','wp-content/plugins/kadence-blocks/includes/advanced-form/activecampaign-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/activecampaign-rest-api.php',0,'3|1bӊQu','3|1bӊQu','8=q[dvvovGuW!씲x|','',0,'?'),('88_','wp-content/themes/kadence/inc/customizer/react/src/switch/switch-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/switch/switch-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X!`el','U(I{/+AZ&lҭ','',0,'?'),('>]I_V','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','={HX=~Nj','6\'VVnT6`YTyf\rĂC','',0,'?'),('\'SDr!=','wp-includes/html-api/class-wp-html-span.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-span.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZL>G','3\"m+sjZxnqPj','',0,'?'),('^sWp^:m<','wp-content/plugins/kadence-blocks-pro/includes/assets/js/simplelightbox.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/simplelightbox.min.js',0,'ӐY@ؑo#','ӐY@ؑo#','D?Sw=R&%i=rf[:J','',0,'?'),('&>tS_Ѡ','wp-content/plugins/kadence-starter-templates/assets/images/fonts/playfair.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/playfair.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\Z\0:c^','kJ{Ovv\Z-S%hoGB','',0,'?'),('x#*W`PD','wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ok{ػ','cA[^rD ԧxr9;','',0,'?'),('9䷳\n6','wp-content/plugins/wordpress-seo/admin/pages/tools.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/tools.php',0,'-yMI7i7','-yMI7i7','>>h01*(4u\rhP|','',0,'?'),('~:;:J','wp-content/plugins/wp-rocket/views/settings/dynamic-lists-update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/dynamic-lists-update.php',0,'#[s8^W;K','#[s8^W;K','P<efF0Fe\naJGB','',0,'?'),('2_ylo6','wp-content/plugins/wp-rocket/inc/admin/ui/enqueue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/ui/enqueue.php',0,'J]]ݷQ','J]]ݷQ','I!,VN[|uk9q\0֞Q','',0,'?'),('!@|4n','wp-includes/class-http.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WQK\rtǝh<','ajEXOtf};g$خ44Ѵ','',0,'?'),('\'ڞ\0;?+VҪ','wp-admin/network/edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=#LH','q/*߲3xS~.\']wk,W','',0,'?'),('1	r^','wp-content/themes/twentytwentyfour/patterns/gallery-full-screen-image.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-full-screen-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WIsQ)Hf',',[St\0r?hn*k','',0,'?'),(';pR9+qpծ','wp-admin/includes/options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l#G24ͮ','QUXAjpnYrpoK!KܙX','',0,'?'),('?|꺯~x','wp-includes/blocks/query/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']>yH(\Zac','vvuo(i쭿F|N<\rW','',0,'?'),('B{)s\'','wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-export.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-export.php',0,'vC)N{','vC)N{','	?,gtyZ+nݬȷ','',0,'?'),('G)H++E	A','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{@}-m\\aV.`','i슱[3#Wh\ZǒIVxDk','',0,'?'),('H۾[J/P','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/index-https.html',0,'ckKH=;6','ckKH=;6','?DInL4\"gȵ\0:X3\\9','',0,'?'),('e;o79','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerTrait.php',0,'sU$ce&b@R:','sU$ce&b@R:','OtW^wB\0@̺vz-|\'m\\','',0,'?'),('fwo@-FG','wp-content/themes/kadence/assets/css/src/related-posts.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/related-posts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' vѰ',')vޮuu@ssu<','',0,'?'),('s[.Dz{','wp-content/plugins/kadence-starter-templates/assets/export/starter-import-export.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/export/starter-import-export.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̥7i#F_״;(b_','\rȧiCN.)!\ZzG','',0,'?'),('u\0e&$O','wp-content/plugins/wordpress-seo/admin/import/plugins/class-abstract-plugin-importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-abstract-plugin-importer.php',0,'p[\Z4l,','p[\Z4l,','vGX\\Peu;-]XԽ','',0,'?'),('xm\0~','wp-includes/customize/class-wp-customize-nav-menus-panel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϩGhUH%b','l<UqThi/7\0}JgWb','',0,'?'),('yiú\n_Tz\\l','wp-content/plugins/wordpress-seo/src/helpers/asset-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/asset-helper.php',0,']l$_NL*s',']l$_NL*s','G5w1O+Z.O˦\n+F;','',0,'?'),('yMS;k','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php',0,'quY6;\"%\'G#','quY6;\"%\'G#','A-6=zP԰>\Z>vZAl>S','',0,'?'),('܈y7@\"','wp-includes/blocks/audio/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P⋎m{tmo','}/14o|&X1ͦO8	7:a','',0,'?'),('\"WC\"(&\Z]%v','wp-content/plugins/wp-rocket/views/settings/page-sections/sucuri.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/sucuri.php',0,'VٝU	;GsEb','VٝU	;GsEb','O`7{Zp7SXgϰd,','',0,'?'),('\n#T?׻','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6@E-mdo','̉Yj\'i)j|EVlF\nL','',0,'?'),('dԅ]Oh|','wp-content/themes/kadence/assets/css/src/_social.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_social.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&#ك','x8uq@;{(\"E=fy08','',0,'?'),('\ZaDQ0','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-range.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-range.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r^!l','ҬFpWoMv_iJ,','',0,'?'),('Ú2d=','wp-includes/rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w]]$wѐ2E','be\'\0c51HL\0N^x;K','',0,'?'),('P\0\'0lv#J<','wp-includes/js/jquery/ui/effect-fold.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-fold.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CHpg a','r}4U$HWXG$	lF','',0,'?'),('Ȅxy','wp-includes/js/tinymce/skins/wordpress/images/embedded.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pNy~n\"','{ux\'Jº@i\"H;]6h','',0,'?'),('58L(9 |n\'','wp-includes/blocks/comments/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޸2\'N{','=Ȟ=|k\nm<sq^Pifm','',0,'?'),('ϚWqu_8~\r','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Utils.php',0,'~\\NLfYlY','~\\NLfYlY','YLEMֺBE}7Ar8^.gZ','',0,'?'),('ϴ 3P`#8^Z','wp-admin/css/colors/coffee/colors.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OTԧ','0;EFo\nw`zrJ','',0,'?'),('G#;\"L%','wp-includes/blocks/categories/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cHl|Ay','RԔ=%3Ăfce','',0,'?'),('H:!KN','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/TraceableResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/TraceableResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n+.q)','c?-\0Adv/Yb','',0,'?'),('Hs~s0:g99Rx','wp-content/themes/kadence/bbpress/pagination-topics.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/pagination-topics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p/ã*W	','X\ZNl2˄$4l?2itK)','',0,'?'),('\\i>\'E[','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSContextSaas.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSContextSaas.php',0,'Eg\"I{gW','Eg\"I{gW','@O}n,1fg.=\'','',0,'?'),('t3.^\0','wp-content/plugins/wordpress-seo/images/alert-error-icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/alert-error-icon.svg',0,'dyѵJ6hh2=Yظx','dyѵJ6hh2=Yظx','S6]+u^L1n<7/Mz`f','',0,'?'),('\0,#heLG(}','wp-includes/blocks/query-pagination-numbers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VDiFB2\nu6B','T:\0hY>c2^x\r:=>','',0,'?'),('x~ۿ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php',0,'ٛT	ZGyI\n4\n','ٛT	ZGyI\n4\n','u\Z\\52\n{W ','',0,'?'),('G1itn ','wp-content/plugins/wordpress-seo/src/conditionals/migrations-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/migrations-conditional.php',0,'TG_S<&^','TG_S<&^','܁:¾9$7##B<V','',0,'?'),('|T0Hw','wp-content/plugins/kadence-starter-templates/wxr-importer/WXRImporter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/WXRImporter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i᭹]q|','ɴ_7)4LFm?eîo	','',0,'?'),(';FTnw','wp-content/plugins/kadence-blocks/includes/assets/js/lottie-interactivity.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/lottie-interactivity.min.js',0,'l	9뻋lxO','l	9뻋lxO','*YrҤl0\0,9s','',0,'?'),('\"N߬jj)\0N','wp-admin/images/menu-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/menu-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jG{>^;$','2]y#h29> ^s\rH	\ng','',0,'?'),('&Dhm܎%>k','wp-content/plugins/shortpixel-image-optimiser/class/external/formidable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/formidable.php',0,'{8)(oG','{8)(oG','C(thD\'Vw3S0~:I9Ch#^J5','',0,'?'),('3XG%<!>','wp-includes/blocks/pullquote/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J}Y','FF8QΑyޖ/W-ͣÍ+K[','',0,'?'),('9*ICc','wp-includes/blocks/post-excerpt/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9aN4=\r^','~ŪAWw@7vz4_','',0,'?'),('H\Z횮f&SDMS','wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional-select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional-select.php',0,'鍙t!','鍙t!','ÙPak黀հ3[U','',0,'?'),('q_\"1F','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+{RNa','$\'@οoeА~S1pty>Ի#&V','',0,'?'),('s&^\"WD=','wp-includes/blocks/query/view.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/view.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xIS_t\\%^','\\Z?;\n4cwMz:`?0j,N#','',0,'?'),('tZQYz0跫','wp-admin/images/wordpress-logo.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wordpress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ưyo88S`','bxLPͰ=^am1i','',0,'?'),('zvK\Z','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWPPost.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWPPost.php',0,'٬i[WQ򌐲','٬i[WQ򌐲','ys:hdDTh45	IuNz×','',0,'?'),(')E)K;','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php',0,'0w\Z\"TVejl','0w\Z\"TVejl','W#}Z~4NUW23','',0,'?'),('-\r{z7','wp-content/themes/kadence/template-parts/content/archive_hero.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/archive_hero.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ih퓆g4','fv3ɿ9?Ct?','',0,'?'),('#X;T','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aƧ{qM4݅mO','7nkpC,Vw~*+V\n\'','',0,'?'),('7\Z=*>@m1','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceLocatorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceLocatorTrait.php',0,'\rjhlGRF','\rjhlGRF','h]_[nX>kX3!9','',0,'?'),('k5SHЫ','wp-includes/SimplePie/Author.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?hK\0k1N\"','N\\pt3+,l\'cOQ+Z','',0,'?'),('sֻ,ȸ','wp-content/plugins/wp-rocket/inc/Engine/Debug/RUCSS/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Debug/RUCSS/Subscriber.php',0,'[Pk,P8HS','[Pk,P8HS','){{d\"EwB\\Dee=R+','',0,'?'),(';CK+','wp-content/themes/kadence/template-parts/footer/footer-widget6.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɻ[+릓','Y)OP|DTo\Zw','',0,'?'),('ebWA0d','wp-admin/images/comment-grey-bubble.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/comment-grey-bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y*\'tF','7	y񮌬U{ԟ`]m','',0,'?'),('\"\ryf@wCW','wp-content/plugins/kadence-pro/dist/conditional-headers/conditional-header-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers/conditional-header-options.php',0,'Dmp&f\\	`','Dmp&f\\	`','Z_iѓpt31Fn|\09ۺ','',0,'?'),('[4?s','wp-includes/css/dist/block-library/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e2!?wRhA','bj^3%vJOBvA%;}','',0,'?'),('Ia\n؎a','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\Z\Z+,','*y$MQ[q:h\")XTC\0\\k','',0,'?'),('7({\"î','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/constants.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/constants.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-e9{`j^S','\\u3VOo\nj::1fbOTP','',0,'?'),('IBS&tmip','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/SelectStatement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/SelectStatement.php',0,')R֋\"\"',')R֋\"\"','ñZ_-3廐/D<wMqOY','',0,'?'),('̪b9{?y7B','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php',0,'j0H,ǅl9','j0H,ǅl9','\'\n*h	\'B|O\0\'s>= ','',0,'?'),('WMOSw0֜','wp-content/plugins/kadence-starter-templates/assets/css/starter-import-export.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/starter-import-export.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o:d#{c\'kߧ','\r\\{S6\Z,Oٯ\"FL:ii2','',0,'?'),('	eحVMy','wp-includes/blocks/rss/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V[с1i','OOr\'(\rM2J7`ً=h','',0,'?'),('%1kа','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Registry.php',0,'>(k%(T<=5','>(k%(T<=5','\\ɦAm{Wikۆ**~=l','',0,'?'),('mqPoD0*L','wp-content/plugins/wordfence/lib/wfRESTAPI.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\8H mi+','++Ɵ0͂b=[㜁','',0,'?'),(' ,eOzÑ','wp-includes/customize/class-wp-customize-site-icon-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-site-icon-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MYץ<幋{','gT,ɚ(b\rtiEn7=CK','',0,'?'),('\";&rvS_','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5PZ	','-A\'l_?X.<e~0݆Ӻ','',0,'?'),('\'N8_\n\"h','wp-includes/blocks/comments-pagination-next.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-next.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','frt%KgyE\r{','.\Zͻs\"1[5rf\"wwW','',0,'?'),(',5XpBFdcj+','wp-includes/js/dist/vendor/lodash.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/lodash.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?do2E)x','uZ\n.	RJ|l!\r','',0,'?'),('.8 \n\\d','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromisorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromisorInterface.php',0,'GiOZ3_','GiOZ3_','a[naS;Ѧ^,\0`3-','',0,'?'),('7c-kЄ\"`k','wp-includes/blocks/html/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[0UtGŸ/6\\[','@Nz&d Lh]X(eh','',0,'?'),('8-j/XQ\\!','wp-content/plugins/wordpress-seo/src/builders/indexable-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-builder.php',0,'6մQ','6մQ','2W6/#\"R?o}q^	F','',0,'?'),('<eH7=je','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/LitespeedCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/LitespeedCache.php',0,'[Κeǅx','[Κeǅx','dzWdjF:xʶ3tA.','',0,'?'),('=,v1̠@>I','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J?Cb[','PIY\"诳g','',0,'?'),('>*8q4xު=','wp-content/plugins/kadence-blocks/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_namespaces.php',0,'\"@~Ǵ[@A','\"@~Ǵ[@A','ЬKql:~ҝ٤Bu$*Vz)','',0,'?'),('Q (;ؠ|~R8b','wp-admin/includes/user.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iGo/2_c\0','ˇPg\\̪mHMS+[$^@','',0,'?'),('T]\\g4źuP;','wp-admin/css/admin-menu-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/admin-menu-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2O_y#WZ','aÇzK7dnŶfp&Xr','',0,'?'),('bpA+-+ʉ','wp-admin/js/widgets/text-widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/text-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(<M}Z?w','l!O^l@X(SqVO}QtW','',0,'?'),('kfAB:PZ(2','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'()ø\\(r','\0t\nRʕxcr:6t1V\\*_','',0,'?'),('nG/c0PM݉d','wp-content/plugins/shortpixel-image-optimiser/class/view/shortpixel-plugin-request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/shortpixel-plugin-request.php',0,'FރA1UPhv\r','FރA1UPhv\r','i.3eb\\:i%L:)sfu1','',0,'?'),('xpJ','wp-content/plugins/kadence-starter-templates/inc/class-import-elementor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-elementor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m 8\"	Op','Ic@z]CKq13Wt{','',0,'?'),('}y1ox$qv','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-column-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-column-block.php',0,'<JF\"τv_7*$','<JF\"τv_7*$','p.IJ+>w(ЇFnCk','',0,'?'),('b͕+f3c','wp-includes/blocks/latest-posts/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1-DԢ\n~K8\0','Dҥr15WvCДe{%\r1','',0,'?'),('| y','wp-content/plugins/kadence-blocks/dist/header-visual-builder.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/header-visual-builder.js',0,'|`Y5Rd','|`Y5Rd','\0c+Vq̐eG@.\\2d 649ݵ','',0,'?'),('%bQbM<x','wp-includes/js/imgareaselect/border-anim-h.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/border-anim-h.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z,ntZ^6{Lp4','qschm-%x\ZBx\'E:','',0,'?'),('-6Yw@i=','wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OhO<FҬ','PJHtNsnd*F\'WWaq]','',0,'?'),('~zk\'r;l','wp-content/plugins/wordpress-seo/lib/migrations/adapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/adapter.php',0,'N^{C\\\"6/c','N^{C\\\"6/c','ă9XzH8/O ͬF~p','',0,'?'),('0,X','wp-includes/css/dist/edit-post/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|xJOkWQ\Z','wZ8;a^C}$;+#ߦ\ruqɚ/ڧ','',0,'?'),('\r5 -|˃I\Z','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?좑.\'\0C','Y9ƣYl-[	\Z/','',0,'?'),('>ɭ;\\}p#_','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ReflectionContainer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ReflectionContainer.php',0,'eC|iZ','eC|iZ',' Iilƒ/J\rs;jM+`','',0,'?'),('ۣ#z;\n\\H,','wp-content/plugins/wordfence/lib/wfScanFileProperties.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanFileProperties.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\'B(\Z6]^',' (&f;(JsU\\`','',0,'?'),('Af5#gn','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php',0,'vhr 緹Q(','vhr 緹Q(','2d<\'dD(a=>gtk','',0,'?'),('rBG0\n','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/AbstractJSOptimization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/AbstractJSOptimization.php',0,'BT<?r','BT<?r','YC\n~\'NGk|R\ZkK_(W$R','',0,'?'),('i)33ܥs*','wp-admin/includes/class-wp-ms-users-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-ms-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IN0&Q>:','R>F#QNےyW`zMG','',0,'?'),('y5_aNPbY*','wp-content/themes/kadence/assets/css/src/editor/learndash-editor-styles.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/editor/learndash-editor-styles.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\05~B&ޚ','_Ӎ|bl!\'\'\"q7_԰','',0,'?'),('\rP)4_\"\'1','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\"]=|A_','kcب/^<q#HtQMV','',0,'?'),('\rds\ZUA5','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php',0,'laTa$I','laTa$I','uX\'Ω]fԂܙKE*','',0,'?'),('$z1َ','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/StringArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/StringArgument.php',0,'ANrb(s~','ANrb(s~','@e\";F5:SY̤xQvh','',0,'?'),('hg9U̦a,','wp-content/plugins/duplicate-post/src/duplicate-post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/duplicate-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')֒*Bjˆ','ʟFY~sP^Qe]|[ȩMCB@p','',0,'?'),('\"\\}S_d/XLK','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/AbstractMinifySubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/AbstractMinifySubscriber.php',0,'#{d}F\\wWwx','#{d}F\\wWwx','+w?FAz >gmkIu}m','',0,'?'),('$CPY3҆','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Exceptions/DatabaseQueryException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Exceptions/DatabaseQueryException.php',0,'@X;lr','@X;lr','4;N:IaF\0,JdIpm\0','',0,'?'),('&8ߕ|CV','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Slugger/AsciiSlugger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Slugger/AsciiSlugger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*;\n$ײE','~	\"^\"&|t@͊O\"L','',0,'?'),('&nGoP','wp-content/plugins/wp-rocket/inc/classes/logger/class-html-formatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/logger/class-html-formatter.php',0,'Q ٶbJ- j','Q ٶbJ- j','ϗv\\[ÌU0,od\'G\\3','',0,'?'),(',h+mD8Li','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php',0,'IشQe','IشQe','еA1PرGjĮzWvo]*','',0,'?'),('<M<?)TQ','wp-content/plugins/kadence-pro/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/installed.php',0,'\n~ɯ2W\r','\n~ɯ2W\r','s0.as	sNǐIv--M','',0,'?'),('>a9.%w','wp-content/themes/kadence/template-parts/content/entry_actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>cѫ\ZjYj','伺ˌYH\"wTJ%@|C)5׉','',0,'?'),('L\"yS\"\n','wp-content/plugins/duplicate-post/src/ui/block-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/block-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֱ5K?ҫG','p-.e4Oy3TpI^3E','',0,'?'),('SOr$\nۀѳ/','wp-content/themes/kadence/assets/js/admin/meta.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/meta.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r]*(FP','b_~d|/ae3\nzhSsG','',0,'?'),('W[:$fܧ>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php',0,'B֛2!C','B֛2!C','4]ₓ( t1\'<q6im','',0,'?'),('`M˞א@O','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XڄySLI\\','Dv*]\'C@rQ','',0,'?'),('edNVp^e','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/RequestExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/RequestExceptionInterface.php',0,'<D,>\rp','<D,>\rp','d?QHpȐ\\|]Ծch=H.j\r','',0,'?'),('euSy7š','wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/HealthCheck.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/HealthCheck.php',0,'p$RڦA)','p$RڦA)','\"<}T{vry\\\n͸','',0,'?'),('o	lѴcd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n@LjwD','\r8d8sڇ6FȌ','',0,'?'),('u\r:?!\Z','wp-content/plugins/wordpress-seo/src/config/migrations/20200609154515_AddHasAncestorsColumn.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200609154515_AddHasAncestorsColumn.php',0,'dy]e%xt','dy]e%xt','^N&-cap~gl\n^%','',0,'?'),('A]ט','wp-content/plugins/wordpress-seo/admin/admin-settings-changed-listener.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/admin-settings-changed-listener.php',0,'67X݀:','67X݀:','m o\'xl8<}Qkq0\"WU','',0,'?'),('\rHck','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~rs׹~ζ','\n1;Cesڪ]\0#hYtdc\"','',0,'?'),('Lýf8=fB{','wp-content/plugins/wordpress-seo/inc/class-upgrade-history.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-upgrade-history.php',0,'~:!~0al','~:!~0al',')ؠ\0s t(q(?B\r/','',0,'?'),('*ΫB*	GX','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z+?پbJ^','S8,\0Ɉ?Q\Z,\nڕ=:|_','',0,'?'),('x|sKa','wp-content/plugins/wordfence/views/common/page-help.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/page-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!YJJk','\Z=DBא	%%A?Ow*/~u','',0,'?'),('O&Lhr\'','wp-content/plugins/wp-rocket/vendor/composer/platform_check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/platform_check.php',0,'ornXwdr9','ornXwdr9','-3X.+5JbQ','',0,'?'),('#	>7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ImLWyݓH','\rflդ/;l\\\\.6r#P[','',0,'?'),('FnO[NU\0','wp-content/plugins/wordfence/css/license/response-global.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/response-global.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}#!+hNi@','V[\'yyX?yeV{FeCl%','',0,'?'),('ăfHH','wp-includes/blocks/navigation/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3J\Zn{<W','Z\0As4{%Nrg\'','',0,'?'),('ņLGP(Ήȯ','wp-admin/js/widgets/media-widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"׋@/a','WI`63XAb#;rv{Mp6','',0,'?'),('&	AH)I&','wp-includes/js/dist/vendor/moment.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/moment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nZx>)#2k2','RdvϒeLk}qE%VѻW','',0,'?'),('*4Cԫ<[&A','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/marietta-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/marietta-georgia/index-https.html',0,'#KG)é','#KG)é','ŏ5?J\'Cw,t\Zp9','',0,'?'),('cYF}j`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3b(浏К','n;<	Ǖ-Wt]<su','',0,'?'),('\Z\n?(w','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DecoratorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DecoratorTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q|[0y,\\6','?-6fx\rus$IQLUxn','',0,'?'),('=1Ҡ&','wp-content/themes/kadence/inc/components/amp/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/amp/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@`7\\','mS\\SlKg','',0,'?'),('+X1TDk\"','wp-content/plugins/wp-rocket/inc/Engine/Common/ExtractCSS/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/ExtractCSS/ServiceProvider.php',0,']~>+ӥ[',']~>+ӥ[','s.!Q~b%oV\rg)1IY#;','',0,'?'),('_ۼ9EbPo','wp-content/plugins/wp-rocket/inc/Engine/Common/Cache/CacheInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Cache/CacheInterface.php',0,'2.1H5E\ZH','2.1H5E\ZH','\r\'Q<nf\"ן{Uߜ\0h8!','',0,'?'),('ybk','wp-content/plugins/kadence-starter-templates/dist/starter-templates.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/starter-templates.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rDesFǄþ','ukG3Llw+KGKЁ\n2i','',0,'?'),('&2','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ylhw%Re','\njqW	v_# f~R>','',0,'?'),('Ԗr2bJ','wp-admin/js/site-icon.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/site-icon.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sv^ #k','e<wIb?vyu>s)עݔ','',0,'?'),('#7rY\0i','wp-content/plugins/wordfence/views/common/status-tooltip.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-tooltip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FfZ؍PIR&i','EQtY=j.#eW㈤A3QcPT','',0,'?'),('&#pJh','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Čd<vWJmx','6R3]iJ)o.g1&lJ\"','',0,'?'),(',!#QP[;','wp-includes/sodium_compat/lib/sodium_compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&~.@Y$','bYu\"]FOi<^&!l*~\0f5','',0,'?'),('4ہ;0.*','wp-content/plugins/wordfence/views/blocking/country-modal.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/country-modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(G\"nrPi)߬j','\rFAmea	r-wYEuu','',0,'?'),('8(KL._\'%','wp-content/plugins/wordpress-seo/js/dist/languages/en.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/en.js',0,'P)V(_BR	[','P)V(_BR	[','J<`^̫+~\',sVڅ\r**}x','',0,'?'),(':뭲cRPe(','wp-includes/rest-api/class-wp-rest-server.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/class-wp-rest-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ʾ)ۆŹom','JRDq,ikKo4l-$h~6K','',0,'?'),('KxP0&O:p','wp-includes/blocks/archives/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rv}\')4~~','ƸCYMa.L8yQvqI','',0,'?'),('`sŘ&Cz','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\"1T5E`','1.bY`XMz53','',0,'?'),('e؟v笪Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' UwYII}','ݠ\rڗUDPTV+6^:2!','',0,'?'),('fDJ{O­','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Tables/UsedCSS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Tables/UsedCSS.php',0,',ɸQFOUs<',',ɸQFOUs<','37felMd++Z~=o8\'oلy','',0,'?'),('k\0\Z{ ݛ6','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ihbΊ,b','S%\'7^V)7$_+V`9D','',0,'?'),('kbgS','wp-includes/js/tinymce/plugins/wplink/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wplink/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#E<-OelmwU','T\":$ o!5Jp\0n','',0,'?'),('{L73TcNE','wp-content/plugins/wordpress-seo/src/conditionals/addon-installation-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/addon-installation-conditional.php',0,'>\0ȭTjF','>\0ȭTjF','nՋ\0KU][U}CB','',0,'?'),('lg+QgR','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-accordion-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-accordion-block.php',0,'/:X$SDù','/:X$SDù','Y!P\\st+FC>','',0,'?'),('R$60jwIm7','wp-content/plugins/wordpress-seo/admin/import/class-import-status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/class-import-status.php',0,'K9<3(g','K9<3(g','Tx-PoA','',0,'?'),('dkc0Y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Exit_Interview/Template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Exit_Interview/Template.php',0,'Rkn/x/\ZEl','Rkn/x/\ZEl',' V7`k}lnBNVAvp','',0,'?'),('57D;TkC','wp-includes/blocks/social-links/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PST8G,0[d','\'̗(o5?9`,O3zYd}Pϝ','',0,'?'),('s5,}','wp-content/plugins/all-in-one-wp-migration/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5$mxlP%','F}ՌOX	##','',0,'?'),('L.\nw;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E	4mY>`','#_[Ѹ@uHa(+j>V\Z+q[V','',0,'?'),('g~w\Zhh','wp-admin/css/themes-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/themes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NxYj>g','v_96SFYҝhjT؂>I','',0,'?'),('XN	Z2fI','wp-content/plugins/wordpress-seo/js/dist/languages/sv.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/sv.js',0,'1E.u|7\nkGU','1E.u|7\nkGU',':\"mS\0{ܻi+*4t','',0,'?'),(' \\ix(0','wp-includes/blocks/text-columns/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','++R\r','$Y|eqЍu\0dfDbtF^	T','',0,'?'),('F}1','wp-content/plugins/wordpress-seo/admin/class-remote-request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-remote-request.php',0,'%~t@=nw','%~t@=nw','hʊ{-I\0[|&6fߚa\r_+n`','',0,'?'),('Ju\'矓','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/DownloadedImage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/DownloadedImage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`w_lS8 uM:','nXdf3z].I֘-','',0,'?'),('hqt`nr','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/App.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/App.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NjG8X','\\H^2G6uX=5c|','',0,'?'),('ͥ`FJSu','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kz+UŸ(5\\','8:oI9,=zDk8;{A{\Zij','',0,'?'),('.dFYGʹ#M','wp-content/plugins/wordpress-seo/src/loader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/loader.php',0,'2wKY\r','2wKY\r','a{,G1kCR,H^C','',0,'?'),('%7>W!i .','wp-content/themes/kadence/readme.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p!\nZXb*u)','E\'`3,SyPbX0S\"','',0,'?'),('~!y\"?','wp-content/plugins/wordpress-seo/src/presenters/webmaster/pinterest-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/pinterest-presenter.php',0,'蕑$I','蕑$I','Y\rmvRPA>oJa^Gq','',0,'?'),('	QW~-\0d','wp-includes/class-phpass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-phpass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\YnB\0tvH?e',' C]܅w#0d|Yø.\nֺ','',0,'?'),('	?quM','wp-includes/js/mediaelement/mediaelementplayer.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelementplayer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	5)ky~','_Dt3ג3pa;9,\nigC?3','',0,'?'),('	 `:qBܩ:4g','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php',0,'5߾Fj9%_7,','5߾Fj9%_7,','V#!V8|ckbN\Z=d ','',0,'?'),('	\"W\0aa[','wp-content/plugins/wp-rocket/inc/deprecated/subscriber/admin/Settings/class-beacon-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/subscriber/admin/Settings/class-beacon-subscriber.php',0,'ۮ;: 	','ۮ;: 	','t٬dHK^\n4v><(','',0,'?'),('	(;;L|׽=','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-taxonomy-change-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-taxonomy-change-watcher.php',0,'nT┬ʁ{9','nT┬ʁ{9','\'هUaa&&\'d5b#','',0,'?'),('	,/Օ!gyd','wp-includes/js/media-editor.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nu\'s\0@','.eXwh!st3H\\&3-#','',0,'?'),('	-oؙ#/I','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Rfc7230.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Rfc7230.php',0,'vh֧Kc	','vh֧Kc	','Pv㽘raME%U.BHA','',0,'?'),('	1\Z]Bu5','wp-content/plugins/wordpress-seo/src/routes/importing-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/importing-route.php',0,'\\o*\Zg&8l~','\\o*\Zg&8l~','Fz<`[>z;SUlY','',0,'?'),('	12zI\'','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/InvalidArgumentException.php',0,'FPl[h\0`L-{','FPl[h\0`L-{','F݀w7oXfW.','',0,'?'),('	2p<(X\"ݵ','wp-includes/blocks/audio/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HF[^','4K^<%_ױUbPTOΔT)!','',0,'?'),('	4#貁ﶲGr','wp-content/plugins/kadence-blocks-pro/includes/query/wp-async-request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/wp-async-request.php',0,'/d`T (~2H~','/d`T (~2H~','H?뽡0?f$GǄ~Dy	z','',0,'?'),('	7f	`','wp-content/plugins/wordfence/images/sort_both.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_both.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dm	8f|Y','~%ۉ%>BlouI)ȉ7g','',0,'?'),('	9BWGK-R','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/FnStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/FnStream.php',0,'E]`+F3N9Ԕ\0V%','E]`+F3N9Ԕ\0V%','RF+ou	e?*QmMMM+','',0,'?'),('	J;uz','wp-includes/sitemaps/class-wp-sitemaps-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\r-90','LL{VG5nXߺAP*','',0,'?'),('	P=N>b\"j:~[Q{','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','We⎆?Nt','n4<Fz_5kig','',0,'?'),('	Xt\\4vNI5j','wp-admin/async-upload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/async-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Ml[q֖c','=\'b׋CÅ\ZZLzN jM1~p','',0,'?'),('	t]9\'','wp-includes/blocks/nextpage/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ei@FF\Z','-!`,#ál៳DTD	v8=Y5F','',0,'?'),('	uH?>}U%aĞ','wp-content/plugins/kadence-blocks-pro/kadence-classes/kadence-activation/updater.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-classes/kadence-activation/updater.php',0,'hSI~#A·J','hSI~#A·J','1}>}&Eu\Z>jQ\n7','',0,'?'),('	vg_\rz','wp-includes/blocks/comments-pagination/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e)FyD','*\"eF1xjtG','',0,'?'),('	y>,#\ruG*H','wp-content/themes/kadence/template-parts/content/entry_content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_c~hib1',']QPDK%`GeEeAߚEDa`','',0,'?'),('	hXk%>{NB','wp-includes/js/dist/viewport.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/viewport.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hYǸ/XwLN\r]','&c.Ko\Z.BAϙQlKl}cP!2j$','',0,'?'),('	R)\r{t','wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-count.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-count.php',0,'A>b6Z6x','A>b6Z6x','^T.`KEB!CI*+1Y1','',0,'?'),('	\rYkcJ[','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamWrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamWrapper.php',0,']c\'{',']c\'{',',o_TP6G2\">\Z)g{X:v]U!','',0,'?'),('		lhӇ|O','wp-content/themes/kadence/assets/css/src/comments.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/comments.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p:H5ܲ5)9','&A}LeK|kR=P','',0,'?'),('	t#՞k,À','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-post-select-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-post-select-controller.php',0,'бPc˙:\'','бPc˙:\'','ʗkWS1#<vbiFcaT','',0,'?'),('	\"[ɰ{3D','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/RuntimeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/RuntimeException.php',0,';検Lj',';検Lj',';F\'}|ܿpq#I;\\','',0,'?'),('	X:QQ`:','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Logger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Logger.php',0,'9mQ:K.oo','9mQ:K.oo','-woף1%{O8u܇y>[:+\rB','',0,'?'),('	7.љWv','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php',0,'kx\ri','kx\ri','m.9|nvjӢc66&2{)6','',0,'?'),('	Хdvq|\rFK6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SendGridHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SendGridHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\0E ϒ\'|ON','[ ժqP@Zoɕܰ`ʺ','',0,'?'),('	?	$Pc','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php',0,'`)#FrgK#','`)#FrgK#','ڇ~o^6:Ej_2','',0,'?'),('	Ӱꅑc','wp-includes/js/dist/escape-html.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/escape-html.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hg|','!J.lil䕓J|vB׻O\r','',0,'?'),('	9fވUf','wp-includes/js/tinymce/tinymce.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/tinymce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl̡Ckn','Zk	6|{*\Z{Hiܝk^','',0,'?'),('	ڻUEr','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Τ`Fem}na','Dq[wTֲuјﱧ\0&','',0,'?'),('	o!QO','wp-content/plugins/all-in-one-wp-migration/lib/view/import/done.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/done.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8q:đY','y)ScV$Z[AK2;ڧ','',0,'?'),('	.50tjFjJ','wp-content/plugins/kadence-pro/includes/uplink/Connect.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/uplink/Connect.php',0,'\nYHE$),r','\nYHE$),r','mnŮ@[x\Z<H%F','',0,'?'),('	yO=i*;','wp-content/plugins/shortpixel-image-optimiser/class/Controller/OptimizeController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/OptimizeController.php',0,'&@:mY4W=','&@:mY4W=','B~+01N\'eJruw p@:','',0,'?'),('	IhBpO','wp-includes/blocks/heading/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' RR5','b+`wwx\r@&je\"N','',0,'?'),('	09-bͩW','wp-admin/network/users.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̰','yKV<\nOF\nf7t2_ ','',0,'?'),('	/?^EՑ','wp-includes/sitemaps/class-wp-sitemaps.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Y!aD8|x&q','-?\rӛ\nxYz!Uv','',0,'?'),('	*NkƈȒr','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/LocaleAwareInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/LocaleAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q)j9en','O}9l+c<M%E߹L','',0,'?'),('	c-^q͗j o','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ClientException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ClientException.php',0,'}7`cZ','}7`cZ','tin O/\"\0kߓA/.','',0,'?'),('	m?	~Ν9[V','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Helper.php',0,'}FN	q)y','}FN	q)y','PuݎS\" ò[q\\5+Cc','',0,'?'),('\n\rSr)kG','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/RetryableHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/RetryableHttpClient.php',0,'~>ec+ǖ\\[:','~>ec+ǖ\\[:','-\0:n8J\0Cأi2͆2C','',0,'?'),('\n	64R9','wp-includes/blocks/social-links/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e6\"7z}jI','\rP֯^N0UUow؎\';\Z','',0,'?'),('\n\"\'࡛ܹ','wp-includes/blocks/blocks-json.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/blocks-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EQNcr','W&\'\'OI?rk6۟\roj','',0,'?'),('\n([\0K\r<CO','wp-content/plugins/kadence-blocks-pro/includes/countdown/class-kadence-blocks-pro-countdown.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/class-kadence-blocks-pro-countdown.php',0,'yi@5\n','yi@5\n','W)*E2?EmqS@MӅ','',0,'?'),('\n-Q].o_ 28','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpOptions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jT:','U%7x-ApKw\r~','',0,'?'),('\nT/\\9$YU\n͌','wp-includes/customize/class-wp-widget-form-customize-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-widget-form-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{D*@6{τ}','+֓zi@^F%5qZg<','',0,'?'),('\nfY4&L','wp-admin/images/se.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȔB`.}\'7:','Y\"K{Ur:2JL','',0,'?'),('\nnWp4.>Z/\"/','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Address.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Address.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PdgҤ','\\n,+[@=զMJ<\0܏','',0,'?'),('\nrr2SK@|3PD','wp-content/plugins/shortpixel-image-optimiser/class/external/MediaFileRenamer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/MediaFileRenamer.php',0,'fYc*\"YyIU','fYc*\"YyIU','CQV7*,(K\Z','',0,'?'),('\nzŭ}{.u[','wp-includes/block-supports/generated-classname.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/generated-classname.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1HRO#/}','?!jCouc3eIB=\'/Ka','',0,'?'),('\n{X%N8w2?M4C','wp-includes/css/dist/format-library/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/format-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y<:8ûyy','կAfI_dsl1AX','',0,'?'),('\n}\'٩B39:','wp-includes/blocks/table/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U*N.y^Ϗs','Z>t>7^ҙ_ͧhvk','',0,'?'),('\nfӅ;{t','wp-includes/class-wp-role.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G&c{','{!џamT>TlAR9]O\Z','',0,'?'),('\nb-V:|m','wp-admin/edit-link-form.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-link-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$3g[vj','JXA0_\\4l޹p,-:','',0,'?'),('\n#x|]','wp-includes/blocks/site-tagline/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9s+2c1\\%\0{','ZkR⨈\Z5pm\\nz','',0,'?'),('\nahGhgڜ*','wp-content/themes/kadence/assets/css/src/woo/_single.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_single.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\u(_^\\>',')Qeu4S땱yOzэ','',0,'?'),('\nNNMۑ4;p4','wp-includes/js/customize-models.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eTo\n:ם/0','0Om	.>j><f:o^','',0,'?'),('\nQwЗƼ','wp-content/plugins/wordpress-seo/src/actions/indexing/post-link-indexing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/post-link-indexing-action.php',0,'KYJ$q\Zn/<h','KYJ$q\Zn/<h','l\n{i 0K*]oҌDA','',0,'?'),('\nx+[l/Dz','wp-content/plugins/wp-rocket/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/installed.php',0,'><H8\"','><H8\"','1SSc@9#W/@RM','',0,'?'),('\nåw90xa','wp-content/plugins/kadence-starter-templates/assets/images/fonts/rubik.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/rubik.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HksU\ZW$','¸4aRlϴ<uxƼ','',0,'?'),('\n62E LY','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/AsyncDecoratorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/AsyncDecoratorTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kĄp\0PhwĘ','19\ZJ4K0`	G','',0,'?'),('\nŶ\'Ƨ޻[/','wp-content/plugins/shortpixel-image-optimiser/class/Model.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model.php',0,'|$<2Vk+','|$<2Vk+','SƯe`)0j39~9z`zj','',0,'?'),('\n`xq\n','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php',0,'(_Jjwwv5','(_Jjwwv5','5nAwxaDmvЃsIE8H.','',0,'?'),('\nǘ]АD\r)','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/resources/images/stellar-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/resources/images/stellar-logo.svg',0,'FNZ.-\'D9\0K','FNZ.-\'D9\0K','ι\Zk&{X>\'Ukw\\','',0,'?'),('\n|6tgXd','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/ContentFetcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/ContentFetcher.php',0,'ޱ He','ޱ He','Aor, B\r=Xw	,忩1','',0,'?'),('\n)H~V5+G.','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fR\rEε͜','tA8pShpa-Q`̹4W','',0,'?'),('\n,(hgFH','wp-content/themes/kadence/assets/css/elementor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/elementor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Y+ђ~>','sx\"m&%{\rlېIή8','',0,'?'),('\n	_{','wp-includes/blocks/audio/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nT&!6NZ','j#v:=_%$Q','',0,'?'),('\nhc+T%\0y[H','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LimitStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LimitStream.php',0,'FODQ65f','FODQ65f','/\'|V\0;jkk,@虩','',0,'?'),('\nwt.	','wp-content/plugins/wordpress-seo/admin/class-option-tab.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-option-tab.php',0,'\r\"|Pt}','\r\"|Pt}','5=J-HX!4pL','',0,'?'),('\n@g+T;V','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ίU\"\"',':Qo	硛,+Qj|3ό','',0,'?'),('\n\rBp̭','wp-admin/theme-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OIZ|','	|Lp`FfDuuĜ:ДJ','',0,'?'),('\n:X2Lnc','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SɛmE}Zh','-y.=U6\n68h&9#','',0,'?'),('\nGƙn\Z@1+U]','wp-admin/css/revisions.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/revisions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K4LV2x}[}','uZg>I;K2u\0%J','',0,'?'),('8rQ2oV̬','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-section-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-section-block.php',0,'f`O0','f`O0','\\:FS(!54;`,=O4!f0','',0,'?'),('QF؋@7w','wp-content/plugins/wp-rocket/assets/js/browser-checker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/browser-checker.js',0,'GB9y>:','GB9y>:','wcbXKJl#K] r','',0,'?'),('\"w%_K\\u','wp-admin/images/wpspin_light.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wpspin_light.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$n4H{','-*znD,\"aHKHrޱ~\Zy\Z%','',0,'?'),('%oJf','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/AmpHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/AmpHttpClient.php',0,'/~/Q|','/~/Q|','#Cȹ޳ڈ_PMxG^?i','',0,'?'),('&cYD#P{+','wp-includes/js/jquery/ui/effect-blind.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-blind.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*i<z{5','+ Hj78_z@V','',0,'?'),(',+E&*tӁhgN','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|7.Q\rV','\'/.׮\rf=П&ōܐ5j!{\0WQP','',0,'?'),('1\r{цnDeP]','wp-includes/blocks/home-link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/home-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wcEjS','B>t5ZZXÓ\r=_','',0,'?'),('A`k{n/*ScN','wp-includes/js/dist/vendor/react-dom.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/react-dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W/eQ.쫝B','Lt$}e;p]>_>t','',0,'?'),('N&,R\n	','wp-content/plugins/wp-rocket/views/settings/fields/checkbox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/checkbox.php',0,'\ZĴO4*m_','\ZĴO4*m_','	Ul-_30]_fN}\\xQL3','',0,'?'),('Ng2>A ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BotbleInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BotbleInstaller.php',0,'S%hPX\\','S%hPX\\','\0]S^[dr\\3Wܦ','',0,'?'),('Phui8V\0kU','wp-includes/blocks/post-date/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\07T','Q6\0tӰeѫ؉m逪|iZ0 ','',0,'?'),('RM{kHb\rE\Zm','wp-content/plugins/kadence-blocks-pro/includes/custom-svg/kadence-svg-cpt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/custom-svg/kadence-svg-cpt.php',0,'{F;ΈRiy\"','{F;ΈRiy\"','X$]j^DE}j)p','',0,'?'),('f?Dr>zh','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Attribute/Required.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Attribute/Required.php',0,'A#e6!~_:','A#e6!~_:','Q.j-o?3!C_چn^0','',0,'?'),('xNJL.','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-item-base.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-item-base.js',0,'CpBp9','CpBp9','\0Ʀ8VՍ_/W<@','',0,'?'),('Yq','wp-includes/customize/class-wp-customize-partial.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-partial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m)fIf8XKO','Img\0W?T,m9rLmy6@y<','',0,'?'),('-g3)','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/constants.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/constants.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FNWb$</7*N','6\rU2)	J:NV\\4','',0,'?'),('Yέ\\8\Z%x','wp-content/themes/kadence/assets/css/src/tutorlms.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/tutorlms.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Q\"eBUV','s)SmS(%mM=;2EåΨ','',0,'?'),('))}*]','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager.php',0,'ʭ 2w[eAyb5$','ʭ 2w[eAyb5$','VEOhۃONWZ.(`8KR','',0,'?'),('loY\Z)','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hz=׬VKd','JVBSksO	Y|D\'nٟdcP','',0,'?'),('\n%$$h_j','wp-content/plugins/wp-rocket/inc/Engine/Common/Cache/FilesystemCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Cache/FilesystemCache.php',0,'I]Elz','I]Elz','\Z:#O\\pcy/No\"\"Blh','',0,'?'),(',H(b_FO','wp-admin/admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JWw%yU','亐$γ?%I&KVlXt:','',0,'?'),('UYPN$u','wp-content/plugins/wp-rocket/inc/deprecated/vendors/classes/class-minify-html.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/vendors/classes/class-minify-html.php',0,'fMt1S*','fMt1S*','@\rq\ZaRlԃ)[	','',0,'?'),('HVեdpVp','wp-includes/images/media/spreadsheet.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\0Ṫ?','v)\n6Zl2В1!+	','',0,'?'),('l|2Qؤ	','wp-content/themes/kadence/inc/components/elementor/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/elementor/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Afƅհm','_y׏smErюeЩ','',0,'?'),('5Åƌm','wp-includes/block-patterns/query-standard-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-standard-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','уBUCL{',':Τ~&\rCF+Iq_e','',0,'?'),('p`厌T_a\'','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php',0,'NyhO\0li=','NyhO\0li=','x}\\tU8*L-\"D','',0,'?'),('PɎ,qtٜS','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php',0,'m+}\\#^7','m+}\\#^7','%Z2ͭBȥX*i)Ѡ¯\0','',0,'?'),('؃8(B\\','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r}(R+\"\n%x','XV6<系%IN]eGCQ1','',0,'?'),('?=77R','wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint.php',0,'\"^Ufi','\"^Ufi','\"Do$=D91Qᜋ!\r&i','',0,'?'),('V(^ -O\ZT0{','wp-content/plugins/wordpress-seo/inc/class-wpseo-image-utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-image-utils.php',0,'bO;\\-3)','bO;\\-3)','x|CY5c:ܤiJr\\GcW','',0,'?'),('?%M	?N','wp-includes/js/dist/vendor/wp-polyfill-inert.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݦR?ݹ\nѵ@','u6+v\Zqm~<l','',0,'?'),('̕}_V.','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeaderItem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeaderItem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HٶuKԵݷU}','UqS.5.g.N3qn^rU8m;','',0,'?'),('{TnaY','wp-content/plugins/wp-rocket/inc/functions/admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/admin.php',0,'\r+G\nȠl?','\r+G\nȠl?','%;ki/?+HWa.YB','',0,'?'),('܇Oe','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php',0,'*A_LrǑp','*A_LrǑp','!O[}}E]O{\ZU׵x','',0,'?'),('kOǛ?((͆','wp-content/plugins/wordpress-seo/src/helpers/import-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/import-helper.php',0,'mԿ,)UX?%6','mԿ,)UX?%6','lfDps#\r&@?`J7Qۺ VA(','',0,'?'),('\nUN~\0m','wp-includes/js/codemirror/csslint.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/csslint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_ϱIl',']ih4Fò\rUWEK(Pd','',0,'?'),('[7ߌA','wp-content/themes/kadence/languages/ru_RU.mo','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z&iXĎZ+3','6i~ʥɖ޵l2S 򳰯G','',0,'?'),('c\"ml Ǟ>o','wp-admin/images/wordpress-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wordpress-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N%dgp','\"uj-QE\0[gLZ5MD:','',0,'?'),('	cvR!tHvJ','wp-content/plugins/wordpress-seo/src/presenters/rel-next-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/rel-next-presenter.php',0,'-,;N9x[=','-,;N9x[=','7ՈP4xǚhkr/d\'','',0,'?'),('$%#_U_d','wp-content/plugins/wordfence/views/options/option-toggled-select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	|Cw@m','5ã\0ӊVbAŇ.Z;Mzq]','',0,'?'),('%qm/a$ك','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r1:0D J','*׎|,y|w5y42','',0,'?'),('*Oi','wp-includes/customize/class-wp-customize-media-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-media-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\+ADi:cсS','XaRPXxH~vn\n@{','',0,'?'),('D 2K|&','wp-admin/css/nav-menus-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\060L횝','9DebGLLr\'','',0,'?'),('N:X\ra~ʝ','wp-content/themes/kadence/inc/customizer/react/src/common/font-loader.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/font-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3pks&9	3','Pi24JzFṔ','',0,'?'),('Q10G,','wp-includes/sodium_compat/src/Core32/Curve25519/H.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x} pcKO','(H>0}8:e)ＴN/z','',0,'?'),('`/4\\srHm','wp-content/themes/twentytwentyfour/patterns/hidden-post-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-post-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\\R5n9`z','11$zJot=|','',0,'?'),('dW9Ys[','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<EFC\08,','ktv+#?G^-閪R-Y\ry','',0,'?'),('nn=q','wp-content/themes/kadence/inc/meta/react/src/index.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%MmX2193+','gy,Hm)(09F,\0@=r$鳀@ ','',0,'?'),('{Mii2n6','wp-includes/js/jquery/ui/effect-highlight.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-highlight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M.Z-|*h0~A','?TI!ewg4;㻡ah','',0,'?'),('}ǯa4%Ɖ','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-typography.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'=U{_{','=Y9DcFa®Ы^jl-5','',0,'?'),('P>Fބ=_','wp-content/plugins/wordpress-seo/admin/formatter/class-post-metabox-formatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/formatter/class-post-metabox-formatter.php',0,'fT*>G d','fT*>G d','Vܧ*b?ZY  %G','',0,'?'),('X7} we','wp-content/plugins/kadence-blocks/includes/assets/js/kb-show-more.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-show-more.min.js',0,'f1\0\r&;P{','f1\0\r&;P{','A3ުG\0㡋5]\rGBM','',0,'?'),('\0ߒRE\r6','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-options-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-options-action.php',0,'n|m\n;','n|m\n;','<*p&z#t٧R8i\'','',0,'?'),('ss^Gx蔛','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',0,'g{ZOϢ','g{ZOϢ',';@#Xҽ*ȭ(z	&','',0,'?'),(';oe','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/None.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/None.php',0,'H\\bL٦i0*&','H\\bL٦i0*&','_*	wףsMq~~E܎\ni','',0,'?'),('1:r@IX\0|','wp-content/plugins/wp-rocket/inc/Engine/Optimization/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/ServiceProvider.php',0,'usm|w\"','usm|w\"','{!a%	vL^ D6͜','',0,'?'),('\r6\Z͌','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions.php',0,'3<?=','3<?=','ڢ;?c<I;7&\'%[LaYhr','',0,'?'),('J7@}\n^{','wp-content/plugins/kadence-blocks/includes/assets/js/kb-advanced-form-block.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-advanced-form-block.min.js',0,'4TJX (7k`6','4TJX (7k`6','<+_d|4qs/	','',0,'?'),('!V31ts-','wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h%\'m~|&','\'hEY\r)+TR&','',0,'?'),('5gfi8-J','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','쓄\"7	=','N˗2,{gFԃ;A3','',0,'?'),('SD5Zќ{','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageDownloader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageDownloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1+ǋgM\"z','rjN2$$eNOE','',0,'?'),('AFk','wp-admin/js/privacy-tools.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/privacy-tools.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Xc\rn','9=+*}4-o5H[L檰','',0,'?'),('.	/Lco','wp-content/plugins/kadence-pro/dist/mega-menu/fa-icons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/fa-icons.php',0,'\\|[[','\\|[[','P֔*F}fHjh','',0,'?'),('Թ`dlR8Q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php',0,'@\'.\nߟQK\\#^','@\'.\nߟQK\\#^','(rU͸#R?JȃXf\'L\0x','',0,'?'),('Wl\nSxc','wp-content/plugins/wordpress-seo/admin/class-admin-asset-location.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-location.php',0,'΃bA׳Wȑt','΃bA׳Wȑt','ALUk(5Ɖ\"M8ٍ','',0,'?'),('ZuiigԄ','wp-includes/js/dist/nux.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/nux.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q/Ndrˏ',',b8^!+ziH죆e','',0,'?'),(']9ʐ%F^yL','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php',0,'0\nYGF','0\nYGF','V\'Pضe{\nf~Co','',0,'?'),(';X\"`uɜ','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-form-tab.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-form-tab.php',0,'@%u7Ygcm&','@%u7Ygcm&','}Eֳ$-Lj$TV','',0,'?'),('QZv&&','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xKk:4bVA|A','>؅]bWƯ)M\0BtRo^T','',0,'?'),('\rR$-LD','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posttype-defaults-settings-importing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posttype-defaults-settings-importing-action.php',0,'\ZW_5\n','\ZW_5\n','3DSI;͂>U6SjM\'wѱ0','',0,'?'),('\r͛ܹ}CLR)','wp-includes/blocks/file/view.min.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/view.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u0{os^.j+','l)gLA.mH,\Z8zrX','',0,'?'),('\rSb|Eh','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php',0,'\n~dG\"Y/$','\n~dG\"Y/$','Ԛ( ̳Oס#cFh9Y ','',0,'?'),('\rϽ͔z','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-finished.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-finished.php',0,'8@]JI>y3`L','8@]JI>y3`L','eAט\\ւ`\'S\"K','',0,'?'),('\r2ֵXU˝\\6','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractAPIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractAPIClient.php',0,'?&|4Fe}*s7','?&|4Fe}*s7','y|`|V_e&Se};KWi+2','',0,'?'),('\r)AΥBЃsx','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/index-https.html',0,'cux8','cux8','6M7[ҡ70\"?E\\wz_s','',0,'?'),('\r*)f','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php',0,'/lYϧ]p','/lYϧ]p','yk<Ir64AQqLq\"k6UO','',0,'?'),('\r-0Pw/7W','wp-content/plugins/shortpixel-image-optimiser/class/external/visualcomposer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/visualcomposer.php',0,',E5*\'Wp*',',E5*\'Wp*','tCz\"z\'dX,ܕ','',0,'?'),('\r4\00N#0f\r1X','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/AbstractHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/AbstractHeader.php',0,'Q/r3<','Q/r3<','0}\nT8ʤ>g/Xd','',0,'?'),('\rOH\0LY3)r','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/index-https.html',0,'?T\'tFN8[','?T\'tFN8[','J+TxA2`K@V]ZjT','',0,'?'),('\rUjzh2/9fM','wp-admin/js/application-passwords.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/application-passwords.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=]!EVYS=','$p9#o,:@|Z\0ۻ۵GU{%','',0,'?'),('\rWD=nH','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-container-desktop-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-container-desktop-block.php',0,'zC','zC',';pEwCVbW4?\\wґ(ҋ','',0,'?'),('\rg\'\ZF U','wp-content/themes/kadence/assets/css/footer.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/footer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZW|U(o:','!(9Qߣ#ͨHxgY߹','',0,'?'),('\rieOu|磙','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/Queue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/Queue.php',0,'_3','_3','fMVr-zԡ:4C	){Z|ا/#(','',0,'?'),('\ri(#Fz','wp-content/themes/twentytwentyfour/styles/fossil.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/fossil.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\0`27=','7&响K TU]qb,\rJ','',0,'?'),('\rxݍ^\Z<;','wp-admin/my-sites.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/my-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/tf:is','6K\\6qXF$PB C','',0,'?'),('\rzDD','wp-content/plugins/wordfence/views/options/option-toggled-sub.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m_','RȆF\nD~H08),:llWn\rc','',0,'?'),('\rX+-Ta','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O>A+=\Z,','UsDMÙd(\0ā~','',0,'?'),('\rvN[B&SL','wp-admin/css/common.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GS\r0,@','CSۻplxp\n0FD','',0,'?'),('\r<: -{̖H','wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>=F:bP','eZ\"+}.2h%vIԗd','',0,'?'),('\r1cTt]}\0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php',0,'ٹ}bj\'Q(	','ٹ}bj\'Q(	','W`Ap8kob8+k<F','',0,'?'),('\r\0|ISo.','wp-content/plugins/kadence-starter-templates/assets/images/masks/thumbs-up-solid.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/thumbs-up-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r>n^','mU} 핕HUOt&','',0,'?'),('\ryq_a','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y6%zWoq','FXH{BKaSb[D\'		A0','',0,'?'),('\rn_q','wp-content/plugins/kadence-blocks-pro/dist/blocks-imageoverlay.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-imageoverlay.js',0,'@#qbiZ','@#qbiZ','Nu[.ukʥXV0?^S','',0,'?'),('\rҧxOzzh','wp-includes/class-wp-customize-panel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MGD9H^]A%','&\0|h\0[	~m;,+>','',0,'?'),('\rӡQuU|aM}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0s3e@=*','JuUjOqrESnI%U ʾ\'','',0,'?'),('\r::HH:d','wp-admin/css/edit.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GlTK\nOjK','Z%0YRڧ9W	WN\'5','',0,'?'),('\rȫhzsr','wp-content/plugins/wordpress-seo/admin/class-suggested-plugins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-suggested-plugins.php',0,'~d\"e]$@ $','~d\"e]$@ $','kHft\r0P\'$H	{\"9*/ٙ','',0,'?'),('\r>4SWg;\"+','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/DataManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/DataManager.php',0,'Qt0?BͶ<','Qt0?BͶ<','\Zyb7$JUB6?i:\\ՄXt4	','',0,'?'),('\rW8l?\0C','wp-content/plugins/wp-rocket/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_classmap.php',0,'!UK>~)~c','!UK>~)~c','	fP={tr:Bd\Z6_','',0,'?'),('\r%%yS`','wp-includes/js/crop/cropper.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/crop/cropper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H.so','py,BG-t=s','',0,'?'),('\r&!oͥ','wp-content/themes/kadence/inc/components/custom_logo/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/custom_logo/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Wbt3','\\2֜0SmPY<}5D?m=ty\Z','',0,'?'),('\rѪ1s1=`(y','wp-admin/options-head.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cV8A#h:e׭/^','c҈^$kR2\r=ܫ@g2','',0,'?'),('\rҗr׾ \n\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$@ޯ]&','7aP\\T\"SzJ&bٸ®D','',0,'?'),('\r׵ʎ;A','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DrupalInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DrupalInstaller.php',0,'G֜s','G֜s','UOU!09кoCa_fsv]O','',0,'?'),('\rTDp','wp-content/plugins/wordpress-seo/src/helpers/post-type-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/post-type-helper.php',0,'$=bx0,','$=bx0,','IE[rV<~Fw˾*kϺF!KxTW\"g','',0,'?'),('\r/.b6Y2ս','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientTrait.php',0,'2AOBbcVW:','2AOBbcVW:','}P_F55C^7hl!TXg%','',0,'?'),('\rq^ѪL%J\\','wp-content/plugins/wordpress-seo/packages/js/images/wordproof-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/wordproof-logo.svg',0,'.MS^h\\<&\\','.MS^h\\<&\\','ne²FGƏV\"N鲗TkI#V','',0,'?'),('\rVaF','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LogLevel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LogLevel.php',0,'^K\Z+l풊.\n\"','^K\Z+l풊.\n\"','߂􉃶:7?⟈l7Eq$<','',0,'?'),('{k+SPy','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/Subscriber.php',0,'\Z6Wk','\Z6Wk',']{`l$&\0AjPw','',0,'?'),('\n0B','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=D\'Wj*<3C','qDec7Ox@.xk`V(','',0,'?'),('0	V31}&','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php',0,'2̎BO=(֝','2̎BO=(֝','%R5EoW6G@2Q','',0,'?'),(')U?3j;jh:','wp-content/plugins/wordpress-seo/src/integrations/front-end/comment-link-fixer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/comment-link-fixer.php',0,'aJCﶡ\n)ñm,','aJCﶡ\n)ñm,','agF%Vw&SxŠzyޭ.^]','',0,'?'),('Ҹts}5','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-text.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FYjFLԂ7','&x[/Q{$[K@̞D(','',0,'?'),(':*+i*i2}Q','wp-includes/style-engine.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-;Hx 0Rc','`Q`I|ZSuÔt삚ZYI\\','',0,'?'),('(6~{9ZTN','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','889G5\0 4','%vqW!6?fzVa<p','',0,'?'),('>h#qKj&UNL','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t𔾑_d7i',':jQ<07wĉZXKQNR	','',0,'?'),('W7{(;:P?','wp-admin/includes/class-bulk-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-bulk-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tSjjdԷ_j','VMj+.U?ٚ;Vw_!㼆\0','',0,'?'),('XH奥(:Z','wp-admin/admin-ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ғR','@A7y~QQ+L\"и[','',0,'?'),('a5ͅB_s','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ytP>RaS@-','u{4sJ3H6owr','',0,'?'),('fY	QOKCIU','wp-includes/css/dist/patterns/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/patterns/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',.B`wqwFT','\\fLr?x8[=7','',0,'?'),('g0O\n~ʶ=6W','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/deprecation-contracts/function.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/deprecation-contracts/function.php',0,'\Z5k-U+R.','\Z5k-U+R.','`65)gDi!A1vZx','',0,'?'),('gosV;\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+n1oVb','CT(N+,TNC`ީ','',0,'?'),('kܢ~K֛!W','wp-content/themes/kadence/inc/components/layout/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/layout/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';EQ\nj\\ls1>ȕ','EZb27s/D','',0,'?'),('kCLJi{','wp-content/plugins/wordpress-seo/src/integrations/admin/installation-success-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/installation-success-integration.php',0,'/t3\rs{	ɤF','/t3\rs{	ɤF','*B	 w.Yy\nY]G','',0,'?'),('2!,|=d\n\ZZ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php',0,'qƫDB#-','qƫDB#-','ՓD83t쮷OM,NlB\0Q߿Ĉd','',0,'?'),('D42b','wp-content/themes/kadence/inc/components/archive_title/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/archive_title/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vۙ~,','q8.8dbCMBy俏f','',0,'?'),('hr\Z;%e-x','wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GJu;QZ6','\\MUKhQwCiVJ\'','',0,'?'),('\Zt0Nԡ1/','wp-includes/js/dist/patterns.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/patterns.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fF8\')N\0e`','wGp@t&TI c','',0,'?'),('\Z[DkiC`','wp-content/plugins/kadence-pro/build/ace-html.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/ace-html.asset.php',0,'3\\oV}T','3\\oV}T','~)$TѮ,~,$6k','',0,'?'),('W|T1\"%O\\','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Queries/AboveTheFold.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Queries/AboveTheFold.php',0,'L9uz:caMi','L9uz:caMi','-팡x|/ylwZzk4IvN','',0,'?'),('U%*$','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DynamicLists.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DynamicLists.php',0,'Fhf)m{E_','Fhf)m{E_','>|r3\rT-1h0EAtke','',0,'?'),('o+F0Hn3hJ','wp-includes/blocks/gallery.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VϺ#k2','#F7S\Z7d9d};b!H','',0,'?'),('nl;B0竎D','wp-content/themes/kadence/inc/customizer/react/src/borders/border-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/borders/border-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SV\"\ZEĕe','9Yȵ!CKX4qn\0m)rLKQcJ+','',0,'?'),('֯U2)u','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/ServiceProvider.php',0,'YVKu8}=+qp','YVKu8}=+qp','	;=Q\'F<?2M+','',0,'?'),('SQkIt\"\"(H','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lˬ2SoP+)','c[[w4k#\0\Zt}\\]\r','',0,'?'),('ƃEG~Ի|','wp-content/plugins/wordpress-seo/src/helpers/schema/id-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/id-helper.php',0,'<@a.E','<@a.E',']ymKMª\\ڸgʘNKә','',0,'?'),(' CY','wp-includes/pomo/entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Pg\'O$','<d+w*M$?5CvԌ','',0,'?'),('>M8 ٵ|','wp-includes/images/crystal/archive.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SI0An','L%XO+Aa!S\\܉&','',0,'?'),('V/Je6v(%','wp-content/themes/kadence/inc/customizer/react/src/focus-button/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/focus-button/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s^f9ԐW=V','Kq4D8ы\nu','',0,'?'),('͗~qyL*>','wp-includes/blocks/block/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_fe9SdRW','Zg$,:3;Q0Ճ  ','',0,'?'),('<h\'','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-inline-help.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-inline-help.php',0,'^?%i@qvSCF','^?%i@qvSCF','\0aK)fjPTVk^[v&R$4fP','',0,'?'),('HdoCZ','wp-includes/sitemaps/class-wp-sitemaps-index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Zɬ>MhʢhO','\"lEUd(\ZZ#TO \r>gW','',0,'?'),('.\"edܯ~','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-navigation-link-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-navigation-link-block.php',0,'ż\"ndt?','ż\"ndt?','[(L.O?/&c<YgnLaE_;:','',0,'?'),('a#H','wp-content/plugins/kadence-blocks-pro/includes/blocks/form-mailchimp-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/form-mailchimp-rest-api.php',0,'GxQT.m','GxQT.m','\n94rϹn$N\ZS̗r','',0,'?'),('\"\rJ\04\'i','wp-admin/js/password-strength-meter.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʃD)an','`)CELdX\\&F-V7+1SA','',0,'?'),('6O&z','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_QueueRunner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_QueueRunner.php',0,'-^*YMtmN','-^*YMtmN','ǺlEP1GnuMw\n;<t','',0,'?'),('ԫ#NKAy','wp-content/plugins/wordpress-seo/src/config/migrations/20211020091404_AddObjectTimestamps.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20211020091404_AddObjectTimestamps.php',0,':Wl3F&',':Wl3F&','~\')!pxF.\Zjn[','',0,'?'),('\0ߴ:HP','wp-includes/css/classic-themes.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/classic-themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{5gj\rp	','p8e@eS\0,}Chw\ra8\073k/','',0,'?'),('#W̛Hr','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/UpdateChecker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/UpdateChecker.php',0,'&虧DY8','&虧DY8',';(5)L~B}o;s_Ƈ','',0,'?'),('Y	xw{榚X\"[','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l|S7-n+);','ҀJrZ6%kȩ$','',0,'?'),('Dj};s,E	|g','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ContainerAwareInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ContainerAwareInterface.php',0,'w\Z?o-','w\Z?o-','s;vA\',8J3͊+uMR','',0,'?'),('p1\'l ','wp-content/plugins/wordpress-seo/src/conditionals/xmlrpc-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/xmlrpc-conditional.php',0,'51+34y|.Y','51+34y|.Y','NNm[r.I`Wo\\FC:!','',0,'?'),('&DAz5~','wp-content/plugins/wordpress-seo/admin/capabilities/class-register-capabilities.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-register-capabilities.php',0,'m!FVȦz','m!FVȦz','ERo4r0!fR^:pd.Ո','',0,'?'),('\'haU\Zq`ug','wp-includes/blocks/navigation-link/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l1ZBu^&','Epce	c7p\n&}o','',0,'?'),(')<RhU#e','wp-content/plugins/duplicate-post/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IlrI2i\n','^Rd \n-49l!õ','',0,'?'),('4ԗk>-gٟ','wp-content/themes/kadence/template-parts/header/html.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',e|Pjf=cx*@','K1d.X5f{\n\'','',0,'?'),('6f7wcA\0','wp-includes/assets/script-loader-react-refresh-entry.min.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-react-refresh-entry.min.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p:Pp`','nƿ	UC։:e/<','',0,'?'),(':k15\\','wp-content/themes/twentytwentyfour/styles/mint.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/mint.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W2Ku,]\\	','hC	?@D>јîNfcvt','',0,'?'),(':J:a2\nC$D','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R!.Ҩ&a','DaR[6	QRzT:(Y/^','',0,'?'),('\\AV*籿','wp-includes/js/jquery/ui/slider.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l6M ',';<ʙH,sۢ7Nr\ri\n','',0,'?'),('cLa6:4XBSX','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ne~]','\n-MBI}[0H\rH+b','',0,'?'),('e]/I_5|','wp-content/plugins/kadence-blocks/dist/blocks-column.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-column.asset.php',0,'U\0?sRe;lv','U\0?sRe;lv','	!ϲ֟FmY~','',0,'?'),('q/\\Yln!','wp-content/themes/kadence/template-parts/content/entry_footer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','鼸Tm̄','\'\\<`˟)ªEN8','',0,'?'),('O>b:#őW','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-single-icon-list-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-single-icon-list-block.php',0,'?چc\"o.ZLc','?چc\"o.ZLc','@0wڥ^+_>mXNjP\n,','',0,'?'),('VWb(a.<','wp-content/plugins/wordpress-seo/js/dist/academy.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/academy.js',0,'?]LύFΦ)l','?]LύFΦ)l','SBV$O09d:\Z@(\"5$','',0,'?'),('cnxԺ|','wp-includes/class-walker-category.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U?Dԝ>\"6m','Ko_ƖRjDܩzVL5\nzV','',0,'?'),('6fZ?','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>qfaj#l1',',Z2SCn kylZs\\\\Ɔi','',0,'?'),('hlfc','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Cookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Cookie.php',0,'qƯ5V\rȻ\0IB','qƯ5V\rȻ\0IB','^*R,(eWhhn&.wl{','',0,'?'),('nNd','wp-includes/js/hoverintent-js.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/hoverintent-js.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' p.`u76?','Y!:\nAː	ګZg,=|','',0,'?'),('7	,#','wp-content/plugins/duplicate-post/js/dist/duplicate-post-elementor-450.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-elementor-450.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iIQJozwg','xyHGc\r̂\ZJFGT-','',0,'?'),(']*.>`Ef','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kFh瀁1-','6!omݎ^.^@˨v7	I}','',0,'?'),('ç` \nB','wp-includes/blocks/post-date/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=aV','C`bH&2*6Թ(]3\\nڶ}','',0,'?'),('ݡ=NxK`*','wp-content/plugins/wordfence/lib/wordfenceClass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k\n qu6\'D','d\0˾e6ɔdcsOu.R','',0,'?'),('O>Pw^YX','wp-includes/blocks/post-template/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p9¿(Vq$','$U$g@It6<I!*','',0,'?'),('i})]M','wp-includes/blocks/term-description/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5^i\r!g',',1УQ2@\nrrh/Xݔ2H5','',0,'?'),('ϊ-o1\Z	חl','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ls \nJ.','XJH44P3`.t5n\'/م','',0,'?'),('xՌMA\\	','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LCׄl4l','KS?hYVØ/d?ř ','',0,'?'),('ҟV&Gyܨ	','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Runnable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Runnable.php',0,'cJuOE_l','cJuOE_l','2 g`_<VZA\r{FE','',0,'?'),('뷎wh\\Xsl','wp-content/plugins/wordpress-seo/admin/pages/network.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/network.php',0,'	DyѨI*','	DyѨI*',':N[R:6=$o?GIs*wp_~,9\\','',0,'?'),('PDZ`4|j]b','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-icon-list-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-icon-list-block.php',0,'\\@Lt5ۨn1','\\@Lt5ۨn1','\"CF?IR\ZN](]1bt<Y%','',0,'?'),('^Gu+','wp-includes/class-wp-scripts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EOۻ&YSfJ\0S','3\'\r(ʪa3{`h-n+Md','',0,'?'),('rJ<p>Z','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\\2b,R','ʦw;2g/	o(@\Zﵫ>ؽs;','',0,'?'),('&/dbdq2/','wp-admin/includes/class-wp-community-events.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-community-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_yBWO','QA\"ʀRovg3ցp#̈Q','',0,'?'),('%w45X泞','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t^I\']!','Ǧbt5fckdm','',0,'?'),('J܇fwl','wp-content/plugins/kadence-blocks/includes/assets/js/kb-advanced-heading.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-advanced-heading.min.js',0,'bq^ńK','bq^ńK','6w@[AS\n[`\0>Z/\r_$h','',0,'?'),('u,йc','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IHXt7<Kg','含4ޞ?(VObF_<sB!','',0,'?'),('\0]avCY','wp-includes/class-wp-walker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8`M[^<,','}rw=ohԙāQ栏?<','',0,'?'),('?HhD0	','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(j[}B yVyKR',',4AX$ssyEmPY<','',0,'?'),('NVԱzZ','wp-includes/js/jquery/ui/effect-shake.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-shake.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i[%3\"x`W49','fѠYǲ@ΣJ$fW-v','',0,'?'),('z\03hd*','wp-includes/blocks/post-template/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$pkC1','}Q9coRKH>0\nHL^W؇','',0,'?'),('*XvV0','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php',0,'AIIsa@$','AIIsa@$','Dʜҡ~QtQ-LEpYi','',0,'?'),('!;:L\Z#','wp-content/themes/twentytwentyfour/patterns/cta-rsvp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-rsvp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';_[/Iwam','\n83@ X=!NB>','',0,'?'),(')_J','wp-includes/js/media-models.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}kJ :','?ٝϬ~\"=9^\"^<8VpLjx9a','',0,'?'),(',	ns׀','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/HostSubscriberFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/HostSubscriberFactory.php',0,'i.~@','i.~@','ڡ%F/\\C}q?K%`t','',0,'?'),('4#y̭#l).','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php',0,'oE̛,8I','oE̛,8I','w\\i!\\b$rBռaL{.9','',0,'?'),('9zh!9Pmk','wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php',0,'','','p%F	~-ȀUX','',0,'?'),('=K2ĬBL','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ContactForm7.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ContactForm7.php',0,'P%_8nޞ+\"tJ','P%_8nޞ+\"tJ','G*ʐw(?}cL]\\.APJ!','',0,'?'),('=[:\r&FE','wp-includes/blocks/video/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7BM⢹{?','%yʄSRM\nF^tqg','',0,'?'),('?϶^7:y','wp-includes/blocks/paragraph/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RH	;','i7j;W;).ETPt8','',0,'?'),('A$\\Nb	VZ','wp-content/themes/twentytwentyfour/patterns/posts-3-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-3-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1g海n:<0j','24f O,2ŬdgdŋoJ1','',0,'?'),('A\nh)G','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ExceptionInterface.php',0,'`B;}QfJU','`B;}QfJU','BZh/q.=klMdBΝ+)','',0,'?'),('D\'ӎv4e~#9','wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/RUCSSQueueRunner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/RUCSSQueueRunner.php',0,'痈b','痈b','&,ח?_LLyf *WfWZ','',0,'?'),('EYGx5<','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php',0,'RYBO9f)%.','RYBO9f)%.','dA?:vT\"Mz(KY2','',0,'?'),('G<7et/W','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[f0Lş\r{VW','\'&ܔ[m`ϊc2E%WGW䉷','',0,'?'),('L}b&۵b','wp-includes/blocks/separator/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\0ESiA','YQ;f*Vs`.wNzd','',0,'?'),('SGAs\0','wp-content/themes/kadence/assets/css/src/bbpress.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/bbpress.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','滑g?-(iC','CNcRGr>p?dGΜ/4LU','',0,'?'),('_O..X','wp-content/plugins/wordpress-seo/src/editors/framework/seo/title-data-provider-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/title-data-provider-interface.php',0,'D}G:\Z8~','D}G:\Z8~','YZqMCjzpEXp','',0,'?'),('`&锥~K3/d','wp-admin/css/login.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vFnVP^S|','mlTL&]=Tfc|n:bE','',0,'?'),('khNcVRnx','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Provider.php',0,'}?]D*ys','}?]D*ys','FMRXipUi]& cA','',0,'?'),('|tRkxr\r%G6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/InformationalChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/InformationalChunk.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y밄,~]','V\r/A993?:*w/Կ	(	','',0,'?'),('E_*:6`It','wp-content/plugins/wordpress-seo/inc/date-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/date-helper.php',0,'T]ik4%{','T]ik4%{','M:CԖ,00\\|3','',0,'?'),('q[xRP1','wp-content/plugins/kadence-pro/dist/infinite-scroll/infinite-scroll.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/infinite-scroll.min.js',0,'BkȽێMuct\nj','BkȽێMuct\nj','A[e-Q؞a-1Qׄh	Rv','',0,'?'),('ґ-\r{,','wp-content/plugins/wordfence/lib/wfCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','نaAg5ZS\"','Dg]<M*\"LEjN8/d\na','',0,'?'),('~L*,<:','wp-admin/includes/theme-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R#luA','\'P֔\n3tǜV[<','',0,'?'),('\\\"cR;','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/first-time-configuration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/first-time-configuration.php',0,'\\[NS#㱪','\\[NS#㱪','笶qco@~_;@e:','',0,'?'),('djU\"Tungq_\'','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/SignalHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/SignalHandler.php',0,'Mے<&%*E','Mے<&%*E','l%eV	_par2ΝF鮩\Z','',0,'?'),('k2nػ	','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/DkimSigner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/DkimSigner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ķ.`;kNa','l-z\Z)43\Z/','',0,'?'),('5IV]5','wp-content/plugins/kadence-blocks/includes/navigation/class-kadence-navigation-cpt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/navigation/class-kadence-navigation-cpt.php',0,'AZ+D_bՠk','AZ+D_bՠk','HG*\'\'9bU8t\rm\rQ{\0[','',0,'?'),('Sx4@owN','wp-admin/js/widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Ah%Z2v','O嶖3HD@R\\*.RP','',0,'?'),('N.,6lLE','wp-content/plugins/kadence-blocks/includes/assets/js/popper.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/popper.min.js',0,'T6w04ϡŅ','T6w04ϡŅ',';NJCxeה\'J@m+','',0,'?'),('ڤ& MKQo?','wp-admin/images/freedom-2.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/freedom-2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\" 0gH>D','\"@YD]\\qw?\09B*7','',0,'?'),(':m[ݢ:#','wp-includes/l10n.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pꬂn9^,T','6\"즤]Yj:','',0,'?'),('ʝ\'P','wp-content/plugins/wordpress-seo/packages/js/images/logo-g2-white.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/logo-g2-white.svg',0,'aq9d1e18','aq9d1e18','oO\\69/0,d.ջrg>','',0,'?'),('Zv	\\C','wp-content/themes/kadence/assets/images/icons/credit-cards/mastercard.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/mastercard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+hk7x','\0,c#u4sJrsՔ9','',0,'?'),('I\\jxg','wp-admin/images/date-button-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/date-button-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?a09JQ\Z','*Q_(G:*ηd.','',0,'?'),('Ϲ|ĻZx','wp-content/themes/kadence/inc/components/nav_menus/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/nav_menus/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IE]d6GoH','	ЗKAQ@>E{ش%c','',0,'?'),('ߛ~>o=i\Z8P','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php',0,'4\Z`췉x!','4\Z`췉x!','p\r*gvd;0FI*','',0,'?'),(';i0J~','wp-includes/blocks/columns/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=<^\\k!H',',4#ZTUF&g		R-^JO','',0,'?'),('zIʳT=sa','wp-includes/blocks/comments-pagination.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P)9K\08D*u\Z',')p<ԁmT`?R&d+d','',0,'?'),('C--ś','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Shoptimizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Shoptimizer.php',0,'0̔9EXy<','0̔9EXy<','5\'_+Li)Dx{٫.p5XlD','',0,'?'),('CpP0p','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAddressContains.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAddressContains.php',0,'W^sb@-\"\"-','W^sb@-\"\"-','J_DPI?{NH=[yݹsZ3','',0,'?'),('j7r[,Z','wp-admin/upgrade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~EwCkLR}','Xral\ny^fNd͇)ACJ','',0,'?'),('_o\n]xREy:','wp-content/themes/kadence/inc/customizer/react/src/color/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/color/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Jw3d','E>V<ƻ߄G`','',0,'?'),('&;{|lsÈ','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԹXp`me<','wP\0pzuYDSz(WߥP3$S','',0,'?'),('4B\07qoBo6','wp-includes/blocks/rss.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܴ%qw;#oG','Pd$^ѿ8=-rA/hZJ','',0,'?'),('\Zlm@','wp-includes/customize/class-wp-customize-date-time-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-date-time-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zӞ󨠺^JmO','U\\>齨t>V7\nnՊ<;R','',0,'?'),('-\'gP\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9V#ҹ4','GpfHv\Zx81C[4A','',0,'?'),('\"egwDJ&','wp-content/themes/kadence/inc/components/scripts/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/scripts/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tȁ#lKOhH','1+E)S%hI?zGvr$w','',0,'?'),('%yCHL\\J','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/Ctype.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/Ctype.php',0,'Znɖ9o','Znɖ9o','B\n!u}UOͻ#jpf','',0,'?'),('/ۻGc&k	ϴ{','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php',0,'{,=6@\'\'Ρ','{,=6@\'\'Ρ','y{z\0Pbnun}[լ','',0,'?'),('2tu6OG)%','wp-admin/contribute.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/contribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѕ^V_O','@ž;&C|KKSp`S|D-','',0,'?'),('D8hFޛBViR','wp-admin/css/colors/blue/colors-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H.ZxH[sO','\'@e!ky߃M5~','',0,'?'),('F#N&&v','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ph6\\L7k','Xu@UR ϡ1L0$#7+3Q','',0,'?'),('L,\Z\"\0Cʡ8y','wp-includes/js/dist/primitives.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/primitives.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ъU\\6Ց\Z','2ՠn-dP`vBսz','',0,'?'),('NSEɽ7SA-','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-prices-by-country.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-prices-by-country.php',0,'eX\0\"}B','eX\0\"}B','w\r9]̉(C{V^;dl','',0,'?'),('U6ͮ~z2	yw','wp-content/plugins/kadence-blocks/dist/extension-block-css.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-block-css.js',0,'ns\r4.r8','ns\r4.r8','#	?\r5gUFS=Clr','',0,'?'),('j׻q.*;2','wp-admin/css/colors/sunrise/colors-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0.E(<.r','rO/V\\cA+s	ҨZ','',0,'?'),('uݍ\Z?Θ_J','wp-content/plugins/kadence-starter-templates/assets/images/fonts/lora.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/lora.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h<@?5\r5','~ٟ5F!6^(*u','',0,'?'),('wX\rS./','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore.php',0,'G;N0rGXb','G;N0rGXb','TyKXOD1Z\n\Zr,]:','',0,'?'),('wesi<OJ%','wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fxy51gxєf','O8	G\"2(L\Zcێ2j)Fn.	;','',0,'?'),('>`P@߹','wp-includes/theme-i18n.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-i18n.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZNBC0F_N','A7j9Ԍ3aGOKKc','',0,'?'),('Ը%\ZDyZ','wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Op2T5+','H96D#Rd2*M.\0<c','',0,'?'),('\\цy','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/FileNameProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/FileNameProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2pMS\r&&;','gXE;zVrs.TTċ?w','',0,'?'),('eℿ^q0','wp-includes/js/dist/vendor/wp-polyfill-importmap.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-importmap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zpx}s\',k','8Jѫ& RRH zf\nx̗CJ','',0,'?'),('Zd*Yژ','wp-content/plugins/wordfence/views/options/block-all-options-controls.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/block-all-options-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iwٻIA{[','/oѶωOmy\ZwnJɋ','',0,'?'),('s9\"?','wp-content/plugins/wordpress-seo/admin/formatter/class-metabox-formatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/formatter/class-metabox-formatter.php',0,':FH5ra',':FH5ra','+u\nDSf0~ \'AuQ{s','',0,'?'),('{@]Ih','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ResponseHeaderBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ResponseHeaderBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\".fM[<\\','7C2}cum=\0q\'2Ыa','',0,'?'),('`I]h2Z\r','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/Php73.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/Php73.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.t(ߺZQ-{','h8K__=&PSO讦l+6`,','',0,'?'),('(\'c\\~hp s','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nK_@`\'{','\Zs>(IB#\0`lQn ','',0,'?'),('6G<6','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/row-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/row-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hZ\\iߗ!-\\','Fy;+0ÔgLb1LoouW/','',0,'?'),('[GAh}.','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/HttpClientInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/HttpClientInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$w9R?4A','fUx8V!.6S,','',0,'?'),('rW3᥾V','wp-admin/css/color-picker-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/color-picker-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~pEScV','<=\0[Z\n2|닢\0?6','',0,'?'),('ibN2<v(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php',0,'y\"$CwoB','y\"$CwoB','_I@oF=?ծ{Z h\Z','',0,'?'),('䃣Ȉqnt','wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entry.php',0,'snCӤ$qʯ','snCӤ$qʯ',':	mA\rڣIL_&M]/A:','',0,'?'),('JXĸ=*','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-border.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-border.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mA&̀,[','ɹ-<m}}V\\sĭ/AP\Z','',0,'?'),('Svg/{','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/Subscriber.php',0,'${9~t','${9~t','r5gUP*|q$,\Z7C%','',0,'?'),('	DO*$;','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1n=DC𤅋*m','+o8C10Gb#*%jVfr','',0,'?'),('^EdPM9ǳ','wp-content/plugins/wordpress-seo/admin/class-admin-asset-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-manager.php',0,'#Ǖ~|.kJ','#Ǖ~|.kJ','Ȅ8<+(#_GUAydZ','',0,'?'),('DXM(<','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/content-analysis-disable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/content-analysis-disable.php',0,'GEa.p= ','GEa.p= ','BFl^}ӡ<JPoa','',0,'?'),(' u.P/k\Z','wp-content/themes/kadence/inc/customizer/options/header-logo-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-logo-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jj*A_	T\\','i4=Oc,{b$\rt)]5','',0,'?'),('%\"E\r5u','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-shadow.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-shadow.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Sn\'@S3g','ÝpergX>pFc+0]F','',0,'?'),('(s؞v{ff','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Value.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Value.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RUI1lȓ','F9_]!gǝ(+\\=:^;','',0,'?'),('7Z\nsݙ\\1\r\Z','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionAggregateInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionAggregateInterface.php',0,'^bo%E','^bo%E','~|82\n}OcR\\,\Z׮HsT','',0,'?'),(':X2M~','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','24vLhN!2|','3iA(pGDڔ','',0,'?'),('Br,zXG#Nj>','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RequestOptions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RequestOptions.php',0,'Cc,!d;}`[n$','Cc,!d;}`[n$',']%z915::4VӍDT','',0,'?'),('Cy8\'a','wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q~f\"','p,-gWԎW.cEM','',0,'?'),('L8\\ݼ+','wp-admin/images/imgedit-icons-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/imgedit-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\'6Ut','?؎).l%<(_ 6`^c7','',0,'?'),('N\"Xퟫ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zV=8f\n*IQ-','\r@蔒uPB,DB/Y&>E9fz','',0,'?'),('T)mKYmw','wp-content/plugins/kadence-blocks/dist/blocks-advanced-form.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advanced-form.asset.php',0,'yt#HbO','yt#HbO','{htB}LCe/x^%<!JYh~','',0,'?'),('V	F<Tp*','wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-prepare-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-prepare-action.php',0,'39BDk]\r ','39BDk]\r ','f\"cpVl+;NViD	','',0,'?'),('mñ~R?','wp-content/plugins/wordfence/views/tools/options-group-2fa.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/tools/options-group-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\n20\0','aGִ\nOk&1`3*ҿf_W','',0,'?'),('p۞2N<:Z7r','wp-includes/js/tw-sack.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tw-sack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9>','{n]\0ֈn\r<w˷X):','',0,'?'),('u)8FG9C(','wp-includes/js/wp-ajax-response.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-ajax-response.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VefO:t\nd','xQ?/X7:>%XfAP','',0,'?'),('yX\n(v~','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Psr18Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Psr18Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R4ʸ ','-`zaTwԘrQ`fR땙+n~','',0,'?'),('{\r~7_i=','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<s(	24J','1\"NI\ZPQpJ<ng','',0,'?'),(';$3H!S8[_','wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-type-not-built-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-type-not-built-exception.php',0,'\r2NZH\Z','\r2NZH\Z','/ahkrdMUҙhY','',0,'?'),('&OZ=Ds.','wp-includes/blocks/search/view.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aҺfǄv','ZJϵ-\\;{ó}?H','',0,'?'),('cO@/lM','wp-includes/blocks/separator/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rcJȑ,U 3','ee[G.|+4Si?E5{I]gx','',0,'?'),('9~\0{@','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®uM','JEzٙ6)P)\0','',0,'?'),('Clo','wp-admin/nav-menus.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʹNa	:MD','A\\O 0AӇ5DSJCD0','',0,'?'),('LpF','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/AMP.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/AMP.php',0,':\ZցT.',':\ZցT.','6o@0Ev֖ÁX)','',0,'?'),('?tNRR/','wp-content/plugins/wordpress-seo/js/dist/languages/pt.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/pt.js',0,'bS\0ج)d','bS\0ج)d','[<{=%wr?Q7LG\n','',0,'?'),('k(.y\Z	:Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Retry/GenericRetryStrategy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Retry/GenericRetryStrategy.php',0,'.bVW7ʇI!<G@k','.bVW7ʇI!<G@k','j<\nzhA.e5){','',0,'?'),('qp콀ZQIg','wp-content/plugins/kadence-blocks/dist/blocks-iconlist.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-iconlist.js',0,'n˖Ӊl	','n˖Ӊl	','Q9vR~8w/l2.2','',0,'?'),('[<CSmq','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CockpitInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CockpitInstaller.php',0,'cخёt}rU','cخёt}rU','ˡ\ni^n}om\\\nc}','',0,'?'),(';Ж0טd','wp-content/plugins/wp-rocket/inc/Engine/Support/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Support/Subscriber.php',0,'raHvd\0','raHvd\0','\0o7q񴦠\"2/J&CJ','',0,'?'),('[s&iu)n','wp-includes/blocks/video/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k\"D)@+6','uHyU:QaػogF_5p]K','',0,'?'),('ege#','wp-content/themes/kadence/inc/customizer/options/footer-middle-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-middle-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*lnIJ&aUny3','%lXcxJ)ErAgfoBd','',0,'?'),('&	Ytz(\Z','wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z}R.%ƿ','Q䥏jT8\'rF	5c0E','',0,'?'),(' ?cc2](^','wp-content/plugins/kadence-starter-templates/assets/images/masks/blob2.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/blob2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bVK\"6X9<(C','N	 ZWYl{/EKq','',0,'?'),('I<UCMdZ','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xq=o-ɆJ','\0N64gAܮH!^Dۙ*','',0,'?'),('-i>bs1','wp-includes/js/jquery/ui/resizable.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/resizable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o͊%*r','í&u}JӀe5aN*?.$z;','',0,'?'),('KpWJp','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Admin/Resources.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Admin/Resources.php',0,'pχ[Y 4\0','pχ[Y 4\0','00`q98j`K@-D8','',0,'?'),('5\n\0o}4f','wp-content/themes/kadence/languages/es_ES.po','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HdY<a\\\np7',']|$ɗYzCrZڅ','',0,'?'),(')|%W`','wp-content/themes/kadence/inc/customizer/options/forum-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/forum-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	٥EC16B$g','ev7ɲ$um)mEn_lU','',0,'?'),('+LDc@t,.','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php',0,']{O	XB,s',']{O	XB,s','ŬHA\nP{Ar1j;Lw1W','',0,'?'),('0\'ȖD3.q','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƆMd_F{WX','EgKZx1IWcJ_cW\Z2','',0,'?'),('4J-<OiDf.','wp-content/plugins/wordpress-seo/admin/class-yoast-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-notification.php',0,'KQF@','KQF@','n^@jG MXWA\rn$R͜, |tr','',0,'?'),('=_o8MY','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/NullMessage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/NullMessage.php',0,';/ֿyܩ\Z',';/ֿyܩ\Z','.7q/@|\r\\zxW','',0,'?'),('D\"%:Ѭ a','wp-content/themes/kadence/inc/components/tutorlms/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/tutorlms/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`@\ng0~Q','hvۦ?q](뭭qqћ	z#','',0,'?'),('Q9hIdk;j$','wp-content/themes/kadence/template-parts/title/meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Klb\'I޶T','^	{ſV-<Υ!~)pѲ','',0,'?'),(']zJS3\'k>','wp-content/plugins/wordpress-seo/images/new-to-configuration-notice.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/new-to-configuration-notice.svg',0,'C(`|Uvw','C(`|Uvw','a\'\Z<zd3(C;x@`T^','',0,'?'),('c ȵE9jz[','wp-includes/blocks/code/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!)>8o$','	%B*0Essx-\\s','',0,'?'),('w7v+q1\Z','wp-includes/blocks/list/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z.{:6`,tee','[x8ALlz8m9(\r\r\0,}N','',0,'?'),('y8nYeI:','wp-content/themes/kadence/template-parts/content/entry_title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';0@ CP','fl4^gX2|n+&ZV:','',0,'?'),('4r%j','wp-includes/SimplePie/File.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ʙZ\0(hKHR','8^VcÌ?ossS','',0,'?'),('KS+e׎A@','wp-admin/css/colors/light/colors.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0|ⷾAHXsskWvD','*.Op[0\\:e*,I@','',0,'?'),('Fe	57[','wp-content/plugins/wordfence/lib/email_newIssues.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/email_newIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FzQ} 0',']ǛcIT)ͣxn%}ImFb','',0,'?'),('D*;v(.ҲN','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-indexation-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-indexation-action.php',0,'	~{S%̅e','	~{S%̅e','sHi	|Ju}Hj-\"e','',0,'?'),('UNEAgt','wp-includes/js/customize-selective-refresh.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-selective-refresh.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uP岉0x\Z','q˖jZC~<sħ+RI!H','',0,'?'),('X!\Z8E.','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lines.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lines.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Y\']3	q|','\"WE`! K\"3ț','',0,'?'),('vH>f','wp-content/themes/kadence/template-parts/archive-title/description.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0=PUG','YeSQ{sEix','',0,'?'),('yT\"#>$','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/DummyTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/DummyTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5{-7?k','VS\'\0-@Q?t	ϼ4j4','',0,'?'),('}\r,(	T','wp-content/plugins/kadence-pro/build/mega-menu.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/mega-menu.js',0,'8c\0A9/','8c\0A9/','yaXo1k8fe.','',0,'?'),('sgw_%<c','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Cron/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Cron/Subscriber.php',0,'Idh2pl{','Idh2pl{','/~ցP!WaEjvE','',0,'?'),('LMvTZ8֣','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php',0,'O\Zx?','O\Zx?','\r;T$(PE\Z\Zw+rh','',0,'?'),('Ao!Vų`v','wp-content/wflogs/ips.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/ips.php',0,'lCdb.˴v','lCdb.˴v','Z][WP},7*q\nƑ','',0,'?'),(')\\kGS]]{','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Status.php',0,'z۴##$T','z۴##$T','gs@4\0 B3:@ϟ}	q\"YU','',0,'?'),('DQT:f`wED','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/DefaultFileNameSanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/DefaultFileNameSanitizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E?ѐPa>7','a6J.L~n6n+STz','',0,'?'),('tYSQ/[RC','wp-includes/blocks/gallery/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qv1׌Q&Dm6','uW\Z`pIsX','',0,'?'),('p+ADC^^','wp-content/plugins/kadence-blocks/includes/class-lottieanimation-get-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-lottieanimation-get-rest-api.php',0,'K#hPQ','K#hPQ','u{EIJ_ۑ\')+x(','',0,'?'),('W%Ȏ','wp-content/plugins/wordpress-seo/packages/js/images/motivated_bubble_woman_1_optim.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/motivated_bubble_woman_1_optim.svg',0,'!)~	3?)','!)~	3?)','-|$_v$E\nu,!\"C&?A','',0,'?'),(' oƕt_\0.','wp-content/plugins/wordfence/views/options/option-switch.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\'|','CZhauݣKCif!\'~Fp','',0,'?'),('$sxe|','wp-content/plugins/duplicate-post/admin-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z8V6&6','.UjkQ0M5dƊϻd4(w','',0,'?'),('%q;߱<{','wp-content/themes/kadence/assets/css/comments.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/comments.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\nӼ\\~]z*\\%n','`cͶ?D-F?u\n*^','',0,'?'),('%4T1נkǰ','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-custom-icons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-custom-icons.php',0,'d5KzzE;v','d5KzzE;v','_\'<۫0Յ3\0ڿ҅A','',0,'?'),('*WiMr','wp-content/plugins/wordpress-seo/src/helpers/first-time-configuration-notice-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/first-time-configuration-notice-helper.php',0,')CCE%',')CCE%','\n+FX͆0Q܇3S?','',0,'?'),('2\Zeesg*{A\r','wp-content/plugins/kadence-blocks/includes/resources/Notice/Notice_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Notice/Notice_Handler.php',0,'=ۍd','=ۍd','Y)qxqSZuoPE8]օ','',0,'?'),('7x pZ\"1','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php',0,'E-x*k\0','E-x*k\0',':Ssmt⦎T:\0l','',0,'?'),('H~{ppN)聻','wp-content/plugins/wordpress-seo/src/presenters/admin/help-link-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/help-link-presenter.php',0,'@[TK\nմ]/','@[TK\nմ]/',':4_|K`N\r:I6oH		]','',0,'?'),('HkYTzGS','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/sandy-springs-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/sandy-springs-georgia/index-https.html',0,'a=\"g(<w~','a=\"g(<w~','g31F>Ԩr6ZѦe','',0,'?'),('N@I6{','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php',0,'S*[<','S*[<','G&nI;FHBJ6P:&','',0,'?'),('RPlUj+\"gx','wp-content/themes/twentytwentyfour/patterns/footer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WSvAO#+','qmgxFmhHM?G#\r>R','',0,'?'),('Y~,t.\0','wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Contracts/Terminable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Contracts/Terminable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#p7Xc-ޑ=,l0','TP?sLcxWmRJfA\"?','',0,'?'),('[\r%M{/tRe','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox.php',0,'q\"?\Zb/p\n$','q\"?\Zb/p\n$','oPL>&	lTQ9#!','',0,'?'),('\\\Ze	)Up','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȑH\Zb>VDR2','rћJԑI/\nOY}xņU ','',0,'?'),('^p\0j#\"Ĉ','wp-includes/css/dist/block-library/elements-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/elements-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sHH㑡 ','/hLLʭShHJԺ4  \"?A@','',0,'?'),('`\"4~%-46GS','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Base.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Base.php',0,'nNlTEN','nNlTEN','J5AhXsG=m\n)>>K','',0,'?'),('gEy5없k&$','wp-content/themes/kadence/inc/customizer/options/learndash-course-archive-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-course-archive-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\D9;','9Ryv1-#g䢌ҮSώUW$!','',0,'?'),('h?~\'l\'EU','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/AdminSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/AdminSubscriber.php',0,'ylaä	΄KQ','ylaä	΄KQ','j^`jq{D4G9&>G\0$M)e','',0,'?'),('w+\02R','wp-includes/sodium_compat/src/Core32/SecretStream/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zjo\0y,*}c','2p\"Wjslf&S@[\\\"W','',0,'?'),('ŭ6@KY','wp-content/themes/kadence/assets/css/src/_nav.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_nav.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݸr6~','9l[T[>XU`Wto5x\0','',0,'?'),('=ؘjQ6Ke1','wp-content/themes/kadence/assets/images/icons/credit-cards/jcb.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/jcb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\r%1$y\\','/GO>*):MGib	L&','',0,'?'),('RuN','wp-content/plugins/wordpress-seo/js/dist/externals/socialMetadataForms.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/socialMetadataForms.js',0,'T\n{w٭v+%','T\n{w٭v+%','_;-ݮ6CL=aR','',0,'?'),('_P;9=','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/wp-serveur.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/wp-serveur.php',0,'M͸80Fe&','M͸80Fe&','߈ΜlA\0E<)3P','',0,'?'),('-B|tS^','wp-includes/customize/class-wp-customize-nav-menu-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԡP\n}$','vG~?t7\0hR,|]9p.Jw','',0,'?'),('.R[,1C','wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-soon-banner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-soon-banner.php',0,'2AqT','2AqT','K?s=bw\\h3݌\nZԔ','',0,'?'),('|u}tBe','wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/AdminSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/AdminSubscriber.php',0,'\0\nAgob','\0\nAgob','wNo<B6,KörO','',0,'?'),('JbVݐ7<a','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpBody.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpBody.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s>Bh&0','\n\'4 yAyw|tf5k|CiOW]#','',0,'?'),('k;o','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php',0,'7O?f]\n\"NPy','7O?f]\n\"NPy','&t:5\"LT-sYYLW5b','',0,'?'),('8ׁbke4','wp-content/themes/kadence/assets/css/src/ie.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/ie.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ef?-,;p\ZX','D;94.6V$p\rF^d\Z','',0,'?'),('9 ْ(Dˈz','wp-content/themes/kadence/template-parts/content/entry_loop_footer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gb[\'','CN	p[+{<\'&#bY','',0,'?'),('΢S˪\nBV\"','wp-includes/fonts/dashicons.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_3$_n5X',';ʐ\'84aOoY8-U62Kqq$Bx','',0,'?'),('\\h\Z)Ġ','wp-includes/blocks/paragraph/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͢d\nI64!\"','[K]UȎvhZ	\0֮lo0z','',0,'?'),('^@#dVѩ','wp-content/plugins/wordpress-seo/src/services/health-check/links-table-runner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/links-table-runner.php',0,'Rey SsŦf','Rey SsŦf','78[{\"G~O	[bhJՏ#','',0,'?'),('*Q.	-c%D','wp-content/plugins/wordfence/lib/flags.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/flags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ic磭c-','8YCO0j{\ZxDĖxO','',0,'?'),('u%|8\Z\rXH','wp-content/plugins/kadence-blocks/dist/blocks-tabs.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-tabs.asset.php',0,'m	o#ݬ\0o}X','m	o#ݬ\0o}X','qnzl2\"gB\rp','',0,'?'),(']yMugd','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d	gBkB','N=q9ӹRȚ~5','',0,'?'),('lՍٳ_','wp-content/themes/kadence/inc/customizer/react/src/contact/item-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/contact/item-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NJ;8W]_$}','aP!e\nICn\r#++W)Հ3u(;','',0,'?'),('\n	MI~YEO]','wp-includes/blocks/post-featured-image/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0st#>Y','SrPCLE҂1N9&¶O,>Q,','',0,'?'),('\nE(4.-)]','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking.php',0,'ysT>ife','ysT>ife','?eTC<ֹN-ح&]t','',0,'?'),('ŅiďnL[n)','wp-content/themes/kadence/inc/dashboard/react/src/index.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V<W# Ock','jiu-d:Bt}YU','',0,'?'),('ܡ9u_\\\n9\'','wp-admin/css/color-picker.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/color-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xTi6','ۣqTzuOi\\5ЯYu~=c','',0,'?'),('KUg0MU/ʇ','wp-admin/admin-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xo_Բ)\nr','(Z!.eTU92;ݏt5o^','',0,'?'),('%(hkGh\0\"}','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php',0,'߿Et(\"j','߿Et(\"j','exɣ.҄b3mo+SF','',0,'?'),('({@','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-searches.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-searches.php',0,'hbdEV<$Cf','hbdEV<$Cf','}θ4b}CqoOxd{','',0,'?'),('.k:퐒}P]','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php',0,'}	(;o','}	(;o','#fwۨjF{6a\\(9','',0,'?'),('4;V\'/f','wp-includes/js/jquery/ui/effect-scale.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-scale.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N4폢D^+','\r$9%4Nr72(rϨ','',0,'?'),('7ib&У`','wp-content/themes/kadence/inc/components/component_interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/component_interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rΟէP=\n','S/xnLyBVGk	t4.','',0,'?'),('7OW\n@a','wp-admin/css/colors/modern/colors-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	x	]vx','W	g@+Y*\'But8\0l','',0,'?'),(':f?bj.','wp-content/plugins/wordfence/views/blocking/block-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t2&s Ԩ','ՏI#er`-uWQQ','',0,'?'),(';~ȱD?\"','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNoticeModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNoticeModel.php',0,'\rAi%\'>_;S̮','\rAi%\'>_;S̮','{Ks1#\'!̮1/;lt','',0,'?'),('L+͕Vܬ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php',0,'f!d hjZ}','f!d hjZ}','sYmscsl#9޺_9LE;e','',0,'?'),('ZJ<.E\\ʺY','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_FieldFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_FieldFactory.php',0,'ˮY񪻛y\nn8','ˮY񪻛y\nn8','_(|0CԢdp([x*z&<^','',0,'?'),('\\C涐\n\"','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBag.php',0,'1a![IbO','1a![IbO','S7~v:;os	`zVu:/','',0,'?'),('iz\r*K','wp-includes/Requests/src/Transport/Fsockopen.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Transport/Fsockopen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Pg','|eA[kT/ WeHqQ6Z','',0,'?'),('m=o^ӣ-','wp-content/plugins/wp-rocket/inc/deprecated/3.11.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.11.php',0,'fFnؾsmBs','fFnؾsmBs',';(ߖ.xZmϩe}E	O	|\"Vu','',0,'?'),('tn<	%ZpIK','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/wpshop.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/wpshop.php',0,'A!*Hga','A!*Hga','En2RNRD0WQ+CZ1S','',0,'?'),(';*F\'u','wp-includes/blocks/code/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+v{df$9^','K鏬/ sCS-\0Ujhs5 ','',0,'?'),('뙷L(-','wp-content/plugins/kadence-pro/dist/dark-mode/hooks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/hooks.php',0,'Ū<A\n8;','Ū<A\n8;','d̲ѕؑ@?);`W','',0,'?'),('C\nU','wp-admin/js/custom-header.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݎ\Z\Zڸ','vN;dV5dt,','',0,'?'),('jeۣ7','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/AdminSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/AdminSubscriber.php',0,':0g|}eݢ8',':0g|}eݢ8','OD:D	_d볢Q3װ$MxZ-','',0,'?'),('0lj0+%','wp-includes/SimplePie/Source.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aA:$]B-vw)','\"9MaU_hI>,]C','',0,'?'),('s\r	<H*','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/Subscriber.php',0,'%@\0/\'2oh','%@\0/\'2oh','svVfH\n)]?\nk߮~]Hy','',0,'?'),('ٕ2*NI','wp-content/plugins/wordpress-seo/admin/menu/class-network-admin-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-network-admin-menu.php',0,'f1;!9M%','f1;!9M%',';\"ItH@>!L4k\rN','',0,'?'),('Ubw*<N','wp-content/plugins/wp-rocket/inc/classes/admin/class-abstract-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/admin/class-abstract-options.php',0,'P*YF','P*YF','J`Y	(\nVCTʗH\ZWOC;ѻ##','',0,'?'),('٭-q%և[\"','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ExceptionInterface.php',0,'jLtoFOՓlr	L','jLtoFOՓlr	L','#OB\'cTMxUĝ6t*=c(3\'','',0,'?'),('\rLN/M','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\"','67AJn\r1[M\0c=%Uo\'*5)','',0,'?'),('0ŕ\rN\0g ER','wp-content/plugins/shortpixel-image-optimiser/class/view/view-list-media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-list-media.php',0,'?cI.3','?cI.3','FDzk3QcQM','',0,'?'),('>CRޓ?B','wp-content/themes/kadence/assets/js/splide-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/splide-init.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']=*A3ݥE','%@ԏ|̖& \'\nSp&Ix','',0,'?'),('窒u\rZJW+','wp-content/plugins/wordfence/images/help.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$N;\'M Y','\Z7\0r/iz;ki,=LZg','',0,'?'),(')t\r,Jڼ','wp-admin/options-permalink.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z5a','Q<:4%-\rO.M.','',0,'?'),('nE\\nz>iP?','wp-content/plugins/wordpress-seo/src/integrations/admin/crawl-settings-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/crawl-settings-integration.php',0,')=0Rdx',')=0Rdx','U%\"Nr~>1\'FB4sK','',0,'?'),('?Ǆ:\nX','wp-includes/customize/class-wp-customize-theme-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-theme-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z1ᗊ4i#','dt1(qڜ(A^','',0,'?'),('\Z) %iyδ','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}+#z,erEJ-','sfq@8!yW&ڔA+/uY44G','',0,'?'),('1p:1lXG','wp-content/plugins/kadence-blocks-pro/includes/assets/js/slick.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/slick.min.js',0,'!(G#֡(','!(G#֡(',':k8WS]z8K;{;/]\0','',0,'?'),('3dyjV','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall_blocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@O<.<)$ޓ','\Zޛp	>B*\'^T','',0,'?'),('By$Cci8+g!','wp-includes/blocks/details/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z$Up=','hD0DcErCQ6&0VLf|љ\r','',0,'?'),('JD\ZS/o77/','wp-content/plugins/wordpress-seo/admin/views/class-yoast-input-select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/class-yoast-input-select.php',0,'^Pi0gؓ','^Pi0gؓ','3\'7բs<P\":ܷƢrwV','',0,'?'),('O]QW\0','wp-content/themes/kadence/assets/js/src/cart-update.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/cart-update.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R9ZbE/',':0@ːu%\'0ɺLp7W,Os','',0,'?'),('Rrr(ȟP','wp-includes/blocks/media-text/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ׂ}AM\\XL,0q4','ƪ)G W_eEC)WtYaw˸','',0,'?'),('Wly:\0Vn`d\0','wp-includes/js/tinymce/plugins/wpview/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6-Aī[','lOogL.dCߏֲn=;~!','',0,'?'),('[Y[jǈG','wp-includes/blocks/search/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z嘻S','-Nk\",[[j_t -XO','',0,'?'),('d|K@2*lsbj','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageModel.php',0,'4欒/','4欒/','h`6	~9h{V\r݈L','',0,'?'),('h8ʯn-	*','wp-includes/blocks/buttons/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}!r<','ն,*͖>3x\r6K5','',0,'?'),('q[H\re[{','wp-content/plugins/wordpress-seo/js/dist/languages/ar.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/ar.js',0,'-OR٥D|e','-OR٥D|e','[^)MUA	Sf-CѸEb\\','',0,'?'),('y\0	B^','wp-content/plugins/kadence-blocks/includes/assets/js/gumshoe.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/gumshoe.min.js',0,'rk#d\Z&{','rk#d\Z&{','Aexb2ś$M91uEq','',0,'?'),('O]','wp-content/plugins/wp-rocket/inc/Addon/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/ServiceProvider.php',0,')zp9zzZ(',')zp9zzZ(','YgNӿݺ17{G_O1us','',0,'?'),('<YxPT^꼷','wp-content/plugins/kadence-blocks-pro/includes/init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/init.php',0,'(jk[Y','(jk[Y','!QhfQNL}Q;\'.uF','',0,'?'),('9>7','wp-includes/blocks/site-logo/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jo$gyԌ','I˝ӭ1V:GRYb','',0,'?'),('@ؾH&EїR','wp-content/plugins/wp-rocket/inc/functions/files.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/files.php',0,'X9!U;`!t','X9!U;`!t','&?|z-l~au<<Jq}','',0,'?'),('z#[.oIdj','wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(~\rr\0.','ڄgcu4:oW_C	4:1','',0,'?'),(',4#(#','wp-signup.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-signup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_>\Z?~','!<f}SNr}&Qi\\=\nU^','',0,'?'),(',\\P~0y','wp-content/plugins/wordpress-seo/src/routes/integrations-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/integrations-route.php',0,'pKI5','pKI5','SJ\\WVPř6ޘ A','',0,'?'),('L9}X)','wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-integration.php',0,'\\WK\0','\\WK\0','mH\\.`:J+Az7JQy\"x','',0,'?'),('][\Z\Z,ztC','wp-content/plugins/wordpress-seo/src/conditionals/user-can-publish-posts-and-pages-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-can-publish-posts-and-pages-conditional.php',0,'K?H08F&x@s','K?H08F&x@s','q;Wc2:ڄP#]CO{,','',0,'?'),('%','wp-content/plugins/kadence-pro/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_real.php',0,'Ҍ9>埅D$a!h','Ҍ9>埅D$a!h','Vdph	1IHtj)cVG','',0,'?'),(')PeD s','wp-includes/blocks/group/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4L`*A7\Zg','IlA2]OI_0i','',0,'?'),('ɨR{','wp-content/plugins/kadence-pro/dist/header-addons/header-toggle-widget-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-toggle-widget-options.php',0,'i\rH','i\rH','b!8x[,Hs:','',0,'?'),('v+[.I$]T','wp-includes/style-engine/class-wp-style-engine-processor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine-processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?%e̬C89','v¤{Dmj\nˁqEWay[','',0,'?'),('ǖd!s<XЯ','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*1{,˾ʂ','<G$U+kL>\0hahBS-','',0,'?'),('ѵ8]tw$܌g','wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\02^Ӏ N','~.ĺdT;Oj&[l+','',0,'?'),('ۑ݀m9l^H','wp-content/plugins/wordfence/images/logos/shield-premium.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-premium.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r-ȭ\nQV','?mUL-lZOI,XSM׭ޝ-','',0,'?'),('V\0NsbЂt.','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerAwareTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerAwareTrait.php',0,'\r4wC*v','\r4wC*v','$6*sǞqLB(VU$B','',0,'?'),('*沫QN','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\0]\'];6','P[M\\pH&̣\\^pJȏ','',0,'?'),('* %گ^','wp-content/plugins/kadence-pro/dist/header-addons/templates/navigation-4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/navigation-4.php',0,'\ZEWnՇ;	\0','\ZEWnՇ;	\0','t`	A^N \"sX&g>9wn','',0,'?'),('\0VdW2','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php',0,'\n̬\'^e{g$','\n̬\'^e{g$','B^x^(H@WqsO|to#','',0,'?'),('J+&<Fo','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ִ5D\0zT','V@XX.34','',0,'?'),(' -S3|(|t','wp-content/plugins/kadence-pro/dist/dark-mode/src/dark-mode.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/src/dark-mode.js',0,'jyf\rk93','jyf\rk93','KR+KCNڱUbc0ڶg','',0,'?'),('\\{ԙUV','wp-includes/blocks/navigation-link/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n	QTZJԛ','yѮ?C[eEtio5TYƋ=c&@','',0,'?'),('y7MA@','wp-includes/widgets/class-wp-widget-rss.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9s\'钾T \nJ2','ABmqAziZu\\','',0,'?'),('_)0d|6_;n','wp-includes/js/dist/rich-text.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/rich-text.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s_N;LPj\'7','oI(#\ZZ7&24C\"Qq','',0,'?'),('4in-','wp-content/plugins/wordpress-seo/src/presenters/slack/enhanced-data-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/slack/enhanced-data-presenter.php',0,'/;&zS`9','/;&zS`9','.\0u|.dPYAn','',0,'?'),('6H	5,','wp-content/plugins/kadence-blocks/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_classmap.php',0,'=^U8A','=^U8A','y/tzN;U^l7k>xP','',0,'?'),(':\0W|\\jZs3h_','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\Z:t','jK@9:ifLDoҼp1\n','',0,'?'),(':aSC{W8\n','wp-content/plugins/wp-rocket/inc/Engine/Activation/ActivationInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Activation/ActivationInterface.php',0,'N[9;JnB=ڠ','N[9;JnB=ڠ',',I8Ki3\r	92%&<ŝ','',0,'?'),('=	\\vVx','wp-includes/blocks/rss/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+c{<|	','6.bE8F;]8Kr˶ӟ췊\\','',0,'?'),('^	\ZOktv','wp-content/themes/kadence/assets/images/starter-templates-banner.jpeg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/starter-templates-banner.jpeg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Z&|A','\r@\'2#^$f\rO;.s)','',0,'?'),('}\nڢ6Oo','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-infobox-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-infobox-block.php',0,'=رBٙ','=رBٙ','JƉ	x5U/UjH\\W	','',0,'?'),('<iQ\0','wp-includes/js/dist/reusable-blocks.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HEGSë4R@','[4wdZ~ڂx8! :Zz9','',0,'?'),('`&%eFgd','wp-content/plugins/wordfence/models/block/wfBlock.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/block/wfBlock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nHp@','V:|]!Z\'S*2	7i','',0,'?'),('fL@b<ʔ','wp-content/plugins/shortpixel-image-optimiser/wp-shortpixel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/wp-shortpixel.php',0,'z<9','z<9','d)GPxu m%	Xk{XB8','',0,'?'),('MġwwKN','wp-includes/js/dist/development/react-refresh-entry.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/development/react-refresh-entry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>l_T,','G\r׽fnyYE\0ywE','',0,'?'),('\"sybNl-','wp-includes/blocks/preformatted/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SG{Ĉ]51','_pc)k3YHLIWOP]9tS','',0,'?'),(':8Iaølm','wp-admin/includes/class-ftp-pure.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-ftp-pure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&}\\3J \0','\nS{UCdz$ya|8[','',0,'?'),('zĄWGo','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Exit_Interview/Exit_Interview_Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Exit_Interview/Exit_Interview_Subscriber.php',0,'FqQGǰV:T5%5','FqQGǰV:T5%5','^:0yщBT+\nyZLGtk#y_Օ)','',0,'?'),('+CiK.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ParameterBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ParameterBag.php',0,'~B>tok','~B>tok','	N/ܘxȹh~agPxK~\'5','',0,'?'),('SȖQt`Շ','wp-content/plugins/kadence-starter-templates/inc/class-widget-importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-widget-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h́\r_d1h7\"','|A=u#R!\Zf<ۥ[U','',0,'?'),('KqM{','wp-admin/css/dashboard.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C3|PtΊ l{','aG!\\UᓼZ-Y.o!Ga\"','',0,'?'),('sݜÞ3','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7&eJ¡W','%p䯘88`A@IW\"j!U ','',0,'?'),('{xZc\"hb?','wp-includes/js/dist/dom.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N@|c','	ATk~[[A	n1XM`b','',0,'?'),('TBO>v2}Ea','wp-includes/SimplePie/Locator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ږ_}3','#L&$FΪK#\"`ԈMCWd','',0,'?'),('ϙi໯ݤ3&','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php',0,'œ.Ċ6','œ.Ċ6','GHŨffl}P_:+r)P','',0,'?'),('Ȓ\"N=L.U','wp-includes/blocks/more/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w.,$#>','+穩T^3=@5_jzǼ[9+N.','',0,'?'),('ʭ-LK,','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0骾ɦwGKʎ','K)-?\'оwd0ոzi','',0,'?'),('\'$sPFj7','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/disqus.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/disqus.php',0,'r\Zcq#?','r\Zcq#?','L	e_2%ԭ5B^','',0,'?'),('ːPY\0f&k!R','wp-content/themes/kadence/inc/class-kadence-css.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/class-kadence-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0:+@6N e','3f\ZgAIĕ9 AauzuzTq','',0,'?'),('ϝ6=̍','wp-includes/blocks/post-excerpt/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e̅bJ&^ŧ','2u	lxDg/v','',0,'?'),('DHk0d','wp-content/plugins/wp-rocket/assets/img/plus.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/plus.svg',0,'\Z1䎍','\Z1䎍','p$y2#v/k#_/Kݠ','',0,'?'),(')iٮtvJ','wp-content/plugins/wordpress-seo/packages/js/images/icon-twitter.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/icon-twitter.svg',0,'쟚XnW\'fP','쟚XnW\'fP','eUSq|(vyV%3X%','',0,'?'),('WMF`3$','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2CECZ6e','\\W.£;\\	K[zHEI8A','',0,'?'),('5	p}F','wp-content/themes/kadence/template-parts/footer/footer-social.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M䘊QCAV','ɨ}k鑁㴓i\'+\Zt','',0,'?'),('5FbA','wp-content/plugins/wordpress-seo/src/helpers/schema/html-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/html-helper.php',0,'k!`0Lq','k!`0Lq','tu+/;Q?-T]V{8N','',0,'?'),('*7\r?','wp-includes/class-requests.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZNzj3','1W~fW;\0W5U8<','',0,'?'),('ԥd6g]QO#>','wp-content/plugins/wordfence/lib/menu_install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tLYN','V۽%#Ǉos\"M\\>6','',0,'?'),('mUٽ','wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-video-popup.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-video-popup.min.js',0,'gbokCh\"','gbokCh\"','؝~V_3\' n~ \Z','',0,'?'),('$H?.0h','wp-content/plugins/wordfence/lib/wfScanEntrypoint.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanEntrypoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+#F%IA','1M|Pk@m_WvA?vz','',0,'?'),('&J]z8.걤K*','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc.php',0,'xՂ`{%_<y	^','xՂ`{%_<y	^','T/[+\rJCǱTvC{zJ5','',0,'?'),('sy%#r=','wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oxC\\^2','Ve/V+ww$oH','',0,'?'),('of?3P1\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\"̤/OY\'','8eTet\r jP/J<^rӥz','',0,'?'),('$1?+q/<n<L`','wp-content/plugins/shortpixel-image-optimiser/class/Model/File/FileModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/File/FileModel.php',0,'iz	v\\','iz	v\\','63W$[F!psI--','',0,'?'),('\'pۋa\\4U','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lexer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lexer.php',0,'UqW78ND)\\Q/','UqW78ND)\\Q/','$,Ɔ1)G쨘*J3','',0,'?'),(',_c?','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-reviews/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-reviews/index-mobile-https.html',0,'Ro*&HW','Ro*&HW','h&o+\\ZޢX)','',0,'?'),(',Qݰ\0j ;kz','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/SMimePart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/SMimePart.php',0,'X-A\Z\\[','X-A\Z\\[','n4gy.H\\ q=.','',0,'?'),('1a?l','wp-includes/blocks/comments-pagination-previous.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-previous.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o-L5V sGW\0','źL\n}EόtwLО\'3c\'b','',0,'?'),('1ǁ\r\'d?+','wp-content/plugins/kadence-blocks/dist/blocks-advancedgallery.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedgallery.js',0,'G*LMյ','G*LMյ','.YE>խi{M3ۆHӥ1','',0,'?'),('39v&/Cd','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/MacAuthorizationTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/MacAuthorizationTrait.php',0,'\0ldluO:','\0ldluO:','[y\\پ8*&= ','',0,'?'),(':.Wגxގ','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Exception.php',0,'&<wh,U{O','&<wh,U{O','HkB8?k3>*q','',0,'?'),(';|ؘw)0|yC.','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/TagGenerator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/TagGenerator.php',0,'oS,0=Γ\"X\"h','oS,0=Γ\"X\"h','RS->_DueU}d','',0,'?'),('Fe}(','wp-includes/js/jquery/ui/dialog.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/dialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3@ƳnhE_',' x1簃zk$ZZ]','',0,'?'),('UMn\"-c','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4]6@A9R&`','7`nVC9I$N5ObM','',0,'?'),('[\"[I','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/PushedResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/PushedResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q)Zu%,','dH(JqqҔV垡4/j:ö*','',0,'?'),('^1+9UD\'','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sj\\]q','(:Ҧʐz~xoB]R','',0,'?'),('_k\'auΝb','wp-content/plugins/wp-rocket/views/settings/page-sections/cloudflare.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/cloudflare.php',0,'gWޚXiJ̫','gWޚXiJ̫','-7+t\"^-,2,Q+','',0,'?'),('g)Tb݋anX7','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/ObjectArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/ObjectArgument.php',0,'x6E1c','x6E1c','[ro`x=}UsX˶','',0,'?'),('k[VlY','wp-content/plugins/wordpress-seo/src/exceptions/indexable/invalid-term-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/invalid-term-exception.php',0,'\nvb','\nvb','_W䰈VfP0	[iL4+S>D`','',0,'?'),('s♼{DR[k1I','wp-content/plugins/wordfence/images/logo.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zFހW\rl~6','V{Q9V	J	Xqڀc','',0,'?'),('yBɌl,\"^','wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-runner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-runner.php',0,'h(fR4\r\rW}F','h(fR4\r\rW}F','F8$RY]o*FtЏD<E','',0,'?'),('8m\nd74t','wp-includes/class-avif-info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-avif-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}n3Cv80','[fTL9xߎT9S\0:Ty','',0,'?'),('X/\0	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iJB!<\0','V4^CD\Z;Uz','',0,'?'),('}/pS','wp-includes/blocks/page-list/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pb7rFΔmT','ao0CH*Bp5h\Z\rj\rG','',0,'?'),('N3M\nS0j','wp-includes/js/dist/block-library.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nzf߮\r','/p;2dRQLʤo','',0,'?'),('@\Z䱒=lH','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-themes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';me({J>','I_SӗCf#K]πn\'|~m','',0,'?'),('oݡ','wp-content/plugins/kadence-blocks/dist/blocks-tableofcontents.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-tableofcontents.asset.php',0,'=u%','=u%','IhC4S@oc5j(','',0,'?'),('0vK{^.cz','wp-content/plugins/kadence-blocks-pro/includes/kbp-installer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/kbp-installer.php',0,'o~;','o~;','F™kr6Ŕ襁I\Zʓ2$P;4','',0,'?'),('x(ťܺ.Շ','wp-includes/class-wp-session-tokens.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UԔ\rUK^\"h',',ؓˑ	>v>a\Ze\rv','',0,'?'),('ԒAr^','wp-includes/js/wp-custom-header.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C@$ҷSE#','\"y䓧}^Hz%Zу','',0,'?'),('za>`<!Ct','wp-includes/css/dist/block-library/reset.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/reset.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z8`ةe_=o','N!ǴOv\ZsZT','',0,'?'),('^0pkM','wp-includes/css/dist/nux/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/nux/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"S`-)`3/','D^7U1zF8}Lp$','',0,'?'),('ccInc8','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php',0,'CQiЎ[;lʳ','CQiЎ[;lʳ','%eoȐ*(.r*z!','',0,'?'),('%$}o٩:P','wp-content/plugins/kadence-pro/dist/woocommerce-addons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons.php',0,'eױ0_q{È','eױ0_q{È','2mdJhzi Z7RT_ԋ(','',0,'?'),('S	g	Nd','wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!<d7ˢi','n2J찫03vζk','',0,'?'),('h]CA*','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"δL.o','eoَ3uϨy38\nؑ:','',0,'?'),('0ܚZI丱N','wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oP/NC.3','ICK]sX\0Jnvj2T.}hG','',0,'?'),('FRa>5','wp-content/plugins/wordpress-seo/src/editors/domain/seo/keyphrase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/keyphrase.php',0,'A%h9?Bp','A%h9?Bp','ld촶c!^&lއUO9~.І','',0,'?'),('3ƹܕjbiΥ','wp-includes/customize/class-wp-customize-nav-menu-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>3׆ꕰC\"','ato9	 _}Bt5QfR5','',0,'?'),('q)On=\nM','wp-content/plugins/wp-rocket/assets/fonts/icomoon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/fonts/icomoon.svg',0,'OsufDbR	U','OsufDbR	U','dLVSL|?6\\y:','',0,'?'),('-N*ƈڔL','wp-content/themes/kadence/template-parts/footer/footer-widget2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rVV|fvȮGF','JL[+LZep,3GxS\"','',0,'?'),('Aǟ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/mapped.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/mapped.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','39hnW','kzy:,L=mݡdNm<^!$','',0,'?'),('\Zu,-UT','wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-abstract-busting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-abstract-busting.php',0,'R0+rqҎ','R0+rqҎ','+%d6\"uHrN*CݞBD','',0,'?'),('G\rؗe#`','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-settings.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-settings.js',0,'Vo$Iɿ5p','Vo$Iɿ5p','K^2z΍TL3*!<\\h','',0,'?'),('Q4xj1','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/EventSourceException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/EventSourceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J#Yq8f;؄','ɖvIεvQ	˓Nh@b\nb5\"','',0,'?'),('j\"-gNv','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/IniSizeFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/IniSizeFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \'TsU','\Z#\r~mژ1-WCM(\n','',0,'?'),('<S)ܥέ߂','wp-content/plugins/kadence-blocks/dist/blocks-single-icon.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-single-icon.asset.php',0,'i-ocy&!','i-ocy&!','Se9W]^}v\0WUƣ.5','',0,'?'),('\Z6B8ceg','wp-includes/blocks/shortcode/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VQG4&{::\\','Q0ԩ%δG,o\"j2','',0,'?'),('6q}Bk܀ʚ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/TestLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/TestLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D16߂C!>7','\Zkcv\Z`7XMs\r0','',0,'?'),('@(\'GnYM','wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',xsXYv汭|','%,APZ{&͖`H@ ','',0,'?'),('O	&\nX6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vq4p6=Fx','I@4ج\Z&~Tvtm1g','',0,'?'),('VEaLmn','wp-content/plugins/kadence-starter-templates/dist/images/education-bg.c0fcc788.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/education-bg.c0fcc788.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}0s*\\q4VA=','`I00zALdȒ\nn!ޫǄ\0','',0,'?'),('Y^,=e߳','wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gMFCLf144R','zv5◴!矎I>\Z0qP}','',0,'?'),('^%iA`Rs','wp-content/themes/twentytwentyfour/patterns/banner-hero.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/banner-hero.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Aj[','f@Anz<HP&x\\]','',0,'?'),('aPs%G','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypeGuesserInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypeGuesserInterface.php',0,'XM쁮Z','XM쁮Z','(72?i[:J~','',0,'?'),('bE4t=','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-alert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̻owG>p','I`I^{PנhQe:sG^8sĚ','',0,'?'),('ٲd&\nMGK','wp-includes/l10n/class-wp-translation-file-mo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translation-file-mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z`Ji>|','\rx\'595 MVD%\"˒','',0,'?'),('zjAd','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-svg.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-svg.php',0,'\nk@RBl/|P߸','\nk@RBl/|P߸','t7A &=X[?~Bf#dkd','',0,'?'),(',=9h6K','wp-includes/js/jquery/ui/draggable.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/draggable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8HJr6x\\','\n!QΑnLA:<','',0,'?'),('?\nv04','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/ExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E7ai)\Z','sژ#23疻M&>^ˁ','',0,'?'),('=#T.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php',0,'x?Iuӡ]>','x?Iuӡ]>','<\"`	ŅU	dpqSr/','',0,'?'),('1X)w3x','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php',0,'\n4zVUhme','\n4zVUhme','+B~õ+\rRUqFo','',0,'?'),('.rҳ6','wp-content/plugins/kadence-blocks/includes/assets/images/masks/dog.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/dog.svg',0,'$Ϗvxac;','$Ϗvxac;','\'szH\01z|824C5','',0,'?'),('w`{bo','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap80.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_M#0@\Z','x=Qe~ÆƓ\"!S\rypy6>','',0,'?'),('\'[\n9','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CrawlHomepage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CrawlHomepage.php',0,'971G~\r\'','971G~\r\'','Eęz]\r=]lb޶|Mb','',0,'?'),('Կ,6_xdʞ','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-template.php',0,'d?I2kA','d?I2kA','#Fʿ=茴udc.&/ŞfD)0,','',0,'?'),('1ZMʞ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/DkimOptions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/DkimOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P$hB#5D','A^=7nDB	4Y^x-','',0,'?'),(' {cp','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php',0,'j%kQQT*','j%kQQT*','sO[0R{墫/.	F\'K','',0,'?'),('3\0~','wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rf4','\'Fv`,\rvG$&i1z}\'d','',0,'?'),('>/ᡇ_','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l([qאD#','\\sٶhb2.;m`Fr^&H-w	yV~','',0,'?'),('&UX\rL4{','wp-includes/js/utils.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˺XH_[ϓ','jtSdJ]DާQ','',0,'?'),('\ZmMcsr)ԩ','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/CachingStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/CachingStream.php',0,':+@J<d|嶆',':+@J<d|嶆','Dc\"jeq+ƞg垢*Rf','',0,'?'),('\Z֧\\\Zhi','wp-includes/js/dist/blocks.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`tU1\'','J <Q;Z8UZ>*\"&\\','',0,'?'),('\Z@Z!gyTa-','wp-content/plugins/all-in-one-wp-migration/exceptions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/exceptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n2$N۳m',';}v>6h(yXt`6r+)','',0,'?'),('\ZO3F5K;@ ','wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@q\\}[','[TnEjd($:!hΝ\0s><','',0,'?'),('\ZW3M9\n\"O','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Template_Interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Template_Interface.php',0,'/T䜋t7RU\0\'','/T䜋t7RU\0\'','\0W\"9ꛩxfFtl<+\"_2P','',0,'?'),('\Z&cR< FiC','wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p7971i\'','Z\nA78{KpA#M|i\r','',0,'?'),('\Z6sw*䞋','wp-content/advanced-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/advanced-cache.php',0,'9UT(\')','9UT(\')','^Q0%N yo3}/4P','',0,'?'),('\Z?ǸƢ}5^p','wp-content/plugins/wordpress-seo/src/builders/indexable-post-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-post-builder.php',0,'vEX_AkEQ','vEX_AkEQ',':^TMŗƤٖѦQK','',0,'?'),('\ZMq͵pZ\n','wp-content/cache/wp-rocket/atlantagynecomastia.com/before-after-results/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/before-after-results/index-https.html',0,'\r8`x','\r8`x','T>ׯ}Nb)eiN\n','',0,'?'),('\Za\'M;ȭUl','wp-includes/blocks/post-comments-form/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ws\n֕','դf锁#~#n2J8V\"','',0,'?'),('\Z>|l؄8q^f','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/ResettableInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/ResettableInterface.php',0,'׹\n\'I','׹\n\'I','j;cczM\r.j','',0,'?'),('\Z-Gӝ\"Lyj','wp-content/themes/kadence/assets/images/icons/credit-cards/diners.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/diners.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Խuu4>`','J}45==ƬGʢڒ85:','',0,'?'),('\ZL6N1;8','wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g]>p','u3}(%&Tf_\"dKi6Fxphl','',0,'?'),('\Z\Z=32&}','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/FileImportException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/FileImportException.php',0,'YqiJzF%','YqiJzF%','<<NsYJt^kY픤BfA','',0,'?'),('\Z:ar%','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LogLevel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LogLevel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HƪA','\nhctRœI/|NҥZA','',0,'?'),('\Z޺[ȞXL','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php',0,'n6X-~hp\'u1!','n6X-~hp\'u1!','C}M/EPƉPQ/N{pcGM','',0,'?'),('\Z;5(OOR','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǛlmD!','\'9\r9\0o|\Z|0K','',0,'?'),('\ZHq!/ԑǁM|','wp-content/plugins/kadence-blocks/includes/assets/images/masks/thumbs-up.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/thumbs-up.svg',0,'rnx\rArX^!','rnx\rArX^!','5]=|]ndSPջ>β!]p?}UV','',0,'?'),('\Z܇}YdhI','wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block-v3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block-v3.php',0,'Шd& Mq','Шd& Mq','195~E]|`q*I','',0,'?'),('\ZIBb?DA/','wp-content/plugins/wp-rocket/assets/img/heartbeat.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/heartbeat.svg',0,'1k̀mF#,','1k̀mF#,','bBYbX\\kb\"Wmm\n','',0,'?'),('\Ziw3ːCpT','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\nXV\0 z','&PCM9FF\\,Jdl-8d','',0,'?'),('\Z䦀@Ba\n2','wp-content/themes/twentytwentyfour/patterns/text-centered-statement-small.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-centered-statement-small.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n| iNY_R','C	\"[})/FHGhI5','',0,'?'),('\ZNKf=E','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Register.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Register.php',0,'ڷ\"&eu<e','ڷ\"&eu<e','BiRO?p*M֖AYͨ^\r','',0,'?'),('\Z)qtsCI9','wp-includes/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=3ڡ#_\nA*sb','\Z^-U:/e+~H1i\"4Fb','',0,'?'),('\Zy8R#Oy','wp-admin/css/nav-menus-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ո$U/*','Z6oR\'[Ӝ\nEi:	BC!','',0,'?'),('\Z0&,<W','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression.php',0,'ځ\'h/;\r','ځ\'h/;\r','YU-yE8dUnH4H37Dn%','',0,'?'),('\Z0QZ#h','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ClientExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ClientExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D$9|~k','0@=(V2;	\0<','',0,'?'),('\Z\Z:\\RfP~3','wp-includes/class-wp-metadata-lazyloader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-metadata-lazyloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֋Rq6}dl)ل','KJ`RLG%2uu)+f%','',0,'?'),('\ZUEs(#Ep','wp-includes/images/smilies/icon_mrgreen.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_mrgreen.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$_uX|I%~$','!BI1mV-|јX5D8h','',0,'?'),('\Z/̓T%g4','wp-includes/js/jquery/ui/effect-drop.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-drop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L2_C9sQ','SM@ :/<6`N[\"Lh,[\Z6','',0,'?'),('\nFNΡ	','wp-content/plugins/wordpress-seo/src/actions/integrations-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/integrations-action.php',0,'_BCtR}','_BCtR}','Q\\J|`AwxJC:9snIp5ņ','',0,'?'),(']O\'','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-duplicate-post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-duplicate-post.php',0,'f\n~y6eu\0m(','f\n~y6eu\0m(','Y[G\ZNfP0s','',0,'?'),('qo\n','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_namespaces.php',0,'\"@~Ǵ[@A','\"@~Ǵ[@A','ЬKql:~ҝ٤Bu$*Vz)','',0,'?'),('p9}dZBwNN7`m','wp-content/plugins/wordpress-seo/admin/class-meta-columns.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-meta-columns.php',0,'x)u4nI','x)u4nI','HeVݎDD̦\\৲','',0,'?'),('퇺y=*`x*Q','wp-content/plugins/kadence-pro/includes/uplink/admin-views/license-admin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/uplink/admin-views/license-admin.js',0,'\rr|mg[','\rr|mg[',':B$	Y>[9\Z7N\":4A','',0,'?'),('EXv2e','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Option.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Option.php',0,'LxxsQKL','LxxsQKL','\0L442~	m`','',0,'?'),('\\\'M(wZe','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Sanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Sanitizer.php',0,'SZVzIyGZ','SZVzIyGZ','w)gev{G;U˝\04,M','',0,'?'),('@M*gAs/','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lexer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lexer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&;/,','s	\'ʘMWzT) 7Ny','',0,'?'),('$P`\0gX','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yF\\2','2ks\\>RI:nHȿDm!zz','',0,'?'),('&͂|d8','wp-includes/blocks/pattern.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pattern.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uY-iPM','0R\\pz1zh0/U-A+','',0,'?'),('-c<@VsZ','wp-includes/js/api-request.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/api-request.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9߿G7p6{g','d6Q\\f:G`j1V','',0,'?'),('.֠9-qm?','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/DataManagerSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/DataManagerSubscriber.php',0,'ҍI=sB','ҍI=sB','lf*X۹t>sfX}uD','',0,'?'),('??y\0l','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-activation-error-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-activation-error-exception.php',0,'-)X8/ˢ','-)X8/ˢ','62izS9IqRQ׊데VjU>','',0,'?'),('PIU6c\'=,','wp-content/themes/kadence/inc/customizer/react/src/contact/icons.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/contact/icons.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Zȟ1JF','$\n;A\',eWG=$Cщ:Z','',0,'?'),('W4,%וag','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J$UK	','xgA;p-uL0g+/.c','',0,'?'),('^}\\ Q','wp-content/plugins/wordpress-seo/src/presenters/open-graph/description-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/description-presenter.php',0,'\"1S9jEK:+ʊ','\"1S9jEK:+ʊ','[Kؙ8n//&cg','',0,'?'),('_z9݀D:','wp-includes/blocks/media-text/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$pOBki','Z_ZZ)n|R`\"O0TBFyQB','',0,'?'),('g(*c?w','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php',0,'\rډPx:.;Jc','\rډPx:.;Jc',';g(sʰ!Q_qG*h%\\','',0,'?'),('jzϞ)Ab셀','wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȂFy	i23	7%F','e>V6\ZhHd7BFG','',0,'?'),('mec1iR','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Post.php',0,'Nӿfg','Nӿfg','ݷ;4ͭxRh_:<!&m?K4>','',0,'?'),('t]W2`,Z','wp-includes/blocks/term-description/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5^i\r!g',',1УQ2@\nrrh/Xݔ2H5','',0,'?'),('uM!J,0J','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OctoberInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OctoberInstaller.php',0,'Ocn&6^Ӱ0~Z','Ocn&6^Ӱ0~Z','5#[GgW{qe;u','',0,'?'),('{ۑ4u%','wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner-ocd.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner-ocd.php',0,'\"Zh᧺I','\"Zh᧺I','׭) mSCk	^T\nv0Q','',0,'?'),('||<mxNkе(Ɖ','wp-content/plugins/wordfence/css/license/care.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/care.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q)**vv#h','Fr:r(n~3wd9RO','',0,'?'),('b*\0B8G}Y','wp-content/themes/kadence/template-parts/footer/footer-row.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-row.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T_<\'ʷ*','t.6B]Nԋ^Z]Н','',0,'?'),('Lo˃Zh{','wp-content/plugins/wordpress-seo/src/helpers/meta-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/meta-helper.php',0,'=8V(cJlCW','=8V(cJlCW','uFB⺴|i䄃>i]M','',0,'?'),('y!\0pZ[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>5V','yG#\n7ڌ6(Chy','',0,'?'),('?+','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Attribute.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Attribute.php',0,'!/}o_BKv','!/}o_BKv','߈8<I<tE0vs-GJZ','',0,'?'),('EȖqȊ?2H','wp-includes/js/dist/api-fetch.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/api-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xժ*oEn','&#P_zIMKwT','',0,'?'),('5pުm\Z','wp-includes/blocks/separator/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߗ\n}C1wIB4','tCeBpLk\nkreK:I','',0,'?'),('<|Q','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-metabox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-metabox.php',0,'P|5Vh-VV','P|5Vh-VV','!*S]4p2pGCȱݠ.LeB+%\"','',0,'?'),('#Ud,1','wp-content/plugins/wordpress-seo/src/integrations/front-end/backwards-compatibility.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/backwards-compatibility.php',0,'dܳg\ni]R','dܳg\ni]R','&AHons?̢\\}Fx7g[^kɈ','',0,'?'),('ֻE\n<B[,','wp-includes/class-wp-ajax-response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-ajax-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QnK\nθfޞX	','T#tEȴ|TPUJ\0\rUO','',0,'?'),('f!,	d|7-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W\"#EY{M','[`m_Ivw)qQM','',0,'?'),('TyusQk','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-email-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-email-input-block.php',0,'渠$d->','渠$d->',',W\"2M`ls=DML','',0,'?'),('\nV7	','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/AppendStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/AppendStream.php',0,'c 3ˋUOC#9','c 3ˋUOC#9','k&#yjMA&)d5U Bn5','',0,'?'),('%f-2wLz','wp-content/themes/kadence/inc/customizer/options/general-scroll-to-top-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-scroll-to-top-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q	- ,','	<)z	FKnQ8wƧ','',0,'?'),('&8bْ0','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-file-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-file-block.php',0,'ul5QApRhuĺ','ul5QApRhuĺ','\rj[>UI2z2Sfp=iSԬ','',0,'?'),('[\0Y[cM{','wp-includes/css/dist/block-library/classic.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/classic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>dc5?','?\"4AHCǓ_/','',0,'?'),('mn9F6','wp-admin/css/admin-menu-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/admin-menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nO9T2ڹ','eZm#tFMFʱ#y*jϏ%','',0,'?'),('֦Ab.Xq','wp-content/plugins/wordpress-seo/src/repositories/indexable-cleanup-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/indexable-cleanup-repository.php',0,'Ɲ;)<M0ɟ','Ɲ;)<M0ɟ','©ݪ\rV:&,N\"','',0,'?'),(')M^ûoz','wp-admin/images/loading.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\Z0b:ד;u','Vk~Բab!fylm&v3Įm','',0,'?'),('/\"CEÚ7kH','wp-includes/blocks/comments-title/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ]C!|AJH\0','f )CھKG\ZCť Lp','',0,'?'),('1O,`}MNGTC','wp-content/plugins/wp-rocket/inc/Engine/Preload/Activation/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Activation/ServiceProvider.php',0,'\n]`q鮋7)T','\n]`q鮋7)T','ZօZP\"iuL;S*dc','',0,'?'),('4%IHOʰL','wp-includes/css/media-views.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/media-views.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TB-}M}','b搭ȶUeGdgّ','',0,'?'),('=ͷZȨ.','wp-content/plugins/kadence-blocks/dist/blocks-accordion.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-accordion.asset.php',0,')Jc1&1hPh',')Jc1&1hPh','@lŹK\\t&abosv\r~R','',0,'?'),('C/;)ّo','wp-admin/js/comment.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/comment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҫ]ʇQZh=1','烶	xѲ\\O\\nԝnh^E','',0,'?'),('F=V˓Q@','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php',0,'m\Z\\D)w~Q','m\Z\\D)w~Q','gRYKi\ZN|\0\\s','',0,'?'),('H-F!|J+)u','wp-includes/blocks/post-content/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\rL&^TL','?w@Q׶wT\Z06\n>=h','',0,'?'),('H~\nx|','wp-includes/js/dist/token-list.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/token-list.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\0}}',')?k,`uWMSq','',0,'?'),('Lf:)\n','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-wp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-wp.php',0,'EٱuRܱ]','EٱuRܱ]','7+y6Ʉ/-Ԗ0X.{^٨jh','',0,'?'),('Sv]$ů','wp-content/plugins/wordpress-seo/src/presentations/indexable-home-page-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-home-page-presentation.php',0,'@;ߡME','@;ߡME','*\ZMl^\"8x*׌u+','',0,'?'),('TgslFʞLy','wp-admin/js/set-post-thumbnail.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/set-post-thumbnail.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1PNH9e@I','e}#nqJrJQ<dZK4','',0,'?'),('`bp7avY9','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/NullLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/NullLogger.php',0,')ĵczz',')ĵczz','/JB]Bw8?T4#]V|{|A`ʌ0~','',0,'?'),('a@WrQwZ\n.','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܑzg<N\n?o6f','REgX3JAc!a_S{','',0,'?'),('z|*6S\\53','wp-content/plugins/wordfence/lib/wordfenceScanner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R|R-\nj','m]b(\rtӶbUת','',0,'?'),('f7^YГlwM','wp-includes/Requests/src/Exception/Http/Status502.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status502.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hGdQt$%','ap 84}bj/A=c^P\' WwAl1','',0,'?'),('uTg(n&Ϭ˫','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/ithemes-exchange.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/ithemes-exchange.php',0,'M@8S=\\','M@8S=\\','iAXDb^Q\Ze`1`&KZ%','',0,'?'),('\n^ҜT','wp-content/plugins/wordpress-seo/src/initializers/crawl-cleanup-permalinks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/crawl-cleanup-permalinks.php',0,'㝓<\\8|s','㝓<\\8|s','uP]i)VF\r\"ʍ;žS~','',0,'?'),('c>)a,<l','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Update.php',0,'Z#p\n9Ho','Z#p\n9Ho','VwMXy(_Tp[T\0OR','',0,'?'),('UoueNTt','wp-content/themes/twentytwentyfour/patterns/text-centered-statement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-centered-statement.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FLj$б','J}LIsn$).)]0Z?','',0,'?'),('Hʥܭ^','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_DBStore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_DBStore.php',0,'\r8vl\rn','\r8vl\rn','-*[2(t<Hc@n4kSes','',0,'?'),('\n$zX`1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/charmap/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\5^','[B\Z,;jfeMUj|)rv>UF','',0,'?'),('=b6hst','wp-admin/ms-themes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':1R]	lI!#_J','7EHPuZbG','',0,'?'),('tQzq','wp-content/themes/kadence/template-parts/title/above_title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/above_title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HS[&\\d','c6R;+&D cBѰvc^<','',0,'?'),('\'FEAvQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r5]xVI\'i','G݅\'!YE3P5adM','',0,'?'),('IUzYWg!g','wp-includes/blocks/latest-comments/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'À]0','z]HKaa)2$M','',0,'?'),('^u[p}`BW1','wp-includes/blocks/table/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hw A','\r*$|y0ESy3qx2OR!N\'','',0,'?'),('M!N\nk4','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MediaWikiInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',0,'.Dx$@\0','.Dx$@\0','y@CHPկދB^O\rMp/','',0,'?'),('趝Fey{!','wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\'lӭa~','|vtڃ( U40ߎT;','',0,'?'),('>}EP;','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/sandy-springs-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/sandy-springs-georgia/index-mobile-https.html',0,'qRj#R\nE','qRj#R\nE','qGKn&?(Cr+o CFg\"께\0','',0,'?'),('ƍp=Z\0S_$','wp-includes/blocks/cover/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fp \\G','8%̊%b`\n3mI谨BH','',0,'?'),('#nnN\'','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/cta-big.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/cta-big.php',0,'oc=xJ','oc=xJ','grUvB2$MĆrퟳdp~\Z\0','',0,'?'),('k0Ba`','wp-includes/customize/class-wp-customize-nav-menu-setting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǜ\05+&̺WV','owҏ]e|K$9rsc&/','',0,'?'),('i\':ו4R','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessagesManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessagesManager.php',0,'}guF/ZneBU','}guF/ZneBU','|lrJ2^\'6','',0,'?'),('맼]}uPCq,','wp-content/plugins/wordpress-seo/src/integrations/academy-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/academy-integration.php',0,'ծd3߉L-','ծd3߉L-','KXieO	','',0,'?'),('Wfkk','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-divider2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-divider2.php',0,'%*[AXc\0d','%*[AXc\0d','p!-\rq$~Qγ2UWLV','',0,'?'),('r??//-U{','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/ServiceProvider.php',0,'K̻*3-rgcU','K̻*3-rgcU','ΧXR{tGJ#WBLHp&L','',0,'?'),('ܟҿB∶','wp-includes/js/dist/media-utils.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/media-utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m@2cۊu','1?(\0QtnX&\\aB/<','',0,'?'),('++J3*2','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Z\"OŖ','³^?!K+NoL,k~/J','',0,'?'),('-=QCwtnL#','wp-content/plugins/wordfence/lib/wfBrowscap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfBrowscap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\"+5ŸH',',ovU(wdϨOH','',0,'?'),('6L0 u޳WCA','wp-content/plugins/duplicate-post/src/ui/user-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/user-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aYE','c,^	bYy8ktn Mi','',0,'?'),('Q4bu>KFb\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',0,'N}o\'rq?','N}o\'rq?','	B<XX2ـDkY!#KI5','',0,'?'),('daGM*\\3%aj','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/GravInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/GravInstaller.php',0,'\'wXD','\'wXD',';e4N	<o#׿#%$ŀ/R','',0,'?'),('.Bi,.!M','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ProcessWireInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ProcessWireInstaller.php',0,'ôg\Z/=','ôg\Z/=','G#Q{ׇhHxf8q_c','',0,'?'),('͑}P	07','wp-includes/blocks/code/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\JNPT-7]','</lU0*ߥW$VvC]4','',0,'?'),('\nO_;]/^','wp-includes/images/down_arrow.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/down_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V~oYnG~_u','h8ɧpu{9J','',0,'?'),(']1U`!','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php',0,']\0A{yH#',']\0A{yH#','[u,ƙ68^ЯFJMTzsȅ','',0,'?'),('D!Bv}','wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Iframe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Iframe.php',0,' %ӥv:{ua',' %ӥv:{ua','A}6vF\"3֕J.~>HUs','',0,'?'),('ν}V+tB','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','꤀x٠%cl','N8,caeΟi<5p$','',0,'?'),('G_bc.,]&','wp-admin/js/image-edit.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/image-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Q3ct[<L','a!P\r?+`Rg+q?iǺ_B','',0,'?'),('Kv$TMR=','wp-includes/css/dist/edit-post/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9y*\r͡\'Sv','˫.y/n\nk\Zd\ncLBLɚ','',0,'?'),('ˌxȷQw`=@\\','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Listener.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Listener.php',0,'biY)4G','biY)4G','\0D5@t%e^k\".','',0,'?'),('#lj	k=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php',0,'7XexD\'YZO','7XexD\'YZO','w	)\'*9f+\"q?aQx==m','',0,'?'),('2D:DT\0x','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/Php73.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/Php73.php',0,'.t(ߺZQ-{','.t(ߺZQ-{','h8K__=&PSO讦l+6`,','',0,'?'),('6e9!z~','wp-content/plugins/wordpress-seo/src/editors/application/site/website-information-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/site/website-information-repository.php',0,'b=NX<','b=NX<','0ʣb6MM%Y\'8\'6M','',0,'?'),('A(	gS-','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/inclusive-language-analysis-disable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/inclusive-language-analysis-disable.php',0,'*CMA9CX\"','*CMA9CX\"','hoGxU9m77.MU','',0,'?'),('Oں^8Kq','wp-content/plugins/wordpress-seo/src/helpers/schema/language-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/language-helper.php',0,'\\.@ʝ26w','\\.@ʝ26w','| \n\\T5^Г>h˅q=B','',0,'?'),('[Wr\'E)j','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-indexing-complete-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-indexing-complete-action.php',0,'+_Wf\n\"c[','+_Wf\n\"c[','go4EqDT<7> i/Q#','',0,'?'),('fMx	+9U','wp-admin/js/customize-widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','19Lyƾ',':1-)\rÂe.ySXMqv-','',0,'?'),('f.ԗ٭\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/ConflictingHeadersException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/ConflictingHeadersException.php',0,'x%bi\r@]','x%bi\r@]','Z`^Qn݇\"63 F~','',0,'?'),('g,%@:j	FsO','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AmpResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AmpResponse.php',0,'4ӍBbz˚','4ӍBbz˚','^+9b|<緡<v\\@s5_','',0,'?'),('}:\\.?BB','wp-includes/blocks/post-content/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J)ej','<wc%dU.^qsFky','',0,'?'),('}/Nr%]t','wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-term-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-term-watcher.php',0,'}͡J[y_','}͡J[y_','OiV5#g?&z','',0,'?'),('&𐯧o]3+g','wp-includes/blocks/post-terms/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\"h','@\Z\'_:e$)nF','',0,'?'),('F؇7','wp-content/themes/kadence/bbpress/loop-single-reply.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-single-reply.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',z꬚>AI(\nˬ>A','^XXTe9dD?A;\\~mj','',0,'?'),('%\\MA','wp-admin/images/wordpress-logo-white.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wordpress-logo-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qPC-SPD','e4E?&DsAʬ;)@Xɒ','',0,'?'),('J}FE\09','wp-content/themes/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/index.php',0,'gD,V=\\bP','gD,V=\\bP','k~	UH\ZxPĀ<;X','',0,'?'),('oR󬦖','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Message.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Message.php',0,'dƍ>QM}h1ڥ','dƍ>QM}h1ڥ','0¤Äv,^BB:BTnj\nxR','',0,'?'),('>םiʹ}Od','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/StreamWrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/StreamWrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĆFSvu6','\0KYcEKY<Q\"jt','',0,'?'),('l5(mLr','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Resources/bin/update_mime_types.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Resources/bin/update_mime_types.php',0,'kB3靚ʉ','kB3靚ʉ','>O8I̟J<y	_17D	k','',0,'?'),('\0_PPCx14\0','wp-content/plugins/wordpress-seo/src/config/schema-types.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/schema-types.php',0,'%eyP\Z͍&Di','%eyP\Z͍&Di','#H~ͬR~6Ы+&[3`','',0,'?'),('=}CiHT','wp-admin/network/profile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E3@%c ','\\H.77QtUwݰAK,$A!Lz','',0,'?'),('Lp%:;DCL','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-ngg-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-ngg-subscriber.php',0,'Yo_mT3','Yo_mT3','زtY--FIeyW(\0.My\Zb','',0,'?'),('g+,c','wp-includes/block-supports/colors.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g5+p','p8-6Nrϖzfl','',0,'?'),('gI!٭_','wp-includes/ms-blogs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x7LXvz&','3|mْ^r]Gr݁/e;\rCp̱K','',0,'?'),('Ԍ}.=̝','wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-bulk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-bulk.php',0,'ҧs:b','ҧs:b','\rhTdoHP4@p\nfW;ll~','',0,'?'),('tDXm\0#(','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+;^8v={KR','gxN@`jrm~v','',0,'?'),(']/~qXŎE','wp-includes/js/jquery/ui/button.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rfo|ؖޝK?','?11\'l/AGnb2>DN/j~','',0,'?'),('hOZ','wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.min.js',0,'˕RUq_H','˕RUq_H','\ns痫{7bzjWG>s,h20','',0,'?'),('z4z1L\\o','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailTextBodyContains.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailTextBodyContains.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`T΄K\n;','N6]	:}33Q`\r0n7a\Zeǲ','',0,'?'),(',B{u/X֏','wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/NoConverter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/NoConverter.php',0,'bT','bT','Ή|C*:6vn$\\`L\Z','',0,'?'),('/6$ؐ${','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php',0,'E͆k@>R꿷','E͆k@>R꿷','sիWUVil\\\'#bU','',0,'?'),('Ồm26','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-show-more-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-show-more-block.php',0,'tiODIm{J<ə','tiODIm{J<ə','|a7i/G}\Z\Z|V ݢ','',0,'?'),('X=cg','wp-content/themes/kadence/inc/components/custom_header/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/custom_header/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\"LD1K=b\\','3ŶN,44C5qiv6\r2wg','',0,'?'),('4NR9U7','wp-content/plugins/wordpress-seo/src/values/oauth/oauth-token.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/oauth/oauth-token.php',0,'ro]sUt_ߊ','ro]sUt_ߊ','xVTk[Uaj~ #qX..Z}','',0,'?'),('B@R*GxF4N}','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'_?Sş\Z]y','6[-,9YRr\rY\"-an6$','',0,'?'),('J2}΋ȧ(]M','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ExpressionRequestMatcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ExpressionRequestMatcher.php',0,'T;1M\n\nh','T;1M\n\nh','O	[#ʉ[I\Z','',0,'?'),('Nqw','wp-content/plugins/kadence-blocks/includes/advanced-form/getresponse-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/getresponse-rest-api.php',0,'3XO\'/%+','3XO\'/%+','^Q.w}\Z|L\nyWXgrǋH\nnPG','',0,'?'),('P]g1r','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php',0,'{f_:G\n','{f_:G\n','8kb ?SxLBj\\>','',0,'?'),('R\\&T	|`','wp-includes/class-wp-user.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zeRZ]Rx','ټ{Zɪ_E#MC3e','',0,'?'),('WYA	g/','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-identity-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-identity-block.php',0,'_36\"b^','_36\"b^','U)\"*1$?jy]EaKU/','',0,'?'),('Z14`+`<','wp-content/plugins/wordfence/lib/wfScanFileListItem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanFileListItem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HaJMq3\"ѭ','Cz>}/e~~lnˀVY,f','',0,'?'),('mb9z,','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Frontend/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Frontend/Subscriber.php',0,'F=\\UN$=`[K','F=\\UN$=`[K','1zҖB! dl%N*u','',0,'?'),('tt̸T.*óU','wp-content/plugins/wordfence/modules/login-security/views/page/role.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/e\0$հ','rR>zDtWo՟٨E','',0,'?'),('tyvr;K','wp-content/plugins/kadence-pro/dist/dark-mode/dark-mode.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/dark-mode.min.js',0,'KeMiN?b','KeMiN?b',']WQzlC\Za;\\_[ U|','',0,'?'),('uV\'j\ZV','wp-includes/blocks/comment-template/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T4\\Ƕw|?5 ds','50zsłK|,]!^glH','',0,'?'),('ynm;/UsK	','wp-includes/css/wp-embed-template-ie.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-embed-template-ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7{WPL{HI','\\aWq1+ЯoLY\0K%<','',0,'?'),('zD>A)a','wp-content/plugins/wordpress-seo/inc/wpseo-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/wpseo-functions.php',0,'͛᦭@\"\r{','͛᦭@\"\r{','p_p-EGur7֫NBm','',0,'?'),('|&;rLs5','wp-admin/includes/comment.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZtC*w44','ck o}vTf sݛfl3g6N\ZJ','',0,'?'),('N76h\rrW6','wp-content/plugins/wp-rocket/inc/Engine/Preload/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Subscriber.php',0,'/s<yz\rӬ','/s<yz\rӬ','frSwPǍ9\0\Z_xd','',0,'?'),('a3;Y','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Hummingbird.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Hummingbird.php',0,'ScV>&=\0','ScV>&=\0','<vUw?\Z?F~\\˥40\n','',0,'?'),('ؤ1nӔ','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-cleanup-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-cleanup-action.php',0,'\0ɞΝ','\0ɞΝ',')|\\0	ϜzT<`C6>\"','',0,'?'),('<aLi.ԏú','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/MediaLibraryModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/MediaLibraryModel.php',0,'J#Ql()&(','J#Ql()&(','ܽ`d[{\\7u\rE','',0,'?'),('Ye.0s','wp-admin/includes/class-wp-comments-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','93Ӣqm\\n','ڡSbVC2-5N2%>|LJbO5','',0,'?'),(',d$\\Zޟ^Wu','wp-includes/blocks/buttons/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\u*52F','ۨ\rWd A! OIRkD*','',0,'?'),('Ao\rZԔ_t','wp-content/plugins/wordfence/views/waf/waf-uninstall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_bYZ	9=ޥ\n','Um-Sz+?Ks~','',0,'?'),('I/\n	F','wp-content/plugins/wordpress-seo/src/presentations/archive-adjacent-trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/archive-adjacent-trait.php',0,'1ŭ&fƭic','1ŭ&fƭic','=On!ăcb譺짯4\">%̓','',0,'?'),('\'-p-f','wp-admin/css/l10n-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/l10n-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xmǏ|sA',']%FL\nILlf426G\'','',0,'?'),('I0;\\=\'Z','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ApiKeyController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ApiKeyController.php',0,'lkh=(~','lkh=(~','+\"~ڻe)c񸾀	)f{?۠','',0,'?'),('jֹJ0Y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p0W\"F)8O','5)&BoK]ػrm`%hO','',0,'?'),('8Bw`e','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php',0,'|i~=%u{','|i~=%u{','bpgNp6R\Z{S{I','',0,'?'),('k+X>C','wp-content/themes/twentytwentyfour/assets/fonts/cardo/LICENSE.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/cardo/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5}\Z>| q','4&5r2t\rhGXp2*\';','',0,'?'),('Nǎe50','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Minify.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Minify.php',0,'/\0>+a	Id8\"','/\0>+a	Id8\"','FNloGWz?ZPDdQ:','',0,'?'),('\"<	it&','wp-admin/css/colors/modern/colors.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H=cU9V3P2 \ZS','\nxs\0vJQ=ݬB{{6','',0,'?'),(' b{Xdm','wp-content/plugins/wp-rocket/inc/Engine/Cache/Purge.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/Purge.php',0,'I?|9B','I?|9B','Nbn{a[l\rz\0ueD&','',0,'?'),('Ra~j,rVO','wp-includes/style-engine/class-wp-style-engine-css-declarations.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine-css-declarations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8LKd(','3#AjEr5]Stuf)sǱ','',0,'?'),('\rq3ז[','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StringStore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StringStore.php',0,'˭A5uzp','˭A5uzp','JXlO4 SYݑ.ЊE\'s+t','',0,'?'),('փW+','wp-content/plugins/kadence-pro/build/customizer.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/customizer.asset.php',0,'%MUʉ>bU','%MUʉ>bU','fkXTYD)HDǸk7_i\0{[ې','',0,'?'),('0wc`78M','wp-includes/blocks/gallery/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3JDFĭ~2?','kRELMX]lf,*hOI{','',0,'?'),('\0[B_4	΍','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/DateTimeImmutable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/DateTimeImmutable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XŽQ(k&XY|`','Ch-h|r؅zM%*','',0,'?'),('2Ԇ&H=\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Parser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Parser.php',0,'4۵X\Z\"','4۵X\Z\"','͊;i\0oHۧ\'n}~@M','',0,'?'),('r!07{-]k','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/CannotWriteFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/CannotWriteFileException.php',0,'1rBW*XOM','1rBW*XOM','B]&1)ZhP!S\')uOh\n','',0,'?'),('J=l0<','wp-content/plugins/wordfence/modules/login-security/js/login.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/login.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nu#IAّɷ','O7`c2P>4ρ\ZgO_','',0,'?'),('=Q hYyt|','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z/gJL]>','\Z\\v\nln:\0zy]$9','',0,'?'),('A񟧶f*k','wp-includes/blocks/navigation/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U u)-i','EvMH?0+͜ʜz\0sNF+6e#','',0,'?'),('L5MSYK','wp-content/plugins/wordpress-seo/admin/formatter/class-term-metabox-formatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/formatter/class-term-metabox-formatter.php',0,',&5m	1]θ|',',&5m	1]θ|','15-]:/^pK.➛tV>!','',0,'?'),('LbP-I׭1f','wp-includes/theme-compat/header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G{\r(7ND:W','q2յϢ>r7Nj	D^A5\r','',0,'?'),('LXGݛ5','wp-content/plugins/wordpress-seo/src/user-meta/user-interface/custom-meta-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/user-interface/custom-meta-integration.php',0,'[ٳ=z,~I;A5','[ٳ=z,~I;A5','2#l)W9>G*:l50','',0,'?'),('Nd#R+r\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/reports/activity-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?uewD:E','ζ\Z)vvG,h/ӈ','',0,'?'),('r	eZ\r','wp-content/plugins/wordpress-seo/admin/class-admin-editor-specific-replace-vars.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-editor-specific-replace-vars.php',0,'c`T8b\r{\n','c`T8b\r{\n','KP\Zkf=H|pRB΅\0gm<','',0,'?'),('t!\Z%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('+Zvg','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/None.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/None.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','REo<-۰','Pv}fk&/0\'UX\n::a͆RI.','',0,'?'),('%-ry','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/checkmark.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/checkmark.svg',0,'|T!Co:{Nvv','|T!Co:{Nvv','چ-\0o`oY}}EѥMp\rH','',0,'?'),('&n\n2Bi,K','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Context/LazyloadCSSContext.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Context/LazyloadCSSContext.php',0,'יa5DTj','יa5DTj','>ySm|jz\ny$FY','',0,'?'),('{Y\\z錿}c','wp-includes/images/smilies/rolleyes.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/rolleyes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O2Ofݣi','fK)\nd!]\r)\\}זl^','',0,'?'),(' 	\\A','wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-wpseo-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-wpseo-conditional.php',0,'D?#T','D?#T','\r)-N_0_ϣyZ-^pA','',0,'?'),('7/=','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/RankMathSEO.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/RankMathSEO.php',0,'=SX<\\\\5%ż','=SX<\\\\5%ż','Oqk)GPj0\Z.EQ%6P܄','',0,'?'),('BC1a','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Godaddy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Godaddy.php',0,'{Yn(','{Yn(','?w\",jLa+sh_L$xP','',0,'?'),('eU(\ZH','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-abstract-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-abstract-block.php',0,'`\0%NlJ<','`\0%NlJ<','gAx	:Nً ?IIwq\\Rd','',0,'?'),('E??\'^1','wp-content/plugins/kadence-pro/dist/woocommerce-addons/cart-show-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/cart-show-options.php',0,'ޒZPb+d!','ޒZPb+d!','cbm&iJM>}ͅRQ*T\'%y','',0,'?'),('On\\~ř\Z','wp-content/plugins/wp-rocket/assets/img/logo-webp.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-webp.svg',0,'PV/_>۾','PV/_>۾','e]qA7f_,','',0,'?'),(' Pj}','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',0,'?~7czy','?~7czy','w ;>`>4KMuB','',0,'?'),('KG%}}','wp-content/themes/kadence/assets/css/src/_widgets.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_widgets.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}YӐV>=\\','@\\9NYsF鲶yiť','',0,'?'),('ޕ?;`3>F','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php',0,'<ڹd`\\< n','<ڹd`\\< n','~X	xO^?P;@S	O/dP','',0,'?'),('?\0l.','wp-includes/class-wp-application-passwords.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-application-passwords.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L]B\"Am(|0g','&U%8H~sg\'ipO+ѫn5','',0,'?'),('2p)tI','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \0\">y>=','xVQ/}琾:(3&%UJoC','',0,'?'),('oRb','wp-includes/js/dist/url.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/url.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U~:U8b[','VfSUeP꺧7W|','',0,'?'),(' \r-Uz\raK','wp-includes/blocks/pullquote/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T_W1=\"0','%8!KHӄB	E\r<߬wX<W','',0,'?'),(' !C\n!;x0','wp-content/plugins/wordfence/modules/login-security/js/admin.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/admin.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Ya(~D4X<','m_fg ]B{#2\rAb','',0,'?'),(' UӴxFf?','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php',0,'-ݔc!9B4','-ݔc!9B4','!\0Z~~O2\"!\"\rŃ','',0,'?'),(' WbƜ36;}#','wp-content/themes/twentytwentyfour/patterns/hidden-sidebar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Ra2!mv','ԏS<U[!$=\n.V#R5','',0,'?'),(' a432t&(','wp-content/plugins/duplicate-post/js/dist/duplicate-post-edit-450.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-edit-450.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Pciङ','MQ\ZJnOD ,]\n\Z1$','',0,'?'),(' ɉ:s{1<','wp-includes/blocks/embed/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q(D;','B\Z|L$X\rhd^:?O','',0,'?'),(' \'_U;0/<','wp-admin/includes/class-bulk-theme-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=؃\\5ץړ#qb','r6z}ߙːa\Z	iy-\"M','',0,'?'),(' *@ADғ=puE','wp-admin/user-new.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M2%q~8E.\\h','fۆ\r )B4_u\"_כߌqh*=?','',0,'?'),(' 5rDg籃','wp-content/plugins/wordfence/views/dashboard/options-group-license.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')卞U፽','=e:z)z:]:ͼ@{\0','',0,'?'),(' =_^&62','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/ProcessorService.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/ProcessorService.php',0,' YZn~ϮYUͻ',' YZn~ϮYUͻ','êC\r\r:wKVXL\rBD~w;','',0,'?'),(' ?um>','wp-content/themes/kadence/template-parts/content/entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xB`>s','\rUHrE~ZEiFQ\'~4%','',0,'?'),(' E^g\'ԭfQD','wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-notification-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-notification-integration.php',0,'?5ziD*r','?5ziD*r','q.D\r%\0SP$\0gh','',0,'?'),(' Ehܺ/UB','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Middleware.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Middleware.php',0,'@e?!L\n#','@e?!L\n#','f+VلP\Zz=dFD [','',0,'?'),(' Rѣ7-ak!','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#h(mE','x<O-h4U*IiE`/','',0,'?'),(' RI|Y`RZ','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Request.php',0,'UA!c{Ϛ4','UA!c{Ϛ4','\\\'޹w,UgG\rn;sş','',0,'?'),(' Tl01V\rplk','wp-content/plugins/kadence-pro/dist/infinite-scroll/src/infinite-scroll-events.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/src/infinite-scroll-events.js',0,'TTrg%/|','TTrg%/|','%!`\nH疹[dpLvK','',0,'?'),(' a%߆el׊6y|','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/SiteList.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/SiteList.php',0,'<~m.kp','<~m.kp','P	ﶄ:#f)솄(','',0,'?'),(' rg	>u/w+Ĝ','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-meta.php',0,'Vm9.Shw+O','Vm9.Shw+O','U Ul*yO\0?gU','',0,'?'),(' {˜o}','wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeExpired/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeExpired/Subscriber.php',0,'k8|g*','k8|g*','pOBckם-S6V\'ةA','',0,'?'),(' =i;[','wp-includes/blocks/require-static-blocks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/require-static-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I4\rD','\Z|xb1);\\õ,>=)nOt','',0,'?'),(' W,@{?9','wp-includes/blocks/post-author-name/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author-name/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zj^Fsj',',\nBϧڛbo4</= F?w','',0,'?'),(' y>4lgR','wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gZ 8Z','y qkj|gY{','',0,'?'),(' iȹˉ[','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LogLevel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LogLevel.php',0,'+hkɈyM','+hkɈyM','f!*rgn>lYG9','',0,'?'),(' GʴGtؑ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8NÝ\ZȖv듪','+uRAefY)%;*\ZyU','',0,'?'),(' 7$Y\'','wp-content/plugins/wp-rocket/inc/3rd-party/themes/studiopress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/themes/studiopress.php',0,'ȣ{xRhS','ȣ{xRhS','3nS)va;.o4ғo[Qv','',0,'?'),(' C~qձ>','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-debug.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-debug.php',0,'fGTyRsk)L','fGTyRsk)L','8\n!P5^8.R1OSTnA4','',0,'?'),(' $1p<6','wp-content/plugins/wordpress-seo/src/integrations/watchers/option-wpseo-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/option-wpseo-watcher.php',0,'z;3@.5/','z;3@.5/','5Tumn\"#b++5Va','',0,'?'),(' zz{LH','wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s/\00W','1@y\Z{{,|VF=`','',0,'?'),(' Uj;ro','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php',0,'v%F^u\Z\0','v%F^u\Z\0','+*Ý̂9F2*r(F^BxÑ','',0,'?'),(' 7=4#N','wp-content/plugins/wordpress-seo/admin/class-yoast-dashboard-widget.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-dashboard-widget.php',0,'SEjԹ_&4L','SEjԹ_&4L','sB#rMTH<b%Ķ&oyn4h','',0,'?'),(' ʠ~ta1-̪','wp-content/plugins/kadence-blocks-pro/includes/blocks/kadence-animate-on-scroll.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/kadence-animate-on-scroll.php',0,'|0\'-QV','|0\'-QV','ѓg~%8a4߁jxG\n@k#','',0,'?'),(' ג+NqG','wp-content/plugins/wp-rocket/views/settings/page-sections/imagify.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/imagify.php',0,'ܔzC?UK3]`','ܔzC?UK3]`','4%en0@ [D8g4','',0,'?'),(' `FlPSeX/','wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-post-edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-post-edit.php',0,':Z*b\'\Z~\Zn*',':Z*b\'\Z~\Zn*','ઠ!Bxtq3v犘st<j','',0,'?'),(' ʕ]\nܓJs\Z','wp-content/plugins/kadence-blocks-pro/includes/settings/admin-activate.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/settings/admin-activate.js',0,'S;DS%\\27','S;DS%\\27','$F$Hd }5\nvy	YyTP','',0,'?'),(' ݔ$Du:','wp-content/themes/kadence/assets/css/author-box.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/author-box.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ApA\rH\"','DTgoi\0(6n#5','',0,'?'),(' c̫)I\np,͑','wp-includes/css/jquery-ui-dialog-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/jquery-ui-dialog-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e_4[a:]','\"`:χ{jH@#;ZIs.','',0,'?'),(' +\n','wp-includes/js/dist/commands.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/commands.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 2G\'BX_','\rc7Q^?{kBE\\\\+x:','',0,'?'),(' )','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php',0,'\"ϋ!1+','\"ϋ!1+','yLS\0wAdec=߻m*7-)','',0,'?'),(' t4${SE','wp-includes/blocks/categories/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xc@[R','ٸB%K\r{Mc~Y%u.?|','',0,'?'),('!o\rAv7e','wp-admin/update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+of$[D',' vw 5aĉ5߃Xo( m5bv','',0,'?'),('!HufɁD7>=g','wp-content/plugins/wordfence/lib/wfLicense.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfLicense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ot0LM{',',Q繧^7>;ٺf\ZFYK\'','',0,'?'),('!)3upX>My','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-term-indexation-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-term-indexation-action.php',0,'o{5r(D','o{5r(D','s߸ShKW{GX_`zO','',0,'?'),('!1b݅9*\\','wp-admin/admin-footer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZC\0Ol$','sTlEeBhv:g%k07k=&!','',0,'?'),('!5y̬\rvs&a','wp-content/plugins/wordpress-seo/src/user-meta/application/additional-contactmethods-collector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/application/additional-contactmethods-collector.php',0,'{.\'tKF7','{.\'tKF7','4jElL%eRSL`wvs','',0,'?'),('!6aGO\n-=%','wp-content/plugins/wordpress-seo/packages/js/images/indexables_1_left_bubble_optm.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/indexables_1_left_bubble_optm.svg',0,'K	mO_IЦ','K	mO_IЦ','̷;\\q?(\\CߊI=&','',0,'?'),('!D߁Mg`nGX','wp-content/plugins/wordpress-seo/src/helpers/robots-txt-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/robots-txt-helper.php',0,'o-z','o-z','\r|]GEJ1ww}g9Eن','',0,'?'),('!Id]5$[~','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oL k\'k1','1\\Qt*J%s&','',0,'?'),('!Plu6CZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pe1','T*+z]ʜ;>\n3]?x','',0,'?'),('!]aYUHq\ZRA[','wp-content/themes/kadence/inc/dashboard/react/src/changelog.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/changelog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wʓy9볌',').ӿFjoaD0Ir/\r','',0,'?'),('!_輵p3pnL','wp-includes/images/smilies/icon_eek.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_eek.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/I x)(\"','8K҇4!:ʰ','',0,'?'),('!o\'0bb[','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/index-mobile-https.html',0,'Cې e\ZjJ','Cې e\ZjJ','X$Bw<|)L@j*5gC*','',0,'?'),('!|(yW*1Oo2Cu','wp-includes/js/wp-api.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-api.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`7\rJG	ϭOt>',';_*B5喙GIC6x ','',0,'?'),('!|8I, ','wp-content/plugins/wordpress-seo/admin/class-collector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-collector.php',0,'z~0=','z~0=','vnݤg:Z6s!Ȕl)8~=','',0,'?'),('!.ޟ@\r','wp-content/plugins/wp-rocket/inc/Engine/Preload/Activation/Activation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Activation/Activation.php',0,'F/=(','F/=(','~\0xW[f,\0 O)\Zz','',0,'?'),('!Grx@\Z߻~s','wp-content/plugins/wordpress-seo/admin/views/licenses.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/licenses.php',0,'V+b+>w','V+b+>w',']8\'zN\r+lTߤ2','',0,'?'),('!xx+![(','wp-includes/js/dist/list-reusable-blocks.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/list-reusable-blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Gkri\"Nb','D1PuwagmiN\\ó>\'','',0,'?'),('!w<A\n@O','wp-includes/js/dist/hooks.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/hooks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-?n\\DoWD`','r`r)}','',0,'?'),('!A9e3)O5c','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-row.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-row.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[i||!','1:R8U]\n\ZqM`','',0,'?'),('!5`܂%Y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTest.php',0,'*=8ҦM?','*=8ҦM?','&(,I8QY(\nEwKN','',0,'?'),('!=/J=t`1','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MantisBTInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MantisBTInstaller.php',0,'~bf͛H','~bf͛H','$tl\r`_P.#Qw7ᱠ','',0,'?'),('!y\'Ub#}','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zY衆:Lk','3`R<!0)BWgHZ','',0,'?'),('!>NNٌ','wp-includes/blocks/file/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LN\"biqדF','wbpmE_N|>Pd[!`(a','',0,'?'),('!8~W>B','wp-content/plugins/wordpress-seo/admin/listeners/class-listener.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/listeners/class-listener.php',0,'z9z%0[Ӽ','z9z%0[Ӽ','6\Z*G-+c)|&[`^3','',0,'?'),('!##sw:\rH*$q','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LmA1\\E_0','yT&&@ʀ7pPhQ*pY','',0,'?'),('!ӱ\n8|:','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/kadence-update-checker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/kadence-update-checker.php',0,'*9:bsY1j','*9:bsY1j','-f|1_cLtUSQ(0','',0,'?'),('!6ѼCS;%','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Jobs/Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Jobs/Manager.php',0,'ft=C0#\Zb$','ft=C0#\Zb$','U{)F\0u{(','',0,'?'),('!\')qM*Xc','wp-includes/blocks/embed/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ek:wG)[Ν','%maoT؂LOBTA8','',0,'?'),('!RpnLwm7','wp-includes/js/tinymce/plugins/lists/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/lists/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')r?NぼIq\'','%=rdv\nizxu)3p','',0,'?'),('!ق܎28CY','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Queries/UsedCSS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Queries/UsedCSS.php',0,'5<\0>b%\'','5<\0>b%\'','[{}j>}g])Qqmx\"4','',0,'?'),('!ہIǵ`8t','wp-includes/js/dist/keyboard-shortcuts.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/keyboard-shortcuts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ҀW\n jb!z','Kwňc\\͂\\1[h','',0,'?'),('!ðm.3b[A','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php',0,'w(HpMM>','w(HpMM>',';>%5c+.fwK)فW','',0,'?'),('!Tۦ	lI\n','wp-content/plugins/wordfence/lib/menu_tools_importExport.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_importExport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɳxm46c)','en*~aيc]ZbiXCq','',0,'?'),('!-\r.d7O','wp-content/plugins/wordpress-seo/src/presenters/webmaster/bing-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/bing-presenter.php',0,'\\WȹzX#}U','\\WȹzX#}U','7Zh\Z]7`N`ň\ZT(ێJac0J','',0,'?'),('!>лӊ^[U}','wp-includes/js/dist/data-controls.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/data-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5t*h+J..W','1ܴyG4\\\"MQ,\n.3{tHN','',0,'?'),('!O4bCRRfO','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\nrCO߶a','2tӑ @fjxm>*4','',0,'?'),('!Y0-z1dm>','wp-admin/js/plugin-install.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/plugin-install.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q܂y|RCgX/','?UաNkhkGQTҗ[0N-','',0,'?'),('!ݔlWv~oF','wp-content/plugins/wp-rocket/inc/classes/class-wp-rocket-requirements-check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/class-wp-rocket-requirements-check.php',0,'f9\0YL# \r','f9\0YL# \r','tǼ<C.MϴEr>\"!KA`','',0,'?'),('\"\n4jSË','wp-includes/blocks/spacer/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','skk3zU)','u2Tz\"-g&]Vj$O>','',0,'?'),('\"Etys\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E	-No','LIYow)4!:;?','',0,'?'),('\"\r↻7l~˝A','wp-includes/blocks/text-columns/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$6Eɫ8y','\\{1EH=F\'ֱL=t0X','',0,'?'),('\"(}Gr	0V(','wp-admin/ms-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~<bs\'+\ZQ','qJR_+VC%~d35kx','',0,'?'),('\"0rN1M#','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ytP>RaS@-','u{4sJ3H6owr','',0,'?'),('\"8A\n=ᇼfp5','wp-includes/theme-compat/embed-404.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/embed-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';CQ5z','47:V]L,BR$2pz񁇹','',0,'?'),('\"=d:sI[B','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/WordPress_Importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/WordPress_Importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ș@!zc@','	i.L~3j2WȊs\"^o=))yv','',0,'?'),('\"?Ɔcfa5gg_/','wp-content/plugins/shortpixel-image-optimiser/class/external/nextgen/nextGenController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/nextgen/nextGenController.php',0,'uwHv&','uwHv&','-98G?VaNTἠ36tgk','',0,'?'),('\"B}ŎxfɊEٯ','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/SubscriberFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/SubscriberFactory.php',0,'Z+ow}','Z+ow}','f/ WT=Q8!/x\0@AD','',0,'?'),('\"Ch*7hJ}M,p','wp-content/plugins/wp-rocket/inc/Engine/License/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/Subscriber.php',0,'ƇGi0(l{[Mh','ƇGi0(l{[Mh','t^W۴\0j\\8','',0,'?'),('\"IFn@a}9','wp-admin/includes/class-wp-themes-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(#U|X','gR,ҁ[`\rljdJALpk\'','',0,'?'),('\"LΧMgy','wp-content/plugins/wordpress-seo/src/routes/meta-search-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/meta-search-route.php',0,'N`d12Pf>','N`d12Pf>','3v9Ѹgh\0sz0,\n{K`[*','',0,'?'),('\"NMkVO','wp-includes/js/dist/data.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t6~L<o❨','GùYx0z$ՊV\n}e','',0,'?'),('\"Q!%#<2ٕh','wp-content/plugins/kadence-blocks-pro/includes/query/query-facets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-facets.php',0,'\'\r;zRCpJ/','\'\r;zRCpJ/','$y\Z5(eFX脠ֵ$','',0,'?'),('\"VsΖ^V4','wp-content/plugins/wp-rocket/assets/js/browser-checker.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/browser-checker.min.js',0,'P>܇{ּ?W','P>܇{ּ?W','#1.Ku׏-xiFIf5','',0,'?'),('\"Y:nAN','wp-content/plugins/wordpress-seo/admin/class-admin-help-panel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-help-panel.php',0,'<} Ȏ ','<} Ȏ ','}LGR:}VʶG[|+iht','',0,'?'),('\"huy=,v','wp-content/plugins/wordpress-seo/src/presenters/twitter/creator-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/creator-presenter.php',0,'~YPqcr6','~YPqcr6','-\n$Poi{bbii;1۹[','',0,'?'),('\"n˅1UB1S','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/StreamInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/StreamInterface.php',0,'	=Ͳ`bQ~a','	=Ͳ`bQ~a','(ϏWN\\Q\'^]J?QI','',0,'?'),('\"q	K6A!','wp-includes/css/dist/reusable-blocks/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/reusable-blocks/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&k7G|Ňrތ','[>& 6A/.0lG6қ','',0,'?'),('\"ԍx`4@','wp-content/plugins/kadence-blocks-pro/includes/uplink/Helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/uplink/Helper.php',0,')uY&',')uY&','\Z-Q!?H\rP-`V ','',0,'?'),('\"K6^4V}','wp-includes/blocks/spacer/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2~Pa\Zjmެb','ghU:~M\ZLB3JM{\rW','',0,'?'),('\"fFu_TCN','wp-content/plugins/kadence-blocks/dist/blocks-identity.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-identity.js',0,'+}7ŕ#Φ','+}7ŕ#Φ','bOiLY0րAxRωln=R.','',0,'?'),('\"vP12','wp-content/themes/twentytwentyfour/assets/fonts/jost/OFL.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/jost/OFL.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\{yI$,','aLa+#쓚cn_܁YT','',0,'?'),('\"bk\ZJ*?','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-taxonomies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-taxonomies.php',0,'ǎ$]C?kl=','ǎ$]C?kl=','ʾwrqܯ,3],ZM','',0,'?'),('\"b9e|_','wp-includes/feed-atom-comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-atom-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_mYD	[s\n8!2','ك+q8o_T_/zM<R=9','',0,'?'),('\"t\"(n','wp-content/themes/kadence/inc/customizer/react/src/background/background-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/background-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>1i!oʴ/','sZ!S^\nrh.i','',0,'?'),('\"BE{\rlbG[','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/icons.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/icons.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ccKC82','\Zl(Doc	٢Nv8,U={\0','',0,'?'),('\"ۯ67?','wp-includes/blocks/site-title/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','agû?cW;R*','p#=SZ9߯:f=/ު\"/','',0,'?'),('\"L	j#\n[t2','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/MinimalistBlogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/MinimalistBlogger.php',0,'\\*`_@','\\*`_@','V_YFvE عڸR','',0,'?'),('\"Yz.mNw>!','wp-content/plugins/kadence-blocks-pro/includes/query/wp-background-process.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/wp-background-process.php',0,'C(|˨(s','C(|˨(s','VYK?5<+$+a;i-8͉U','',0,'?'),('\"u>17','wp-includes/class-pop3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-pop3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')@ɘn','ˇ`9_A{.Pm$','',0,'?'),('\"_Nm=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Entry.php',0,':Xl,J5',':Xl,J5','7оŧ(3gVx_C{2','',0,'?'),('\"MR0x>','wp-content/plugins/kadence-blocks-pro/includes/assets/js/splide.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/splide.min.js',0,'KZIm%Ea','KZIm%Ea','qB25Uv\Z˽\'Q覔<߄T','',0,'?'),('\"Ǌ0xiDz{$','wp-content/plugins/wp-rocket/inc/deprecated/3.3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.3.php',0,'7mK6l6','7mK6l6','al䶓*kh]-kmjI<#K04N^','',0,'?'),('\"Q|\\Rł#','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wl)]','a9u-a7ľȦAl%y','',0,'?'),('\"w|Fi$w\'n','wp-content/plugins/kadence-pro/dist/woocommerce-addons/single-ajax-add-to-cart.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/single-ajax-add-to-cart.min.js',0,'A;ZN\\b_q','A;ZN\\b_q','̝sa3Z	ɣa$K[|(8','',0,'?'),('\"6\r+K{\Z!a','wp-admin/comment.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\Zƥ{p:','(՚s\0lA9Z81l','',0,'?'),('\"4o\'ODo#PH','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Contracts/Table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Contracts/Table.php',0,'uT~[LZr','uT~[LZr','FXTZQ	Vwo@\\\\R','',0,'?'),('\"wh','wp-admin/includes/class-automatic-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7$,X,Xo~N','}3ƨ]8U7׉c:','',0,'?'),('\"	A!E׮+','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Runner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Runner.php',0,'+:&(Fm','+:&(Fm','϶ggv.0\'X!U㈞(x','',0,'?'),('\"0\0L\'M','wp-includes/sodium_compat/src/Core32/HChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','95ef#ϝ','i\rC\"Գ\r48cS','',0,'?'),('\"DZ~\0|3','wp-includes/blocks/query/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򋇸\'!\rYD_','&qOB}@1?{3>-=','',0,'?'),('\"cMP8aMB','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/out-of-town-patients/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/out-of-town-patients/index-mobile-https.html',0,'\\7dkDN;','\\7dkDN;','PkA!Om2L	@-e`','',0,'?'),('\"J2\rߤ-H&','wp-includes/js/dist/date.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/date.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>d- ͒M+d5','h۰fuUf=%ԧ-ۢ\r{5','',0,'?'),('\"((n>/jZ<1','wp-content/themes/kadence/assets/js/slide-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/slide-init.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Agdte:B9','qGoMh5|\'}vFr3Ӻ4F<N','',0,'?'),('\"8zA6lD','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/HttpExceptionTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/HttpExceptionTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\r1}V7)','|ă2]u!\\ߠV','',0,'?'),('#*,xؤ\n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MagentoInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MagentoInstaller.php',0,'	4}7~P,ב1','	4}7~P,ב1','yC͞qs{ K$pV~LON','',0,'?'),('#\n/PZ~h','wp-content/plugins/wordfence/lib/email_genericAlert.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/email_genericAlert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+I*kCe;PS','_\'\\qF0{ТF\r.OK','',0,'?'),('#[cأ^yO','wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-account-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-account-action.php',0,'i#ݘGl$','i#ݘGl$','jSy\Zw\0Uit;xɲ?dBۦ','',0,'?'),('#4iGvu+B.','wp-content/plugins/wordpress-seo/inc/sitemaps/class-post-type-sitemap-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-post-type-sitemap-provider.php',0,'\0j2ѷ,G','\0j2ѷ,G',' \ZzS?VZ%@Ԥ[&','',0,'?'),('#D7֒>O','wp-content/plugins/wp-rocket/inc/Engine/License/API/UserClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/API/UserClient.php',0,'rf(\"Ďd%','rf(\"Ďd%','sHrAsBuCk*sxrGAQ\r','',0,'?'),('#Dń5%','wp-includes/class-wp-hook.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-hook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']/F6Ez3','Í\"@H\0yYD0#}','',0,'?'),('#Qr2&U:w','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/VersionRequirement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/VersionRequirement.php',0,'F\Z⽴b','F\Z⽴b','\r6ێcfb\r#\Z\'|9˿<e].P','',0,'?'),('#R^#u5~BQ','wp-content/plugins/wordpress-seo/src/builders/indexable-term-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-term-builder.php',0,'\0}?hP','\0}?hP','\\McI*y:Lcj3','',0,'?'),('#Xm+\n.','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/Minify.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/Minify.php',0,'Zr#sHB','Zr#sHB','Qo0jw,^J\"qWa$','',0,'?'),('#ch@U\\-\r','wp-content/plugins/kadence-pro/dist/conditional-headers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers.php',0,'}׶ŉOR0','}׶ŉOR0','ŕ^~_׼zj^0V#d','',0,'?'),('#rz6v;ٲ','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/custom-parser.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/custom-parser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǔ~q53U$','(_,!\n\"DDԧ߄Crқ@b','',0,'?'),('#tn2=^V','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-permalink-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-permalink-watcher.php',0,'4x%\r\Z Eꪹ','4x%\r\Z Eꪹ',']f&tWHokcEЁ}:K','',0,'?'),('#y{YFrtY:','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpResolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpResolver.php',0,'.Xi#\ri','.Xi#\ri','r_t9Eq5_	','',0,'?'),('#|F̉%\Z','wp-content/plugins/wordpress-seo/src/routes/supported-features-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/supported-features-route.php',0,'1`.9>v40VY','1`.9>v40VY','8C\Zi{zQ,Q#+B/d+q=*\n3','',0,'?'),('#k]Φ3`8','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Rows/AboveTheFold.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Rows/AboveTheFold.php',0,'Ny\"۴\0A1R','Ny\"۴\0A1R','dO!|!^~/Bk\\A^s<t','',0,'?'),('#A9.\r7','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/CacheException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/CacheException.php',0,'09ԫR:˙','09ԫR:˙','=?^2Ur\"7*GZ2jmUXL<F','',0,'?'),('#\\M@0T','wp-includes/blocks/post-excerpt/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	<\r\'w9zR','OFsoKL*(\nb`fNXsSԚ\\S]','',0,'?'),('#-g\\L%3S݋B#\r','wp-content/plugins/wordfence/images/wf-horizontal.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/wf-horizontal.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E%Zlo9͒','0	6ӭIvhJ`','',0,'?'),('#LDxц2]> ','wp-content/plugins/duplicate-post/src/ui/column.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/column.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c=NB97','~gY+OojzWiZ\\vPk','',0,'?'),('#)_۱Yh}2','wp-content/plugins/wordpress-seo/src/presenters/debug/marker-open-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/debug/marker-open-presenter.php',0,',r+',',r+','sS\"E!\"Yw)f-)?̾	','',0,'?'),('#]Z:L','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Idn.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Idn.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':&y۝j','RH]8Y:HgY%&\Z1','',0,'?'),('#Aϔ%/#','wp-content/plugins/kadence-blocks/dist/blocks-advancedgallery.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedgallery.asset.php',0,'IYV;kJϚ83\Z','IYV;kJϚ83\Z','E^LKsGkɱwm!x\r2','',0,'?'),('#Cq\Z*l3X','wp-content/plugins/wp-rocket/inc/deprecated/DeprecatedClassTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/DeprecatedClassTrait.php',0,'.8ԑ^`˃5Xf','.8ԑ^`˃5Xf','T0ZE.StC~ޮs	>','',0,'?'),('#1%TC^CA(=','wp-content/themes/kadence/inc/customizer/react/src/editor/editor-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/editor/editor-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	P9NLb|','G(X+Q)t\"]\"ZN5j ¾','',0,'?'),('#iUfzhJF','wp-includes/sodium_compat/autoload-php7.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/autoload-php7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n4','-r*H^O<a{X@g +','',0,'?'),('#_b','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/LogLevel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/LogLevel.php',0,'DKC|M','DKC|M','p\0DwAehOATM,\"E','',0,'?'),('#h!غC8(t','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/deprecation-contracts/function.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/deprecation-contracts/function.php',0,'\Z5k-U+R.','\Z5k-U+R.','`65)gDi!A1vZx','',0,'?'),('#fص{WQh','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/CHANGELOG.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e=\n0<8:','%dR}:E+\nCt3Z_fP','',0,'?'),('#^C%k','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-utils.php',0,'[Dg<.vܩH#kSI','[Dg<.vܩH#kSI','v(JGDW_<3O63m\Z','',0,'?'),('$đ< W&AOR','wp-content/plugins/kadence-blocks/dist/blocks-search.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-search.asset.php',0,'Qn(z-V}û','Qn(z-V}û','u.Iײ\nl׋,{;\'8՗q','',0,'?'),('$4Xe\'Ф jq','wp-content/plugins/wordpress-seo/js/dist/how-to-block.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/how-to-block.js',0,'\r$Gp.(O','\r$Gp.(O',')j[\'\"KRBNq!','',0,'?'),('$6BCQ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php',0,'k8zÎUry','k8zÎUry','\\7E׷e\ZMoCS၃ǍOG','',0,'?'),('$7y]N','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͩpm<j@\'','Ċ8,QwGn a{G9D','',0,'?'),('$Z_Jn}d,%','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-tools.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-tools.php',0,'CA6z','CA6z','Nj3LậژD6i2PWϏz\"','',0,'?'),('$u$\nkWxisB','wp-content/plugins/wp-rocket/inc/Engine/Common/Clock/WPRClock.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Clock/WPRClock.php',0,'?s/p]E','?s/p]E','̂վCzr9pbG3lm','',0,'?'),('${G,vЏ\n*SR','wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob1.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob1.svg',0,'$gTеj5MN','$gTеj5MN','b7[n.5n-Y;i*~S/fXX.\0U','',0,'?'),('$~e0(Oez','wp-content/themes/kadence/inc/components/woocommerce/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/woocommerce/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"a\n*ހ','aJ젍;]bOzВ͉R','',0,'?'),('$\'ݨl&ʷp','wp-content/plugins/wp-rocket/assets/img/bg-activated.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/bg-activated.svg',0,'\\ǹ(O\\_s;','\\ǹ(O\\_s;','Í{MgM\'ʌ\nu','',0,'?'),('$\nN3x?','wp-content/plugins/shortpixel-image-optimiser/res/img/svg/sp-logo-regular.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/svg/sp-logo-regular.svg',0,'z]Pnˈ\rRe','z]Pnˈ\rRe','\0qI-m\Zy%,})z|)^','',0,'?'),('$akFSoq','wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-magnific-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-magnific-init.min.js',0,'+Ӂ(|;wk','+Ӂ(|;wk','T(y8ߒL-\"j*','',0,'?'),('$\'~_ՙYV=','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b	~I~t\0','̱tPEóG*kDǳL/T\'','',0,'?'),('$0S\rr','wp-includes/images/smilies/icon_redface.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_redface.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*M0je[Y*',']4\0 }S/Ah)','',0,'?'),('$SCkdW','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-timelimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\"V%		|','X>[6_\\a3sV','',0,'?'),('$ ~</aR','wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-conditional.php',0,'Ia	~PVD/\r','Ia	~PVD/\r','Og§ɄzXJRfyJŶ','',0,'?'),('$C/9','wp-includes/class-wp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_yƂ ','9$;̛*\\X\'\n.8o\n++!','',0,'?'),('$Otbb]','wp-content/plugins/kadence-blocks/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_static.php',0,'/DvLy\Z(Y-G','/DvLy\Z(Y-G','()h?;Y+s;oQ51','',0,'?'),('$PXu','wp-content/plugins/wordpress-seo/inc/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/index.php',0,'EЛO0cAg3','EЛO0cAg3','	蚠{cFJw!}a9','',0,'?'),('$-#q`l$Wۉ','wp-content/plugins/wordfence/lib/live_activity.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/live_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iks','^&Vb,sB^R4ѸV','',0,'?'),('$|c \\~','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\^>5paW>','DCXG4WFP#NS\Z','',0,'?'),('$GEk<[','wp-content/plugins/wordpress-seo/src/integrations/watchers/auto-update-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/auto-update-watcher.php',0,'\0*0-zc<z','\0*0-zc<z','^$A\n#7TZP-M','',0,'?'),('$^6bH^*','wp-admin/options-privacy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ხ01','o7H+j$^,-[/NUEؿ','',0,'?'),('$߰R\rab8!','wp-content/plugins/wordpress-seo/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/autoload.php',0,'\nlyqTdl','\nlyqTdl','e CӀLN̳\r*k;S','',0,'?'),('$ϫ/!C','wp-includes/IXR/class-IXR-introspectionserver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-introspectionserver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Uaw<IwpO7-','\nCPEQ%D\rk*Xo','',0,'?'),('%	n\r3\Zޝ:E','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-reports.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-reports.php',0,'=\ZEɉ','=\ZEɉ','7w˴#%r\rP4','',0,'?'),('%	ſkuXb','wp-includes/blocks/read-more.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zoEuUvڍ2T','1+VXyo&BaL','',0,'?'),('%]M3T1T/','wp-includes/blocks/preformatted/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TĒ+E^g[','0(_l\Z̕:;J!r','',0,'?'),('%7娳','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GbZ','S\ZVZDfGb¸zC\Zb>','',0,'?'),('%Y z','wp-content/themes/twentytwentyfour/patterns/hidden-portfolio-hero.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-portfolio-hero.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0I\"mmƎ:	c','I2P5.fëlr\rq])r','',0,'?'),('%fNvn9,\rW','wp-includes/blocks/post-template/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','č4Uu\nYi','&sho@v\Zfz=l_K','',0,'?'),('%$MqT<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CUO\ZߠxtH','G\n\"_/Agh	U?SsHבYٳ','',0,'?'),('%..Ct=\\`','wp-includes/sodium_compat/src/Core/SipHash.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cJ>|Eqv0|bv ','ܟjpeMN?aXi+!S2','',0,'?'),('%EQ*ZarDM>7','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oݶBt\'+',')UPuix6ue,L','',0,'?'),('%dDXSN8>{{','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-dashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-dashboard.php',0,'ڮ ++e','ڮ ++e','K7W	}\0nL5Pk','',0,'?'),('%fy.=As\'','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php',0,'6JG:Z::fNZ0','6JG:Z::fNZ0','j>^&Wp\Zoq#JU߻E\n1','',0,'?'),('%igcaW!q','wp-includes/blocks/cover/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H$baE<.','e|=1.Z8x)Vc*rN','',0,'?'),('%uv-+am','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Libraries/Unserialize/DisallowedClassesSubstitutor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Libraries/Unserialize/DisallowedClassesSubstitutor.php',0,')wrʙN_\'',')wrʙN_\'','um*KC,YQI\'','',0,'?'),('%q#AU','wp-content/plugins/wordpress-seo/images/plugin_subscription.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/plugin_subscription.svg',0,'7,_p ','7,_p ','o盖p`cR+ͽ]<\nPmZ','',0,'?'),('%>\Z+d@','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/Elementor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/Elementor.php',0,'ū`^','ū`^','#ҩT/hoAx6%B3;k<+','',0,'?'),('%>QS!Hxvh~','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NoopHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NoopHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sVH?M&ղ)>','٨U~͙1\nw3!\ZFIާWnsC','',0,'?'),('%VЋ]=w','wp-content/plugins/wordpress-seo/admin/class-config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-config.php',0,'#8hrMYL','#8hrMYL',',GɕU8U&}j2$cwڿ~','',0,'?'),('%9\\ދ','wp-admin/includes/class-wp-site-health-auto-updates.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-site-health-auto-updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_v6fm\'','JFs]c\rˮϏ\'\0ȩR-]','',0,'?'),('%Kz\ZeǱ','wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lfh@G7','8M>B5itأwubu0>ˋ43\0','',0,'?'),('%|-X2`JV','wp-admin/images/about-texture.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/about-texture.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0m{oQKU','J>\\ˌk~2r!!ti+\0','',0,'?'),('%BqIDJz','wp-includes/html-api/class-wp-html-tag-processor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-tag-processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0q\0>?@P','a`,t9ck%`b\Z-@R','',0,'?'),('%8^V<t','wp-admin/edit-tag-form.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-tag-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؠI|7M','LaȠ|ˢmH=\Z?\Z','',0,'?'),('%^7p0Z-','wp-content/themes/kadence/single.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8mCbrwRȘ','N\'\'\ZS1ae\rDʰ','',0,'?'),('%:1k	\Z','wp-content/plugins/wp-rocket/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_namespaces.php',0,'\0].e^O:[`','\0].e^O:[`','q!%Yiئ{}ם6!_l=浫','',0,'?'),('%HHSRw0-d','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-date-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-date-input-block.php',0,'Y\'au3< ','Y\'au3< ','	eYȋn64fSUtj','',0,'?'),('%fW	P0}+','wp-content/plugins/wordfence/modules/login-security/img/menu.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/menu.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]j-','8#̄(8O\"	+h\"Fb','',0,'?'),('%ħʗk|o','wp-content/plugins/wordfence/css/fullLog.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/fullLog.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e.i`΁Uv','?>?hξ[²Pu{puaa','',0,'?'),('%䴆gٖr:L','wp-content/plugins/kadence-blocks-pro/includes/assets/js/splide-auto-scroll.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/splide-auto-scroll.min.js',0,'@jde%Kn','@jde%Kn','HnM;6ܳ4V\\gʼ!kcvS8','',0,'?'),('%Pb.8Gdt','wp-admin/css/media.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.!AYq(	B','#oj>|UA\n\Z%eoPWѨ','',0,'?'),('%҆\'^?0sca','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/CompatNotice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/CompatNotice.php',0,'M_}d$![Q1','M_}d$![Q1','BFF~agQi<\"VPyI','',0,'?'),('%R\'3','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/MetaQuery.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/MetaQuery.php',0,'TBqNeA','TBqNeA','6=A\'t4g\r2ZYBavV','',0,'?'),('%e{\0yS:\'5S','wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/Converter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/Converter.php',0,'!@ͮV~#*!`','!@ͮV~#*!`','D]a駫.$/l݀Q','',0,'?'),('%҈wA&0','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageFormatter.php',0,'L|]\Zde','L|]\Zde','FLϕ$Z^,݊YwK','',0,'?'),('%[!oٵ','wp-content/plugins/wp-rocket/inc/functions/formatting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/formatting.php',0,'G 0@.fr6','G 0@.fr6','󌖒܋eHm%7Mo5`ܖ','',0,'?'),('%µlk{ ','wp-content/plugins/wordpress-seo/src/editors/domain/seo/social.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/social.php',0,'D`┦%\nw_','D`┦%\nw_','!|TrZ  ~TvEeG8','',0,'?'),('%-oOkL TMgK','wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.knob.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.knob.min.js',0,')`5M7$',')`5M7$','<8_r9yJu','',0,'?'),('%](2te(`K','wp-content/plugins/wordpress-seo/src/models/primary-term.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/primary-term.php',0,'|fP,!','|fP,!','YГ҂`Q$6GOcWYGJ/','',0,'?'),('&8Hӧ+Xzi\n','wp-content/plugins/wordpress-seo/js/dist/languages/tr.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/tr.js',0,'P[g\0w','P[g\0w','xpjB	3;pk1\nqW0H','',0,'?'),('&wUeFҧ\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',0,'+kL\n~֡','+kL\n~֡','ƌ~k\nVLPP[Z','',0,'?'),('&\'`wƚ','wp-includes/js/dist/patterns.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/patterns.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%b]P','U&ZUg\nA!.D	:.V','',0,'?'),('&39Q&mOcQ','wp-includes/blocks/post-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nX0*4','\\a*zK*+OMLWH_','',0,'?'),('&PDt?5u1Ym','wp-content/plugins/wordfence/crypto/vendor/composer/installed.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xy~XC','B:zʉ̂DPڒl\Z-|','',0,'?'),('&\Z]ChЧp','wp-content/plugins/wp-rocket/inc/Engine/Deactivation/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Deactivation/ServiceProvider.php',0,':Lq/[c`',':Lq/[c`','p\'In04aȼ=4U	p','',0,'?'),('&\ZŒ.+ k','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php',0,'6PCb','6PCb','ׇ4Pֶg|QXʥ?(','',0,'?'),('& ]@){\\Z@̈x','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RP]}','1EXʭ\'mcV.=:b5i','',0,'?'),('&*dĆָ	H5','wp-admin/images/align-center.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-center.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\Zݶ4ydY1e','놽N3X!ljh`hA]J','',0,'?'),('&/-Z','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-processor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-processor.js',0,'\rDqOkf','\rDqOkf','\Z	T?<kQcwrj\0?l}#','',0,'?'),('&=\Z+t\"/k\'\n','wp-includes/js/jquery/jquery.form.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@f4-|9Y','2M?kUby${PbV!','',0,'?'),('&MDfUɋ(','wp-content/plugins/wordpress-seo/src/editors/framework/site/base-site-information.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/site/base-site-information.php',0,'K\ZA','K\ZA','A%I\0jQæN:?In=','',0,'?'),('&Mmrbg@8e4','wp-content/themes/kadence/inc/customizer/css/rtl-kadence-customizer.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/rtl-kadence-customizer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W#B{Q9G','\rBY+z5x(s8`\r','',0,'?'),('&RYm<Yscp','wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Clean.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Clean.php',0,'N0|sޕS`^','N0|sޕS`^','݄||\0S{p܉ˉFVZ2D','',0,'?'),('&ee\n3KvZ','wp-admin/ms-delete-site.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-delete-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','COL*p>[','<c~|Ι`zgTleNϾ>','',0,'?'),('&jl\"9#ꮛNb','wp-content/themes/twentytwentyfour/patterns/text-feature-grid-3-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-feature-grid-3-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c>>_}Ob[','<k+Jh`FN.Hp:Q|ض|_','',0,'?'),('&k\0v_fcbv','wp-includes/js/dist/format-library.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/format-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vm(5pg','!A%$^Z賫sbU~J','',0,'?'),('&r̶Gn\0-۶','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Redaxo5Installer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Redaxo5Installer.php',0,'h+ZTQ/','h+ZTQ/','@/WtiM=ulC	G,Nd\\','',0,'?'),('&sRX<','wp-includes/blocks/separator/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EOcm{','/`i-^3җ;BT;#\0r}:j','',0,'?'),('&snVz?','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/AbstractHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/AbstractHandler.php',0,'(ذ%9`:)','(ذ%9`:)','iHONv[3?+CuA(jH?[A','',0,'?'),('&t!0^gbJc,>3','wp-admin/upload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'UrE&Y0','q <}iZ$-\"%B0C78.Ҿa','',0,'?'),('&~*mE+nX%;[O','wp-includes/css/dist/block-library/common-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~WtB','ީ㯉>B>lJKp','',0,'?'),('&DQRw]','wp-includes/sodium_compat/src/Core/ChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-rjiIأeb','bE&q*','',0,'?'),('&So1X0v','wp-content/themes/kadence/assets/css/all.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/all.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S*%!R޻>$','q&(y4dS9=3_J0[;wl','',0,'?'),('&Z޴yrvM\n8','wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-helper.php',0,'C-$7W\'<.','C-$7W\'<.','!V4KzQ!9#2)i','',0,'?'),('&lx\\P\'&@','wp-content/plugins/kadence-blocks/dist/extension-image-picker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-image-picker.js',0,'kPy9W(b~','kPy9W(b~','TO+Hkh)|c0%','',0,'?'),('&Rw?~jhJD','wp-includes/Text/Diff/Renderer/inline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Renderer/inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2z;/Ï$m','x	2EZμ','',0,'?'),('&0\nb+>','wp-content/plugins/kadence-pro/build/meta.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/meta.js',0,'LqX+폿','LqX+폿','c0	|\rbxb~qqK-\r','',0,'?'),('&]0W\n)=','wp-includes/js/tinymce/plugins/directionality/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ErHDD3@','<o@:-Eg)6^Ѽ\'','',0,'?'),('&`OQ5Q43','wp-admin/theme-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wT]XgY','\'w-\Z\n=A~㠗Je','',0,'?'),('&	PshcusS','wp-content/wflogs/attack-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/attack-data.php',0,'#ح\nyIb\r\r','#ح\nyIb\r\r','l4Eq{\'wg31cw:','',0,'?'),('&tQ\\j`qY','wp-includes/blocks/categories/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~B[|l','\'Y9 9_\0&	','',0,'?'),('&vAQcqw8,','wp-includes/theme-compat/header-embed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/header-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Omz8F','})d!q	,@,jv	E','',0,'?'),('&Ғt0g֡*Hw','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/TransientTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/TransientTrait.php',0,'Y<o\nñ','Y<o\nñ','M F݈M[ξ\nuTd','',0,'?'),('&nȎYđL','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UȠY	[','!Q5@{DdBE(Ԋ$\"+v(珰','',0,'?'),('&饱W؀|','wp-includes/widgets/class-wp-widget-links.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#F>Xnl','쇉,x-DO,7шQ','',0,'?'),('&7X0+>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/Regex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/Regex.php',0,'UG+*v;8ຌ','UG+*v;8ຌ','0%9B 1{C/ro)_','',0,'?'),('&9tf\Z%*o','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/EmptyProperty.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/EmptyProperty.php',0,'S=样z\nB&','S=样z\nB&','Vur.	H!\01	H:B.ݏ\"(s','',0,'?'),('&$ES','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/TestHttpServer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/TestHttpServer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','73L08>ˣQ','ZH|϶l\\(i\\\0. 6ZK;','',0,'?'),('\'\rrr\'2Du','wp-includes/js/dist/commands.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/commands.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t+ъ\ZQS-l4G','PTqyzv	8bw4>PP8','',0,'?'),('\'f\0!J[|','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FormSizeFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FormSizeFileException.php',0,'4\nW~u@s','4\nW~u@s',';O`\'#;%0;3Em,','',0,'?'),('\'yƘ\ni','wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-display.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-display.php',0,'%F?+K','%F?+K','3IG+W8Xw\"(l\rCӄ','',0,'?'),('\'\Z6aKcUy','wp-content/plugins/wordpress-seo/src/services/health-check/reports-trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/reports-trait.php',0,'LEÁ9sW	a','LEÁ9sW	a','(_m[|sQ3`deUT$:','',0,'?'),('\'5=,7A؜\'~d','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Status.php',0,'0E )ܯN\' \'','0E )ܯN\' \'','.M1lh\nb(Y!6,ʫiن','',0,'?'),('\'oMO#f','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s7cj^Xri\\','^qˇ>ϛ+[.Se+6n','',0,'?'),('\'!\Z!pH','wp-includes/js/dist/interactivity.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Ő&,NiB','xV:a&i!:<^$U4tʭj<z]','',0,'?'),('\'6Ѩp ','wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-provider.php',0,'heGtsž]','heGtsž]','%J\r%< ٭fe!^n\'͸^6B','',0,'?'),('\'=!ZaajUQ','wp-admin/css/site-icon.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q>2߬v','4HqJ~>(Lq{ـlb^','',0,'?'),('\'Ac,	~6ܦ','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/tour-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':% );\0','\Z\'ġ맪.s\'sd4^I','',0,'?'),('\'Mw񑍷\rKj','wp-admin/includes/class-wp-site-icon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C	.kЛGcY0','\"j9VOjڬFdF}EPjl','',0,'?'),('\'OU#I{Z','wp-content/themes/kadence/inc/dashboard/react/src/pro-extension.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/pro-extension.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?7 ','*B2T#^:YGǷE%)J_','',0,'?'),('\'^\rJ2*=w/','wp-content/themes/kadence/inc/components/jetpack/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/jetpack/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d n}W`\\','{7XM\'/zPqW9!(g','',0,'?'),('\'pKr X_.','wp-includes/class-wp-theme-json-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme-json-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cbS~&vj\Z2','=0Z֝;τt!ǐ\0z','',0,'?'),('\'rE>+02afOڜd','wp-content/plugins/wp-rocket/assets/img/infinite.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/infinite.svg',0,'QqlZ','QqlZ','ޒ<nǿKF$a1r','',0,'?'),('\'	qU۾Ze','wp-includes/Requests/src/Exception/Http/Status505.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status505.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\"ڱʹ_','U4>Lt*C)S\0~;AR','',0,'?'),('\'휩ފuXQ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v]o@4V4','͡د2c$BسOV؏','',0,'?'),('\' oS','wp-content/plugins/wordfence/images/icons/ajax3.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajax3.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mwߴtꍓ\'\ns','dz\nyKƮ\'#]x	VJR.=:','',0,'?'),('\'zreyI~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/RuntimeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/RuntimeException.php',0,'ѴEՌ1','ѴEՌ1','IU/NێT,j@i6?','',0,'?'),('\'nHo|xu','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php',0,'<fbx1*v','<fbx1*v','r|x1sI{)66a/5Xj','',0,'?'),('\'7ݶzµ;LοI','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/InformationalChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/InformationalChunk.php',0,'laz1jɐєz','laz1jɐєz','+8s?:7\0tQgX','',0,'?'),('\'OשS2Y','wp-content/plugins/wp-rocket/inc/Engine/Debug/DebugSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Debug/DebugSubscriber.php',0,'^^*(	&ʚ','^^*(	&ʚ',']Fl _<Po@C~ؾ','',0,'?'),('\'~1wo؞<','wp-content/plugins/wordpress-seo/src/conditionals/new-dashboard-ui-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/new-dashboard-ui-conditional.php',0,',imLq',',imLq','.\\y<V԰p	`Hgod.o','',0,'?'),('\'^y~/','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Type.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Type.php',0,'K.\0ZQjRB>I','K.\0ZQjRB>I','`Of#e3꺸.2Cˑ','',0,'?'),('\']Ym,o7','wp-content/plugins/kadence-blocks/includes/assets/images/masks/cat.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/cat.svg',0,'R','R',']4=`Liv#8jhwn`','',0,'?'),('\']\Z0Pk','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/IOExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/IOExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')S	q]X','xl\nV]pde`YNM','',0,'?'),('\'ۭ]ͨފ ','wp-content/wp-rocket-config/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wp-rocket-config/index.html',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('\'8sNyy0O','wp-content/themes/kadence/assets/css/src/editor/editor-styles.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/editor/editor-styles.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nH$<{a','=wƒ+jN\\X\r|VDM%','',0,'?'),('\'xnlmi','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php',0,'my%]-U','my%]-U','K~Zقpa1꘿g՗aYp','',0,'?'),('\'g|͹\"jݹ2','wp-includes/js/jquery/ui/effect-transfer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-transfer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x!ղ{/','{`{WaׅvF0jslJ2','',0,'?'),('\'\nw@$;*/c','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/HeaderBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/HeaderBag.php',0,'ZBf','ZBf',':8*?!~\rqF\'\0um','',0,'?'),('\'{\0o];','wp-content/plugins/wordpress-seo/src/presenters/robots-txt-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/robots-txt-presenter.php',0,'\';5_k!0add','\';5_k!0add','RR\\w}nkhƳrzo	N\Z7H0','',0,'?'),('\'I՘qpE','wp-content/plugins/wordpress-seo/inc/class-addon-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-addon-manager.php',0,'Lx@&Sf	_','Lx@&Sf	_','REFGo( DB=jŌ >Fo','',0,'?'),('\'qWE&/yU','wp-content/plugins/wordpress-seo/src/presenters/open-graph/image-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/image-presenter.php',0,'wvڰM]','wvڰM]','$}}&͸Xĝ\"BgPjlK','',0,'?'),('\'u\\eQy܏','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php',0,';$s;;Qب',';$s;;Qب','ñqBtWF%cnG|_w/','',0,'?'),('\'_iYm1R','wp-content/plugins/wordfence/views/scanner/scan-results.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qxM!\nB+=L',';Oҥv̉	\n','',0,'?'),('\'KzԙJkW','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64MimeHeaderEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64MimeHeaderEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yp,<(.','O(x Op8VOe(>q','',0,'?'),('(\r˺h\0.+T','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php',0,'LX~+f4K-sR','LX~+f4K-sR','hIju0^EaQ4zb(\Z@@s/','',0,'?'),('(g%\04l>','wp-includes/js/jquery/jquery.schedule.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.schedule.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Tkf؞','?vEʔwjCP՝_','',0,'?'),('()v|vzEE','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/image-format.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/image-format.php',0,'`#ԩ\"W','`#ԩ\"W','i817D񅓭ugmt	^{vr$Ò','',0,'?'),('(00k9YA\Z','wp-includes/blocks/preformatted/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OoJ}[׻W','mA-`8	P ay<(','',0,'?'),('(1Ctwt2?~','wp-content/plugins/wordpress-seo/js/dist/languages/cs.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/cs.js',0,'#\0֟*6B`!TS','#\0֟*6B`!TS','Ɩ/?]R|\"%0DD3','',0,'?'),('(2A$Saɺ','wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-login-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-login-action.php',0,'p敻1y','p敻1y','#\n|4Ꞃ#Mp5^Hj5w}','',0,'?'),('(?>SN揚&','wp-includes/images/media/default.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-IBh@b',':oLJDj$->i\'6n֠Ui','',0,'?'),('(FTfM/w)&','wp-content/themes/twentytwentyfour/styles/rust.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/rust.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pUk	0','r:u`2?ߞdi`!9','',0,'?'),('(WQ=3yb6','wp-includes/cache-compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/cache-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B#XTpPŊ:M','`a=|;^ky	8uG6','',0,'?'),('(W0a(Ȥ9','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Coroutine.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Coroutine.php',0,'B*v\rc%ok','B*v\rc%ok','^Y\r,ƿ4\"B;k?(\\D/c','',0,'?'),('([3|tE5H','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_DataController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_DataController.php',0,'nen\\Q','nen\\Q','o\\%+\rvKذ_g','',0,'?'),('([dBQ','wp-admin/js/updates.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/updates.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%c֛\"ʎ74','T4<esTLoPH҄Sb','',0,'?'),('(b\nkWM','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php',0,',%`i\rW',',%`i\rW',')dBv<V#8`Os่e7','',0,'?'),('(hl;*','wp-content/plugins/wp-rocket/inc/Engine/Cache/AdminSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/AdminSubscriber.php',0,'ཛmvJ׶4eCm','ཛmvJ׶4eCm','l+wi$$amHޡ','',0,'?'),('(lօ+%mGI@','wp-includes/blocks/rss/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ׯću','!	L(L\'=	ޓ\rgȀj=t','',0,'?'),('(x*J,LÛn<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kw``|}$G','u/2/@H_Ilh/aU:	','',0,'?'),('(yR\nlTY','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/ignored.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/ignored.php',0,'qʓӧc','qʓӧc','+\0]bsPs_','',0,'?'),('(~6vqV0{\"','wp-includes/ID3/readme.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bK~䮏】=Cl','5+P$+ʨ7e','',0,'?'),('(mR_La9','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AsyncContext.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AsyncContext.php',0,'uW4vA','uW4vA','~UGt=TChk;z\\','',0,'?'),('(v|T— ¥','wp-admin/includes/screen.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N6\'8;ڇ믍V1','oYH4	lY1YGHtmSZ/)\"','',0,'?'),('(\'RQԦC۫','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ގ\nzk̯','Lǲ\'\Zlj1','',0,'?'),('(Ga/_}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/UnicodeString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/UnicodeString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GNJ\0','g!,q\Z$/$fo19VDK@N;Or','',0,'?'),('(kl]8U','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php',0,'vg#sV\rQO6','vg#sV\rQO6','ryn9qz]L${b','',0,'?'),('(Tk|ksT','wp-includes/blocks/post-author/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SMr7\'8.o','8@enRlVJ犋B','',0,'?'),('(Y\'^kz!q','wp-includes/js/dist/block-directory.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-directory.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y7K3qM\"','pGA\0v8\Z mM%[0c','',0,'?'),('(f','wp-content/plugins/wordpress-seo/src/conditionals/third-party/translatepress-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/translatepress-conditional.php',0,'<vR1+','<vR1+','ަ}%4l5xP}5p','',0,'?'),('(Օ)(pwBl','wp-includes/js/dist/list-reusable-blocks.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/list-reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uSxH','tQ1ڕ)Q^JtN*t','',0,'?'),('(|ZxT[u','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z?(EWup','+D\0ej\rgϧ4','',0,'?'),('(>f0\Zg[|','wp-content/plugins/wordfence/lib/wfJWT.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfJWT.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}{ jNcK','0mhN`xx~HLjsOP,','',0,'?'),('(՗\reGg','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CanLazyloadTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CanLazyloadTrait.php',0,'vqs)u?|Թ','vqs)u?|Թ','hy8%0;`7uJ:PJ9','',0,'?'),('(?60bw','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php',0,'\n]9}deIY4[wYuY','\n]9}deIY4[wYuY','em*\"^ 1_<;','',0,'?'),('(LS[Wl#','wp-includes/sodium_compat/src/Core32/Int64.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Хx	^5','H3y&k3}:','',0,'?'),('(s3TNo(','wp-admin/images/freedom-1.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/freedom-1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(9f\rOJ\Z]','eMO8\0\\\07','',0,'?'),('(ጆ\ZwTP#','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php',0,'kS_ӥFt','kS_ӥFt','Ft(`B-?Do`S<F*','',0,'?'),('(^3N3','wp-includes/wp-diff.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/wp-diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' -x<z^Wet','a;ɺ*2Zf1\"\nNt~>','',0,'?'),('(\Z՚ps_','wp-content/plugins/wordpress-seo/src/integrations/admin/redirects-page-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/redirects-page-integration.php',0,'?3%uo\0t','?3%uo\0t','e:\"P5uAg\"oeZq`7\r','',0,'?'),('(ZbcĲ6p\"$','wp-content/plugins/wordpress-seo/src/helpers/options-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/options-helper.php',0,'T!%(s[','T!%(s[','iA8% 4T3_ϩaU\r','',0,'?'),('(\'i^c','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','piR\"o-/\r','$sE\'m&h}[&;X','',0,'?'),('(bD[	E&','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Item.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Item.php',0,'L9G+_JZGCU@','L9G+_JZGCU@','NfpE<ڜ\Z	Izl_/Qy=et4','',0,'?'),('(q9\\wwJC<j,','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/drop-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/drop-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-P-YR;܌','\\cIC4A;_G@Vʋf]','',0,'?'),(')\Z6煁j\rePG','wp-content/themes/kadence/inc/customizer/options/header-cart-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-cart-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=%V-RGp{','Q6Uop=Q^{\0ƹzt','',0,'?'),(')%o6ᛯ_X','wp-content/plugins/kadence-blocks-pro/dist/form-analytics.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/form-analytics.js',0,'i2ma','i2ma','L;+(4~p~3h݊\\','',0,'?'),(')\"|z%J','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߃@r?','}uua8nڞ<\'22r,\0','',0,'?'),(')oFjnX','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php',0,'gǤeR\r<&M','gǤeR\r<&M','J5PnZϯ<4Xp4','',0,'?'),(')\'hL휞\rЀ^','wp-includes/blocks/page-list/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8	x vR<','II|{8ʰ$Ni0<&[vHV^','',0,'?'),(')FTjCJcG','wp-includes/blocks/image/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D!t6ޞ','Ym*	1zyKNh5kX\0^`','',0,'?'),(')OwLe8o','wp-content/plugins/kadence-starter-templates/class-kadence-starter-templates.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/class-kadence-starter-templates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}p`_58<(','tVblL\\L88`WYVЇ','',0,'?'),(')d$֭F&0','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery-doctors/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery-doctors/index-https.html',0,'~骋Yz','~骋Yz','82U\"ڗjpBMu-0CUtT\"','',0,'?'),('){jW-_Q=?GlҢ','wp-includes/media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xS6P0Z','8)@.d52)@!Wu','',0,'?'),(')&`&X	','wp-includes/js/dist/preferences-persistence.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/preferences-persistence.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M1+MFcNT','ttk`iK	9;:.qtަ:Wӏ,','',0,'?'),(')G$m_','wp-content/plugins/wp-rocket/assets/js/elementor-animation.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/elementor-animation.js',0,'!J!֮1O/9','!J!֮1O/9',']*3sLG/y}#L]`$','',0,'?'),(')Bi0d9g','wp-content/plugins/wordpress-seo/src/editors/domain/seo/description.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/description.php',0,']ܦ6떇',']ܦ6떇',';eaCra\'pUU+\ZNk','',0,'?'),(')3\rr-ty','wp-includes/blocks/media-text/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z(#q\\','p$PU\"\rIUOpQJLՠ','',0,'?'),(')b,Zr','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/GroupByStatement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/GroupByStatement.php',0,'4Wlet','4Wlet','J^K<܄!Fo!եPE\Z3[','',0,'?'),(')7{\r);2i+','wp-includes/blocks/read-more/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+`A0','O;/l:kWP(Q.?q)','',0,'?'),(')BG7i KG[','wp-content/themes/kadence/assets/css/src/tribe-events.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/tribe-events.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2fT\0e^U','\rji0~ָ0OtEפ&Ao,','',0,'?'),(')8UŒL9.}','wp-content/plugins/shortpixel-image-optimiser/class/Model/File/DirectoryModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/File/DirectoryModel.php',0,'r`m*`o','r`m*`o','$ID\r5U=ˁiK','',0,'?'),(')7{UxrO','wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-field.php',0,';7A7~C-',';7A7~C-','.F5)\rqv^7d|kHLp','',0,'?'),(');tVn','wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-elementor-post-types.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-elementor-post-types.php',0,'O\"t(2]l','O\"t(2]l','6ܵ&`s{`\ZO1,','',0,'?'),(')3C2b.','wp-includes/blocks/comments-pagination-numbers/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǛA1PúF.O;','BDujK	Ǡ->^©\rr','',0,'?'),(')Oz=u˷','wp-includes/rewrite.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C*Z','f\rRf|ccN];x~x','',0,'?'),(')B\0\'\'k','wp-content/themes/kadence/inc/components/image_sizes/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/image_sizes/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e|U9IFˠ','T;b?Z5Z\0X_*_%-Gʧ','',0,'?'),(')Ei\0m.nZ8','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǻwI3\rdgU',':{e[C[6GjOD\Z','',0,'?'),(')6#_̟SAF','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9gs `V','j(ؠ\r	緪U+.d','',0,'?'),('):MT{j0','wp-content/plugins/wordpress-seo/src/conditionals/woocommerce-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/woocommerce-conditional.php',0,'vo_xz5I{','vo_xz5I{','r4SE`\r0@\\#\rѝܓED','',0,'?'),(')]Z$P%','wp-includes/embed-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/embed-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ceVbӻ5=','Fn<7[zON\ZpE3@rB0','',0,'?'),(')c8 _.Wz','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Data_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Data_Provider.php',0,'M+~qp','M+~qp','y8Ҁ(]]+:>O`ʙ\Z@oy','',0,'?'),(')警QQ/Y9','wp-includes/blocks/page-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','34Ju\0','zjΤ|\Z	Vh%9z	ڑ','',0,'?'),(')I\nΆVq{','wp-admin/authorize-application.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/authorize-application.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&l\"Ȍh','9?sNVd:O+\'(j\';Sq','',0,'?'),(')|G','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-iso-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-iso-init.min.js',0,'&(Ї).V>2','&(Ї).V>2','a@ƠSszZ8ϫ݆2-=5b','',0,'?'),(')ėYY;DOd','wp-content/themes/kadence/inc/customizer/react/src/textarea/textarea-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/textarea/textarea-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H&smם','wBl8_&ir.\nN\r','',0,'?'),(')\"n84\n;V','wp-content/plugins/wp-rocket/inc/common/purge.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/common/purge.php',0,'\ZlwH-2','\ZlwH-2','5%ރ9C1ZUJYÿE0CM','',0,'?'),(')`f,u4','wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`/4gVFm','3\Z,\\\n5)f\n[V*Ka8z','',0,'?'),('*CjRR,8','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/HeaderBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/HeaderBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';а,Y\"TY:8','<);+ClboY\0VA^ 0f','',0,'?'),('*{\'y%tC','wp-content/plugins/kadence-starter-templates/readme.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')VN@[','}$Ӗ}n%3IKAɼ˦+','',0,'?'),('*gH','wp-content/plugins/wordpress-seo/images/local_plugin_assistant.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/local_plugin_assistant.svg',0,',40xlZ,',',40xlZ,','?w0DNݡir$*:F','',0,'?'),('*G!L`l','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/AbstractMultipartPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/AbstractMultipartPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\n|f','*j9Tp?\'맖eAk!.','',0,'?'),('*Ƞ+?Q','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-query-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-query-block.php',0,':^+Yu(p',':^+Yu(p','mSHuL0\0CD^M01I=5A`R','',0,'?'),('* aF4uvU','wp-admin/images/menu-vs-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/menu-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JZY<iYb','\'FєE\07ɡ#>sePض','',0,'?'),('*G!U^C._d!9','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php',0,'!$GF','!$GF','`~\ZӼ)8p/d7O','',0,'?'),('*Nt~.}','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php',0,'=:^֌g[yn','=:^֌g[yn','Gf+a$sJvĔNH','',0,'?'),('*PωZp4\"/U','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/IdnAddressEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/IdnAddressEncoder.php',0,'k<~P\r1U5an72','k<~P\r1U5an72','*A`ĺJ`]Kr2','',0,'?'),('*TǚqG6RH','wp-includes/blocks/site-logo/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yt۩BX','|8(\':={;AZ`\']Eh	','',0,'?'),('*V.XZ_C[AԀC3','wp-includes/js/dist/keycodes.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/keycodes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J_I*+KɞC','.2 kR^ =kSi}%mZ:','',0,'?'),('*W%2Y','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ץk6\"W\'ۀIH','Nབtf\ZwSmdv2~','',0,'?'),('*]qY8G,l','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}?\"ү:rս','LS\'-ґᖄ%en\\مWk','',0,'?'),('*n@na','wp-content/themes/kadence/assets/css/src/elementor-cart.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/elementor-cart.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TO;(a0rE','}RzN})_C\0\\JIxű','',0,'?'),('*%Mn]dSv','wp-content/plugins/kadence-blocks/dist/blocks-advancedbtn.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedbtn.asset.php',0,'Ȑ(9M\0','Ȑ(9M\0','LI\nrogD\"/TH/4S','',0,'?'),('*v%%XTqDa-','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/Test/TranslatorTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/Test/TranslatorTest.php',0,'I-4ܜ/kcۛd','I-4ܜ/kcۛd','¢	1J$^UF|1VC','',0,'?'),('*\0GFkI','wp-content/plugins/wp-rocket/inc/Engine/CDN/CDN.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/CDN.php',0,')YFh	2',')YFh	2','=dy})!KITcF@C','',0,'?'),('*fEH=0C','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/ActionMigrator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/ActionMigrator.php',0,'wT1\"n-','wT1\"n-','d(:{@	W	j!8}F+','',0,'?'),('*xZ\'_k`','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qa*L%\\O60','K\r.i,Y\\NSg{ MZ','',0,'?'),('**W852~','wp-includes/css/dist/reusable-blocks/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/reusable-blocks/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\'\'\0','.*W7MsdC?sLxCVz/m','',0,'?'),('*h0f?z','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/LogMigrator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/LogMigrator.php',0,'ٻxd䬖i;','ٻxd䬖i;',' 飣C05w\rX`%\"QP','',0,'?'),('*-3uE[O#','wp-includes/images/down_arrow-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/down_arrow-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Mf','w\0qpq5T#\\','',0,'?'),('*Tdp`)\nƿ','wp-content/plugins/wordpress-seo/src/services/health-check/runner-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/runner-interface.php',0,'P^N@','P^N@','>/ɬRyZDIz?ꋧHw\"z','',0,'?'),('*b*ee','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\\8zM~.','vR\0S~[\rҮ6o:Ś\r]','',0,'?'),('*Lm&&2\nb','wp-includes/js/tinymce/utils/form_utils.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/utils/form_utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';RTj鍉\n','ꚅ\rgH	K>醶%2','',0,'?'),('*`Uz]\"L%1','wp-includes/sodium_compat/src/Core32/HSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Dzxǂ',',E{0/maXi','',0,'?'),('*&C:[r9N','wp-includes/sodium_compat/src/Core/Base64/Common.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Base64/Common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pefi\'jW','6UmЖ%?MSA^=X|U','',0,'?'),('*kP.1','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php',0,'f?*85wn','f?*85wn','mh!z&!\rD|rx\r/BPOS','',0,'?'),('*\Z07ѥ1Oَ8','wp-includes/js/json2.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/json2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s{N|EO0','q3..j G\\RnݼI/T-','',0,'?'),('*	ą\\','wp-content/plugins/wordfence/views/options/option-toggled.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Du\nLE','L8M0=Ykb|59b+z:4','',0,'?'),('*~EQ!','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_AdminView.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_AdminView.php',0,')#<3._c',')#<3._c','s mF0B(\rЧ]\rk b','',0,'?'),('*y|>+','wp-content/plugins/kadence-starter-templates/dist/images/business-bg.3e0a5bf3.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/business-bg.3e0a5bf3.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ݪ\0qk@','AC5!7r7!)XhdW','',0,'?'),('+	GHހ%C','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/index-https.html',0,'N|BD*d','N|BD*d','SBX@c\nfxa','',0,'?'),('+(-V&S_2X7f','wp-includes/blocks/paragraph/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','::p7I','\Z7˖r3e04x<O?7$\r2','',0,'?'),('+,\"#}JYo','wp-content/plugins/wordpress-seo/src/conditionals/wincher-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wincher-conditional.php',0,'ߣzf9h~','ߣzf9h~','H`1L=?,Zf4]\rEյ$-)n','',0,'?'),('+\Z#(ƒv','wp-includes/blocks/comment-template/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pF`G~m','WGȌ{kh_fW=}TUۿ','',0,'?'),('+9[BUEe','wp-admin/js/updates.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/updates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ޅ}Ɨi-bݸb','Zm\"o\0![2NdQ2','',0,'?'),('+@m;RL	mn\Z{','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/RetryableHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/RetryableHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8qz`X','jCָp(lk3W4/eTy-#\Z>@','',0,'?'),('+AK\0X\"$n5','wp-content/plugins/wordpress-seo/packages/js/images/Yoast_icon_kader.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/Yoast_icon_kader.svg',0,'Bѕw C','Bѕw C','\\痎<\r遷%_8[ެFW','',0,'?'),('+A#)՝xnH|7Ⱥ','wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-3-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-3-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ĻNT8T2','Җ|ZFsMŢf_<w㩇','',0,'?'),('+X`X{p<j.','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-countdown-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-countdown-block.php',0,'1ݎS᣿','1ݎS᣿','g8\"פ@oex%y3͟\Za9','',0,'?'),('+\'ǹ(4!OW','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Operator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Operator.php',0,'R#3\n','R#3\n','~v6Y2MsqMlʛ','',0,'?'),('+X-B\rE','wp-content/themes/kadence/assets/images/fonts/gilda.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/gilda.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k_ 1[Wfu','x!M','',0,'?'),('+hg۩WW','wp-content/plugins/duplicate-post/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tnAZ\0Ԕ','bt	(WMQ|<\"Gn5.','',0,'?'),('+G*#f','wp-admin/network/site-info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\\@]=','h|)=\Z$x+%l!>[','',0,'?'),('+\ZDZe}','wp-content/plugins/wordfence/views/onboarding/plugin-header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/plugin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6EiXl(%A\\a','PRlՙg\\@EMYs\0','',0,'?'),('+UfwS','wp-content/plugins/kadence-starter-templates/dist/images/ai-modal-starter-intro.e746a316.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/ai-modal-starter-intro.e746a316.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rCBWP*q&\nv','Ρ}˔H6)Nw^.z36|n','',0,'?'),('+Hj~','wp-includes/blocks/read-more/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$\\\nu\"ʵ\\t','B)Nӑ4T	>4$9m+','',0,'?'),('+ٰM\ZRt','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/InvalidArgumentException.php',0,'?h5wf','?h5wf','CV#bQ@1l䅥?bO %yp\ZC_','',0,'?'),('+t%R?','wp-admin/network/credits.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B+KVe=','WNhK2ZFW\r08J5','',0,'?'),('+ѡNY*\n','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-switch.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŀ_XUA^Q?','RǨ*m5u˔Nl$b:=i','',0,'?'),('+bI=qY','wp-includes/blocks/freeform/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DJXt9f@','гv$<P!ݟjH\n^\0v\r9q(','',0,'?'),('+ّe<=s,K','wp-content/themes/kadence/assets/js/gutenberg-notice.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/gutenberg-notice.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g곛dh>*s','t\rm+B\0q:Όnzd\n)9','',0,'?'),('+ަkUXEh','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-meta-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-meta-watcher.php',0,'߾nE>E','߾nE>E','`&?Ş6.Y%8ӹFt','',0,'?'),('+\Z+˪\'nk','wp-content/plugins/wordpress-seo/src/helpers/score-icon-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/score-icon-helper.php',0,'BtCrlQͺ','BtCrlQͺ',' \0`Ug$4xu·kl/c','',0,'?'),('+pY.Tͥ%Q0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/RfcComplianceException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/RfcComplianceException.php',0,'.\nW$x,L<','.\nW$x,L<','G;;މ©4@֑E3W|L','',0,'?'),(',\0joխw1.pƑ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Last_Send/Last_Send_Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Last_Send/Last_Send_Subscriber.php',0,'VօLybDT.','VօLybDT.','+ 4RR`Vկs5=-DY=A.O','',0,'?'),(',U>UvںB','wp-content/themes/kadence/inc/customizer/react/src/common/color.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/color.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>>2T|Ky\n>T','Jڵ]\'/b~VUqI,dsE*V>]','',0,'?'),(',\ZJ\'AWh','wp-content/plugins/wordfence/views/options/option-label.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'`a ','yDFR#\\\\F/G%RYx!B6a','',0,'?'),(',8ФyRh','wp-content/plugins/wordpress-seo/js/dist/externals/analysisReport.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/analysisReport.js',0,'b{Ѩ\ntKv','b{Ѩ\ntKv','bM\Z˖Df2\Zwe`4b,XD','',0,'?'),(',X^^wX','wp-content/ai1wm-backups/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/ai1wm-backups/index.html',0,'A-pޜ\r͈V','A-pޜ\r͈V','=+O²2E[VOD','',0,'?'),(',\Zׇ{]~ţ]-i','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/RESTSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/RESTSubscriber.php',0,'4EhMY߹9','4EhMY߹9','>fL%]εSnFxDLNf>xb','',0,'?'),(',< ?C]0A','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͶU裦h','ehӧ&έA3+WTh\n\Z)?','',0,'?'),(',=(?Hl&','wp-content/plugins/wp-rocket/views/settings/navigation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/navigation.php',0,'NwwH\'ߖ','NwwH\'ߖ','HtZl>2JEPªk,m+b','',0,'?'),(',F\"ݍaOr2','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ihta?Bp.\0(','1\"szwT\\\n6V','',0,'?'),(',G4F\\*X','wp-content/plugins/wordpress-seo/packages/js/images/star-rating-star.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/star-rating-star.svg',0,'\'(A󎔜fpH','\'(A󎔜fpH',' e~aEJ<WVb.$x*/l','',0,'?'),(',GVG^s68N','wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-control-import-export.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-control-import-export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','שn|E','dk0;7{+|Z݈vBA+(ar','',0,'?'),(',I[RRU<B','wp-content/themes/kadence/assets/css/src/givewp.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/givewp.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ni<a^.','R?MW/4W[,\rrm5oU@','',0,'?'),(',IpUwbA@#','wp-includes/blocks/spacer/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','64g1)b','SWli\"k0ML[T','',0,'?'),(',LDpZBs','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bpG~Ac_','gM2%ETߦ2K~h0','',0,'?'),(',R3Z9iG','wp-includes/blocks/search/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O1f43Ѽ_0','}+{Ȗ19D\0W0S(\0sj(%%p','',0,'?'),(',Xm}ΏƐ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Logger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'{0\nW|','\0\'CQ)&o\09-bvI','',0,'?'),(',]\'N%ݑUeT)','wp-includes/js/dist/annotations.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/annotations.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FDH05/','B;~!ёTWBk~z;K睝 hL','',0,'?'),(',`]^CYea-','wp-content/plugins/kadence-blocks-pro/includes/form/admin/kb-form-admin-entries-table-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/kb-form-admin-entries-table-list.php',0,'kT!(','kT!(','SЖvtVm۫Uk','',0,'?'),(',`I{TNCu','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpClientState.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpClientState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OBa','|SSF\\k&3\\N?dK\"','',0,'?'),(',dNe8\"','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJar.php',0,'ho-\0Hp}','ho-\0Hp}','8l\ZRMA+`1rOJCǚ2)','',0,'?'),(',h^【+_&','wp-includes/blocks/comments/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Н#ѐ\nl','vwA*N`6.ai>\rZ	\04h}X','',0,'?'),(',zeY#uJ~[P\r','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' OpR{ҵGݍ','Y:BP5Ms_.ن֎','',0,'?'),(',{pO3b/م1','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-available.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-available.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nNT7%MIq\"','t_G՗\03f\r1<Q)J\0HȢ','',0,'?'),(',@hjqrޒ','wp-includes/ID3/module.tag.id3v2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.tag.id3v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&&<~}1','G>A0D4\Zߦ5S9h','',0,'?'),(',hɃs?4B[^՝','wp-includes/SimplePie/Cache/DB.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/DB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wM\rʍ|D','g#]\"h0Vq)0j%I','',0,'?'),(',Fb0L;','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/AbstractNoCacheHost.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/AbstractNoCacheHost.php',0,'SV4b!IԀ]z','SV4b!IԀ]z','|ހ>Iȴ%P=WMW','',0,'?'),(',ʄ}zU','wp-content/plugins/wordpress-seo/src/presenters/webmaster/google-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/google-presenter.php',0,'Z\'#µu_','Z\'#µu_','2de;piM<ı9~7&V]m','',0,'?'),(',xly\'e[','wp-content/themes/kadence/inc/customizer/react/src/color/color-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/color/color-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!KpN>D֨','\0k\\(CPq9N̉','',0,'?'),(',!BzJW','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/uk-cookie-consent.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/uk-cookie-consent.php',0,'|/.!k*n?0','|/.!k*n?0','ңOUTW/Ziqi','',0,'?'),(',ګ\0ʄg{','wp-content/themes/kadence/assets/images/icons/credit-cards/maestro.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/maestro.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':J^{:*pPR\"','kRTP	B?Tţ d=\'5Zi','',0,'?'),(',8RAd','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageInterface.php',0,'k4x7.(V2#T','k4x7.(V2#T','5ej^*u@mrY=#/','',0,'?'),(',m\ngZ','wp-content/themes/kadence/inc/customizer/options/header-secondary-navigation-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-secondary-navigation-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n)\\\"','bNOp1&rvì+S1<','',0,'?'),(',׉ A6xV ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php',0,'}),+yL','}),+yL','VKfW	kiI\'8g/MO','',0,'?'),(',eȈ9W\0[m','wp-content/plugins/shortpixel-image-optimiser/class/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller.php',0,'	JF=* ','	JF=* ','qi$y_pї5-/O}-\0gX','',0,'?'),(',H~fj=~R:','wp-content/plugins/wp-rocket/inc/deprecated/3.8.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.8.php',0,'3lVup6H|','3lVup6H|','nJ:cgn(zfӡ?{.t','',0,'?'),(',?gTNI','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/Weglot.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/Weglot.php',0,'EȫU-6O8','EȫU-6O8',')&[xhbߑCTN0ez','',0,'?'),(',(X\'%Z|','wp-includes/blocks/group/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Q*&D\\','qmVPkP\rF,~3,F-','',0,'?'),('-#5z\\[,','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<fbx1*v','r|x1sI{)66a/5Xj','',0,'?'),('-TQg]_^','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/RuntimeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/RuntimeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hx	\'R,','7fp7&wCw곴JmeHe','',0,'?'),('-˙[gpER̋','wp-content/plugins/kadence-blocks/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_real.php',0,'ssN(U\"','ssN(U\"','Mnމ>圶g\0,U[:*|','',0,'?'),('-\rY~\nhx%w=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php',0,'bYM3n=\n?[b','bYM3n=\n?[b','H)h\ry\Z֪Wӿ;Ԙ>','',0,'?'),('-;!2','wp-content/plugins/duplicate-post/src/handlers/bulk-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/bulk-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c_ܲd·','I2S)~?ȿ1$VS4','',0,'?'),('-*|ǣٹ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/adbario/php-dot-notation/src/helpers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/adbario/php-dot-notation/src/helpers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qZ<5=o','/O,![R5LGXH\n&MU','',0,'?'),('-TaP?0et','wp-content/plugins/wordpress-seo/admin/class-admin-init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-init.php',0,'[3\"DhǙ\n','[3\"DhǙ\n','\Z\'.*@I{<','',0,'?'),('-+N|KK','wp-content/plugins/all-in-one-wp-migration/lib/view/common/sidebar-right.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/sidebar-right.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ow\rDg^','\"^%),r\n)<);d','',0,'?'),('--ü$);J5','wp-includes/js/dist/rich-text.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/rich-text.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fDz!\\	',':ǺQ$~/\0t\'~*{|3\"!','',0,'?'),('-=9Ռy,J^','wp-content/plugins/duplicate-post/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e=@MY(','מ-h=T@pg̈́{WN[<r','',0,'?'),('-?g,9i','wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-watcher-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-watcher-actions.php',0,'@yXw\"`2','@yXw\"`2','0!7._B!ULk:Ff[','',0,'?'),('-Gָ(8\rX\n>D','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php',0,']*gwS0egQ',']*gwS0egQ','LӑmbB-_ߌ!(C@^','',0,'?'),('-H\'yᗑaD^','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/LazyloadedContent.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/LazyloadedContent.php',0,'(2[','(2[','kԣQNDyޘM`2(dr\"','',0,'?'),('-O\Z2=S','wp-content/themes/kadence/inc/customizer/react/src/variables.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wbNyE','VH\rT}	͈-Yz%MA\0	','',0,'?'),('-\\[Jץ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','١\\rV;$Ist','1<7Ap40VPb#;T','',0,'?'),('-]AvH$F','wp-content/plugins/wordfence/css/wfselect2.min.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wfselect2.min.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zi\'Rh','o-:ʔ0csuѹQ7','',0,'?'),('-azўf1k?i','wp-content/plugins/wp-rocket/inc/Engine/Admin/Metaboxes/PostEditOptionsSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Metaboxes/PostEditOptionsSubscriber.php',0,'R!2KIV-J7','R!2KIV-J7','ns,+ț^0','',0,'?'),('-jާ ~hyb','wp-content/plugins/wordfence/lib/menu_support.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AZå3ӹ1v*','+YܣW>A|\r<w!S\"dO','',0,'?'),('-kdϯXw\\7','wp-includes/admin-bar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\05v','cAE@YyŠc!:0\'','',0,'?'),('-l5M¹#/p{֗','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/serializer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/serializer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I&yCwO/[;@','-̾(Ia茫}L~F;0#genR','',0,'?'),('-Ǹ%w=','wp-admin/css/colors/ocean/colors.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=A$ocV','33g(u2-*6{j=Pg0M}','',0,'?'),('-(7G߳K=t','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K_b+7ԓ1','|BptQkrE]OX','',0,'?'),('-_mq+1','wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h㠲ieɡ','IHMp\\Nh\n׈NF=-Z=hO','',0,'?'),('-)75y8cWv','wp-admin/about.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@KuLL','[cN<&ϴLm҈$SJ	\"','',0,'?'),('-_+YnS','wp-includes/js/jquery/ui/tooltip.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/tooltip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MPa\\t	','. +٘sLC\'AdLr','',0,'?'),('-ke(Rxt','wp-content/themes/kadence/assets/images/fonts/oswald.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/oswald.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')~*6ox8','/3\Z80\n+,Mٜa','',0,'?'),('-f4]#\"ul','wp-admin/css/colors/light/colors-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=,>wRzu4d','+!WnX?\")-+8\"]A,D0','',0,'?'),('-eceu(5I\'','wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h74\rka\rP','ȵ6W?ԶuVΒt>t','',0,'?'),('-Be^y$','wp-content/plugins/kadence-starter-templates/assets/images/masks/face-smile-beam-solid.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/face-smile-beam-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$vfFͦ','#U/NVHv\"E4Mw','',0,'?'),('-藂Y{]ns','wp-includes/css/wp-pointer.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-pointer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kh:]w\\cUK','AMj%Uuք\"Zvl=(nH','',0,'?'),('-5tU1Yv	','wp-content/plugins/wordpress-seo/src/values/images.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/images.php',0,',\rw&\"ylu',',\rw&\"ylu','{ @\0ѻn\rm}HFT!','',0,'?'),('-;W&ܽ`T','wp-content/plugins/wordpress-seo/src/exceptions/indexable/source-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/source-exception.php',0,'\0K@CTY4','\0K@CTY4','ugt=mg*ӣ̉\0@_㾅*R\n','',0,'?'),('-@T6bҶTPɈ','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/class-kadence-blocks-pro-dynamic-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/class-kadence-blocks-pro-dynamic-content.php',0,'mD-NGI)m','mD-NGI)m','dCpVE6\nѡ\nI)]3B?:g᭙','',0,'?'),('-z$a\n','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŀݜp','дu!o1O\08nuhp.c','',0,'?'),('-v\r \n\Z','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/BasicException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/BasicException.php',0,'#Zzh','#Zzh',')\'d9ʙ`%-6V=	HZ0N','',0,'?'),('-5@gp5/Nj6','wp-content/plugins/kadence-blocks/dist/extension-image-picker.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-image-picker.asset.php',0,'2w)ctLNFJ','2w)ctLNFJ','q,T1\\S@n[}Z','',0,'?'),('.d0ܯ36{H\'k','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d*D3DPee','=׿G-3e9]FZL','',0,'?'),('.ttK','wp-content/plugins/wp-rocket/assets/js/wpr-admin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.js',0,'BM)Igwt ','BM)Igwt ','xLf\nz .;ȭ0ϼ̏.t','',0,'?'),('.2پw6-YE','wp-content/cache/wp-rocket/atlantagynecomastia.com/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/index-https.html',0,'%2;fi','%2;fi','o	/ܜABp<ܚۭI\"ݦ','',0,'?'),('.@bۑq','wp-content/plugins/wordpress-seo/src/conditionals/headless-rest-endpoints-enabled-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/headless-rest-endpoints-enabled-conditional.php',0,'RpHP@HzRc','RpHP@HzRc','#RqC\\#w} jdњ(^d','',0,'?'),('.V)AR;tUc\0P','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof-integration-toggle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof-integration-toggle.php',0,'nqmOVUYl','nqmOVUYl','{,Ų9 ksi8\ZΟ\0瀝۳','',0,'?'),('. M;࣍_\\T','wp-content/plugins/wordpress-seo/src/presenters/twitter/description-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/description-presenter.php',0,'$>xfgu','$>xfgu','sa1tIb(qrX[m','',0,'?'),('. \0_oE]A_0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K.Aj_mr#i','\'Cb\"B\\NN*r&.XJ','',0,'?'),('.#5[10yV1','wp-content/plugins/wp-rocket/inc/Engine/Optimization/AbstractOptimization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/AbstractOptimization.php',0,'y#%ԞKI+Ut','y#%ԞKI+Ut','A:h#Fm1Cﻇ_l\"W=\r','',0,'?'),('.8a2AP8','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^XM9@D$','M,$7ʄUID;GP','',0,'?'),('.:N$=HUER','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeSigner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeSigner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y%FSR2ȆIDNH\re','hz%s<\"z\'f\rѝr>Tmx','',0,'?'),('.IhU3+B\Z','wp-includes/images/admin-bar-sprite-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/admin-bar-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q8o','*ETsal^pXZ\0','',0,'?'),('.KS\rL˽V1#6bj','wp-content/plugins/kadence-blocks/dist/blocks-countup.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-countup.asset.php',0,'SGs́1(dkB0\\','SGs́1(dkB0\\','\"zdj#LnQ\"JR','',0,'?'),('.R\r*Z\'ߊGRgI','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/AmpHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/AmpHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$*c䘘U','1nmNI]L|	#6Xg+ہ','',0,'?'),('.Zn.T_#','wp-content/plugins/wordfence/css/license/care-global.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/care-global.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kK.ǴU^','2Ʋv{\"S=^!W:C,OJe:9','',0,'?'),('.k;wq','wp-includes/blocks/post-author/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lJ864','^/5Z0%˹B\0SӚCIf<','',0,'?'),('.w\'~d{TJDj','wp-content/themes/kadence/inc/customizer/react/src/radio-icon/radio-icon-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/radio-icon/radio-icon-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pi\nN','>)dLVwȬ~:<r.A$WQ','',0,'?'),('.xϮ7_','wp-includes/js/mediaelement/mediaelement-and-player.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement-and-player.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n.AJ4I','S{hdq(^s\'%a%','',0,'?'),('.@kN?ZQ5','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php',0,'G<eҠ','G<eҠ','VQ%ļ	\ruTf!BMNvq','',0,'?'),('.麉D0uL-c','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BW##','^<4e,\0l\r!d','',0,'?'),('.X7(','wp-includes/Requests/src/Requests.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>EY,Q&r1)','f2>0=^@\"IV)Ra\':/d!','',0,'?'),('.=$.6(','wp-includes/blocks/button/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4{\r]IQ','A`B@UUKtN+B*','',0,'?'),('.i;w\"','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-contact-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-contact-options.php',0,'eI=&AӍf4','eI=&AӍf4','^g*L>80SR%W.5\\t','',0,'?'),('.1J;\r#)','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/PNGConverter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/PNGConverter.php',0,'1׻j<TsΔ','1׻j<TsΔ','c\nMȳ:I$7\ZmMƗJT','',0,'?'),('.E[Jlx','wp-content/plugins/wordfence/images/forward_disabled.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/forward_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_Z?N)Ҋ:5','/<>O&ȕJR݇e}(m','',0,'?'),('.Y\"\Z\r~6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Dلyd%5','o24\'l_妛X900A-\0Aͼ','',0,'?'),('.(blcڟhX','wp-content/themes/kadence/bbpress/content-archive-forum.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/content-archive-forum.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n~o\'2D\ru',',2aVjZtBv;Wrh^','',0,'?'),('.\ZwT\'','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/AbstractCSSOptimization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/AbstractCSSOptimization.php',0,'jHWʿ\Zt \Z','jHWʿ\Zt \Z','p&\\9VG|Ԡ dhn','',0,'?'),('.7fw9Pm@','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0H#IHD','voVYx?\n\n&3c-\r8m','',0,'?'),('.l	K6Y','wp-content/plugins/kadence-blocks/dist/blocks-header.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-header.js',0,'ˑsDIҪkv?L>','ˑsDIҪkv?L>','N)B^\nzZ8.Jf<Q','',0,'?'),('.Ʉm4d|0e','wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-schema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-schema.php',0,'7W-2.1','7W-2.1','h)cL{Kv2D~nn.M','',0,'?'),('.]N?`*oXTQr','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lZWѥN','6?6hO[LȘ:','',0,'?'),('.|GxܣyId','wp-content/plugins/wordpress-seo/src/builders/indexable-system-page-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-system-page-builder.php',0,'2ORṛU','2ORṛU','!\ZםK !5\"μBM4KK','',0,'?'),('.Ϡa?馺W8ӵ','wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˵a2-','j~k\nRr˼\ra','',0,'?'),('.QB4բag','wp-content/plugins/wordpress-seo/src/helpers/redirect-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/redirect-helper.php',0,')sZ}od9\" -D',')sZ}od9\" -D','LI,pp[,-\"zYLuHب','',0,'?'),('/	$uyxF\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php',0,':|m5\'U',':|m5\'U','CU0C|5θEdUꤳ=07','',0,'?'),('/^\n\\?X','wp-content/themes/twentytwentyfour/templates/404.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/404.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{P.3^KY','dnђ vѰ~|>t!','',0,'?'),('/☟<9\"o-O','wp-content/plugins/wordpress-seo/src/conditionals/admin/non-network-admin-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/non-network-admin-conditional.php',0,'{gz!:,','{gz!:,','zw\ZaD\\\\hN;,','',0,'?'),('/#\ZW,7c','wp-content/themes/kadence/template-parts/footer/footer-widget1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']s=,D\\+>;\Z','N1y\',&cQo3fm]/','',0,'?'),('/\'lȞCaݟ@9','wp-content/plugins/wordpress-seo/src/integrations/front-end/schema-accessibility-feature.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/schema-accessibility-feature.php',0,'b<ⶰk`n-','b<ⶰk`n-','^&ֻ#z\00=jWџ6E','',0,'?'),('/\'\0PjQ5.E','wp-content/plugins/wp-rocket/inc/classes/admin/class-options-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/admin/class-options-data.php',0,'Nbl? {WH','Nbl? {WH','3\nz8d+nҨXc	\n','',0,'?'),('/*:o>t','wp-includes/js/dist/autop.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/autop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZxyYFv','{/Pt{N0dgc5~OYm','',0,'?'),('/<ا^ɼf}\"$','wp-includes/images/media/document.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v48Αy6d','ø`f	I$ _ZX\"0\r,','',0,'?'),('/e%{P#f','wp-content/themes/kadence/assets/css/simplelightbox.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/simplelightbox.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ltD)ʥ0X','^om?r\Z	9s9W~.,T<c','',0,'?'),('/pdfG]nv','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Ui.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Ui.php',0,'wXx~\\','wXx~\\','Fe+yО}HSض:dz','',0,'?'),('/sf{J*FJ]','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/DismissStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/DismissStorage.php',0,'#-','#-','D8y,\0P𾻩X\r,<','',0,'?'),('/yCp','wp-content/themes/twentytwentyfour/patterns/template-home-portfolio.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-home-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xh=\"v','QǥX4usYVƅ:','',0,'?'),('/[ؤxbo','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Th\Zdi[\Z','a˛ďyeQM\'YCaP','',0,'?'),('/}js`P5lO','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','En746B','	G$Krl\09^Uds','',0,'?'),('/`۵ؚ!(','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/style.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o7%t)[','i6uv)&GO({x','',0,'?'),('/4`ͺ!pȄ5A','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php',0,'a5dxaAr','a5dxaAr','cj̀iD\rF\'܈s','',0,'?'),('/sC4','wp-admin/network/setup.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	wTA;}Ad','韌\'MN+ƺRg','',0,'?'),('/Ӝ/o','wp-content/plugins/shortpixel-image-optimiser/class/external/uncode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/uncode.php',0,'bȩ	(@hh','bȩ	(@hh','@I+i.(^4w^mS^g\n','',0,'?'),('/a\0\r[fkn','wp-content/plugins/kadence-blocks/dist/extension-kadence-base.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-kadence-base.asset.php',0,'|\0BɎCs','|\0BɎCs','5bdl2{*b52ޛo(G','',0,'?'),('/k}ǌKkE\0','wp-content/plugins/kadence-starter-templates/assets/images/masks/diamond.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/diamond.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l4<-ENOY','D#m93ӑ]{4kv*/`,','',0,'?'),('/鹠ΰ1iw','wp-includes/images/uploader-icons-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/uploader-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&-OÕ~','r\0\'_>6QW4ڠR','',0,'?'),('/fPj>X','wp-includes/sitemaps/class-wp-sitemaps-renderer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=^-|','*k$xFҟ\'qV<[7!','',0,'?'),('/MZ(fh','wp-includes/Requests/src/Exception/Http/Status411.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status411.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ױ4IcIv\n\Zh',' oz^|}o\Z@7C	;9/D	F','',0,'?'),('/5SQU۶v+','wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2hVZ','җ$TW(\r]5F(pmU','',0,'?'),('/gf65#醱c\n','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/IOException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/IOException.php',0,'v6TiF\'R(~','v6TiF\'R(~','Kҗ\Zyׇʻcw	t98A','',0,'?'),('0	!so,4','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ElggInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ElggInstaller.php',0,'M8B9QT','M8B9QT','YyvЏyeBV0L9k\0','',0,'?'),('0/l;\\f','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/AbstractPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/AbstractPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u53؃@ ','22ざYMErFvd\07','',0,'?'),('0\ZJG','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/semrush.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/semrush.php',0,'vVΛb 6Xy','vVΛb 6Xy','^ZsH;JPH#+x;','',0,'?'),('0)-\rٔ)n','wp-content/plugins/wp-rocket/inc/functions/api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/api.php',0,'A1ƛY^NS','A1ƛY^NS','_\\2tPj`M? cf\nRz','',0,'?'),('07]Wܯ\0U','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-inclusive-language.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-inclusive-language.php',0,';A(KZ\'7;',';A(KZ\'7;','$<o͛pܣ\'DH\n','',0,'?'),('0<lڿJ','wp-includes/js/wp-backbone.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G	1Y!z ','\"I`I:	OX7ꆼ)2','',0,'?'),('0?\r<Y*5e5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php',0,'[le0?䴨','[le0?䴨','/XɰE.Ur^Zod˨B ','',0,'?'),('0Bjf^P]^pC','wp-includes/images/media/default.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/default.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̉\0x۟#ZeI4','nmfe{|8M>X60\\O','',0,'?'),('0J?!slޠe','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E͆k@>R꿷','sիWUVil\\\'#bU','',0,'?'),('0R\'f6C\'ё','wp-content/plugins/kadence-blocks-pro/includes/templates/form-auto-email.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/templates/form-auto-email.php',0,'yhw3K','yhw3K','^^gW_>Qs0a<$lMsKi2軀h7','',0,'?'),('0Y.q~D','wp-content/plugins/wordpress-seo/src/helpers/twitter/image-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/twitter/image-helper.php',0,'m,Ue&q','m,Ue&q','єHfɰ\0FTw0^cO8','',0,'?'),('0]qK\'fx','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L{p׶Ҡ','m澑[S3\'J*Stsj','',0,'?'),('0gf<\\M+==','wp-content/plugins/kadence-starter-templates/inc/class-template-database-importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-template-database-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Q-\n]4','αue=zWFRhV{!/H','',0,'?'),('0jVƽf:5`\\','wp-includes/js/customize-selective-refresh.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-selective-refresh.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3D՜Y*V%>','/Nx~jwPYWrO^ZqQ\Z$','',0,'?'),('0m Ċǡ\0R','wp-content/themes/kadence/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MǿɐuxN','QF[4;~Ɔ.9]\"v[X','',0,'?'),('0xhͭK3T','wp-includes/class-wp-fatal-error-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-fatal-error-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7@^	<W','`ơTQaf	u-,Ztf','',0,'?'),('0aOZI|I','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WHY ²','zI]_ǲ!bш6duY3','',0,'?'),('0YVJ!4z\r','wp-content/plugins/wordfence/modules/login-security/css/ionicons.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/ionicons.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ƣٿc;z','NJs@3	:h)7K<\\N+','',0,'?'),('0G2DeKd\\9(','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WPEngine.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WPEngine.php',0,'\"J\\\"/7','\"J\\\"/7',':^,]	~u	KlY','',0,'?'),('0k ?ޞ','wp-includes/js/jquery/ui/effect-scale.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-scale.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y[YyqD;','9R/O@\"ARܬv	TJnZ\\','',0,'?'),('0<K}ׇ','wp-includes/blocks/image/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',/8NͼsT','r(bŒ;NH亜T`|','',0,'?'),('0E\00XH','wp-includes/js/colorpicker.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/colorpicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/kFxq','T@\"$:	GLB}2PHR ','',0,'?'),('0s䑸¹L~i','wp-content/plugins/kadence-starter-templates/assets/images/fonts/proza.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/proza.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	,M0Ocz','fǼz8JWM޹\r\n!PV㟝','',0,'?'),('0+]c|ND=','wp-content/plugins/all-in-one-wp-migration/lib/view/main/premium-badge.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/premium-badge.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B(G0','YxRDJ!E	ے-JeM','',0,'?'),('0m&\"5 µT','wp-content/plugins/wordpress-seo/src/context/meta-tags-context.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/context/meta-tags-context.php',0,'[0,J','[0,J','gq$!XAILB}{}͑3׋','',0,'?'),('0dۦZP2o','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xMg_zv7I',']/r^Q@떱w#4!','',0,'?'),('0іH⌌ڤ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Drivers/LocalStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Drivers/LocalStorage.php',0,'ɮ`Pܩa~.','ɮ`Pܩa~.','c\"~ 6a3hV.xē#\'h\'qg7','',0,'?'),('0jB^2','wp-content/themes/kadence/inc/meta/react/src/layout.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/layout.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UT\"ГԗI','Rzub9X6 ABw,PiiFUr','',0,'?'),('0ZcgQ}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/y%td\"^','h3\\eW%G0=@;%0','',0,'?'),('0$X8FnŃk','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fUEMX`G','E\'Px%,44;k60+K.Q]','',0,'?'),('1\\\'׶:A+','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php',0,'Z{ԞYBA','Z{ԞYBA','YqjKyktL@x[%#Ne','',0,'?'),('1	]AkL>','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/JsonResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/JsonResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u+qU','(#bzCqS,pu)i ','',0,'?'),('1Jd8/|+E','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNoticeRepeat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNoticeRepeat.php',0,'%3A<F#سM','%3A<F#سM','XCN\"5Üfh HtZ6','',0,'?'),('1EϺSFTúE','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UploadedFile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UploadedFile.php',0,'U{ᔎV>p&','U{ᔎV>p&','&b+W(0(.Iӳ٢ܹ','',0,'?'),('1MY.9vzH','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Collection.php',0,'Ho|N\'+d=̾','Ho|N\'+d=̾','bٮ0rdݽELx	>Jt~.F','',0,'?'),('1-g97','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#fG\rւBg 0','c(k12Qw4?0','',0,'?'),('1=Gcz%/c9','wp-content/themes/kadence/template-parts/header/base.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+%oa;L:\"','JoK;TTKֽE͆>V}','',0,'?'),('1?ox<?6','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?v@Yapv','pZʇOFM4V92QP\0','',0,'?'),('1B97\nzH','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/index-mobile-https.html',0,'>K骯D','>K骯D','=kdccµe5bD\'މsG`','',0,'?'),('1Zc\n]#N\'`','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ThirstyAffiliates.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ThirstyAffiliates.php',0,' =ؗtZ1I',' =ؗtZ1I','sR[T؆yw2HM','',0,'?'),('1[*;cm:v:k','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';_\nsu`','s׷\'Fz:`n<x0Fv[','',0,'?'),('1s)6ӶCΗ','wp-admin/user/admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T^1A|','Y%մ9N?\\v\\aM~݋','',0,'?'),('1|v<-VA]','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-installation-error-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-installation-error-exception.php',0,'\n(8K	','\n(8K	','\\&:*I0)z։֜W','',0,'?'),('1}l!Dg[/J','wp-content/themes/kadence/inc/customizer/react/src/sorter/setting-item-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/setting-item-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-Ŗ^jۜ9\\','e[x{;Qj\nYiªd)?T:','',0,'?'),('1/	`s;=\Z','wp-content/plugins/wordpress-seo/src/repositories/indexable-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/indexable-repository.php',0,'n\\\\,Uw&>','n\\\\,Uw&>','1\Z,#xZ=-\"ۓ앿O/	','',0,'?'),('1bi\0q*\\X1S','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/disable-concatenate-scripts-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/disable-concatenate-scripts-integration.php',0,'ֱ45','ֱ45','vFBEy@i@\0;EIX z+Wc*','',0,'?'),('1ds]_!e','wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Contracts/Terminable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Contracts/Terminable.php',0,' ):]*t\\',' ):]*t\\','\"(˭93d+2*3:4','',0,'?'),('1fNh%pG}','wp-content/themes/kadence/inc/customizer/css/kadence-customizer-preview.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/kadence-customizer-preview.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ENդ|CT&a9','y\'#UE71H5f_HA*~','',0,'?'),('1e\ne2o','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Optimization/QueryString/RemoveSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Optimization/QueryString/RemoveSubscriber.php',0,'4:üy-\'(','4:üy-\'(','UD\'SrMɁ5>K|y)e\\','',0,'?'),('1pa`H0ߢe','wp-includes/js/dist/url.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/url.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n:z $q;AJH','I?h?W:*d.T깗i`mw','',0,'?'),('1\' i/\0','wp-content/themes/kadence/assets/js/src/simplelightbox.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/simplelightbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':5Q/\Z=\Z','D?Sw=R&%i=rf[:J','',0,'?'),('1W͎XD=-','wp-content/plugins/wordpress-seo/src/generators/schema/howto.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/howto.php',0,'wMڻ8*l ','wMڻ8*l ','\"v?/!f:؂','',0,'?'),('1קm)zq','wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ActionSchedulerCheck.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ActionSchedulerCheck.php',0,'fRq9X7h','fRq9X7h','DuTu$ܘ`zy)um8q8','',0,'?'),('1БY4I^p','wp-includes/sodium_compat/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0?4\'+̶L)$','Y	ORٴ@M=xMK\Z.','',0,'?'),('1EfQv#)\n0EkQ','wp-admin/images/media-button-image.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-image.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m	\'A','iķz[/\" X{o:','',0,'?'),('1脂77U tpz0_','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xJ2oM0].f4','\0VX35@!{&HtS7M&\06','',0,'?'),('1tn0˘','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-row-layout-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-row-layout-block.php',0,'`Pw^e`9ޒ','`Pw^e`9ޒ','+}Z>*LjM1^i=R1/%J','',0,'?'),('1Θ/Y\nҏ\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/views/optin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/views/optin.php',0,'CJʜ3(c-','CJʜ3(c-','C؊Ka9J*','',0,'?'),('1X/t60^Ҁ!7','wp-includes/js/comment-reply.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/comment-reply.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I/,\Z~B|\Z','CY3MlO2|T!Q$=@ӧO$TD','',0,'?'),('2Zvp$x@V','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache.php',0,'ks&=L','ks&=L','2re#xh\0>˯^h6','',0,'?'),('2Jy*m]W','wp-includes/js/dist/a11y.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&uH1YO8:c','sҲ1v2\'OLQ<c@^','',0,'?'),('2bU\0spd0','wp-includes/js/clipboard.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/clipboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sdjI~iT','Q]qFضUJ\"\r/^0','',0,'?'),('2(VEazߖ=','wp-content/plugins/shortpixel-image-optimiser/class/external/query-monitor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/query-monitor.php',0,'?C0^X(1','?C0^X(1','*)AdUVwKQiJL@','',0,'?'),('25D$?R ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php',0,'h?ul_[7	','h?ul_[7	','Px8BuCR^1-U}i9,','',0,'?'),('26?Oh3$,','wp-content/themes/kadence/inc/components/bbpress/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/bbpress/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','13U^s~N3','+eT>VzN#G\'\'#','',0,'?'),('2@jj\0kӲӘ','wp-admin/includes/template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D,\nRհG:','Z,Æ5:szLHpSdSrt','',0,'?'),('2C}>ÿXp','wp-content/plugins/wp-rocket/assets/js/wpr-admin.js.map','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.js.map',0,'Ϝ4j','Ϝ4j','TadFE!j@977%w\0i7B`','',0,'?'),('2D%J?\Z','wp-includes/js/dist/wordcount.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/wordcount.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zd1`6r','5igKy uD,3t)P','',0,'?'),('2Y oq&Z','wp-includes/class-wp-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bkbFMG]m','wVv1[vX\rpG;\0/jd\Z','',0,'?'),('2Za/NP1Tz7','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ModxInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ModxInstaller.php',0,'[k2{\ZBE','[k2{\ZBE','skc1{E]r','',0,'?'),('2f~vX3L','wp-includes/blocks/post-comments-form/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\nvĝ%T߱{ҥ','Rl!0m\\в5жB!\r]~l','',0,'?'),('2glbCdM`H','wp-includes/css/dist/block-library/reset.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/reset.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L害rcH;ˇ','==uX4\\y0$Zj856:','',0,'?'),('2jL,W\rW$','wp-admin/css/colors/sunrise/colors-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','22n$Qi>','GV]Ίhex͑ʍ:_l','',0,'?'),('2r}Vĥ$^n/','wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h^n=(&݂N&','SDIBz_-?(YpEyƹA','',0,'?'),('2z*\0+$RR','wp-content/themes/kadence/inc/components/lifterlms/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/lifterlms/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a,^\rU','e*93uha΀K\n1','',0,'?'),('2}C\ZǏ','wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-2-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-2-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܩjQƳ','XY 90C4HN:$=ʭ*0','',0,'?'),('2nξYN1','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php',0,'gKs=p@w*YQ','gKs=p@w*YQ','[3:bbl?!\rDF','',0,'?'),('2!C|R4ضJ','wp-includes/blocks/paragraph/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Cc.a`л>','+]|1ϣ@O-$','',0,'?'),('2A˻gF~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/InvalidArgumentException.php',0,'ӆtݎM0J','ӆtݎM0J','^j)]3z8CȔP4','',0,'?'),('2DM6\ZB','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UriFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UriFactoryInterface.php',0,',8#U9=ӡ\Z',',8#U9=ӡ\Z','j\nb2FDa{_L+.K2k\r2','',0,'?'),('2|΢(ủtT','wp-admin/privacy-policy-guide.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/privacy-policy-guide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PO1]8\n6','eME9*b68}I^Zz','',0,'?'),('2㺨a|Fl3]','wp-includes/customize/class-wp-customize-new-menu-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-new-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	sL2/B','H\'sӽI$ӦͤX!','',0,'?'),('2v\'9\rz','wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pbD@pG+','*DZ>Bg&YY4(</','',0,'?'),('2x/x7','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/InputBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/InputBag.php',0,' hQBy/',' hQBy/','\rCB`\'bMȁJQ6`Y','',0,'?'),('2Iv{.tsR','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypesInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypesInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ Oeeǀ:z','M\0SUXZ:PlnW-ĴiҮ','',0,'?'),('2:<nwP','wp-content/plugins/kadence-blocks-pro/dist/blocks-productcarousel.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-productcarousel.js',0,'<v!$','<v!$','V&i9 j8\\f)i65%','',0,'?'),('2ģ_Dx','wp-content/plugins/wordfence/views/common/block-navigation-option.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/block-navigation-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O~}t.K','MNF`\r9ӫrP,Q','',0,'?'),('2ӂvm<S','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMime.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMime.php',0,'\"f_uZbes','\"f_uZbes','g+Ieʱ+A\"eAQÝG','',0,'?'),('2*`o#A','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/secupress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/secupress.php',0,'ُ6A^ܜ0@','ُ6A^ܜ0@','rmL\nƷ׹٬','',0,'?'),('2Zs+z','wp-includes/css/dist/block-directory/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-directory/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','նװd^+I3t','مqYg vVTwxm[AUڰ','',0,'?'),('2{OdV6','wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@4mE\"_	H','S\0:%6KXDNS/OV','',0,'?'),('2%|]GTk','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Idn.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Idn.php',0,'`,+V\"0V\\q:','`,+V\"0V\\q:',']c-F;\\[]Wu	\\Qؿ ','',0,'?'),('20mK:r²\\0\nB','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x9/Zh6\n','J<<x?#oJn8:j','',0,'?'),('2?2H`-','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-frequently-asked-questions/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-frequently-asked-questions/index-https.html',0,'#\Zh2`n','#\Zh2`n','4dd,t_%Ac ߦ)֒.9','',0,'?'),('2-\\zKD','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/ftp-storage.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/ftp-storage.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~XXTS','|5ܑJMO,pMMӗV<,','',0,'?'),('2^(ʭ-^x','wp-includes/SimplePie/Enclosure.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Enclosure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\'Gko','Z:\r}nZ`tj!Ll	{bg','',0,'?'),('2Sq&@Uˊۗ','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/APIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/APIClient.php',0,'H\0','H\0','IQTw.wJfPg}.ڣC%','',0,'?'),('2?b-x)','wp-content/themes/twentytwentyfour/assets/images/windows.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/windows.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NaPM`(\r','vjy;`9#ZyTJnd','',0,'?'),('3	҂j䟪\"H','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaFolderViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaFolderViewController.php',0,'קW\ZCƂC\0{\n','קW\ZCƂC\0{\n','ENeAd$&eR','',0,'?'),('3p_;h}','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ecommerce/WooCommerceSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ecommerce/WooCommerceSubscriber.php',0,'W˫?v/|<d.','W˫?v/|<d.','fƲRY\n2:`Dku','',0,'?'),('3\Z-Ғ,j','wp-includes/blocks/comment-date.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rߎxd7M','Jts>A\nNmK@|p&kYN]','',0,'?'),('3%b|p J]','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/ServiceProvider.php',0,'xʦN2F)cW','xʦN2F)cW','oGE(FfskQY]V4g@Hc','',0,'?'),('3+z.6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`*jr ',',a)\"T}vh[7Zo~m','',0,'?'),('35)2K	W','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/backup-scheduler.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/backup-scheduler.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̵1~آ\rM','}w^QMw/(1','',0,'?'),('364gtWo','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-image-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-image-block.php',0,'9RoZ(9}m','9RoZ(9}m','%Ǵڀ:o3Εf{#\n[\ZRP','',0,'?'),('3:A.N#','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Attribute.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Attribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!/}o_BKv','߈8<I<tE0vs-GJZ','',0,'?'),('3C_\\4	\"U|','wp-content/plugins/kadence-blocks-pro/dist/blocks-userinfo.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-userinfo.asset.php',0,'vBH\'!','vBH\'!','<,ׇ*Z`ejG	>50w/!m','',0,'?'),('3JZ+~/7эi','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_CanceledSchedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_CanceledSchedule.php',0,'Ө	zbA̾','Ө	zbA̾','Eguk\r	m\\Qm6\\;W<7','',0,'?'),('3UC%FΈ\"1Cl','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/TablePrefix.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/TablePrefix.php',0,'榳GLE','榳GLE','~ZW̬rbR+Ҋ\06Uɹ','',0,'?'),('3Y#6r\nYp$','wordfence-waf.php','/home/nginx/domains/atlantagynecomastia.com/public/wordfence-waf.php',0,'Ob#%yuw','Ob#%yuw','f0yv@2','',0,'?'),('3^`Ap-*A$','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/NoticeController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/NoticeController.php',0,'dGrrD@.id','dGrrD@.id','sK4^c&=ߩOҶe--4','',0,'?'),('3_pI\0Ygo','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/Subscriber.php',0,'66q\0Or','66q\0Or','*qW,7|:;ť<JC\\-/g̕\'','',0,'?'),('3dΫjK<uc!w','wp-content/plugins/wordpress-seo/src/helpers/schema/article-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/article-helper.php',0,'0\rF\\oʝ\nv','0\rF\\oʝ\nv','Mf}D}Tg{$y6ª\nw\\b+','',0,'?'),('3h\"I+[E','wp-includes/js/clipboard.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/clipboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r8ܞRO@','3>0D2!Jw@Ly','',0,'?'),('3koW5	k[mq','wp-admin/includes/continents-cities.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/continents-cities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^z\rr',',`ĭ$7܁{n','',0,'?'),('3p\\8lDq','wp-includes/sodium_compat/namespaced/Core/Util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';*kLwBd=','ec[dM?H|KY\04@ QA:FF ','',0,'?'),('3zB$\"`H','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-pricing-insurance/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-pricing-insurance/index-https.html',0,'㞲OTsԑq','㞲OTsԑq','8%{Aj<a','',0,'?'),('3z\'OvJ& ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nr^V!RKI',',Fa6?8(7*#0}º@5l=w؅','',0,'?'),('3TLT\rF','wp-content/plugins/wp-rocket/inc/Engine/Capabilities/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Capabilities/ServiceProvider.php',0,';}Yg73u',';}Yg73u','`c\n6s?)N\\邋%bU','',0,'?'),('3\09ZA.','wp-content/plugins/wordpress-seo/js/dist/languages/he.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/he.js',0,'vEJ$֞}2','vEJ$֞}2','S\'Aj·P9z~G','',0,'?'),('3s-1!','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/QueryBuilderTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/QueryBuilderTrait.php',0,'Zd?GW','Zd?GW','Ec#[$=U<׭Znqz	','',0,'?'),('3FNˡ>&v','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/EntryParser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/EntryParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ryr	OKF','ȂHRf.sE~Ch.kޕ^2XD','',0,'?'),('3J%k?','wp-content/plugins/wordpress-seo/admin/views/tabs/network/features.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/features.php',0,'g-%/^˕7Icf','g-%/^˕7Icf','}ow0>j!3}1C','',0,'?'),('3>z\Zs*','wp-content/plugins/wp-rocket/inc/admin/upgrader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/upgrader.php',0,'i$\ZO2','i$\ZO2','1WTaOA,GdqhA/X','',0,'?'),('3uÜSyK','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CBT0','w;p։5n̯,SRcYy)tf9\Z1v','',0,'?'),('3F!zPp:','wp-content/plugins/kadence-blocks-pro/includes/assets/js/plyr.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/plyr.min.js',0,'kr`RF*2;To','kr`RF*2;To','`w[}r\Z/r8<cY8h$;','',0,'?'),('3@]Ɍ<M*','wp-includes/html-api/class-wp-html-processor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y֌N<3I.6','Pќ\0BEj$m\Z	2D','',0,'?'),('3dس','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Resolver.php',0,'ҁ͢{GGU2v!','ҁ͢{GGU2v!','X茇ΊnT1F\r[G.U\\#^YFB)X','',0,'?'),('3rDj}9z Nh','wp-content/plugins/kadence-blocks/includes/header/class-kadence-header-cpt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/header/class-kadence-header-cpt.php',0,'_|,XM}','_|,XM}','0<[0Tם8\"F/L̏͠|','',0,'?'),('3ؗ1=5]۩','wp-content/plugins/kadence-starter-templates/inc/class-wxr-importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-wxr-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zt	H','k%[ePH\Zɒ0Mm>F	CC&','',0,'?'),('3\'RKBf','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QO1/<>%\"X','6r*IY\0C9<Jږ J*xD','',0,'?'),('3fQ3h5[W<','wp-includes/Text/Diff/Renderer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w.֨\"&R<','[9#c2z\\\'?H1','',0,'?'),('3ڬЌ\"','wp-content/themes/twentytwentyfour/parts/sidebar.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/parts/sidebar.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\Zs/,+ƟV','\rj \ni\0NvbOȪ','',0,'?'),('3-1-|JA	I','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UaGLv&<0','y9šd	P^K3Aʬ×&|','',0,'?'),('3औO5(','wp-includes/theme.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s렏jL]n#',']Cӎpcv.\03sv \"','',0,'?'),('36_n','wp-content/plugins/all-in-one-wp-migration/loader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\PO^<mUe\Zh','c՟1n?ΔN+BT㾨\Z','',0,'?'),('3ro?:','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PhiftyInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PhiftyInstaller.php',0,'Z:1K\ZFӦd','Z:1K\ZFӦd','``\\`\0.\nMHx݈s6D','',0,'?'),('3ng\0\\\0	W','wp-includes/IXR/class-IXR-value.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-value.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f>5lj\0f','?h͇ XUPO|H$1','',0,'?'),('4\0W\ng\rP]','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+զSQV\nv;','ɷYzWo)Em%\0f>t(','',0,'?'),('4uo\\S>','wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-init.php',0,'!O 1_','!O 1_','S;^ikP)7s02','',0,'?'),('4\n	m]ĿЊ','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!{\\ d`','ǿ\'ɜLҪB>	&-{','',0,'?'),('4\n2ߵ\"EGÉ','wp-content/plugins/wordfence/lib/wfIpLocator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfIpLocator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rrxB{&&','OoMU-؟\ZrsO}@','',0,'?'),('4ڮRt(','wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\']@]ek+',' a)s©Ck#7f\Z','',0,'?'),('4fmFw\n>','wp-content/plugins/wordpress-seo/src/helpers/url-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/url-helper.php',0,'㾫bAOUH9','㾫bAOUH9','Z+Xn:\0gP\')Taxi?','',0,'?'),('431@*r8','wp-includes/sodium_compat/namespaced/Core/Curve25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','śL\\PڜU','c>5o𽃐_T9L~;e7','',0,'?'),('4\ZAQgH_','wp-content/plugins/kadence-starter-templates/assets/images/fonts/nunito.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/nunito.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}4~v6Ciw','תW\rUw\\:ltcUf|-\n','',0,'?'),('4\ZMP4|co6','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Uncode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Uncode.php',0,'K]-dcHa~','K]-dcHa~','qŏpAcc$J~ɝ.s`Y:4','',0,'?'),('4m6):5tq','wp-content/plugins/wordpress-seo/admin/import/plugins/class-importers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-importers.php',0,'6#6\'ˌE,*	','6#6\'ˌE,*	','|r\'X`yv8r','',0,'?'),('4\'Ċl˲\Z]\"','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Stringable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Stringable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e(\'n~@','$ʧT\'t/ّ.ncDK/','',0,'?'),('42{KXBtrn','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4<|X@','cP3>~C{\"`WUToPF6\nP<o','',0,'?'),('425o=S#','wp-content/plugins/wordpress-seo/admin/views/tabs/network/integrations.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/integrations.php',0,'yFslG','yFslG','O:ߍo!\ZwT','',0,'?'),('48Vt+^X','wp-includes/pomo/mo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ML8Ei','Kg\rşix.>FϷ>㣝/g/F','',0,'?'),('48V?!\\Of\0]','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l`YS&Y礁','W15\nd\\@\'!&w+_x|;','',0,'?'),('4;`߯z?	{Ǟ@','wp-content/plugins/wordfence/images/2fa-whole.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/2fa-whole.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h»$\ZPfX','ƪɝU[Z~^d\'Xٮ','',0,'?'),('4AIn097c`','wp-includes/js/tinymce/utils/validate.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/utils/validate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CL1?o+;{Y','kH;\0kCs	\'K#45+eE|0','',0,'?'),('4D=pg`6zy','wp-content/plugins/wordpress-seo/src/presenters/breadcrumbs-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/breadcrumbs-presenter.php',0,'#qW7R','#qW7R','Y{8	u.6hM<R\00ؑ3','',0,'?'),('4LkiADQ%P','wp-content/plugins/wordpress-seo/src/conditionals/yoast-tools-page-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/yoast-tools-page-conditional.php',0,'Rȶ2pYQr','Rȶ2pYQr','uȵ\'{\02m~w\0a\\zY3','',0,'?'),('4ToiEt','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7s\r>J(E','K(wB$\rs줇!ਿD','',0,'?'),('4V6uf	JKd','wp-content/plugins/wordpress-seo/src/helpers/schema/image-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/image-helper.php',0,'\\MS£ ','\\MS£ ','8rG\'Ar=6eeR;\058','',0,'?'),('4_}\0ʪQ!M','wp-content/plugins/wordpress-seo/js/dist/externals/replacementVariableEditor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/replacementVariableEditor.js',0,'xZ(ԫ^_=','xZ(ԫ^_=','RG@靰[bB+|&j','',0,'?'),('4a_9dN-F','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-folderbrowser.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-folderbrowser.js',0,'4&<;V/5','4&<;V/5','M\"\Z̊,B:Eg]5%cO~','',0,'?'),('4a[I}Hm)','wp-admin/css/deprecated-media.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/deprecated-media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JC\\s_ScZ;','[םr{%m jyҋ\n{','',0,'?'),('4:#RH83[','wp-content/plugins/all-in-one-wp-migration/lib/view/import/avada.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/avada.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ab#Paf\"bŞ','z?\r-_d%redg);;0','',0,'?'),('4qEyVS/o}','wp-includes/blocks/tag-cloud/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':抰	y\'R\"Cc','K Jwb3PO[bge|=w֯Und0R2','',0,'?'),('4ek^Ζ','wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Block_Library_Cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Block_Library_Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','efB\r\\ne$','<p2DO)]޴>Z','',0,'?'),('4˟H<3`xd','wp-content/plugins/wordpress-seo/src/presenters/admin/premium-badge-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/premium-badge-presenter.php',0,'|$J!v&e7(A','|$J!v&e7(A','d?\nR~lU3׋ۖio','',0,'?'),('4^$I	Ic}_p%','wp-content/themes/kadence/sidebar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D([,','-[\\\ZC誯@r0?|u\n\"\\','',0,'?'),('4B嬐\'\'','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpListener.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpListener.php',0,'bw8!Gaf_d)h','bw8!Gaf_d)h','dc9$BRl	QuGf=b1U','',0,'?'),('4At)j-o','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/YoastSeo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/YoastSeo.php',0,'g@A','g@A','î &=_:gwè=\nXVQy]','',0,'?'),('4h@ftcB|\\','wp-content/themes/kadence/languages/de_DE.mo','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e7k\rG_=\0]EJW','!7ZP/$!ԙYp{\Zd','',0,'?'),('4Fo7NH\\t','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php',0,'rU0\r~','rU0\r~','%ի2#!YܙJgtqMʡ','',0,'?'),('4&Q:ͣٙS\\&	Qa','wp-content/plugins/wordpress-seo/src/helpers/author-archive-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/author-archive-helper.php',0,'w#\r¥ec?Pq?','w#\r¥ec?Pq?','p<Nk Ou\">ŪGCƵcw','',0,'?'),('4	I(rQ','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/optimize-arrow-right.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/optimize-arrow-right.svg',0,'.@M`Db$sY ','.@M`Db$sY ','SEi߸wU<2L.H =c{','',0,'?'),('4-	K-x,J','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Tests/Tests.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Tests/Tests.php',0,'СZqc`','СZqc`','97A;~ל-z','',0,'?'),('50J@(\0`M','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-options.php',0,'Nl+S!C','Nl+S!C','lX_hCk}tXnƚ	','',0,'?'),('54ZʗHJ','wp-includes/blocks/rss/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i<kЪ5]W','|>	#\"\\W+pͲ݇؀ڧ1y','',0,'?'),('5\'Ovaj(','wp-content/plugins/wp-rocket/assets/img/picto-wprocket-dark.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/picto-wprocket-dark.svg',0,'sM;#rK','sM;#rK','O\'ݤ,`a\'4[ui4$','',0,'?'),('5d\0ѫqߘ_','wp-content/themes/kadence/languages/kadence.pot','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/kadence.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GFy\n<`','KS?ݖ8lgo1AabU','',0,'?'),('5\ro!Do-','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Query.php',0,'+tleJ *s','+tleJ *s',':6&W\ZSA^O;xR}\\}4','',0,'?'),('5zb@dAc>A','wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml.php',0,'[id_','[id_','@J	H%8FF䳙HW4nU%j','',0,'?'),('51	{FE}x8','wp-content/themes/twentytwentyfour/styles/ice.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/ice.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>@̶d^Y6d|','\\BJi2T@,ƥN׈?&','',0,'?'),('5?y<2','wp-admin/css/dashboard-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','17m (','^ 5\'ݑnBa0	fl}Bg','',0,'?'),('5#umS_j','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\}\"7ڷDZ','.IH\Zg\0H!7`gޠZzȄž6|','',0,'?'),('5(l~HB','wp-content/plugins/kadence-starter-templates/assets/images/fonts/josefin.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/josefin.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?t$$%6','ܮDvH܏*I`\0EۃS㻳!','',0,'?'),('5.=d)<peus^','wp-includes/sodium_compat/src/Core/Ed25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yEF)?4um','qzp5\ZUPP炘|q$/t','',0,'?'),('58d`S61K>ۮv','wp-admin/css/colors/blue/colors-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wu4΁6J\'','+Zu	-.^a]\'K%','',0,'?'),('5C)\nWu꽝/FcK','wp-includes/js/plupload/wp-plupload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/wp-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڌU=vke}','==QqX-jnHŀ>\n','',0,'?'),('5Gx\0V','wp-content/plugins/wordpress-seo/src/images/Application/image-content-extractor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/images/Application/image-content-extractor.php',0,'2oU}mǈ','2oU}mǈ','{x2k	ޓapH-*Bՠ','',0,'?'),('5S{TƁe/','wp-includes/class-walker-page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9=	','j\\yԐ#8\0L\n%{}(I\Zo','',0,'?'),('5VyZimn','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/ServiceProvider.php',0,'<⨺uiQN-m3','<⨺uiQN-m3','ihSKbiR<򃗩љ0_=	','',0,'?'),('5ZSμv`69','wp-includes/version.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/version.php',0,'po^(2	4^M\r','po^(2	4^M\r',']z,O>FZAeqx1g8','',0,'?'),('5\\h>w	N','wp-includes/registration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SD31','ՙvF٫PB8.8','',0,'?'),('5`]\\ͭi\0\ZJT','wp-includes/class-wp-embed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bIF/w/','A\"-nfmË6tYwLkZ','',0,'?'),('5bh*\Z8~e','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php',0,'D}%I','D}%I','\"82*;͕27MoGWIM-{','',0,'?'),('5b3?uaw1','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/ClientState.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/ClientState.php',0,'8M%&\069g~','8M%&\069g~','@ikvS`</QbAW','',0,'?'),('5gEe>G!ө\rT@U','wp-content/plugins/wp-rocket/assets/img/play-hover.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/play-hover.svg',0,'of58hD<)','of58hD<)','z\\j/Aab&\Zyv%M}<1','',0,'?'),('5n~dp$g2&/\ZG2','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')(h	&`3~','eQ=ˇYٴoa	g9ۅbhV','',0,'?'),('5xY&6_Sk \'|','wp-content/plugins/kadence-pro/dist/woocommerce-addons/single-product-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/single-product-options.php',0,'\ZLjW*z씳\Z','\ZLjW*z씳\Z','ՕZpJeX|RϡA','',0,'?'),('5|~Pm8.2$%a','wp-content/themes/kadence/bbpress/loop-search-topic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-search-topic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?yٚbC','p\'nZٌ9','',0,'?'),('592^%<','wp-admin/edit-form-blocks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-form-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`TKFto','<gGvX7.0s0F \'F','',0,'?'),('5!1[A*X@1D','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ˶_U8;6','\Z1c&3=Ǩ}rj\\M71','',0,'?'),('57N	C=-c','wp-content/plugins/wordfence/images/sort_asc.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_asc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&DKzS§0','NQ*TZ%P%jܑtZn/','',0,'?'),('5ߏ\0!(V','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Rfc2231Encoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Rfc2231Encoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nfO\0zd;',':àXS3ƃ3kXu0','',0,'?'),('5zLI܂\n\\','wp-content/plugins/wp-rocket/inc/deprecated/3.13.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.13.php',0,'cW:Ie{8*','cW:Ie{8*','2?3_MJ3pS\r@d&h[d)','',0,'?'),('5\"@P`t','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-general.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-general.php',0,'Uf-EK07','Uf-EK07','}S/Y\'*MDFǏ\n*_\"\Z','',0,'?'),('5GLd3jzTG','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-advanced-form-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-advanced-form-input-block.php',0,'mMS\ZB4o','mMS\ZB4o','գD8p9\n9q|ɬ\\	gABS','',0,'?'),('5#t5RшK','wp-content/wflogs/config-livewaf.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/config-livewaf.php',0,'(\0\n:Έ','(\0\n:Έ','HZ!/8	PD>FP','',0,'?'),('58ej#ȣ;tn','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']V9?C}','q7-Uw!\"bv~?&})A*\\','',0,'?'),('52AQw/{','wp-content/plugins/kadence-blocks/dist/blocks-testimonials.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-testimonials.asset.php',0,'O.~?=_','O.~?=_','\'\'\0פ{Q`2KBepCN?','',0,'?'),('5ϩlJӧ_!-','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Admin/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Admin/ServiceProvider.php',0,'w9D0S\0','w9D0S\0','\r΂ ^3Ne4}','',0,'?'),('5rd8K','wp-content/themes/kadence/inc/customizer/options/404-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/404-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nq1C.G\\','tgß\\[bg$؃7WSƀkDh','',0,'?'),('5YXH7v','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Builder.php',0,'\'yrI\Z','\'yrI\Z','b0xMS\\*^QuH','',0,'?'),('5<8`=p;u','wp-content/plugins/wp-rocket/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_static.php',0,'2\\̎','2\\̎','LUϤ;,;5?1~S.\'','',0,'?'),('5>ka\"H@=','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php',0,'e@G\n8Im[U','e@G\n8Im[U','u\"\r_\Z}^fH?ٞ<PG0','',0,'?'),('5H7F|','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-googlemaps-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-googlemaps-block.php',0,'E+%jsFD5','E+%jsFD5','⃚sCv]Yϐ(͢2tcWפ|','',0,'?'),('6xePXSb&U','wp-content/plugins/wordpress-seo/src/introductions/user-interface/wistia-embed-permission-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/user-interface/wistia-embed-permission-route.php',0,'w/ɖPGE','w/ɖPGE','mr\'/9Rj\\2HºYl','',0,'?'),('6\nQο#a','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/RedirectionException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/RedirectionException.php',0,'M;߁0Tp','M;߁0Tp','VtYT D:S$SgC>>','',0,'?'),('6\rlN1Y\'','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O^t⽉\niTb','>nj&f{a{?GgO','',0,'?'),('6ƱV^qj','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/roswell-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/roswell-georgia/index-mobile-https.html',0,'7s-qȒY','7s-qȒY','yg<d?vniuQ*h=^aL','',0,'?'),('6C@5HYp*@','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/ignored.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/ignored.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qʓӧc','+\0]bsPs_','',0,'?'),('6cMf','wp-content/plugins/wordfence/css/wf-ionicons.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-ionicons.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Alsj⯃','ג4ˮvM`VZ','',0,'?'),('6X/HL','wp-includes/js/mediaelement/wp-playlist.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-playlist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K^Is2ҩQ','z	mE039]-k2[2o','',0,'?'),('6- )j͚:o','wp-content/themes/kadence/template-parts/content/entry_taxonomies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_taxonomies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A\"[%m','沐s\n-iWlsAT0jv0','',0,'?'),('6\"S;llF','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/functions.php',0,'B\'){b\\t!\0','B\'){b\\t!\0','˂~+b\\IeQ9il9{69','',0,'?'),('6(K<7hB32','wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.twentytwenty.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.twentytwenty.js',0,'nYJ5\Zv','nYJ5\Zv','\\2x|_ܬC2;lε\0DS1','',0,'?'),('61Om(/\n U','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I玹i$O\'L6','\0@̟jCEcdƸqE{⤟|qd','',0,'?'),('64AS?j_b','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/EzPlatformInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',0,'Y昣K','Y昣K','n=搦\'`޸5L-','',0,'?'),('6;I(Hm%f','wp-admin/css/farbtastic-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/farbtastic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\n){','T=Y#[vrHiaR','',0,'?'),('6[f9? _','wp-content/plugins/wordfence/images/icons/bullet_yellow.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&ɌԔQ<','1Nߗ׍?*ií!FMp9^.','',0,'?'),('6c\' G!v_','wp-content/themes/kadence/template-parts/footer/footer-widget5.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget5.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9!=y\ZO\nX','X՞ad{e[EA/Y3U\n','',0,'?'),('6cbkki3@H','wp-content/plugins/wordfence/lib/menu_firewall_waf.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m}#`:Po/','(˕=9L/*m,{o7ܺhVT\\','',0,'?'),('6e;j}zkQ','wp-content/themes/kadence/template-parts/content/page_header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/page_header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@@^t񃠏6|','O3S_h5\n=	&(&*ƌu|d!','',0,'?'),('6iD6l)<','wp-content/plugins/wordpress-seo/src/presenters/twitter/title-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/title-presenter.php',0,'60XrrT?u\'','60XrrT?u\'','P&_h;\0HΫ|L)Ŕp/','',0,'?'),('6lZE)N\\ e','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V/Ci~D^Z?:\'',':8UL&O\ZДw4','',0,'?'),('6pz}&Z','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xUX`?rד','98 ?.`vEm=tAz1{| ','',0,'?'),('6s$vrX','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/ServiceProvider.php',0,'7\'J\ni,vҷ(','7\'J\ni,vҷ(','0\'w@5A46tEP/T','',0,'?'),('6~Z~s','wp-content/plugins/wordpress-seo/src/conditionals/user-can-manage-wpseo-options-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-can-manage-wpseo-options-conditional.php',0,'*d vV%O','*d vV%O','|orƹ*{5\Z+{};cck','',0,'?'),('6X*R1c','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSContext.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSContext.php',0,'m+nq&V','m+nq&V','д_o#EKeyb\rlPxY','',0,'?'),('6]jvWk\r3-','wp-admin/load-scripts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/load-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8|=]gY[\0M','%`ĸX&ĲǼ=~~bF]FSDR','',0,'?'),('6ƌC+','wp-includes/sitemaps/providers/class-wp-sitemaps-users.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sHouGk','5JE4߇YoX	#T','',0,'?'),('63ȓ+Ό!','wp-content/plugins/wordpress-seo/admin/ajax/class-shortcode-filter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/ajax/class-shortcode-filter.php',0,'a&ڭHB','a&ڭHB','h!M)|3z=eg/UBL','',0,'?'),('6bC#$\Z	3mu','wp-content/plugins/wordpress-seo/src/conditionals/admin/doing-post-quick-edit-save-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/doing-post-quick-edit-save-conditional.php',0,'Q\'$AR\nT6','Q\'$AR\nT6',')DQ:%`PIuj݄$<*','',0,'?'),('6as<_','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/schema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/schema.php',0,'|q\"	Te','|q\"	Te','Q^~puN	\'Ս^S','',0,'?'),('61mvE=2)e','wp-content/plugins/kadence-blocks-pro/includes/form/kbp-form-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/kbp-form-conditional.php',0,'SbZ','SbZ','nmn+r6\\>ɔwb𰢝c','',0,'?'),('6g	t\njI5','wp-content/themes/kadence/inc/customizer/options/learndash-focus-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-focus-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{uǇʥ','9,\rKU?ݜ+C\0=P흐$','',0,'?'),('6)?\r \'wN','wp-content/themes/kadence/assets/css/src/_buttons.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_buttons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\n$6','25Mkl2y85F8儙c+\'','',0,'?'),('6`5f6?i','wp-content/plugins/wordpress-seo/admin/interface-installable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/interface-installable.php',0,'B\nQI<','B\nQI<','QfjŲyR;cr\"8+','',0,'?'),('6˓_`^\rWm]2','wp-content/plugins/wp-rocket/assets/img/automatic.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/automatic.svg',0,'ws:9{','ws:9{','906^ebm]*@C	','',0,'?'),('68c;ɔK','wp-content/plugins/wordfence/css/activity-report-widget.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/activity-report-widget.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J^x;yc','ӡfaMWv+W%}`DN','',0,'?'),('6lLX/H3X=E','wp-includes/blocks/template-part/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hBu}i','_o=;X#Ǘ;;1w\0u:h','',0,'?'),('6L[)G','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php',0,'؄yۊN\Z|w','؄yۊN\Z|w','ۏ0R?R\nUQǶn̂^~','',0,'?'),('6Np*&','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\r<AUa','fw=t3Păԙi]܃/;','',0,'?'),('6NJE w','wp-content/themes/kadence/bbpress/loop-search-reply.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-search-reply.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s4i5?','VrRXV]\rq}}N','',0,'?'),('6ǉ:2IE3/','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/ProtectedContent.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/ProtectedContent.php',0,':UہAo',':UہAo','?	W<c4*~͘`+MI\Z','',0,'?'),('6̠,_qu','wp-admin/includes/class-wp-filesystem-ftpext.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-ftpext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_qn+\Zv','%a?4Y(\"c&{Sj86	UmS\r','',0,'?'),('6ͫb3\"\0ƴy5zP\0','wp-content/themes/kadence/inc/components/give/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/give/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ٍmg','Nz⊘eI}>b*˥dw4','',0,'?'),('6҈F[N,','wp-includes/class-wp-block-bindings-source.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-bindings-source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ř%pi}','`&GZ9h~wq_.<62,','',0,'?'),('6٨	:{^D','wp-includes/js/jquery/ui/accordion.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xI55kq\"η',')4DHo_U8YNE/Fmm1','',0,'?'),('6WgxB gK\\;','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QKz\'=7^s','2(CeɌ=o,&nEC','',0,'?'),('6pfOlLo','wp-content/themes/twentytwentyfour/patterns/team-4-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/team-4-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3DH4s','0pBԿp y>2vi[H','',0,'?'),('6@V/\0','wp-includes/blocks/comments/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uO!l*O7',':%[*HWwfOCB7&X1','',0,'?'),('6uXoW','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/HttplugPromise.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/HttplugPromise.php',0,'nMujiHv','nMujiHv','F(%`F\",\n\nX !','',0,'?'),('62G\\Д','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php',0,'(5rjV','(5rjV','$\r5C즉Áє \"Q!q','',0,'?'),('6PJ/ݬ|cy','wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-othermedia-bottom.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-othermedia-bottom.php',0,'	O\ZBWQ{7[','	O\ZBWQ{7[','8\0zٿdA[-r$o','',0,'?'),('64oo7!6','wp-includes/blocks/post-author-name.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author-name.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؽj#TiPoPC','l*TC8\"^','',0,'?'),('7S79j','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/DataProvider/MysqlDataProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/DataProvider/MysqlDataProvider.php',0,'TEom0w/Kf','TEom0w/Kf','CqZ/]чJY%+Ҩs2','',0,'?'),('7Y!2>^k','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php',0,'#?-jg','#?-jg','	\rA壜Z)!s\\ֺ@]','',0,'?'),('7\"妿W\rѽ','wp-content/plugins/wordfence/lib/menu_wordfence_central.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_wordfence_central.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QԘ\"dfn ','<O9orEwaofrs','',0,'?'),('7,fpЪtOv1','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php',0,'Ԓ]S=%','Ԓ]S=%','ORWWd^Ϝv͵Y(	p','',0,'?'),('7;l,LQ','wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/AdminBar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/AdminBar.php',0,'B3ԳTDȣ;V+','B3ԳTDȣ;V+','S׃쀕\ZNȨeYH739','',0,'?'),('7AjB@J!ÿ+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P5p°','mV^n*GN@#8o!]z(ă$','',0,'?'),('7C_e	Q0Q','wp-includes/css/dist/preferences/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/preferences/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')%Mv$`','3rKI6!<Nz\r6j\'I','',0,'?'),('7S+ѻxh','wp-content/plugins/kadence-starter-templates/inc/class-template-library-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-template-library-rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hR0$8oY','I<fxRdf*;lpO?Lo.','',0,'?'),('7Y*˓iK\"','wp-content/plugins/kadence-pro/dist/header-addons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons.php',0,'ɽo\rÎ9H','ɽo\rÎ9H','\'sE8Au7Cj2|Q','',0,'?'),('7]8tWt|','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/PathHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/PathHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>KGYoԯA','ysV1,iE3%C\\O΀<T','',0,'?'),('7]@ǶSWG]','wp-content/plugins/kadence-blocks/dist/blocks-icon.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-icon.js',0,'08[n-).','08[n-).','mWYCL:*7+','',0,'?'),('7aVjce','wp-content/themes/kadence/assets/js/src/product-cls.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/product-cls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kZJ5wNw','@d(Xx;9ٌPe*K','',0,'?'),('7cI1A<W<Uj','wp-content/themes/kadence/languages/de_DE.po','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/de_DE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y}R+\"chI','F3vYg\Z\Z\n[>PTGp','',0,'?'),('7m/G9)','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/bootstrap.php',0,'],j0\"\'2^','],j0\"\'2^','slJC6=ތg8R3','',0,'?'),('7oj@J Cȿ','wp-includes/blocks/site-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d][uϒ,','A_*;\Z\n83C_\r','',0,'?'),('7ruF@J,','wp-content/plugins/wordfence/lib/wfDateLocalization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDateLocalization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MZUUE{','}X)89[4\\!H\"\\}','',0,'?'),('7w1J0k','wp-content/plugins/wordpress-seo/admin/capabilities/class-abstract-capability-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-abstract-capability-manager.php',0,'YUq','YUq','#|veӑ0JEBGY:%z','',0,'?'),('7|oOUz\0Ef','wp-admin/network/update-core.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L;G_bu\'\\','v,I/L^ww\ZX12yTɣI~','',0,'?'),('7~ʦ\Zaج','wp-content/plugins/kadence-blocks/includes/assets/js/kt-init-video-popup.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-init-video-popup.min.js',0,'X +]J4\\)','X +]J4\\)','k:T#6GoYHb7w܊O	o#5','',0,'?'),('7ua<(.L՝H(','wp-content/plugins/wordpress-seo/admin/views/interface-yoast-form-element.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/interface-yoast-form-element.php',0,'N{\nG\'\rCjB%','N{\nG\'\rCjB%','T0Vl:\"O uUuSv*^bb','',0,'?'),('7zc:̫]De|','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/TranslatePress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/TranslatePress.php',0,'2<>+(1)','2<>+(1)','D=_kTtIp+/cym!','',0,'?'),('7yA*)[P','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!c𲞣\0Iˊݻ','Hr(JӃgm4ocKCDqsI','',0,'?'),('7VӒ','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-image-picker-rest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-image-picker-rest.php',0,'\rېTK.','\rېTK.','7ȵ31OJwSӱT;D\rBR','',0,'?'),('7%Wy~׹P?x','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lzV6`wmZBs','\r 8&J34бǽ','',0,'?'),('7U\"|kS','wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-base.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-base.php',0,'\0[@bZl','\0[@bZl','L`%<.2\"X9^_?\\','',0,'?'),('7o^l:B','wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Iݶ3S','!MڒޫDwwe(!=ިd,GW','',0,'?'),('7jU}@GdiS','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueue.php',0,'>ź`L.','>ź`L.','T%%Ppa\n_˅ؗo+3M⧞\'','',0,'?'),('7GcHy\Z<:kU','wp-content/plugins/wordpress-seo/src/editors/domain/seo/title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/title.php',0,'&Ey_e7}Y	','&Ey_e7}Y	','-8\"^Zq0Mb=K\0m$s','',0,'?'),('7@r5','wp-includes/blocks/gallery/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*u}nl3n`','ߡ֕6_?\'	Og-]g','',0,'?'),('7\"`3z5+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/Php72.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/Php72.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NM\'yĞ\Z','oCժ)m1BS?#X +l','',0,'?'),('7c¢)Seb','wp-includes/js/jquery/ui/menu.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⼑f u5m','vy弨`cAG7tᱷJA]','',0,'?'),('7c.$P!\"򹚆','wp-content/plugins/wordfence/images/sort_desc.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_desc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<j_ˊR2','*-9.HGO6/L):Cdz','',0,'?'),('75g\0F','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/FacebookTracking/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/FacebookTracking/Subscriber.php',0,'i<x4\Z}#','i<x4\Z}#','4-򼍶݉\\ϕ/+','',0,'?'),('7ϋtd]B?','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/EnvNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/EnvNotFoundException.php',0,'_=&	Wt','_=&	Wt','HSl8<*p3C@	2a','',0,'?'),('7Y|7^\ZVq','wp-includes/blocks/site-logo/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\t2(y','rGvt4:.r{98~rpSs6K','',0,'?'),('7a~i;e^','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AsyncResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AsyncResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B:},w0','9Igk=1i_gB<~7','',0,'?'),('7kXfXmS','wp-includes/js/dist/vendor/wp-polyfill-fetch.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\r]\\8f','-go>n0N3v|w','',0,'?'),('7\'\'LY7,','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/ScopingHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/ScopingHttpClient.php',0,'Ս|h]VeŔ<','Ս|h]VeŔ<','סL~5WϧЗ}`֊ԓR*\'^N','',0,'?'),('72_RD;n','wp-includes/blocks/block/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c_?ÆL%0',']r(d]	ce]WIzGߤrn:H\\','',0,'?'),('7r$TNDDD','wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-google-maps.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-google-maps.min.js',0,'ybP*#_','ybP*#_','\\t}>*(],N+ևcm','',0,'?'),('8%3 \"Sߢ}u','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-select-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-select-block.php',0,'*Xeh','*Xeh','	&n*V=ѩ|H\"<','',0,'?'),('8kǁXU]b{/','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Contracts/Schema_Interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Contracts/Schema_Interface.php',0,'K{_.','K{_.','990Xe\Zf\n*fC-}^ ','',0,'?'),('8W넧j`','wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-archive-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-archive-presentation.php',0,'\ZTxsGX','\ZTxsGX','Sh4~O8uJpC0P\0_','',0,'?'),('88e7Md>CW','wp-content/plugins/wordpress-seo/admin/class-my-yoast-proxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-my-yoast-proxy.php',0,'mnjREN6','mnjREN6','/\n1ZcCE4`D:D,%Yש','',0,'?'),('8=Ia%k~','wp-admin/js/editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ye',': z=:&%@x?	ScS','',0,'?'),('8?6B\rpl2Rx','wp-content/wflogs/config-synced.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/config-synced.php',0,'FȒvQaEa','FȒvQaEa','N<$\\=fQ\Zj\"uh_!b4xpT','',0,'?'),('8ELm\n\Z','wp-content/themes/kadence/inc/customizer/react/src/index.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ou@1','? \\gU]YN 芩ft\\}$	qi','',0,'?'),('8G{\reȴ\'$&9S','wp-content/plugins/kadence-starter-templates/wxr-importer/WPImporterLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/WPImporterLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OINn0]FM','yLI5XI&p僀\r\0zG/љ','',0,'?'),('8VݨJ*kD\r','wp-includes/html-api/class-wp-html-attribute-token.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-attribute-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.WWnjTU','Rs_KqDDMk\rOH','',0,'?'),('8W8ƨrdZ9','wp-includes/blocks/navigation-link/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wXq	W',')ʫ^A:s\r`h%xR','',0,'?'),('8YvC[,','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0>}LQ\0','_U\0]q=Չf\\/	@d\r+v*(','',0,'?'),('8`9p*;p0cAc','wp-includes/blocks/comment-author-name/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-author-name/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oe8l_M\'G2','-|Fl͉dL7O,KV','',0,'?'),('8oORF\'','wp-includes/class-wp-block-bindings-registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-bindings-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oo:\\','6EQ6lzÚmˈʨTN!K2ױRH	','',0,'?'),('8q|alċ\nV','wp-content/themes/twentytwentyfour/patterns/hidden-no-results.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-no-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8KP,','1	d#atv~R!\\gQ/0','',0,'?'),('8\Z+X/{;K','wp-content/plugins/wordpress-seo/js/dist/languages/sk.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/sk.js',0,'|.U;8Ǣ22u','|.U;8Ǣ22u','S|?p\Z-lTpzqV#L ','',0,'?'),('8>\n!H','wp-includes/blocks/navigation-link/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~AחBU','g&@<0^\'<{\n8;^%','',0,'?'),('8R6DHq-{:`','wp-admin/includes/translation-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/translation-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oDT~m\\)}','<h)F s&8_4U͙.S#&@','',0,'?'),('8@)6yg[ysQR','wp-admin/css/deprecated-media-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/deprecated-media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JWt>Um \n','OǢMD#衿H\"#;','',0,'?'),('8*S_ԥ.S','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/LineFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/LineFormatter.php',0,'3	pnt','3	pnt','*\nݴ\'[	5AȷǗZeji1','',0,'?'),('8ÛZEQ$}UPT','wp-content/plugins/wordfence/lib/wfCrawl.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w|u1cF=','-n㘾wȜ!0h.$]','',0,'?'),('8Ƞ[s\rƯ,5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/FrenchInflector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/FrenchInflector.php',0,'#F#c7cjw3','#F#c7cjw3','On3j+\'7`Yڷŋc6k+','',0,'?'),('8̷\0[\'YK','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php',0,'`\'͓<*','`\'͓<*','0ck:O\\!>=d\0O9ȴK','',0,'?'),('8~#K9{u%yR','wp-includes/js/dist/widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u)icuqx|','3\\J$!_d~~5ݢoO','',0,'?'),('8أ[VW\"#','wp-content/plugins/shortpixel-image-optimiser/class/external/pantheon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/pantheon.php',0,'H-9zoe^,','H-9zoe^,','B<%Ze\n{{a61a\Z','',0,'?'),('8M\Z-Rr','wp-content/plugins/duplicate-post/src/ui/link-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/link-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BS)C5\"','d}d}~=<kkZ\Zn1','',0,'?'),('8ۓi::M1','wp-content/themes/kadence/template-parts/content/entry_meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r|kb-7','L\\(ZC1A,`ĸH\n3cW!','',0,'?'),('8B[q@','wp-content/plugins/wp-rocket/inc/Engine/Support/Data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Support/Data.php',0,'\0k\\F_jE4','\0k\\F_jE4','վ~SC+Rqz7҂sgi9','',0,'?'),('8ܞt\ZwNxa','wp-includes/class-wp-network.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\nē&H','z*٘P*ݜ:^BE\"0Q','',0,'?'),('8]*u\0n','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Meta.php',0,'/LF,5','/LF,5','ܤLdT56c0.f쑉Y6gr@','',0,'?'),('8KLf3q;\'','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_MinutesField.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_MinutesField.php',0,'bkQ2','bkQ2','Ԅ4ޚnqӸ$?\rMfP\nTIp','',0,'?'),('9\r5\'X>?','wp-includes/js/customize-preview-widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y}xc&','(]PUP\'L2n\Z\n','',0,'?'),('9Z^k\n5t-5','wp-content/themes/kadence/inc/customizer/options/header-bottom-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-bottom-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2f}2b)ty4','djsbݿaٯU+.5jv','',0,'?'),('9O%Xլ֔','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z4GCz2<\"','0K;h3%l<b6}duه7','',0,'?'),('9ψ[1d{@','wp-includes/class.wp-styles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x$Ϗ/','\rW|Kx}ZgOy-aϷ','',0,'?'),('9$9C]igi\0','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$3 l@qu','W_=;IeYb]H\n.a2\re^:>','',0,'?'),('97IŊ 8nAI','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ModPagespeed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ModPagespeed.php',0,'x0?B@h','x0?B@h','bBgo4Y{s4a<!ڌk','',0,'?'),('9:do\np`Ry','wp-includes/js/tinymce/langs/wp-langs-en.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/langs/wp-langs-en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':w,]^!s','[ l	̚yH-\09P@','',0,'?'),('9>?WVBNd','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DdNO.','S ̀с\Z	_oNv+^LW˅[6','',0,'?'),('9@\\gvүy','wp-content/plugins/wordpress-seo/src/config/migrations/20201202144329_AddEstimatedReadingTime.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20201202144329_AddEstimatedReadingTime.php',0,'2#vXj};2ba','2#vXj};2ba','!&mjÌJċyg','',0,'?'),('9Es+\naj)','wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce.php',0,'XG\nĈ䇬HB','XG\nĈ䇬HB',',fWfѬC?<y,P','',0,'?'),('9L>h9³k\"','wp-includes/blocks/navigation/view.min.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tdU)^kՃ','O\"TwQ=`6vJ\'S+\\Q^','',0,'?'),('9QG\r','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-sort-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-sort-block.php',0,'/dWR;vLH','/dWR;vLH','(*dqY\\\\\ntt','',0,'?'),('9RW\Z]	|Wࢊ1','wp-content/plugins/kadence-blocks-pro/includes/query/query-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-rest-api.php',0,'}%Q7\rtg','}%Q7\rtg','CYJPZ\0veEvu:Ʋ)E7','',0,'?'),('9\\4;J;u~','wp-admin/images/freedom-4.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/freedom-4.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mR%L$輬','zThLS2:#5Ja[vs','',0,'?'),('9^Ԇi\rK}<K1','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpMimeHeaderEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpMimeHeaderEncoder.php',0,'.졙PLKTWv','.졙PLKTWv','	@Ґb4rȝz=ym̋%p','',0,'?'),('9ksB=}TŃc7','wp-includes/sodium_compat/src/Core/Poly1305/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\0n`i>]','q㋵\'NN{QN','',0,'?'),('9wv\r^!C','wp-includes/blocks/image/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɛiiRWC\n','@Hb?_(-t{O>\0R@S','',0,'?'),('9k%\"sX}{P','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Contracts/Schema_Interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Contracts/Schema_Interface.php',0,')\0jP2 Dg',')\0jP2 Dg','*?p$aa,[3:%','',0,'?'),('9ޕ(d6\r)33','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/NativeClientState.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/NativeClientState.php',0,')6~Mq',')6~Mq','GO.?yݫB|j)Obr','',0,'?'),('9} B^?	\"','wp-includes/script-loader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o6;vw%*Se','M\ryW\Z9̀\";НVK7','',0,'?'),('9gT(maR̴','wp-content/plugins/kadence-blocks/includes/icon-names-array.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/icon-names-array.php',0,'ΠD5{pL{OP','ΠD5{pL{OP','v4>ĘQyZ	}\'_','',0,'?'),('9yS	pV6=','wp-includes/blocks/quote/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Un00sC','K[|wb8c5Ua?%˾2ft','',0,'?'),('9oFpM(d','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/InflectorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/InflectorInterface.php',0,',!{J',',!{J','{ $ƛ6n/`L#p&m S','',0,'?'),('9+logؿ4\'Ax','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Subscriber.php',0,'YvPx5)1V','YvPx5)1V','VX}n\\\'ӗ}p2*ߺd╅;x','',0,'?'),('9k(Gb\\ֵ\n?','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ILm2Ep-ĺ','\Zio=a*SB.\\iT%MG','',0,'?'),('9 {b\nJcF=lY','wp-includes/blocks/query-pagination.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b5`	M3a5','TU-n%IeiC7􄏫J}	>','',0,'?'),('9Ce;Y#v|z','wp-includes/blocks/audio/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~R0W@y_','vC~Qk[s2B\nǩza|n#','',0,'?'),('9΂Q]8','wp-content/plugins/wordpress-seo/src/routes/indexables-head-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/indexables-head-route.php',0,'i~kJo6%','i~kJo6%','O=xAp8|-W+/TsHߣV','',0,'?'),('9]8N9y=l*J','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php',0,'\\\0','\\\0','=D|*QIIt$LȉMg6QqS','',0,'?'),('9\\S\r-V=','wp-content/themes/kadence/assets/images/icons/loader.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/loader.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P@1C|:g}8','$V\"67u\"mti^\n#O\r','',0,'?'),('9?D(0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/HuradInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/HuradInstaller.php',0,'g*=c','g*=c','mas$hX	Ma6eA\0','',0,'?'),('9s3SZ,p8g','wp-includes/images/media/text.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zs0ȝQK','g?[D*p8qVѓ>N','',0,'?'),('9kǴ6ꊫ','wp-content/plugins/wordpress-seo/src/user-profiles-additions/user-interface/user-profiles-additions-ui.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-profiles-additions/user-interface/user-profiles-additions-ui.php',0,'c7\n*gH','c7\n*gH','K0HiWmnz-{','',0,'?'),(':{{79','wp-admin/link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>d|2˒*5=','A`\\][9\Z\0d	ZO','',0,'?'),(':|LH6(cg','wp-includes/ID3/module.audio.ogg.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.ogg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9_ډ;F;T0$','Bw~\\0I\Zg|TYdsaEl\'','',0,'?'),(':!\\ZHgsX','wp-includes/block-bindings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-bindings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(A0B;A\'','΀IB\":6rmo&K\r2','',0,'?'),(':96$M/)~_','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/onedrive-storage.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/onedrive-storage.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&~(\nȈT','?}.Bm#)CKdi`F{me','',0,'?'),(':<$0,w\"&e({','wp-includes/class-feed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>yܫ]T','8j2yN!qʩpt\0A2\\Y','',0,'?'),(':<dYD,L֣6','wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-product-editor-checklist-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-product-editor-checklist-notification.php',0,'Vn0o绶','Vn0o绶','[.mqy{FD46KG㴟|#\"N','',0,'?'),(':@$`-Op5xD','wp-content/plugins/duplicate-post/css/duplicate-post.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/css/duplicate-post.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l{M{','+;,~f#\'wp$`$','',0,'?'),(':DJ$hǅ\r','wp-admin/js/customize-nav-menus.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9$qhe)	=','=݁þ;P!G ^Ft\ZͺG&','',0,'?'),(':NqS+Wjth','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php',0,'U*t]','U*t]','s;qv9RtkE','',0,'?'),(':Sۦ=GB0','wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-found-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-found-exception.php',0,'I<#7`','I<#7`','xaBgK1AzVX','',0,'?'),(':c0#-OBϣ\r3','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/HeaderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/HeaderInterface.php',0,'҄j=GC,>L','҄j=GC,>L','P^j#	p?Rˀ5%Lj','',0,'?'),(':fG5ە-vf','wp-content/plugins/wp-rocket/views/settings/page-sections/database.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/database.php',0,';T[;*LP\nD',';T[;*LP\nD','D7Rv75\'w','',0,'?'),(':hO^Y','wp-includes/fonts/class-wp-font-library.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-library.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6?A<Mw*JRJ','k\0lnx	š+\'+:','',0,'?'),(':zΜLlb','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/column.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/column.php',0,'mHFmh5','mHFmh5','pGc\rbX0o\'^','',0,'?'),(':cS>S}','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Processor/ProcessorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Processor/ProcessorInterface.php',0,'PÒ.~,','PÒ.~,','{쒢r0HsF5cTZmN3yw','',0,'?'),(':%H`!\rZ','wp-admin/js/media-gallery.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%gUsbK','OH+ܽg\"{CvFBt1','',0,'?'),(':yY\"bi','wp-content/plugins/wordpress-seo/src/integrations/xmlrpc.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/xmlrpc.php',0,'@ݏ\"M ','@ݏ\"M ','U&]提3<y\',Íqg9','',0,'?'),(':ymr','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Tables/AboveTheFold.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Tables/AboveTheFold.php',0,'NF$0','NF$0','xHX\nw!S\0$쁠d?ϛP','',0,'?'),(':uV_셔}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aqj]w}','Rˀ!ץwm,F','',0,'?'),(':s-(BO2)','wp-includes/blocks/cover/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@̈1','sw<<m	b~\\߶','',0,'?'),(':fYR7M','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^i8zR+\0G','5x \ZWG,z\r\Z_','',0,'?'),(':(9\r [','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/linkedin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/linkedin.php',0,'$]i$](;>','$]i$](;>','<v4Ųd]\0YmgV伳8V','',0,'?'),(':VvP~G)yqgX','wp-content/plugins/wp-rocket/wp-rocket.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/wp-rocket.php',0,'*[>]z>:','*[>]z>:','d2d\nxʍ0n	ܢ_,\rF','',0,'?'),(':)]|tOǔo<','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/AbstractLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/AbstractLogger.php',0,'nmq$d_&4','nmq$d_&4','I	nޥJBNyH;bF\n[\rh','',0,'?'),(':XqݝJ\\5P4','wp-includes/images/spinner.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\nD\noًj˲','zƄ\Z\"n\Zs(U/~7F^','',0,'?'),(':n̣RMti#=','wp-includes/images/media/audio.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','taCA.Z','L>$\noixoj-\nL]G;q','',0,'?'),(';yL/8','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/AbstractAPIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/AbstractAPIClient.php',0,'7Q6A^^','7Q6A^^','Hy$=c֭k$]M~','',0,'?'),(';w*D\0j','wp-content/themes/kadence/assets/js/text-widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/text-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U0RaBȧ3r','Ș[)F8h͖`ks{JZz	[r','',0,'?'),(';bfȖ0x','wp-admin/css/colors/midnight/colors.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s}B\Z6gb7','V3g`O%Nm:gD]<{4Qݚ3=TX','',0,'?'),(';ܒscF!','wp-includes/css/dist/components/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/components/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' -Y*W	\"','fҀ:t DzVPO-A;t|Ƴ-*','',0,'?'),(';7əA','wp-includes/Requests/src/Exception/Http/Status304.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status304.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]:}l\rw','2gl;\0P\'&Ka;Ӫply2\"0$h\n','',0,'?'),(';ij|[*','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaViewController.php',0,'^Z/i\ZN','^Z/i\ZN','/r!Q6d56v9^r','',0,'?'),(';;A^Gs,k,Jf','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',0,'Sb?58Uo&6','Sb?58Uo&6','ZwicbY%f1~({-q3XB%	','',0,'?'),(';!i&Oe\rbN','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/LazyOption.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/LazyOption.php',0,'>ʾ','>ʾ',';YKȤx#5\0rZӶ','',0,'?'),(';1ы#Y_Nt','wp-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޗAP^G٢*','wƎh=SrLeun;%>D3e$:\\','',0,'?'),(';IL:TO','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload-classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload-classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fNޏ=jR','ZǵZ[?񾲫+.r-|&','',0,'?'),(';Q}]]UK}9o','wp-includes/blocks/post-terms/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z^kNұ\Z)','?㷷(s\'˭#l<RTe','',0,'?'),(';RGWؿm7$E','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-tax-display-by-country.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-tax-display-by-country.php',0,'5F9ig8e','5F9ig8e','J3R@?j~0]}JgN):B<','',0,'?'),(';RyhRxK\r','wp-admin/js/farbtastic.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/farbtastic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rJgrTb;un*','M_`9h*/s','',0,'?'),(';\\	va)','wp-content/plugins/kadence-starter-templates/vendor/composer/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),(';fϯR:\'#1mF','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l}g[0w}','W czzW.	`!X0','',0,'?'),(';nCg7$;_','wp-includes/blocks/media-text/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HVKa,q0D','\\UPV,	{}Szc','',0,'?'),(';rMRJ]7','wp-content/plugins/wordpress-seo/src/helpers/woocommerce-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/woocommerce-helper.php',0,'@s7:','@s7:','TL5-S?v9\"JOnP̥7%Ou','',0,'?'),(';;f,\"M.K','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kέf)y˰',';X̓\")G]C[K6C\n','',0,'?'),(';Qߤy\nt.B','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorAggregateInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorAggregateInterface.php',0,'K0[3+C','K0[3+C','`D%% %deǛb','',0,'?'),(';gD%\'?Zu','wp-content/plugins/kadence-pro/dist/scripts-addon/hooks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/scripts-addon/hooks.php',0,'ߐO+\0','ߐO+\0','_=R))!vZ8@4O','',0,'?'),(';EQs]1?ɯ','wp-content/plugins/shortpixel-image-optimiser/class/Helper/InstallHelper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Helper/InstallHelper.php',0,'疄3I0GP;','疄3I0GP;','[K#|[#4A MCZF(','',0,'?'),(';C.4.S<`','wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-seen-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-seen-route.php',0,'muU?lZ/9','muU?lZ/9','e)|<:-`W\\?ovQ\Zj','',0,'?'),(';x5k ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Handler.php',0,'Oqf6C9','Oqf6C9','vUÅ/׽ٹIa\ZmV}D\"狃߻','',0,'?'),(';>oQl>)','wp-content/plugins/wordfence/css/wf-global.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-global.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','練t॥','Ex^z1\'R IqO9b-ȹ','',0,'?'),(';ё]1$>WoC`','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNotice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNotice.php',0,'k/Go#X&','k/Go#X&','TKC?BptCOp.̢Z3s\nhw','',0,'?'),(';v0BK1д','wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+o~Xݓ\0','xXѹ$6UdZ$x&3','',0,'?'),(';G_hT\r\rNy','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php',0,'?[hiw~+,pk1','?[hiw~+,pk1','*1-nhvXVj','',0,'?'),(';пl](CJ','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Container.php',0,'c+Ըds&Lv','c+Ըds&Lv','H3xcUr,}5\\ǭPIS','',0,'?'),(';v`wn','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorTrait.php',0,'K\n#QSn`','K\n#QSn`','03/тwj)(NH]ֺ','',0,'?'),(';#9=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php',0,'{	#C?@;T','{	#C?@;T','oeS`lRL8e\'1~lYD','',0,'?'),(';d+;C?','wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F޿y\0A^E=','ڟݑ2it/WpƆ0_,;','',0,'?'),(';2yTWKsa','wp-includes/blocks/table/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^q%mZ,1','WO)j)Ag3$0$[m','',0,'?'),(';Wct*+Br','wp-includes/images/smilies/icon_surprised.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_surprised.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U-#+0?','cuyXؓAd5[=w>*Spwe._','',0,'?'),(';*1\Zn4','wp-includes/js/wp-emoji-loader.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(BނAXYÅÍR','QJ-\rQWYj2a|J','',0,'?'),(';KB$/$Z','wp-content/plugins/kadence-blocks/dist/extension-kadence-base.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-kadence-base.js',0,'#Gퟛ@nd','#Gퟛ@nd','YT[]zaC>|Ƿk%ѳ','',0,'?'),('<oN@.`{','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Package.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Package.php',0,'j.+}w)','j.+}w)','O{VT(P*.\n\\z~v7','',0,'?'),('<OrrT@[\nE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/LoggerInterfaceTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',!-ۙT/&','-֍|f>E4Ϙiο>2PO','',0,'?'),('<{WN>۰Jh','wp-content/plugins/kadence-starter-templates/assets/css/live-preview-base.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/live-preview-base.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?OJcu4jD','Ȋ9]/\Z52ڟU|','',0,'?'),('<̰]/','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/LazyString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/LazyString.php',0,'unOAl˂','unOAl˂','օ#eFs\0=d㌞\n9y ^s','',0,'?'),('<aR]G!\'y','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ResponseInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ResponseInterface.php',0,'D\0]>0	y1iu','D\0]>0	y1iu','\'xzd(4wd]wvhQT','',0,'?'),('<`7F;','wp-content/themes/kadence/inc/customizer/options/header-social-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-social-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Pod','\08{O}[[ͩJ-(','',0,'?'),('<SH%.Wl/k','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/IpUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/IpUtils.php',0,')3XJz',')3XJz','	ݞ[XPZ\r\\|ΞƘ','',0,'?'),('< jlݝB(','wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-editor.php',0,'gS tEtFV','gS tEtFV','HizYtMc1j|j','',0,'?'),('<>U&V+.%','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/ProcessableHandlerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/ProcessableHandlerTrait.php',0,'ƶ+*X^`YJ\rx\n','ƶ+*X^`YJ\rx\n','\'9W]蔇U<kuos\ZN','',0,'?'),('<DBrO\ZȬr','wp-content/plugins/wordpress-seo/src/editors/framework/seo/keyphrase-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/keyphrase-interface.php',0,'OVV)Ym#','OVV)Ym#','ezr3	@>pm?/NKq#','',0,'?'),('<ES$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php',0,';Tխ%jMvרf',';Tխ%jMvרf','c˃{O_(B&Dy5T\r','',0,'?'),('<FPz22~','wp-includes/js/imgareaselect/imgareaselect.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/imgareaselect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(()3󵕯','q!ݿJӇi\nE5s!\r%','',0,'?'),('<YD-A\'|)','wp-content/plugins/wordfence/views/user/disabled-application-passwords.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/user/disabled-application-passwords.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%tZ)♟V','G͌rA{\r`\rY}~hJd','',0,'?'),('<]LSsXԗa','wp-content/plugins/wordpress-seo/js/dist/languages/de.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/de.js',0,']	dRx=e2/',']	dRx=e2/',']?&wI+ TiP2]wZD','',0,'?'),('<s;q_(p','wp-content/plugins/kadence-blocks/includes/assets/js/tiny-slider.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/tiny-slider.min.js',0,'9Hm@əo$','9Hm@əo$','@ZR̳;,¢L','',0,'?'),('<zEb;xe','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php',0,'oM.vۂQkE','oM.vۂQkE','[7<18LU|S`/\Z{\r','',0,'?'),('<|q|xܲ\\zZ{','wp-includes/blocks/page-list/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(MB_','l[)%=g\Z\ZFtW','',0,'?'),('<9uj!$','wp-admin/css/install.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/install.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I3*\n\06y,','&ϙVx\'>sk()e1|9}+=/A','',0,'?'),('<RP5`','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',0,'¾,_Q,','¾,_Q,','|\"7ZvS.sfY|@e','',0,'?'),('<y9U\rz(B{','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/MailboxListHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/MailboxListHeader.php',0,'n>o6WL','n>o6WL','V6<lWS0$','',0,'?'),('<e5','wp-includes/blocks/block/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uZ`ن^^^6,','`TuCdJm','',0,'?'),('<|O\\E*l','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/ParsedownLegacy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/ParsedownLegacy.php',0,'`Ѕp','`Ѕp','ĈDfl$\0/o#','',0,'?'),('<eQn->\0BճZr','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_SimpleSchedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_SimpleSchedule.php',0,'^y	15d~UhFR','^y	15d~UhFR',';]D5Vo`/_qgyy.!','',0,'?'),('<ޤlK`i','wp-includes/blocks/embed/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1IFe\0MKRr;','׉shMw8_.LIM','',0,'?'),('<hj	44a2','wp-includes/js/utils.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2![pNI5','iII4*{FZanǠ)J,T&g','',0,'?'),('<覢غ-lp=','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Queue/WPQ.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Queue/WPQ.php',0,'FIח,pez','FIח,pez','__[<Y2I-\"6G\Zf','',0,'?'),('<u꿖\ZܜY^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j<]@	4','\r]\"!\'sg=zķQ2NK','',0,'?'),('<q{}I8gs՜','wp-content/themes/kadence/inc/customizer/react/src/contact/contact-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/contact/contact-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IyXDvw!F','MèpD GWN4)սTKY','',0,'?'),('<[-^?','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-dynamiclist-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-dynamiclist-block.php',0,'ġ$Cwйq','ġ$Cwйq','P_Lx,nw@n9*_Ր,H0','',0,'?'),('=Jǰja}LIZ','wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pFt1+',';}\0[\'\rqĥd;#.','',0,'?'),('=+U\'6','wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.min.js',0,'JlK_%)k#','JlK_%)k#','gF\"	!1q<z7Sp1TۅI','',0,'?'),('=0qb~+O/','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientExceptionInterface.php',0,'L{l-+.o','L{l-+.o','Rkk4%&7:Đ5Z','',0,'?'),('=\ZDO3}v','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Admin/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Admin/Controller.php',0,'*o9Bȷ','*o9Bȷ',':DKn.<|\Z(\nerm','',0,'?'),('=f;Vdl\"','wp-admin/css/code-editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/code-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z.y^Ji*','{ I^`\0<<','',0,'?'),('=	]}*<.','wp-content/plugins/wordfence/views/waf/waf-install-manual.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-install-manual.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pmQynRPqؙ','l,\\d.\"bִlzw\\E','',0,'?'),('=F_j1r.','wp-includes/Requests/src/Transport.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\Z\0D\'','bKt1#ֱfEX{KGGMг','',0,'?'),('=J`W<u9_','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorInterface.php',0,'YbاZ-B','YbاZ-B','ڦ6e})1};։0YO*Z,;','',0,'?'),('=S6aXo,2','wp-content/plugins/wordfence/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ln_pBH5!5=(','3-g,ӌ=$g7Ӫ:V10h','',0,'?'),('=a1T$Fw&vI','wp-content/themes/kadence/inc/customizer/options/custom-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/custom-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GDnw(',';F~|r:Onw8?y;$e','',0,'?'),('=e|{?yaL','wp-content/themes/kadence/assets/css/src/woo/_checkout.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_checkout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o^7f\"Q','t4+C !0Vj8.U','',0,'?'),('=fuA><Th@','wp-includes/js/jquery/ui/progressbar.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/progressbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4%\r@6P','uK;T5-dpTS聃O%','',0,'?'),('={|)-!bGݯ','wp-content/plugins/wordfence/modules/login-security/css/colorbox.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/colorbox.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<w\ri컎vL*x','Nb\r̎/?+\'bi\'W$@i\0','',0,'?'),('=Xԋ*N ','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Admin.php',0,'(hl䳨[','(hl䳨[','[ c̍{7qΝ\rfA','',0,'?'),('=&Q1k&J','wp-content/themes/kadence/inc/customizer/react/src/social/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/social/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɗ~@K1(R','1lEiM嘌lirqFjWTU\'','',0,'?'),('=k[4 =','wp-includes/comment-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9DL(','zk\"Eddo\Z2Q?(1/\ro','',0,'?'),('=Ҭb\\vˇG','wp-content/plugins/kadence-blocks/includes/class-fluentcrm-form-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-fluentcrm-form-rest-api.php',0,']QY|%e',']QY|%e',';\r?|~;\'05MC}yͶvd','',0,'?'),('=-bm>Ǆ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uij1\\J\"-','M\nHw$??qsn','',0,'?'),('=Ө\0E','wp-includes/blocks/verse/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ww ~gg','%VZ\Zp7WYVO#o9h9','',0,'?'),('=;{e65','wp-includes/js/jquery/ui/effect-pulsate.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-pulsate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ٸk26?','hR53IDqPQ<仈','',0,'?'),('=F혣ÆK&','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3|xwJuTV','i,0@hz<RQwKdh\"','',0,'?'),('=MRMC7qǝ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/(=e81b)J@','ʠ|B*+X#v΃ K㻄','',0,'?'),('=) U9','wp-content/themes/kadence/bbpress/loop-single-topic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-single-topic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Efa}t','˴*QHWz4TxZtj','',0,'?'),('=噄\nAK(l','wp-includes/js/dist/keyboard-shortcuts.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/keyboard-shortcuts.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\":;6Y_1r{','z\"JL[@a&[x,(!}r3EF','',0,'?'),('=B1\0yUe&','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entry.php',0,'v_=c$\'n','v_=c$\'n','+/qXY`Xi;NS','',0,'?'),('=y^f茛KC','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php',0,'B[ H\\h;','B[ H\\h;','|>M?քcm?Hhgin','',0,'?'),('=[ew\nm\0j','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'2<颍YԹ','>׍(ek::%Vbe?sq#','',0,'?'),('=`G`ǒv;','wp-content/themes/twentytwentyfour/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\0CF','KdY/{W|,$ڞ1Hߌp','',0,'?'),('=a0&','wp-includes/js/jquery/ui/effect-slide.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-slide.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r{Dk?\nj','V6\0-|<uq_7','',0,'?'),('>HDAJ^Q{h','wp-content/plugins/wordpress-seo/js/dist/externals/draftJs.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/draftJs.js',0,'3,fͿ64p񀅾1','3,fͿ64p񀅾1','6ggZN?.\Zsڑu`j4','',0,'?'),('>\Z;ǻ^u)','wp-content/themes/kadence/500.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';@a~G]4|W','2*B:0wʛP5\Z3[3\r','',0,'?'),('>[ g3d','wp-includes/blocks/spacer/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&PG>uY7','s<f7\'7$`~H\r|J@','',0,'?'),('>ZII|a','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/DroppingStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/DroppingStream.php',0,'ܤ\\#\Zy[{','ܤ\\#\Zy[{','v.+.ÿQm^l705\'QauMM','',0,'?'),('>|Cg','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-meta-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-meta-table.php',0,'J~G7c\0','J~G7c\0',',ЉSFU[~93r{M;<','',0,'?'),('>(ZR\Z}','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/ExceptionInterface.php',0,'¯S}y8t','¯S}y8t',']t?o$Vv0Јn{Aկ{B','',0,'?'),('>\'8`\\ݰW','wp-content/plugins/wordpress-seo/src/routes/alert-dismissal-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/alert-dismissal-route.php',0,',(!*Ť	',',(!*Ť	','T9Jnuؔ8\r*u_\ZB','',0,'?'),('>*ӒAZW','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"j\'Otz{Q','?r:F\",O$Yʭ	YJ\nW\n','',0,'?'),('>,|4:2?P6	','wp-content/plugins/kadence-starter-templates/inc/class-import-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')	a5&)~','7^[>VA~`Ja^Ci:','',0,'?'),('>,	\0~th','wp-content/plugins/wordfence/views/onboarding/registration-prompt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/registration-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\@\r.з+','#s-xeC`!Vp݁ѬYډj','',0,'?'),('>5ˏ.y2Q[ڣ1','wp-includes/blocks/block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hy]dR','ZHi+;[\riuM+','',0,'?'),('>56O:#;','wp-content/plugins/kadence-blocks/dist/blocks-testimonial.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-testimonial.js',0,'m}OZJ','m}OZJ','If2lxMU	HXWcvX\Z','',0,'?'),('>B<U\0N&\"+','wp-content/plugins/wp-rocket/inc/Engine/Admin/Deactivation/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Deactivation/Subscriber.php',0,'uB㼻OZ-','uB㼻OZ-','Q}J.WSnshN-cx','',0,'?'),('>GOjPlB','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$]\\','ؚx\"o*I\nQjT(G\Z.\Z','',0,'?'),('>Uoo,)O$1','wp-content/plugins/kadence-blocks/includes/assets/js/plyr.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/plyr.min.js',0,'\\lѸ\0,Hl','\\lѸ\0,Hl','=m٬|d+_lz1K\\?^}','',0,'?'),('>^mZ{','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/TransferStats.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/TransferStats.php',0,'Vȩ^lr6Ȍc','Vȩ^lr6Ȍc','h,O(mZF6','',0,'?'),('>e &9{','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/CustomImageModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/CustomImageModel.php',0,'%%G/l(Hi','%%G/l(Hi',';7Vo=1#\n^:DEH`-C \\','',0,'?'),('>hЩXX*v1','wp-includes/theme-compat/comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UҴ\0','z;h| txȘ 碉\\bd!ori>jr','',0,'?'),('>ltXʾ<ӣ\nVx/','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php',0,'ѦxQ\'XX 虅~e','ѦxQ\'XX 虅~e','Y*<{~eօ]|b5*z(5`~','',0,'?'),('>ql+m\05Ħ\"^','wp-includes/js/customize-preview.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y	$F-=Xh','P#yJI+tPǰ\"k','',0,'?'),('>uʸ!4N2','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',;L\'dee','+GT}m)*[c5ZN-v>','',0,'?'),('>{	J4V9	','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/QuotaNoticeMonth.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/QuotaNoticeMonth.php',0,'j!|tD^aԠlF','j!|tD^aԠlF','JݸchSuNZNEل','',0,'?'),('>-=yeL븍?=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php',0,'#=vcvu','#=vcvu','l׎-#(ewj<-','',0,'?'),('>K/IA-v8P','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٍθwD1}J8','l#q`1t)aT,s4\Zaʙ','',0,'?'),('>vnL#~ч?','wp-content/plugins/shortpixel-image-optimiser/class/external/Woocommerce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/Woocommerce.php',0,'OgL+5O`M;','OgL+5O`M;','F4cG8Q7#<aZ@#>5Q*2W','',0,'?'),('>01C=dffy','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/HandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/HandlerInterface.php',0,'7}řT+','7}řT+','Pw)>6O\nD\'-?W','',0,'?'),('>puL3Ij^bo','wp-includes/blocks/comments-pagination/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"I[/)+%կ[','rH$q!Tž*c\\M{\ZC؏fEߘ3L','',0,'?'),('>rыF.-','wp-content/themes/kadence/footer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LZVr_','l)jÍ%rCDтJS}B>.G4','',0,'?'),('>SW`ik','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IYT*#40ڧ','y8Y,JFkR','',0,'?'),('>6⏅','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/DownloadedImage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/DownloadedImage.php',0,'\r卦','\r卦','Y5$Cl ?n\0y;\0yE`+E2u','',0,'?'),('>ʿ1Wsz','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/DkimOptions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/DkimOptions.php',0,')t2~n22V',')t2~n22V','co|1offI{9A5oζx1>\\','',0,'?'),('>ot+','wp-includes/blocks/post-terms/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\'h&\\ӡH','%l=7v~Foqk>','',0,'?'),('>X\rbڟ$W','wp-includes/class-wp-image-editor-gd.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-image-editor-gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sJW#<f#Q','/FXL<b\n]=aW3J','',0,'?'),('>%H','wp-includes/blocks/template-part/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ne*YBVsʇ2',']ge$ζ^*&HL~ɣs','',0,'?'),('>\0V?s\Z','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsible.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsible.php',0,'ˡkI9H','ˡkI9H','XikWM0 \n.S7f\0x','',0,'?'),('>Gf@Tម;D','wp-includes/blocks/cover/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W寵]4 |\n%','!q.a, ^.3zC\"Y<jeQF','',0,'?'),('>t*H  %','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/columbus-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/columbus-georgia/index-https.html',0,']!9EM/\n',']!9EM/\n','.:;_UrPid\nf#rR','',0,'?'),('>7C{@.U\"','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U	','l7Hى-5\"EZ˖.SP','',0,'?'),('>dt Z\Z~V','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php',0,'3ɇerk(','3ɇerk(','qN\r\\pQLLR[mwSqc@ó','',0,'?'),('>ʎ嘤\0U1~M','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof.php',0,'̩RT~dI1','̩RT~dI1','M5BTJTl]]\0e1ŉVQH','',0,'?'),('>ل_H8xj=%\"','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/SuspiciousOperationException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/SuspiciousOperationException.php',0,'Mַn~x	','Mַn~x	','q\Z?$mT\rըۭ&','',0,'?'),('>۰FtZW','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}۩	˯t0B0\"M','QcFC(j;7?:(!Es~','',0,'?'),('>Ĭtp}fL','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WO','~wk9?RJE5K!bي˻','',0,'?'),('>޵sz/CH ','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/index-mobile-https.html',0,'N>-xm\\Z[paIH','N>-xm\\Z[paIH',',`ֲ\0UO4f\rBJͫ-<cT','',0,'?'),('>27wF\"ӡ','wp-content/plugins/kadence-blocks/includes/assets/js/simplelightbox.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/simplelightbox.min.js',0,'\n\"{w5','\n\"{w5','fQQJ3\'ym~NGV','',0,'?'),('>F$>&','wp-content/themes/kadence/inc/customizer/options/learndash-quiz-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-quiz-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iDЗL0PZ',')rA\r/vNQn\\6P','',0,'?'),('?aMKsx\\','wp-content/themes/kadence/assets/js/navigation-lite.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/navigation-lite.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.qȟǤA','tꁁy^` &yց>qN','',0,'?'),('?WZBDN13','wp-includes/blocks/audio/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G^x[','^\ZV.~kZF(+Բ\n]tހB','',0,'?'),('?!:-㜣(C','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/Test/TranslatorTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/Test/TranslatorTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n+Di$d	q','w5>qdZ8RƩwf!S 1e','',0,'?'),('?Y眜N`1$','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/MappingFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/MappingFormatter.php',0,'f\n#Ll','f\n#Ll','mf,2M\Z{5ɜX2FtA','',0,'?'),('?p|Ro','wp-includes/blocks/separator/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' `^\r','RhLZqGzh/^c*C','',0,'?'),('?$VY\rO_','Default.html','/home/nginx/domains/atlantagynecomastia.com/public/Default.html',0,'T\'C8\rS(\r	','T\'C8\rS(\r	',':\rI.U\\Mج[/j?!N','',0,'?'),('??L߶\rxfT','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/AuthInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/AuthInterface.php',0,'<\rq{LDΌ5r!','<\rq{LDΌ5r!','t\0o_ S/a	#e[jv^	','',0,'?'),('?B2ר2Al','wp-content/themes/kadence/inc/customizer/options/lifter-member-archive-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-member-archive-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z	|O\r׹(G','C#lhGU&1$=M@$)ʹ+','',0,'?'),('?JTϺ>R','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap80.php',0,'F~<v\r3H(Y\Z','F~<v\r3H(Y\Z','=`NKٍ{0>64QE','',0,'?'),('?LGF猪)','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Mbstring.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Mbstring.php',0,'MxŬ&k|3j2','MxŬ&k|3j2','+m<`f֘&Q_>tK','',0,'?'),('?Uj21ԓ!ۛ}','wp-content/plugins/kadence-blocks/includes/assets/js/kt-accordion.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-accordion.min.js',0,'	bۓ_\'g','	bۓ_\'g','H\r@EZc1-bg|ʿVw|;','',0,'?'),('?U\'_l.p','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o>B	IN-y','hl[(l~QuFM	','',0,'?'),('?X\\mfڕڣg','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-columns.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-columns.php',0,'1ШJl\nSӧ','1ШJl\nSӧ','E1/חP.xDaeQ+n@&iB','',0,'?'),('?Yvq_ۮXO','wp-content/plugins/wordfence/images/sort_both.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_both.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%BQxSV.D','6\"@Xg\'W7wgJq','',0,'?'),('?]P.12b','wp-includes/js/tinymce/plugins/textcolor/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%i3f','(ELb[K!sӊnĲ','',0,'?'),('?hh:z͏qZiV','wp-includes/blocks/post-author-biography.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author-biography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']0ڙZ\'f','mvE;t!XR.CEcRJn','',0,'?'),('?jH}_@ˋ','wp-content/plugins/wordpress-seo/src/introductions/application/ai-fix-assessments-upsell.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/ai-fix-assessments-upsell.php',0,'KdC','KdC','BIŝ̹uTt~w#VgUZ','',0,'?'),('?oKەYf--\n','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAddressContains.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAddressContains.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c|bXh_kNL','Ѷ3KDx<\\f:J92EP_','',0,'?'),('?xT\ZĘa	','wp-content/plugins/kadence-blocks/includes/icons-ico-array.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/icons-ico-array.php',0,'8ê8<ӏK','8ê8<ӏK','Y7	9,#d*W1{Z@wc ','',0,'?'),('?(z\r9T~x','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Stream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Stream.php',0,'&+:=_Q>6','&+:=_Q>6','uҴ>8\\>Hj ','',0,'?'),('?=@M$#P7','wp-includes/js/dist/html-entities.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/html-entities.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n`a(v5','ȐיpR%g\'wst\r/','',0,'?'),('?=ݼGkSCUfK','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-userinfo-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-userinfo-block.php',0,'ʸ+Q\\u','ʸ+Q\\u','ï\":)mѯ6Rlějɢ;mc','',0,'?'),('?`sĆO@C','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-html2-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-html2-options.php',0,'F\\=E\\jÒ','F\\=E\\jÒ','}NFtҢdoƝp~GF$~w','',0,'?'),('?;Q?','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php',0,'5df3^(\r&J','5df3^(\r&J','^lgaU\"5%^7B&Wd;','',0,'?'),('?4!5ԣ\"̘S','wp-content/plugins/wordpress-seo/admin/class-yoast-network-admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-network-admin.php',0,'Cg\"cK?H}ӥ;','Cg\"cK?H}ӥ;','*@4<́;vN','',0,'?'),('?)4ICL)','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/App.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/App.php',0,'\r)7?g\'1E','\r)7?g\'1E','\n~j43\n97MP\"N(','',0,'?'),('?л8ln','wp-content/plugins/wp-rocket/inc/vendors/classes/class-minify-css-urirewriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/vendors/classes/class-minify-css-urirewriter.php',0,'ZЉzX','ZЉzX','ķfQ>)L+	wĚ05\'/rU?','',0,'?'),('?^.+t\Zɻ$L','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Header.php',0,'u2m#<\rO17','u2m#<\rO17','a(s@91Џi{PԽ 5>','',0,'?'),('?J16t2	!','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Logger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Logger.php',0,'HG{ԎQ*w','HG{ԎQ*w','Nahf_֙_*.x0\":,Q','',0,'?'),('@\08(<:t#1S','wp-includes/css/dist/block-editor/default-editor-styles.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/default-editor-styles.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dx	0!','hӃ|*_Şd5F+','',0,'?'),('@r(l>8ec','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N0cHdo7d','VPdZ,؛B}en d@D|z','',0,'?'),('@]~8GG4F','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/AbstractGFOptimization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/AbstractGFOptimization.php',0,'gwZ-','gwZ-','s,ck;閏C#bJ{/kn','',0,'?'),('@&編}Au','wp-includes/Requests/src/Exception/Http/Status413.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status413.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','е$=WfaPw','חrMHݜy4߮8J','',0,'?'),('@.sk3e{','wp-content/plugins/wp-rocket/inc/deprecated/3.9.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.9.php',0,'ڽO[Wk','ڽO[Wk','zz/+{`!\'1K]q0 ','',0,'?'),('@3}P%KP+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nN?Oӝf','~MmO{6I=VK k?`','',0,'?'),('@7Q}8x','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|]6yTiB{','0qBnj\rܗV#','',0,'?'),('@7V\'=F','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݝߑG9','k,Gd@v(εyf','',0,'?'),('@=Nh[C|','wp-content/plugins/duplicate-post/css/duplicate-post-options.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/css/duplicate-post-options.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')a콂qY}zw','GL^肓><dUt҆\\Rq:O','',0,'?'),('@E/߯4\Z','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentResolverTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentResolverTrait.php',0,'VA;Eb](','VA;Eb](','n(CIC{AmV%\0[wG55~~','',0,'?'),('@N30>`8l','wp-content/plugins/wordpress-seo/src/presentations/indexable-date-archive-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-date-archive-presentation.php',0,'^1','^1','4]NOW\0Vқkҝv2~_[T[N','',0,'?'),('@VK$~`*+c0','wp-includes/block-patterns/query-medium-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-medium-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<UVn','#l.Cv*;!4f','',0,'?'),('@V$K<1*','wp-includes/css/jquery-ui-dialog.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/jquery-ui-dialog.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\e*y4','	z8i\n%i=4̆AaGw','',0,'?'),('@c tV3VWe|A','wp-content/plugins/wordpress-seo/src/integrations/admin/check-required-version.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/check-required-version.php',0,'Xҍaxǥ','Xҍaxǥ','bǾjw|WQ-[)S\r,Џɧ/zhh\\','',0,'?'),('@h볹3אz2zl','wp-includes/css/dist/edit-post/classic.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/classic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҙ2+~%k','&@ٶ?P\rѶj?&','',0,'?'),('@k/I?T,','wp-includes/js/jquery/ui/datepicker.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/datepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\JVֵL7','-~q:bs}׹ʌ\0\rr()1L!','',0,'?'),('@zf期Y:','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Vd,* \\\0)2','٬Sw-\n.xQxw篇v=1','',0,'?'),('@}@8r=~z	','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/deviation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/deviation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/}D\rm(`',']Mq\'Z5v~Y}(V','',0,'?'),('@~i`ˋ)\'h','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpResolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpResolver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X;N5³Zԡ.A','_tfO2yZy)\"SSDtUƸ','',0,'?'),('@̘9#Ly(','wp-includes/images/arrow-pointer-blue.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/arrow-pointer-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wb·*L[','fbZD1.Vaw4l?pG^{','',0,'?'),('@o&@rP	ym','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i8Ix','{pCh\"/2,#','',0,'?'),('@8<u@[=X','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/UnstructuredHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/UnstructuredHeader.php',0,'fWP\r=,i>\n','fWP\r=,i>\n','$\r!A:H_F4k!A','',0,'?'),('@\n[c`T+','wp-content/plugins/wordpress-seo/src/introductions/infrastructure/wistia-embed-permission-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/infrastructure/wistia-embed-permission-repository.php',0,'j<3<vy]','j<3<vy]','ǀ轑m~sɥEs%','',0,'?'),('@e^oF>}8','wp-content/plugins/kadence-pro/kadence-pro.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/kadence-pro.php',0,'yf=l,؛H','yf=l,؛H','c;-_e-.kRC1\"h@Tj','',0,'?'),('@CE\'O','wp-includes/css/dist/widgets/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/widgets/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wx@Œ)k','`G6`N9MH,\'HhyLs','',0,'?'),('@\Z!zrWp','wp-content/plugins/wordfence/views/waf/option-rules.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/option-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\0QN#$|','tϷ\0\re(xTn_CQ=K2UC','',0,'?'),('@4j*Tǳ','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ς{}*','xl}@sōEN','',0,'?'),('@XD\n\nRNt','wp-admin/images/menu.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/menu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r9#dY`	','lIE/(p\0pnT-Oz\"],=`','',0,'?'),('@ȯ&Oo','wp-content/plugins/wordfence/lib/noc1.key','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/noc1.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9eb\0PO','_ujP-KOAܫ','',0,'?'),('@u	6)X9','wp-content/plugins/kadence-pro/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_psr4.php',0,'\rk(_ZQPω','\rk(_ZQPω','یWv\\ڧY_g6td','',0,'?'),('@ȝ9i6Rh`','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/DataChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/DataChunk.php',0,'h\rLS\\zib8','h\rLS\\zib8',')O<Dbv޼}}y3>~0:','',0,'?'),('@De4h(d','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php',0,'oh̷:\0GH','oh̷:\0GH','.OL		a&Un	&!um:k^','',0,'?'),('@L߯7٭kقE','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`30h~ݻh','ZR\'Zw$߃_ɐxT{-`','',0,'?'),('@;5XVOZ','wp-admin/images/mask.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/mask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g~\"J䩎','/<sԡ)\'.1jknK9Q','',0,'?'),('@mOW','wp-admin/admin-header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nWuYK','=pZ.TBW!p:ٔ%tI3','',0,'?'),('@tR>GHhס','wp-admin/css/revisions-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/revisions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uy敫aOVƆ','iSi2ҏ6dTE$*m','',0,'?'),('@j%\Zuwt','wp-includes/js/dist/undo-manager.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/undo-manager.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','17B8q','lv\"k	Ȥ$:5ԦԷwyѶ','',0,'?'),('@sZ^qv','wp-admin/images/media-button-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#WI\\?','<:tnkbwi&	R\Z','',0,'?'),('@+T΄\'٤','wp-includes/ID3/module.audio.flac.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.flac.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@pL@E{','ּ3t46$ay!֦ȓڲh#{','',0,'?'),('AlA~i^uØ','wp-admin/css/customize-nav-menus.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CI}\'1PQ8','YRJiI2jŗ?7-|W&','',0,'?'),('AE[`','wp-includes/js/thickbox/thickbox.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/thickbox/thickbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}[Po!x=vU','`9/pTù/7o&KWD\n104','',0,'?'),('A\"1F','wp-content/themes/kadence/inc/components/editor/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/editor/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\\bq$}','w4X͈įAb','',0,'?'),('A\"~ی5)NWn','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option.php',0,'!e\r+o','!e\r+o',',L/oϜ73щ&8ge53Rs','',0,'?'),('A+~/Ję4$Y*','wp-includes/block-supports/spacing.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/spacing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0m%wz','լ5+\'-KKzhV \\MMF3PW','',0,'?'),('A-=k1Z{','wp-content/plugins/shortpixel-image-optimiser/class/external/cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/cache.php',0,'J@.Sş','J@.Sş','ƴ(ݰh/4{NoFr`','',0,'?'),('A2GḊw^^\Z{','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-router.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-router.php',0,'^΂2_NDc_','^΂2_NDc_','dBuA\\6\ZB{ѝ7{','',0,'?'),('A3w$\\gN\r','wp-content/plugins/kadence-starter-templates/assets/images/masks/thumbs-down-solid.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/thumbs-down-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IKs䇕qvĜ','| ܎#AHF3U]d$|\n q','',0,'?'),('A4rɽv@','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php',0,'cfz~O','cfz~O','O\'a\Z?*!6үuMH','',0,'?'),('A;ت\Zܦz','wp-includes/sodium_compat/lib/constants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{#l>m','ٹmc(l\'mtˣ[gW','',0,'?'),('AC00F]','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/EntryParser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/EntryParser.php',0,'\0\"l','\0\"l','X2oZl{(gd9^7y\'p','',0,'?'),('AK<jgsr','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Kb(\\pB-','ճ* ʰ	[q˜Pk','',0,'?'),('A_e.阧\'B\\','wp-includes/blocks/navigation/view-modal.min.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view-modal.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9NR>.','/W\"\r_W@F|=','',0,'?'),('Aa,[D46#?','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-borders.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-borders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\0b-&','=<4ITX{p7G zv	̏F;','',0,'?'),('Aa@JŁ','wp-includes/js/tinymce/plugins/colorpicker/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Cȭ?d{׭V','BR\0!䄚Q\'5w','',0,'?'),('Ah!b@=d','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Column.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Column.php',0,'$hq\"9N2IJ','$hq\"9N2IJ','L3qYdhG;=|!dq_','',0,'?'),('Asvg4U','wp-includes/js/dist/nux.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/nux.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߈+Iy硋R','\\{in<d4&LyS7','',0,'?'),('Awƍs3p.<w','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php',0,'ʞGzy','ʞGzy','t=rA)ޮ/D_-A.%\'9mb','',0,'?'),('A{& V>Νs','wp-admin/css/login-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6u8U{D4s','Sy\rN=^wFc','',0,'?'),('A}A\0+Y[A7','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/Busting/FileBustingTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/Busting/FileBustingTrait.php',0,'`53^','`53^','?RЯ-#\\6ʄb;','',0,'?'),('A_0*\n\0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php',0,'A6lƈh-(','A6lƈh-(','y^bU[E/7A:h','',0,'?'),('AX\0lΆ7KBh','wp-content/plugins/wordpress-seo/src/generated/assets/languages.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generated/assets/languages.php',0,'CV੿EaC','CV੿EaC','!\\>_[`߅8{aRC3UN','',0,'?'),('A8V,_OX4','wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t@~G|TAB','dd0­_SfTTuna{PI4=}','',0,'?'),('A^{','wp-content/plugins/wp-rocket/inc/Addon/Varnish/Varnish.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Varnish/Varnish.php',0,'-2!\Zu','-2!\Zu','c>w22875g2P\Z8y/','',0,'?'),('A(Ac','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Reader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Reader.php',0,'Uՙ	^b뵏','Uՙ	^b뵏','ˢ?gW|*R3v\0\'','',0,'?'),('A\n999Cʞ0','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-background.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\07','K.fe5\r?K{~ =(̑\'_','',0,'?'),('A]@{O','wp-content/themes/kadence/inc/components/learndash/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/learndash/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qCˬ`9\n','S0/`*\rr{d\r4:DnDg','',0,'?'),('Aػ#\"j','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1t*9܋Ժ','݋O)Zz;s<*]~','',0,'?'),('As]䒦','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-upgrade-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-upgrade-options.php',0,' @`K0_l[bK',' @`K0_l[bK','D|r0[hxDp[낙','',0,'?'),('A<!W.L-','wp-includes/Requests/src/Autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Ss@301rd','܏<Bh=8MI-^:3<2','',0,'?'),('A\rU*g','wp-content/plugins/kadence-blocks/dist/blocks-spacer.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-spacer.asset.php',0,'k\"*','k\"*','D֍SfsMy)ls','',0,'?'),('AJO0w_','wp-content/plugins/kadence-starter-templates/wxr-importer/WPImporterLoggerCLI.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/WPImporterLoggerCLI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!*O1!','6xUݻ*T9}Sߩ1','',0,'?'),('B^tpk!','wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R*LTG4%P','-nFJ&TPo\\ϓ\\2','',0,'?'),('B	O.^͘P\Zk-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dudx\r2b','Љf~]uJh\"[yHj4w#g','',0,'?'),('B#Yp\'ԞY ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0yT,','CaF37kK[ͻxF9?Uը$','',0,'?'),('B\' `0zynã|','wp-content/plugins/wordpress-seo/src/integrations/estimated-reading-time.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/estimated-reading-time.php',0,'BDiID9#','BDiID9#','3\0{s/s9*','',0,'?'),('BCKwO8I','wp-content/themes/twentytwentyfour/parts/header.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/parts/header.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','俠~\":','[CVs+Y}+RwY','',0,'?'),('BJOzD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{1MRKE_/','|qUUѿÎ|zG>*ۜ\"I;','',0,'?'),('BUjv\\ѣ(','wp-content/plugins/wordfence/views/common/license.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':8^r','fB-h^>AnH0\r&','',0,'?'),('Bs塘TL=','wp-includes/blocks/calendar/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\Z\"P{ў\"-','`Gn$iC2{7$lIxW','',0,'?'),('Bu?4=1@)/qH','wp-content/plugins/wp-rocket/inc/vendors/classes/class-imagify-partner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/vendors/classes/class-imagify-partner.php',0,'0[x9o{M>','0[x9o{M>','gkHMk=-cQ<a','',0,'?'),('BVgk%Tz\\','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerInterface.php',0,'}S&]^6','}S&]^6','VD4P͑MdbEx595','',0,'?'),('BY^8','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/AJAX/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/AJAX/Subscriber.php',0,'8&S3,\rٲ=o\r','8&S3,\rٲ=o\r','>Y8Hra:ꈔ;','',0,'?'),('B3hA7V','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FiJ!xw','mZP.c&2%QAK	DA','',0,'?'),('Bj)qDS','wp-admin/install-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/install-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t%v-ܴ','f3sL,tʇwO7O4ɵ>','',0,'?'),('BQaU%','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-knownfile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RՅ-e_','3?<P0\r^τX` t{#','',0,'?'),('BB	Y}QUʡ','wp-content/plugins/wp-rocket/views/settings/page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page.php',0,'lD&Ę\0HR9 ','lD&Ę\0HR9 ','7D؟9m5#Nڶ','',0,'?'),('BY7w0i_Jr','wp-content/themes/kadence/inc/customizer/options/header-mobile-html-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-html-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>%I UR7','	nlਮ(\\_<HȌX;','',0,'?'),('BϵH@x/','wp-content/plugins/wordfence/waf/pomo/po.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vc+p*\"G?B','MO( G\rkHԽeq	ǈFoO-','',0,'?'),('Bֱ\0;\Z\'WrX`','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSSSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSSSubscriber.php',0,'6ý_2:p9','6ý_2:p9','S)ve\05$<rvK)r','',0,'?'),('B8ì7T\0b~','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s]2#4W?\Z','Z=̞yH/\"RN<ZNrw3N','',0,'?'),('B(bavBkYt\Z','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/custom-login.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/custom-login.php',0,':ԅ!;h>tgJ/',':ԅ!;h>tgJ/','eu(SlH[ֲܴn)\0g\Z\"u','',0,'?'),('Bȡ|P|\nf','wp-content/themes/twentytwentyfour/patterns/text-project-details.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-project-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s԰8\"bx>','[.<Բ;mPhPCl	ť ','',0,'?'),('B>%5:đSd7','wp-content/plugins/kadence-blocks/includes/init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/init.php',0,'+~H-d66w4','+~H-d66w4','ݷ?ߔzJ˚pwOFjK','',0,'?'),('BPXW6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m9N2ų[','=*tzv\'W\nKRlx7','',0,'?'),('BsL+ &_A$','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-navigation-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-navigation-block.php',0,'b_ҙ㬩y\'ܣ','b_ҙ㬩y\'ܣ','>x֬\0!YG\ZD%|439\\','',0,'?'),('Bzh','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Session.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Session.php',0,'ӥ5&n=\r3','ӥ5&n=\r3','L0\ny<x0','',0,'?'),('B%mOj~ ','wp-content/plugins/wordpress-seo/src/presenters/admin/migration-error-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/migration-error-presenter.php',0,'3vһK:','3vһK:','2\"+Ԥ+chr%35E','',0,'?'),('C\nUܫN\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/YawikInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/YawikInstaller.php',0,'eѦ]gkRC','eѦ]gkRC','d+!b]XF7\Z>G͠oak:~','',0,'?'),('Clt-I96I','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-range-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-range-block.php',0,'x&&5羜8','x&&5羜8','۹y\r>w%Bv=h e_','',0,'?'),('CiIg{b','wp-content/plugins/wp-rocket/views/settings/beacon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/beacon.php',0,'wpG)gXCbO','wpG)gXCbO','\Z*S_i+b]9K~=T','',0,'?'),('C\Z;y[Rh\'','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CachingHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CachingHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sWxTt3','/_׎7f$gy?Z,\0\"4{','',0,'?'),('C!	%	','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ResponseHeaderBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ResponseHeaderBag.php',0,'%K3\n.$GJ','%K3\n.$GJ','41Ŏb1\r_k,0ċU\'p','',0,'?'),('C\'RT7nn','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-provider-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-provider-service.php',0,'8GX\0%I;','8GX\0%I;','gxWc)&:~ɢQh ','',0,'?'),('C)|D/>E','wp-content/themes/twentytwentyfour/assets/images/building-exterior.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/building-exterior.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','* Q\"KLG','tJt\0uIbD|wō)i~`5','',0,'?'),('CHo','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5L\n)SLIxu/','GEK-b.B.)>','',0,'?'),('CKJ6LAMkV','wp-includes/blocks/post-date.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=^/YP','<fLEyѠ_|+		rXT|k','',0,'?'),('CN7E','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ly[','.!4\r@v3v_{Hh8تl٦','',0,'?'),('CWpo-xb','wp-content/plugins/kadence-pro/dist/header-addons/header-account-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-account-options.php',0,'xǵJ%p','xǵJ%p','lׅd:w%gn&Rli','',0,'?'),('C_v5=dB\0)','wp-includes/css/dist/preferences/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/preferences/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FxT)4R',':h,_`\'/\nV	fn%S','',0,'?'),('C`xa\0)\nII','wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/ServiceProvider.php',0,'s.J`G\\i}b','s.J`G\\i}b','~c!#z:@=@Ay5\0salb','',0,'?'),('CpQ?t>dK','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler.php',0,'?=`(m`j','?=`(m`j','p(0z&:w{qE\r;','',0,'?'),('CciFh.n7','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\nhMX$','_:&Ќ0)P$Lm:_d8-','',0,'?'),('CtlImcҾ>n','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-init.php',0,'mJaaGy','mJaaGy','d\\	IkbUyhlκSTҺd','',0,'?'),('Cu{Sx2K','wp-content/plugins/kadence-blocks/includes/assets/js/lottie-dotlottie.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/lottie-dotlottie.min.js',0,'*E;ߣ0','*E;ߣ0','O阾^y<mAp/qo~Z$','',0,'?'),('CIS7<','wp-content/plugins/wordfence/modules/login-security/views/page/page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ш>\\gǡ$c','iiGCNFL)7%ʙ','',0,'?'),('CXnq5}','wp-content/themes/kadence/assets/css/slider.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/slider.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZllyݘHJ','̠bՁQ$!>1~LbU','',0,'?'),('Cms\nX]KT','wp-includes/blocks/search/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&i2>\n\\\r{d','Q[&Q`>	pXGr2I','',0,'?'),('C/@lY2}','wp-includes/css/dist/format-library/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/format-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$;I(y=ΑY','ޥ>RӦjpkq\Ze\rN','',0,'?'),('CؚTR!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\'Q40','|!Y]\0','',0,'?'),('C9wVH\"bV#','wp-content/plugins/wordpress-seo/src/config/migrations/20200420073606_AddColumnsToIndexables.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200420073606_AddColumnsToIndexables.php',0,'B}}ۧl','B}}ۧl','T={xo\n(Ysмg&g','',0,'?'),('C!y6㋼','wp-includes/blocks/buttons/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}!r<','ն,*͖>3x\r6K5','',0,'?'),('CBt','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryInterface.php',0,'iv	&','iv	&','clkJ=c%\"xXkdhى','',0,'?'),('C\"@7t','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-taxonomy-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-taxonomy-meta.php',0,'\"FW@8-&u','\"FW@8-&u','r܌n	ȼ7	5&b]`Fj8;','',0,'?'),('C!~N&9S(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php',0,'W	Jx','W	Jx','R~l#Oln	]','',0,'?'),('Cc&*pu,','wp-content/plugins/wordpress-seo/src/presenters/admin/meta-fields-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/meta-fields-presenter.php',0,'bt:3_,','bt:3_,','Q\r2n][8@:{DuYs$Ѻ','',0,'?'),('CbIӠg~rB','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php',0,'-\nWGvu_','-\nWGvu_',')\rJ:\0xLITD\\D4;S㟉[','',0,'?'),('C6	9)sO','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php',0,'Aʧg1','Aʧg1','\\;+]Msf$-(\n','',0,'?'),('C!8\0J̛','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a5dxaAr','cj̀iD\rF\'܈s','',0,'?'),('C{\"\\b','wp-content/plugins/shortpixel-image-optimiser/class/external/offload/virtual-filesystem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/offload/virtual-filesystem.php',0,'@3g0=rآb]','@3g0=rآb]','7tRlũ{thBnoQ7	#','',0,'?'),('Cs\\\ns\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*5DO7ZY%','x..$ô(EϷX	Q','',0,'?'),('D\0pk{ë|','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-splide-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-splide-init.min.js',0,'(N','(N','M|{=;jki\Z\r','',0,'?'),('D\'%S6>{','wp-includes/js/dist/customize-widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`SgQEo','3E\"%ؖdLhx8@*]Uez(','',0,'?'),('D	(,|b?L','wp-includes/blocks/query-pagination-numbers/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e*l:\\w','w9C1\'$IN+3ں$s','',0,'?'),('DIacᐸ','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AuthorizationCode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AuthorizationCode.php',0,'ROgWl','ROgWl','+ASDYdұ/vLe̕3','',0,'?'),('DItbE	س','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Cache_Primer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Cache_Primer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z2]9=3v䙓x','G=@%u𡷇U͕\'hzo\0','',0,'?'),('Dm\nzHS','wp-includes/images/crystal/document.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'^csD3T\\','gt( Ŏk`5͒JM5:j','',0,'?'),('Da1ԗ','wp-content/plugins/wordpress-seo/src/integrations/admin/activation-cleanup-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/activation-cleanup-integration.php',0,'T*|FΘ>+','T*|FΘ>+','tN=фx·Ae','',0,'?'),('D#q{ťԇb','wp-includes/css/dist/customize-widgets/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/customize-widgets/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!q}7','v#-\'W\'ט;hǭ1&ZP7{','',0,'?'),('D.:\0SR8','wp-includes/ID3/module.audio-video.asf.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.asf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ļAJRE/=','h\rR&hc\"A\rľjQe\\L','',0,'?'),('D6mer{pKO','wp-includes/locale.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ʋ\04)oybU^','<6n\'J_	S%GVJ','',0,'?'),('DQ#unU\\ @<','wp-includes/blocks/page-list/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ent<4\0eJ','4숐7oD74:J[','',0,'?'),('DU}<޴D5Y','wp-includes/block-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','..QɃGG|r','	UܧF?U^x7xu&t','',0,'?'),('D\\7@;^|','wp-includes/class-wp-navigation-fallback.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-navigation-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QP:*|j','8Ex|<A[ښlZ9,?1','',0,'?'),('D`aO\"Y%7Z','wp-includes/blocks/comments-pagination/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?*ɱ,','}M̋IENp54]pPÆw>kq!','',0,'?'),('Dk*6=','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/row.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/row.php',0,'ݍ\rt#*r','ݍ\rt#*r','3yS,Mn~k\n_SN!vȯߑq','',0,'?'),('Dmo\"a','wp-includes/blocks/gallery/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ދl>nqyW','ɹa߿Kۘn͓+nb','',0,'?'),('DrkJNƨ','wp-content/themes/twentytwentyfour/assets/images/abstract-geometric-art.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/abstract-geometric-art.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=0>qkdU','xrߦڔՏa,n? hu7KI,','',0,'?'),('Du\rɲ\Z','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aի Lqw	','r_iQ	aR+','',0,'?'),('D)bak{','wp-admin/includes/admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4=ҩA','0V{]֊Aj˫.%2\ZxM5z o ','',0,'?'),('D\'R\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MODXEvoInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',0,'IJ$\0sA$','IJ$\0sA$','4􏈅6KHU8 /I}\'Ys]W','',0,'?'),('DQ?uՖ7','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dT}\r%/w','$\rdp.\\Ł4n%-n','',0,'?'),('DF1Fi}3!','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Downloader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Downloader.php',0,'IaʵecP#','IaʵecP#','}HQƛ','',0,'?'),('Dh3_z<q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php',0,'EoBhzo','EoBhzo','}zB8InI[EƩ׼$','',0,'?'),('DVds$>d+\n','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-plugins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hsbfF$','.\Z7V!{en\Z1mBЙ4Ph','',0,'?'),('Dj=?<+r','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/trait-webp-common.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/trait-webp-common.php',0,'}َna^T#2dȔ','}َna^T#2dȔ','WdayVV)6ނ$1H[','',0,'?'),('Dչ$Oa','wp-admin/css/colors/ectoplasm/colors-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߶Ɇ\0w\'K4 ','y@-}\"K,II\"GO','',0,'?'),('Dج(>a־ט_','wp-content/plugins/kadence-blocks-pro/includes/blocks/form-sendinblue-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/form-sendinblue-rest-api.php',0,'T4qNy^','T4qNy^','9avqܗzQm(ՌM$','',0,'?'),('DQ_$kv:*ly','wp-content/plugins/wordpress-seo/packages/js/images/woocommerce-seo-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/woocommerce-seo-logo.svg',0,'x ѧs2V`','x ѧs2V`','Uܼ\nE{m0I\n\'i%Oy+]','',0,'?'),('D8yS7\'@%a.','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/index-mobile-https.html',0,'GpP@Bna','GpP@Bna','SQ\Z̗TQP<lO\\.@','',0,'?'),('D#虞*b','wp-includes/class-wp-block-parser-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-parser-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϝ@֢|*N','[4:SI@@\"\ZW$h*','',0,'?'),('DT[-U','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=q(tݣ˻','atÁ}(0oß%3pu~ĥ','',0,'?'),('D5\n\'\\~W','wp-includes/category.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mۻx/Ҳ\n','B#jԮxPaٳׂ','',0,'?'),('D\'1l','wp-content/plugins/kadence-blocks-pro/uninstall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/uninstall.php',0,'\\O_','\\O_','rW\rdOuOC#/(','',0,'?'),('E\ng@=R','wp-content/plugins/duplicate-post/src/watchers/bulk-actions-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/bulk-actions-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-8[ l$3c6','8s}KSX<~$x\"G5','',0,'?'),('E2M쮔.${','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Scheduler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Scheduler.php',0,';u n?3k-Hw',';u n?3k-Hw','\"barE@Z','',0,'?'),('Ev\\fx8','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PWA.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PWA.php',0,'iRY7\'B&n','iRY7\'B&n','ו	|Z;Z,,RZDЩ','',0,'?'),('E4D\'BI_#s','wp-includes/blocks/tag-cloud/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\Z*A,X3E','_FJ.Ȗ	Y*X		L0Ua\"','',0,'?'),('E4[WQ@h','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ms\0ⷞe|AX}','Ը)ROw:AۀwȊĉ.','',0,'?'),('EB+.iAɼI','wp-content/plugins/wp-rocket/assets/img/configuration.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/configuration.svg',0,'`C¯','`C¯','8܃b2Y~X?EBXTY0\n','',0,'?'),('E#bK\n󪖅','wp-content/plugins/shortpixel-image-optimiser/class/view/view-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-settings.php',0,'E55o','E55o','(j+?*&7٣p\ZIH','',0,'?'),('E#-v376Ť','wp-content/plugins/wordfence/wordfence.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/wordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S*qEt4m9','\0d	^\\}{.1Ug!','',0,'?'),('E4fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-list-revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\Zۦ_8K',']\ro8Y6)ryW?Ybz(','',0,'?'),('E5;tR$L','wp-includes/js/dist/element.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/element.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\n\0\"9vǬ','9j` X1e`)&h?','',0,'?'),('E8Ћ9Ixզ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{zב@G','}*y\r!(YJᅰ}H5','',0,'?'),('EH<}-(Mg','wp-content/plugins/kadence-blocks/includes/assets/js/kb-tippy.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-tippy.min.js',0,'b+:;3uŴ	3/','b+:;3uŴ	3/','*m+crB&Rݚ','',0,'?'),('EI&{8mn','wp-content/themes/kadence/assets/css/kadence-splide.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/kadence-splide.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݢaI>pqDFFD','7,9ܒ`S`^p,NE','',0,'?'),('EOBm\r@d9','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php',0,'^ִ5D\0zT','^ִ5D\0zT','V@XX.34','',0,'?'),('EWs,f8','wp-content/plugins/wordpress-seo/src/editors/framework/site/post-site-information.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/site/post-site-information.php',0,'	\0ڶbs','	\0ڶbs',')kN\"Rb́A*6=F1Ф','',0,'?'),('Eh@aq','wp-includes/session.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NRM<\\>','}k+8MU=<;tI*,4#','',0,'?'),('Ei8<UɅB','wp-content/plugins/wp-rocket/inc/API/bypass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/API/bypass.php',0,'NzCZk6z','NzCZk6z','\"`%nHIKzꖦm*ld','',0,'?'),('Ell\\:a0f','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/JsonException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/JsonException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZAD?.K1','VT&Db~9c\'Gp.]E','',0,'?'),('EuG|>/u\Z','wp-content/plugins/wordpress-seo/lib/abstract-main.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/abstract-main.php',0,'0gK*LZ','0gK*LZ','UK<#$/ϑ <SBT +ZQ','',0,'?'),('Evm1U~AHj','wp-admin/js/password-toggle.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/password-toggle.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\"»V','nߗ\"q{KuKZK\r1^','',0,'?'),('E(zRA1;eNqD3','wp-content/plugins/wordfence/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2eª\\og',' oMJ#A|ߎ(;6R\n','',0,'?'),('E}~M-]a','wp-admin/css/widgets.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vd)ؤTSf5','qޕZѯ*vCs4n-','',0,'?'),('Es=]=a','wp-includes/blocks/post-template/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rnEǠ<WbW','	o\\\ZeJa*L؞[C6 ','',0,'?'),('E;=4]L[O','wp-content/themes/twentytwentyfour/templates/single-with-sidebar.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/single-with-sidebar.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','իc\r*jH','NjZví!*p\nE{+,yU','',0,'?'),('EV,%,SM=','wp-admin/ms-edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P3\n7|L?MtA','acsc\Z\"VL\\њ','',0,'?'),('EҸ&+f6','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C<J!?5q2','!~90`G^-EW','',0,'?'),('EH):J','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y|xbZs\Z','Hޟ(p6ʝ>e8','',0,'?'),('EB3A-\r&!T','wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͓/qa)^=f?','Ձ	e?zcZ\nG','',0,'?'),('FHȝle#','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,r%^x%','Y=_b|ʧ&f,<','',0,'?'),('FypyoCK	$','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mg[ى_4#$]p','<mZ;e96L|&k]x|\0','',0,'?'),('F\rxw~\rܱ\n','wp-includes/widgets/class-wp-widget-search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IS4&kD',' iu6#IB3fA\\\n<WPAA','',0,'?'),('FnjfHq','wp-content/plugins/kadence-blocks-pro/includes/uplink/Connect.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/uplink/Connect.php',0,'?^y','?^y','rX)kk&DkE\"','',0,'?'),('FJQ_5Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/DnsCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/DnsCache.php',0,'k1J..F','k1J..F','3\Z7ʠ2.з\"wjHϳ','',0,'?'),('F/]M<ѿD!vq)','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php',0,'?v*?\\2','?v*?\\2','!9RȞ44\"\nqĐqW(/B','',0,'?'),('F1+\Z#+d{w{','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.D6pir`fw=','2KJ73x2M2&+LL','',0,'?'),('FCW.3\ZU','wp-includes/js/jquery/ui/checkboxradio.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/checkboxradio.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ˋR0wMQ1','_%~Wn-I\n>B;_|8ԤԂQ','',0,'?'),('FFitpm-r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/AbstractPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/AbstractPart.php',0,'n9{Dίe2M','n9{Dίe2M','A+W\'99P2=a	p}u','',0,'?'),('FFvV;v8/\r','wp-includes/SimplePie/Misc.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4P\riBBe','qѰɧӿlpK9 ^/t4,','',0,'?'),('FH30m:s','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xR	YXݤ','m\Zcĭ][^Pw','',0,'?'),('FPW4V6l','wp-content/plugins/wordpress-seo/src/integrations/admin/deactivated-premium-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/deactivated-premium-integration.php',0,'ꃺ%\ny','ꃺ%\ny','5/2ou8j.R','',0,'?'),('FVJ%Tyًe','wp-content/plugins/wordpress-seo/src/integrations/admin/cron-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/cron-integration.php',0,'#[.FpRb','#[.FpRb','ִkTzgJgBje)L3','',0,'?'),('FYbETn?BՔ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jȬ0-y','hNruW}aX[@ E','',0,'?'),('F`M߸cN!','wp-includes/blocks/image/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U=n-m_','MeRlD=*{|:oOUI','',0,'?'),('Fh@nJQ=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php',0,'e/4n2;Ut','e/4n2;Ut','ߥ2R<w06*һC2aj|m.bX','',0,'?'),('FmhtK.s','wp-content/plugins/wordpress-seo/src/integrations/admin/unsupported-php-version-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/unsupported-php-version-notice.php',0,'8Lt|i~','8Lt|i~','#SFS!gVU3\"Ta\\+P','',0,'?'),('Fx}C%?,Z','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A\0','z\nhbu5>/;o0X[','',0,'?'),('F|wZQ,O','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6?\n	:{Q%','ZIK/Iw¥OvyEBi\\$G&','',0,'?'),('F?D<\\3@:','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(8::Wk\'','ӗjpL)&\"\0B%','',0,'?'),('FDZכ)(_B','wp-content/themes/kadence/template-parts/header/logo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pGw`>ݯ','	y6(~oEBpS㴆NR0<-','',0,'?'),('F\\C?Z','wp-includes/css/customize-preview-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/customize-preview-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','މګd3','~\'[z{:LĀN7A	','',0,'?'),('Fm0`?H','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RedaxoInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RedaxoInstaller.php',0,'yrZ7M厘N|','yrZ7M厘N|','wx\Z\",B:aۺjb>5Ui@)~','',0,'?'),('Fid\n8\\Q\'','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php',0,'2/v\'s','2/v\'s','`OeKM\'GΌ7ΘZiR6','',0,'?'),('F~\'2\'A͇','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DelayJSLists/DataManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DelayJSLists/DataManager.php',0,'M5wXvI6','M5wXvI6','T\\.e 8\"','',0,'?'),('FtBƏWV&u','wp-content/themes/twentytwentyfour/patterns/hidden-404.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NU&vlJ?','ZTKz]<i4\0L\'..Ra','',0,'?'),('FÃ\\Ofg','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1vR','N3G\'`+R>P]Eγg/b?UX','',0,'?'),('FAw0y~X','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/MultiSiteViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/MultiSiteViewController.php',0,'Ɔ\0sj	@=MVI','Ɔ\0sj	@=MVI','ni4o{n~TLw*0\'Tc','',0,'?'),('F\'B/4{J{w','wp-admin/js/edit-comments.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/edit-comments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HثWE\'3K	','wdXuZ~~0HZl\0\'&Ƌ^','',0,'?'),('F\\\"L,4ꫥ','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequestFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequestFactory.php',0,')y[ޙmM^',')y[ޙmM^','g=HӗւHw/~p--','',0,'?'),('F˞Yy.VN2','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CiviCrmInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',0,'mXpf/\\T?=N','mXpf/\\T?=N','&8GxҞOk\Z1Q$e8rqb\'','',0,'?'),('Fx\Z4IhGbC@a','wp-content/plugins/wordpress-seo/src/helpers/current-page-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/current-page-helper.php',0,'.Jty','.Jty','/U;n\n\r|\r#nk','',0,'?'),('FpJ,`ndXV','wp-content/plugins/wordpress-seo/src/presenters/admin/light-switch-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/light-switch-presenter.php',0,'ub1VIn','ub1VIn','-O)Ap㸭e꨸\"M&\nzd]','',0,'?'),('F#\0C','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_OptionLock.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_OptionLock.php',0,'i˰guzS\n)\r','i˰guzS\n)\r','&1RpOչKu.iN/50&','',0,'?'),('Ft_͋\n','wp-content/themes/kadence/languages/es_ES.mo','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M/&+S','Ci\rfreg%x;_{UG\'^s','',0,'?'),('F?C;$H\r\r','wp-admin/css/color-picker.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/color-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<^\rq!\Z','=Li7	tI}|9oh`o=CD','',0,'?'),('F.c\n$`','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-vip.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-vip.php',0,'jhyO\\P˶\0F','jhyO\\P˶\0F','kv\'<\Zk..>	qv}EO','',0,'?'),('FVOd%|u','wp-content/plugins/wordfence/images/wordfence-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/wordfence-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]j-','8#̄(8O\"	+h\"Fb','',0,'?'),('F&g','wp-content/plugins/kadence-pro/dist/header-addons/templates/divider3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/divider3.php',0,'gUԩx\Z`{	^U','gUԩx\Z`{	^U','KZ~+L&gi\Zl','',0,'?'),('G\0=YӲ>\\{\0O','wp-content/plugins/wp-rocket/inc/Engine/Common/Utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Utils.php',0,'0%<h5mt','0%<h5mt','L$h^~}jƯs}h[)@ge','',0,'?'),('GI2Bxf!\'','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k瑿reUB]','yIpQ)<5Oo-9jWSz[,','',0,'?'),('G	\n\Z s6\0QB','wp-includes/blocks/details/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=P\'Ұbl9','b1Kvi/\"C','',0,'?'),('G%pϵw','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kh:GOiD8','`0o}{-Fc1RИWRځѫ','',0,'?'),('G6U2\01RJ','wp-admin/js/theme.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$߮ȼԔZH&',' +?uCȗENEi{_\"֥5̈[','',0,'?'),('G:Z]Y!tI\"','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jI78{rP','UkZM=OEwDw |I;','',0,'?'),('GQ{)?R`)','wp-includes/blocks/post-comments-form/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1{ⱄk_Bv(','k-\n!5<s+LTy3w','',0,'?'),('GU@a	,V%Ky','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j%0y	oؒ','\ZbX22Ts\0vtҧޯh.','',0,'?'),('G`_w:}Qj#','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php',0,'c#pr]pp}','c#pr]pp}','ԘC\0X^?i+8[&\0Y?pV7&H','',0,'?'),('Gi9$LвuU߬','wp-content/plugins/wordpress-seo/src/presentations/indexable-static-home-page-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-static-home-page-presentation.php',0,'6>}\r+D>y','6>}\r+D>y','M.k~_+>`=HϮ2^xEo','',0,'?'),('Gm:MľVLЉ','wp-includes/js/tinymce/utils/editable_selects.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/utils/editable_selects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jq2I\'J9E','vGjsf	ed&g+','',0,'?'),('GsMEB*ۨvQs','wp-content/themes/kadence/inc/customizer/react/src/borders/borders-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/borders/borders-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|lc΁ԶaWeY\"','ƣ	F8~ЄP/Odl[U\r[/N','',0,'?'),('Guʭ','wp-includes/class-wp-meta-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-meta-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Z_L\']','m+p_-^`-~Guct','',0,'?'),('Gu5aԯ','wp-includes/rest-api/search/class-wp-rest-post-search-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#~o\'/N','$j^*lluC=T5	zDD','',0,'?'),('Gu^/1ՁS7','wp-includes/atomlib.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/atomlib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZZA2Ϡ,','+bt=U(._lb_P$W}','',0,'?'),('G9q=ʥ[3?a','wp-admin/images/bubble_bg-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/bubble_bg-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[bLPor','GJ{B-r$u] ]E.\02%k','',0,'?'),('G=u\nˮ\0V}','wp-includes/blocks/avatar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@1&WsԆ׾',')I\'(yYug3TUw>iM','',0,'?'),('G7\ZI&:x','wp-admin/edit-form-comment.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-form-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>I9j@so','QIJ1	濪Lɢr(','',0,'?'),('GXV0V;wX','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php',0,')\02<`tt',')\02<`tt','$kc5z0z[^#o!m#mAK','',0,'?'),('GެK;\r17j','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php',0,'c HІX\Z^','c HІX\Z^','Pāi\'1QC*<1);{a\ZȨU','',0,'?'),('G;\0ݢ*g\\','wp-content/plugins/wordpress-seo/src/integrations/watchers/search-engines-discouraged-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/search-engines-discouraged-watcher.php',0,'c_\rUqg','c_\rUqg','4`Z`.QtP2%Y\0Ge!P;`','',0,'?'),('GӐ\Z\n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php',0,'YZF^Z','YZF^Z','8ŵnf$sٌ>eo~BH:,WS+','',0,'?'),('G4oc%k','wp-content/plugins/wordpress-seo/src/integrations/admin/admin-columns-cache-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/admin-columns-cache-integration.php',0,'[	T.kvß%','[	T.kvß%','Dmb,iJ>=@gwKlj','',0,'?'),('GV]5\n]','wp-content/themes/kadence/assets/css/src/_grid.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_grid.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\"KnE0>o\"$gVD','O?к)2Qj|WIܴ*','',0,'?'),('G fe)o*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x[d!=','iuhznoٯcŜv>e/b:','',0,'?'),('G)ZZ0%GVJ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php',0,'Ҩq\0\Zao','Ҩq\0\Zao','8k+xna{Tl[*B\0m','',0,'?'),('G\"?5&8L1','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php',0,'2\n0a','2\n0a','yb4Y;mNs','',0,'?'),('H:E0\0','wp-content/plugins/kadence-starter-templates/inc/class-logger-cli.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-logger-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X?;b*:','n9O%AW@c~P3','',0,'?'),('H!h|SE$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Contracts/Storage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Contracts/Storage.php',0,'+AI^r','+AI^r','IܥB\0׼9xs`Sz3Ř','',0,'?'),('H+E~}1Q','wp-includes/js/wp-util.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӆ\0NT5~]','Plf zHCqDN>t\r0xF','',0,'?'),('H=3P;T~','wp-includes/blocks/separator/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EȪh','אZȽn_6{Nn;FM>un\"','',0,'?'),('HAf,$F-','wp-admin/css/customize-nav-menus-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+gR_*Fnt','\'!U:1Զ_i<\0wb#oWG','',0,'?'),('HBqqr|]k','wp-content/themes/kadence/assets/js/admin-activate.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin-activate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4 @T;fU','P{9][CTku^s,A','',0,'?'),('HGh\'xR~\n','wp-admin/js/customize-nav-menus.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ry	ZK$','*$5YFrtL]XyJofQfl\'52<:','',0,'?'),('HLiL3D','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Validator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Validator.php',0,'M)td','M)td','5ꜵ<L<-]_؀zOo3','',0,'?'),('H`\\ rYC','wp-admin/includes/class-theme-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!$ڞ\Z\ZGϧ','-F,BQwZ*ip+','',0,'?'),('Hcv>]|H\'','wp-includes/blocks/site-title/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k]T-k','@vTZÈWpR$za','',0,'?'),('HoL:Y','wp-content/plugins/wordpress-seo/src/presenters/score-icon-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/score-icon-presenter.php',0,'Zq\"(3ܫsEl7','Zq\"(3ܫsEl7','2ل3~)&Nd*γiL','',0,'?'),('H|\0`B*Q','wp-includes/blocks/post-navigation-link/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P7kF','A\"+5L)qϳ~{:<z ','',0,'?'),('H|\'Yf','wp-includes/blocks/post-comments-form/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','쮛9\n.ha=8','b?C=P\nEHgpE','',0,'?'),('Ho7Y\rť','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LavaLiteInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',0,'@׳;n&P','@׳;n&P','.~ʟ1qYA9\n>Y{-<','',0,'?'),('HbZ\08P|T/P','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ls \nJ.','XJH44P3`.t5n\'/م','',0,'?'),('Hhyz','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-cloudflare.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-cloudflare.php',0,'5Ze>8>u','5Ze>8>u','b5B2bf΃\r}\\X ','',0,'?'),('H͇>\n{\0{','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-phrases-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-phrases-action.php',0,'\'ɋu뗧','\'ɋu뗧','5\'zG3Ꞙjr$1uS','',0,'?'),('Hl^kuǃ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/IniSizeFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/IniSizeFileException.php',0,'`\\X-%G~','`\\X-%G~','B\'!;?藑5\0Rp\\.x}T|;ݻ}','',0,'?'),('HMμ\n','wp-content/plugins/wordpress-seo/admin/views/tabs/network/crawl-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/crawl-settings.php',0,'E=o.sfV','E=o.sfV','m0=*ts9y+$iW(΁f','',0,'?'),('HY6oD{LH','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V~D;[`d','߿\n\"KL\Z6\'5czdw','',0,'?'),('H(I8|Ưp','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/DateHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/DateHeader.php',0,'T~ڜG2','T~ڜG2','(]\rfbֈYۅ:	f','',0,'?'),('HýiZU,HL','wp-admin/includes/meta-boxes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dyht@Th\ZKV','uoUWTԙL!Z}:K','',0,'?'),('HCTp(^l','wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')`ee#a^','=L\"biN1ꊚK|','',0,'?'),('HָHTm[','wp-content/themes/kadence/inc/customizer/options/general-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']gjpM','b?t{$+He\"a*ăhC','',0,'?'),('HĴ.Vg)','wp-content/plugins/wordpress-seo/src/editors/domain/integrations/integration-data-provider-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/integrations/integration-data-provider-interface.php',0,'Rpe*PAD','Rpe*PAD','W#ZHJcv>^{\0$FdK','',0,'?'),('Hv.o\nw9}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ggV}','rs_.:UrpCm>lSC','',0,'?'),('H\r&tV _\"','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php',0,'U?y	|P	','U?y	|P	',' !ֆVPk`[ك,*2lVʀj','',0,'?'),('HDAYFc2vq^2','wp-content/plugins/kadence-blocks/includes/class-lottieanimation-post-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-lottieanimation-post-rest-api.php',0,'i8OAAm','i8OAAm','{He\"Z6Qv;<hL','',0,'?'),('I*XB,8','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php',0,'1ԭPڛt','1ԭPڛt','͑}&FA#&\ZX	','',0,'?'),('IeÙQeF\n','wp-content/plugins/wordpress-seo/js/dist/network-admin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/network-admin.js',0,'\n#fg','\n#fg','%=YZp%ΒG+cϤY/<:c','',0,'?'),('I\r8p:́	ޞ}`\Z','wp-includes/blocks/query-pagination/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c&GQup','3?/,([+\nR*2/$}','',0,'?'),('IW9aW3(','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hv~Q=z8j\'','n{(-B?<m}۸sp','',0,'?'),('I0S$2TB*','wp-includes/widgets/class-wp-widget-calendar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pv:2hv','}\Z))$G@U(\rJ@ÃI','',0,'?'),('I6.:\n(i\0B','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Z)*jD','z7cb{9\ZJ0ӣ7}\"ϽR[\n[','',0,'?'),('I6U\r73p','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h<|7b','_^F\";+r&Z~ӦQ|5','',0,'?'),('IMܶ_\'[j~\'6V','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/autoload.php',0,'#RpJ8l','#RpJ8l','-?\"c^HqcQ׈s@5','',0,'?'),('IYAxDv\0B','wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!#A.\\	N\n','9x*N͐j.gT،+|=	','',0,'?'),('IlwA3a!4V$JK','wp-content/plugins/kadence-blocks/dist/blocks-show-more.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-show-more.asset.php',0,'B\\[Ddmזh}(B','B\\[Ddmזh}(B','̨2̰xhݩ\nxC]@%f','',0,'?'),('Iu$j=sŗa','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-html-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-html-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qTag_OX','-w>&I,&{ﹳ[P','',0,'?'),('IC~mxK4J','wp-content/plugins/shortpixel-image-optimiser/class/view/view-network-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-network-settings.php',0,'bkT굴=','bkT굴=','4{I\\\rE)t޷','',0,'?'),('IN)p:<','wp-includes/js/dist/development/react-refresh-runtime.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/development/react-refresh-runtime.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\M(gɌ#','?l\\^	=nC6}T7','',0,'?'),('I(|hĪmjG\'','wp-content/cache/min/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/min/index.html',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('I>7Źg','wp-content/themes/twentytwentyfour/patterns/cta-content-image-on-right.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-content-image-on-right.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=-(C:(R@(','b<B=w]s@+P$l>6','',0,'?'),('Ima^Sq','wp-content/themes/kadence/lifterlms/course/syllabus.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/lifterlms/course/syllabus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.;[C}pr]','fK\\xf39L/XXhm','',0,'?'),('I:Bs#@','wp-blog-header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-blog-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_BZF1y)',';\Z/\\btI͝hw','',0,'?'),('I0^9iġAòa1','wp-content/plugins/kadence-pro/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_classmap.php',0,'VVAMVQ]J','VVAMVQ]J','pej8ZG$\'Ug\n\\o&G','',0,'?'),('II<O9\Z[R','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Slugger/AsciiSlugger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Slugger/AsciiSlugger.php',0,'-Ҧ\nP','-Ҧ\nP','\'}yr}<Huv6','',0,'?'),('IJTx)ƢA','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-progressbar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-progressbar.php',0,'\"mz\nCb','\"mz\nCb','tDq!-l(fTd]9\\$aұ','',0,'?'),('I{y\"qo','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D%dai=','PrBT#A;\r*[Nuw\r+8','',0,'?'),('IDfr٫ @','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',0,'d	gBkB','d	gBkB','N=q9ӹRȚ~5','',0,'?'),('I1iu^)8	','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpBody.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpBody.php',0,'HksY=','HksY=','aZĠ@ruBf?CMqBPGk','',0,'?'),('IeLkF^4A[','wp-content/plugins/wordpress-seo/src/deprecated/frontend/breadcrumbs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/frontend/breadcrumbs.php',0,'M5+}x\0w','M5+}x\0w','B1WfNy*\"]5ٖMn','',0,'?'),('I&{;-H','wp-includes/blocks/site-logo/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֏O\rv0','Eg]&\'5zA|','',0,'?'),('IA\"O~\"','wp-content/themes/kadence/inc/customizer/options/woo-store-notice-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/woo-store-notice-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G KҏG)\\','z[G\0Z3,s\'f7LO','',0,'?'),('IԬlv0O','wp-includes/js/dist/core-data.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/core-data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\0܏\ry0KT4','~py8brTgB2#{6Q','',0,'?'),('I_EЖm8ȩb!l','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php',0,']QC\"',']QC\"','ʘ!lX1Q47dNʥQ)Y','',0,'?'),('I%U?\n','wp-content/themes/kadence/inc/customizer/class-customizer-sanitize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/class-customizer-sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·g7$-zn','ILȑ@pZ寷','',0,'?'),('IPEXtFH%','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Lv[c)?','Ch!݀F$}wd7b(!pIF.L','',0,'?'),('Iւx=Bu.Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/FuelphpInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/FuelphpInstaller.php',0,'l84^z','l84^z',',YY	*%;h5Սr$	\Z','',0,'?'),('I8߽T\Z0','wp-includes/blocks/list/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z.{:6`,tee','[x8ALlz8m9(\r\r\0,}N','',0,'?'),('I>V]TTbW','wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sx.\Zs','bN׮%t>[ITk\0wA','',0,'?'),('I\Zd0f','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4I3l\"m1',')y#y [wemm!mHc','',0,'?'),('Im=!.','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-system-page-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-system-page-watcher.php',0,'6ãUxqk=ʞz','6ãUxqk=ʞz','\'a\\p{Y1I\r׺eY$o]hb','',0,'?'),('IV/6s','wp-admin/js/editor-expand.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/editor-expand.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N~\"( J0Ko\r','gN{U/j<}o<_','',0,'?'),('IW)u}{V','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareTrait.php',0,'siD^\rO\n~~','siD^\rO\n~~','ktnO/\"c>Z29\'蛿eAb!','',0,'?'),('J\Z5	Y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php',0,'Kg`˿^V.','Kg`˿^V.','Nx:C,|)m`[,F}8P\\)s8','',0,'?'),('J%.~ql','wp-includes/class-wp-text-diff-renderer-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-text-diff-renderer-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@g)gn\rCj','VX\0߹g|}&?Kel!','',0,'?'),('Jf3?_rC','wp-admin/images/w-logo-white.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/w-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nJvۢ~y\\','nD _;!GםcV0M9i=','',0,'?'),('JE[7U\Z~','wp-includes/js/plupload/handlers.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZQU9Z','ZNb+\0f[ɁCOzTX)6PM','',0,'?'),('J%lOܿ0<B.Z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','No$٬^s)\'','+@kYP])7LnAB\'x7','',0,'?'),('J.Ǝ=U˹!\\X','wp-content/plugins/wordpress-seo/src/presenters/open-graph/type-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/type-presenter.php',0,'%@ݏgՐa[','%@ݏgՐa[','N)y\nFaJrbW%C}uu\'O\"','',0,'?'),('J0Nq\'to#','wp-content/plugins/wordpress-seo/src/integrations/watchers/addon-update-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/addon-update-watcher.php',0,'z\nybQEU\r!','z\nybQEU\r!','xXN7{e=W8^\\F%)=n','',0,'?'),('J8EDh+F','wp-admin/js/site-health.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/site-health.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\"-1','j*w鼸PCsr\rq3','',0,'?'),('JHlEp]&e30','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/woocommerce-multilingual.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/woocommerce-multilingual.php',0,'(Yl4dk','(Yl4dk','wUBOU}\0\rR~|7`Xk7','',0,'?'),('JRcT5$hM','wp-content/plugins/wordpress-seo/js/dist/dynamic-blocks.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/dynamic-blocks.js',0,'#:~..','#:~..','sҼ L _#%\\Kޚ	~+	Ev','',0,'?'),('Jj\0pmw㚉b(','wp-includes/blocks/code/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z	mEJ','w($썎B.}e-','',0,'?'),('Jl1','wp-content/plugins/wordfence/models/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('JsS;bX#_','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_QueueCleaner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_QueueCleaner.php',0,'kt#Tu#EN','kt#Tu#EN','mČ]`,&@\"','',0,'?'),('JuZڀ}R\"J0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/RfcComplianceException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/RfcComplianceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\"	','jdJC=u,TZϚA͹.','',0,'?'),('JwV2#u	|\'','wp-content/themes/kadence/inc/customizer/react/src/tabs/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/tabs/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q07cS','kGyi\"{r5!dY','',0,'?'),('J{ֹZi^ùxI','wp-admin/media-new.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/media-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','낥ҰۨݔeN','xE)O8y\ntޖU_Az}[u','',0,'?'),('J/kA滯','wp-content/themes/twentytwentyfour/styles/ember.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/ember.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':1ZCH͉|','	7@D=3yN̪i','',0,'?'),('JÞ\r6','wp-content/themes/kadence/inc/customizer/react/src/row-layout/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/row-layout/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n0>X)','UWz+($\\K:p~/	3Q','',0,'?'),('Jyc;`TY','wp-content/themes/kadence/inc/customizer/react/src/editor/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/editor/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h[f<Eݻ_','!G/V!fIR*i/K\r`P%','',0,'?'),('J\"&0Z*','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schema/ActionScheduler_LoggerSchema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schema/ActionScheduler_LoggerSchema.php',0,'4t(wZ~','4t(wZ~','seHOnmY5wG>b','',0,'?'),('J3%>~`B7','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F#N/~U','if>a+6;t>WLF]hm#U%\\W','',0,'?'),('JM]QKR','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','чLlbF2L*','f\r4$UY[)%.c?}у','',0,'?'),('JNAq%CSL','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php',0,'^ִ5D\0zT','^ִ5D\0zT','V@XX.34','',0,'?'),('JPtVDܦm','wp-content/themes/kadence/inc/customizer/react/src/sorter/setting-sorter-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/setting-sorter-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	BguT','Z?k^\Z?\0HJNڥ45_','',0,'?'),('J;<C{߫N','wp-includes/blocks/spacer/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&PG>uY7','s<f7\'7$`~H\r|J@','',0,'?'),('Jn|\rN','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Replacer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Replacer.php',0,']ezZF3j',']ezZF3j','kކļǑS(q`Q#e','',0,'?'),('JEE>2vK','wp-content/plugins/wordpress-seo/lib/model.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/model.php',0,' ulk#Q',' ulk#Q','ƝÍ #o.rr?shO','',0,'?'),('Jjjw])ʏ','wp-content/plugins/kadence-blocks/dist/blocks-advancedheading.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedheading.js',0,'G\rvGnT (','G\rvGnT (','jxA:WW2A\"s`\n׬.','',0,'?'),('JN&\Z<,hg','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/CurlResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/CurlResponse.php',0,'/AL(6fV\\BR','/AL(6fV\\BR','3i7[dIIK\0mߋ\"fi2','',0,'?'),('Jլ4\rn','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\\c7yxгl','~qV*\'1]3^m','',0,'?'),('Jjuiah#ci','wp-content/plugins/kadence-blocks/dist/blocks-countup.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-countup.js',0,'lvsN<bK,o','lvsN<bK,o','Ds<7Y㮢C','',0,'?'),('Jr~%2u$m','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/index-https.html',0,',2Ga%wLS~',',2Ga%wLS~','5U8]c\nh5A*sZ߆=<','',0,'?'),('J򾁬OhsDؾ','wp-includes/js/zxcvbn.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/zxcvbn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|	#PV	/{M_','vXI9n1e6C\\.p+\"K','',0,'?'),('KBJO+ؓ','wp-content/plugins/wp-rocket/inc/classes/interfaces/class-render-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/interfaces/class-render-interface.php',0,'D8fjo}|X','D8fjo}|X','RCE=N\r!PU','',0,'?'),('Kߺb','wp-content/plugins/wordfence/lib/compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>zxC}','Nܓ#dtB!\"M՞==@o','',0,'?'),('KJ_Vz4G	','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Cache_Primer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Cache_Primer.php',0,'=T~Df','=T~Df','\Z˞\r1<fwsc27eU.6c','',0,'?'),('K/gm9Z4TM','wp-content/plugins/wordpress-seo/src/user-meta/user-interface/cleanup-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/user-interface/cleanup-integration.php',0,'PV؝N?]','PV؝N?]','Idt!/H_cvT(\n<','',0,'?'),('K\'.Xף\0T\n','wp-content/plugins/wp-rocket/assets/js/lazyload-css.min.js.map','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-css.min.js.map',0,'F}M\ro','F}M\ro','utcT_^FUSf*R','',0,'?'),('K0\rܐcn','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rop(90Dz','$$OVf.i{\\O8p3','',0,'?'),('K2P^`X','wp-content/plugins/wp-rocket/inc/admin/ui/meta-boxes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/ui/meta-boxes.php',0,'!§kA','!§kA','aޏ6ѱіR4i\0L\08Dd','',0,'?'),('K4~J#','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/WP_Async_Request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/WP_Async_Request.php',0,'EGz֓t0Z','EGz֓t0Z','>TnolunviPEP}','',0,'?'),('K4Q\rIG67f','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/ResetRetryProcess.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/ResetRetryProcess.php',0,'_NنV','_NنV','ٙø~~PxfN2wkmct','',0,'?'),('K67b;ieA<^D;gq','wp-content/plugins/kadence-blocks/dist/blocks-rowlayout.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-rowlayout.js',0,'1]Fdn\r','1]Fdn\r','O5d)tl!.~kAu%','',0,'?'),('K>^[PF1h:','wp-includes/blocks/social-link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^R}b!',':H%9	Oǁe\"!kw|l','',0,'?'),('KKOfSdiB0Ov','wp-content/plugins/wordfence/views/scanner/scanner-status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scanner-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2vt','9`N>ɞ9:A\0L','',0,'?'),('KL\Z̒ȮW`Y[J','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/Canary.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/Canary.php',0,'@Geo}B','@Geo}B','Re1MFW[&fi','',0,'?'),('KOL	题Tti1','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-captcha-verify.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-captcha-verify.php',0,'fVȍs{N','fVȍs{N','8t=) T(=\'s礙C','',0,'?'),('KZѼ˷m','wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php',0,'G1|jang','G1|jang','f\rp|lj\"P@','',0,'?'),('K`T\ry55','wp-content/themes/kadence/inc/customizer/options/header-dropdown-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-dropdown-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\\rRT>8r΅','lU8FЫ\Z8Dkĵ=VbD2P\"','',0,'?'),('Kg[;V,g','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PiwikInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PiwikInstaller.php',0,'Eߒid*P','Eߒid*P','A^4@\01ʛy&ل#HSR','',0,'?'),('KpM ruʏr','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/AbstractUnicodeString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/AbstractUnicodeString.php',0,'E`O','E`O','\\ǡ^~9NNV\\|ĤӼX','',0,'?'),('KnҋD&sRWU(','wp-admin/css/farbtastic.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/farbtastic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#^:G(:k\n','47Vf /DW3p','',0,'?'),('Khx\\\r\\','wp-content/plugins/wp-rocket/assets/js/lcp-beacon.min.js.map','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lcp-beacon.min.js.map',0,'l,\n]ǱZ=;','l,\n]ǱZ=;','}xL|Yw2vSbn xk','',0,'?'),('Ks~XĒRaے\"','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-icon-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-icon-block.php',0,'Xzd*3hq@{','Xzd*3hq@{',')ˣL*\'s^쌵@Uh','',0,'?'),('KcG5U&]:','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mq|\roX','?PF\"5Z@YP+JsӚ','',0,'?'),('K +CT=\nq','wp-content/plugins/duplicate-post/src/admin/views/options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/views/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zw<\Z7\n\'EWK','hn6-OB@D},۬1r@ޱlW','',0,'?'),('KR	wAe','wp-includes/blocks/latest-posts/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\\$zQ `IL|N','J,+=(#a2Q<`K5Z','',0,'?'),('Kc#2s/(\"','wp-includes/widgets/class-wp-widget-pages.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rLZTtϛR','*\"#倮U8c*[j\'','',0,'?'),('K<H<7E,l','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-brute-force.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jg_G~y1','.Ґ%\\z\"|dK*','',0,'?'),('KB_#3;','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/plugins.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/plugins.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fȉjO','~N!H1(W=뺑','',0,'?'),('K\r\\Uz\Z:\'','wp-includes/sodium_compat/namespaced/Core/ChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V*F谯<l','®RlUwzankGt3','',0,'?'),('K]Cl7:D\0','wp-admin/js/widgets/media-audio-widget.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-audio-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P IM;p8vn[S','9jlxBeH:y%}c	TP_','',0,'?'),('KLx<CHe\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ENĂۛ(\nn','Ѭ}^EF>ڂB','',0,'?'),('K	?27;jRpV','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/ParameterizedHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/ParameterizedHeader.php',0,'mқCV','mқCV','.~P@t,(a\r2h߂','',0,'?'),('KUǥ7>3]sq','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ReIndexInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ReIndexInstaller.php',0,'I!9,$pYi','I!9,$pYi','9kQ0֚AԽ44\'Ds','',0,'?'),('Kޞ!J=t','wp-content/plugins/wp-rocket/inc/constants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/constants.php',0,'XIrkd:U','XIrkd:U','_rWHxnm0;Y𗩪=r#?.<%','',0,'?'),('K0!>}@ߩ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WU;mB\"~','>TKkW69O3։*Gx.{-Q','',0,'?'),('Ko2x2o','wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-complete-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-complete-action.php',0,'Yo*!2<OC2¤`2','Yo*!2<OC2¤`2','|.ԍg?y;?+9s','',0,'?'),('K7b{ru&MXD','wp-includes/css/dist/block-library/editor-elements-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-elements-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c|$\0{o','$2iQf~\':Sr4:A>','',0,'?'),('K4ַ̀&*	','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';a!P','ƺ^MN4&a=M','',0,'?'),('Kϥ%:{RjX','wp-content/plugins/wordpress-seo/src/generators/schema/author.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/author.php',0,'l8xA\r','l8xA\r','׃>4Ol/09puc;','',0,'?'),('K *;ܼnc','wp-includes/blocks/calendar/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dܤԴп ڵC','+$vI\0MMM\\sꩺ','',0,'?'),('KW&\0\0K\06G','wp-admin/js/set-post-thumbnail.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/set-post-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':1N(xlX\'','v9\n{lK~q#>ߦ J`~','',0,'?'),('KK+2	aeZe','wp-includes/class-walker-comment.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vc*ܕXݭ#^','\Z`A=o>kȬsnI&','',0,'?'),('Lw*ҚFT','wp-content/plugins/wordpress-seo/src/conditionals/wincher-automatically-track-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wincher-automatically-track-conditional.php',0,'#$aH','#$aH','QE-RK/S-!VΈf-Ȑp.]','',0,'?'),('Lb>oOj*6','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EosCg.h#;a`','\rӃEQŹio?,ԜUP>k4','',0,'?'),('L5CZz','wp-content/plugins/wordpress-seo/src/builders/primary-term-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/primary-term-builder.php',0,'ݘB\nb**eCf','ݘB\nb**eCf','G	GqݿpgK4PqܙκqbVE','',0,'?'),('L<#\Z}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9KM:Tf9',';TO`(6,skZcR+','',0,'?'),('L#/۰*3\r','wp-admin/includes/class-wp-terms-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-terms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Өwwe^K','>0D@X+\rci)RD ','',0,'?'),('L(n9[2C6','wp-includes/js/zxcvbn-async.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/zxcvbn-async.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\nO\\Yb','\'FP\Z/G\nJ\\B\ZIT','',0,'?'),('L9PX{{E','wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-redirect-nopremium.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-redirect-nopremium.php',0,'{J;Lg{','{J;Lg{','pP(D ȝGXQ\rkUkU','',0,'?'),('LJEvDhaOIȞ','wp-includes/Requests/src/Ipv6.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Ipv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','njr','jE-/\"/\0U\Z5\\','',0,'?'),('LMظsZ[w','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessHandler.php',0,'єm:ŕE','єm:ŕE','!)w&ʥ͡vƷ]Ng=d}D¿','',0,'?'),('LR7QToG|{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\\F\rvC','X74u\rt{MlׄqT}','',0,'?'),('LWT{P;/RQ˪','wp-content/plugins/wp-rocket/inc/classes/ServiceProvider/class-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/ServiceProvider/class-options.php',0,'km\0	T`4','km\0	T`4','Brε}Ͳy%\Z^U@a14}','',0,'?'),('Lap8gV,g','wp-includes/js/dist/vendor/react-dom.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/react-dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JuO2qura','7%7--:ٙ^Xl*','',0,'?'),('Lcm_,)P%','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/FormDataPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/FormDataPart.php',0,'\ZBL\nL@','\ZBL\nL@','mbF-P_eE@*VwnU','',0,'?'),('LdӀٟs̡','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/multilingual.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/multilingual.php',0,'N*$tGAMۙ','N*$tGAMۙ','9Gm)#ށ2!Zw> Yc','',0,'?'),('LsЇś\nc}>K','wp-includes/css/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r/\0>M67vV',' m ^Dg','',0,'?'),('LzZ#<','wp-includes/class-wp-locale-switcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-locale-switcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v(F6w<L-ci','/aFK&)9cq)b_:@Փ','',0,'?'),('LzEkRBU)Z\nb','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBag.php',0,'\r_UTF(','\r_UTF(','h)xD40l]MtL%:\rr','',0,'?'),('L}Ę[fCa<}z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rqvFX5]','<HWSsILCmK\\0r','',0,'?'),('Lջ˻vMlWd','wp-includes/blocks/pullquote/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hR<UGt','Aoi^<h+FyQԡNox]L4O','',0,'?'),('L|ǈ`s7','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php',0,'`n8f\rF5v=','`n8f\rF5v=',';lrr~þ<,d28숳0','',0,'?'),('LחGo3@','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/parser.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/parser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wٙ݁F0u','o1(ڱ=|}@Nuh?R\no','',0,'?'),('L;5.P)fN','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\nq',']UDe- @dS ','',0,'?'),('L[)ڢz.','wp-content/plugins/wordpress-seo/js/dist/languages/ca.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/ca.js',0,'5@dlL7۸v','5@dlL7۸v','V^y_\Z(|&df','',0,'?'),('L\ZA[C','wp-content/themes/kadence/template-parts/content/single-entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/single-entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PT\r)i\\B4','7Js;2dكfQ~<\\','',0,'?'),('Let\"pc(	e','wp-includes/wp-db.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/wp-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qafq@.Ro','t\\K(ɮX\'[&xl','',0,'?'),('L½1wtta','wp-content/plugins/wordfence/js/wfglobal.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfglobal.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ow{	b@@=>','\Z$u	s$-Ձi%߱:|','',0,'?'),('LEgF9','wp-includes/blocks/post-featured-image/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~C9<|pu','QJ^*p k]Zhɝ#xK','',0,'?'),('L\rkw>GVAbu','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-testimonial-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-testimonial-block.php',0,'E0_eB|','E0_eB|','\'æˍ/\0)$ƖX}','',0,'?'),('L&C0-D(h','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/AbstractLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/AbstractLogger.php',0,'G9\\Ex6A:_A','G9\\Ex6A:_A','4jdMu4xI/?','',0,'?'),('L\"vT̱L','wp-includes/blocks/comments-pagination-next/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-next/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̅azaC?','[Cy9׊`\'#F/J0C','',0,'?'),('Li+ƈY/6DB','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/API/Endpoints.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/API/Endpoints.php',0,'-&ٌ-qU','-&ٌ-qU','rpĹQ9\0TIA=ʾA','',0,'?'),('L7g','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WolfCMSInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',0,'1?ɊXp','1?ɊXp',',ƚWI VN䲪BXDb','',0,'?'),('L\r%{','wp-includes/blocks/social-link/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',335٬z\"w','|,zf<UAz1	P&fb(5','',0,'?'),('L@,VD','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Compare.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Compare.php',0,'}JA','}JA','m:ُUίrQGj','',0,'?'),('LJxqG哠`','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/From.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/From.php',0,'ΉQ[̅dƳ','ΉQ[̅dƳ','Or`C&.-M6@q','',0,'?'),('LRzH;{=$5','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-runner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-runner.php',0,'c{6f','c{6f','rxrNd;74=HӮ','',0,'?'),('L+qV;hY','wp-includes/fonts/dashicons.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MN:\'ʤȹ','J!XLl`eOsH','',0,'?'),('Lqcbg','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Error.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>FdwF','`Ϯ*\"2l3','',0,'?'),('L>tN','wp-admin/css/colors/blue/colors.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zb	','C׶xTZ)\r~\\Z\\%(Z֋','',0,'?'),('L֞+PC)~u_','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-errors.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-errors.php',0,'2KAX1z','2KAX1z','\\[ e_]vTSʑж\\H\r[','',0,'?'),('L󁸠,^\Z2w','wp-content/plugins/wordpress-seo/src/helpers/attachment-cleanup-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/attachment-cleanup-helper.php',0,'\'wٵt>@','\'wٵt>@','HO3aB_Pjo#\nbu','',0,'?'),('LfE(oF','wp-content/themes/kadence/assets/css/bbpress.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/bbpress.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\0qgn^)]','j?)Z-\ZW=ctŕ3eĿ','',0,'?'),('L)a$D-ӮJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BӚ\Z2ʀŵ܈@','zekkuu\rç C\npfln]','',0,'?'),('M\0!]D\"','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap80.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F~<v\r3H(Y\Z','=`NKٍ{0>64QE','',0,'?'),('M\r}0PJ`J','wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-bucket.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-bucket.php',0,'%	5XR)^I','%	5XR)^I','ԍ9Ꚏ\"\0=#:','',0,'?'),('M]}w-!','wp-content/plugins/wordpress-seo/src/generators/schema/website.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/website.php',0,'5V \r/!A','5V \r/!A','3qmA{J]WXnk\"F','',0,'?'),('Mx1ǋTmR_2o','wp-content/plugins/wordfence/views/dashboard/global-status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/global-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˫\'m`0>+#','pPv?ZFQQcj','',0,'?'),('MǐF0\"jV~','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/ServiceProvider.php',0,'Xэ܍1j','Xэ܍1j','$(@p3~Rw9QVS^Hk','',0,'?'),('M\'.9K˙','wp-content/plugins/kadence-pro/includes/container/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/container/Container.php',0,'u\ZKۦ?|S','u\ZKۦ?|S','~<sۡm&wꮋb볏','',0,'?'),('M1@3̦0','wp-content/plugins/wp-rocket/assets/img/logo-wprocket-dark.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-wprocket-dark.svg',0,';Np6Kkd=k',';Np6Kkd=k','/h7D>>ޥ%,7Y','',0,'?'),('M1/n̖Q','wp-includes/css/dist/components/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/components/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Oao Qɖ','	 _<c-3(','',0,'?'),('M3@-\Zw\'h','wp-content/plugins/wp-rocket/views/settings/fields/textarea.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/textarea.php',0,'P\"Nm;q\Zd','P\"Nm;q\Zd','(2#]5%HŊ8K򟝈','',0,'?'),('M<gSLe','wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/Optimization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/Optimization.php',0,'yoh@ki|P','yoh@ki|P','#}k>ؙf-@::|ձ{=PtI','',0,'?'),('M?,5*K*f','wp-admin/js/post.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','҇<YAh','9/{\"6dyh','',0,'?'),('MC\"D8wү','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/StreamedResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/StreamedResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y^~>+,e-:','=\nf\'hPrOZua','',0,'?'),('MW	:ي','wp-admin/images/align-none.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eqd2u\r','g(1X{ [].TA','',0,'?'),('MWQ;ci~8','wp-content/plugins/wordpress-seo/admin/class-yoast-input-validation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-input-validation.php',0,'aф@9b<O\0׿,','aф@9b<O\0׿,',' )ƝW:䳜C91}SH','',0,'?'),('MYG\\tX/','wp-includes/customize/class-wp-customize-color-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&S?|G','h	3|:Q9z4Y1[{^	$;#q','',0,'?'),('MmQ%9k1!','wp-content/plugins/wordpress-seo/src/surfaces/helpers-surface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/helpers-surface.php',0,'v)3:a','v)3:a','HOD&Q۶B\nԟ:M֗:','',0,'?'),('MvU%Lҵm','wp-includes/blocks/navigation/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȼ>PM=̣Cf',',z\0UQ&snOMl5*YvB','',0,'?'),('Mz1V\rZOLIbY','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-search-bar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-search-bar.php',0,'gd&kH&!q','gd&kH&!q','CnG4Lz/<	3PX','',0,'?'),('Ml=3^d\0L','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-optpie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-optpie.php',0,'%\r&et2','%\r&et2','OwG8[ͻ2Hg]JLi\015','',0,'?'),('MV1+H.o','wp-content/cache/wp-rocket/atlantagynecomastia.com/author/davidb/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/author/davidb/index-https.html',0,'_c','_c','|y֋g!\',6e6\\h','',0,'?'),('M%*M9븞','wp-includes/Requests/src/Exception/Http/Status412.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status412.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܖ[8?^FYT','rrm팰\'JWxʅCR\Ze','',0,'?'),('Mr*\rN|P:','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/DB.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/DB.php',0,'~!9Y<X','~!9Y<X','%Q_Bq)Zi','',0,'?'),('M>ժ|>5E݅$','wp-content/plugins/wordpress-seo/packages/js/images/wincher-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/wincher-logo.svg',0,'r\\nzH[','r\\nzH[','<_lybc\Z?`x','',0,'?'),('MPzQAp\"M+','wp-includes/blocks/read-more/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+`A0','O;/l:kWP(Q.?q)','',0,'?'),('Mj^5Q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagInterface.php',0,'.Xq3	`','.Xq3	`','[sR7&B/N꘮k{l}?','',0,'?'),('Mҫ(Td','wp-content/plugins/kadence-blocks/dist/icons.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/icons.asset.php',0,')ǚm0DE',')ǚm0DE','	t~&(r)pܙDt','',0,'?'),('Mv U5qe(8;','wp-content/plugins/kadence-blocks/dist/blocks-countdown.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-countdown.asset.php',0,'%/E*ICX','%/E*ICX','HrO%[|`޲F=G7{g_','',0,'?'),('MР\0A9Q+','wp-includes/js/admin-bar.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/admin-bar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?V}\0','`h&S2ذq\\x\"]7<','',0,'?'),('M;C8Yyﲏ','wp-includes/js/twemoji.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/twemoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RCmT.\r-','Q-kAmCYX4&T4\'GWt','',0,'?'),('M#t0絈','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php',0,'pܐiDi','pܐiDi','G\"r oeC*FkRgˁfk','',0,'?'),('MIMrD-','wp-includes/post-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P<S~M\ra','gj8Xc9ojݗjjF௓','',0,'?'),('N\ns}','wp-content/plugins/wordpress-seo/src/integrations/uninstall-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/uninstall-integration.php',0,'rR\ZmG\'','rR\ZmG\'','~nr<R3>=`޿W','',0,'?'),('Nfߚ^apT]','wp-content/plugins/kadence-blocks/dist/blocks-form.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-form.asset.php',0,'1+\'.i~m0\'','1+\'.i~m0\'','.l5$2̼DeUJOF9H#H:','',0,'?'),('N䀪I(','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ContainerAwareTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ContainerAwareTrait.php',0,'8KPR_T]2','8KPR_T]2','mW!@6#(ǬTOMf*ej6','',0,'?'),('N!,/ Y','wp-content/plugins/wordpress-seo/src/services/health-check/report-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/report-builder.php',0,'9ך ğ	G','9ך ğ	G',' q퍚N¬ԛ24>qf>PK','',0,'?'),('N,ߴ|Jk','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\Z:t','jK@9:ifLDoҼp1\n','',0,'?'),('N7A\0nnV֑','wp-content/plugins/wordfence/images/checkbox.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/checkbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"G\r6|􈘀\'','y~`w(j~=뤼&ݴQ>`^x','',0,'?'),('N9-?%5y5t~g8','wp-content/plugins/wp-rocket/inc/Engine/Media/Emojis/EmojisSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Emojis/EmojisSubscriber.php',0,'WH/=/\"','WH/=/\"','\rǴrLPVڦX','',0,'?'),('N=f>$KHT','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?G{g','ĀР<W;-\Z񀍙(C+,MUW6','',0,'?'),('NJ\\Ηuk-','wp-content/plugins/kadence-blocks-pro/includes/form/admin/kadence-admin-form-entries.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/kadence-admin-form-entries.php',0,'sڤ&]','sڤ&]','0M3v|]Q','',0,'?'),('NLCS%߿\rG+','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Admin/Subscriber.php',0,'8hO[Fc','8hO[Fc','˕g<64^Й?\\.r9','',0,'?'),('Ni~	`WE','wp-content/plugins/wordfence/lib/wfAlerts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfAlerts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K(A|ϯyL','\'_;?|US5d}K/+,I!|t','',0,'?'),('N|Jвznsw','wp-includes/pluggable-deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pluggable-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\"j2ߖ','U=co=t1-\\\r=','',0,'?'),('N3j@pu5^','wp-includes/js/tinymce/skins/wordpress/images/more.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\nm\0;˫z','$vo^U A\0:\\Cu','',0,'?'),('NFAXvY/a','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-accept-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-accept-block.php',0,'n_TIDuO4','n_TIDuO4','=TdLpZI|c޵gZ','',0,'?'),('NjE|{1s','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php',0,'=T0#LXi','=T0#LXi','slq2*QQ$̷s;p2','',0,'?'),('NE\\|JS','wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php',0,'y,e0Ta','y,e0Ta','6#or2Q|F޲PDՖ','',0,'?'),('N966^','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')jG@-{bk!','рajfV,H?\\tF','',0,'?'),('NY?{	c','wp-content/plugins/wp-rocket/views/settings/partials/sidebar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/partials/sidebar.php',0,'+EU$2uUuO','+EU$2uUuO','U_A;KĆIն&1~h0B[z','',0,'?'),('NHV}4G','wp-admin/css/customize-widgets-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eq_UR','Q.$J%b&M1aLWmF`','',0,'?'),('NUBya ','wp-includes/blocks/columns/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rr4{6G','yU47\"!\'R@rOk<=NI\n~UX','',0,'?'),('O*]mռ','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/RequestException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/RequestException.php',0,'N&N!8\0Ļ','N&N!8\0Ļ','fa|Xɷ(h5aDDD3?	q','',0,'?'),('O	S#Yiv','wp-admin/includes/class-wp-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_6X0{Y^g9','L(雥9Ņi>+?\nY','',0,'?'),('OҽPT^4~B','wp-includes/css/dist/editor/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sg_pXr0d','ȸtH7^:W:','',0,'?'),('O =(:<	1F','wp-includes/class-wp-feed-cache-transient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-feed-cache-transient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WYpmo7','pGx!6Qlg7`\'0','',0,'?'),('O\"l!nM_','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-react.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-react.php',0,'ւn4HGDlhad','ւn4HGDlhad','=ZW$3%ϺOh2tu*','',0,'?'),('O+[IBmm\'','wp-content/plugins/wordfence/images/wf-central-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/wf-central-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q(VѤ','\0{\rߘJ/ ^+,S','',0,'?'),('O2ɂH!֒[=','wp-includes/blocks/pattern/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pattern/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2[hY','S49J<o,B','',0,'?'),('O4ǳWQ\0R','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ǈ\"Cix','x眪!}\ZWd','',0,'?'),('O@[[J\ZN','wp-content/plugins/wordpress-seo/src/conditionals/should-index-links-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/should-index-links-conditional.php',0,'2=·b!9á','2=·b!9á','fBjO;Y#~\r','',0,'?'),('OSYWz!8ʣj','wp-content/plugins/wordfence/views/gdpr/banner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/gdpr/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>69!Gz>S','ZQa̿|꣞`!C2CK%#l','',0,'?'),('Oc%`d׊%?W','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/eu-cookie-law.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/eu-cookie-law.php',0,'SO(y:D\Z<bo','SO(y:D\Z<bo','Zok\'QyW݀gt.Tr	7oVb','',0,'?'),('OjsO*B.s','wp-content/plugins/wordpress-seo/src/helpers/request-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/request-helper.php',0,'$ʼaJl,y','$ʼaJl,y','JoIvlưz\n(Yn!#','',0,'?'),('OlqCcێ','wp-admin/css/forms-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/forms-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cn*w+Ҹ\\+׃','%n\"oz!R 	ԗ%:<','',0,'?'),('Otþ|!a]','wp-includes/blocks/code/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\ZQ響',' $\r$gI`@+9\rmf','',0,'?'),('Owj4@LUS','wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/AdminSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/AdminSubscriber.php',0,'IkI%ã/','IkI%ã/','O1wS0*իpu&','',0,'?'),('OypS)FVT>','wp-content/plugins/kadence-blocks/dist/header-visual-builder.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/header-visual-builder.asset.php',0,'4O9ϹDߥ\\','4O9ϹDߥ\\','CE]PPPsڽ+CRXp_Tk','',0,'?'),('O}޿T\\	d','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-reset-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-reset-block.php',0,'ǩMki!^','ǩMki!^','IF%|HK TC','',0,'?'),('O潼m$݋&_','wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/MaW','dJ[PrMV\ZCmX','',0,'?'),('O3zm//o#A','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-mobile-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-mobile-subscriber.php',0,'~J6s#	Þ','~J6s#	Þ','lC\\eH}%f<;0!a','',0,'?'),('O\\P5{R','wp-admin/plugins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','. ','cV~\"?b;\"=`sMҬC쐕.','',0,'?'),('O5Xs}=O^r/','wp-content/plugins/wordpress-seo/packages/js/images/tec-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/tec-logo.svg',0,'+խwJSݳ','+խwJSݳ','W(bx~,N/t','',0,'?'),('Oj3U:c6I','wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-bucket.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-bucket.php',0,'G_Y0F?6c','G_Y0F?6c','\rE$|2k0|Ҵ!Ʒݵl8','',0,'?'),('Oa+','wp-content/plugins/wordpress-seo/admin/views/tool-import-export.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tool-import-export.php',0,'Lڝ\09=','Lڝ\09=','O1ogv1E(\0RYC|Òx5','',0,'?'),('O&r蓏 ','wp-admin/freedoms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D]6L)`','rL@]×v|: Sb*=','',0,'?'),('ORrD?','wp-admin/js/postbox.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/postbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^V2W?*]\0','Ѧ9O*\ZvuJT6~Aj|T','',0,'?'),('OF}Xk\"k6ѐ','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Cron/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Cron/Subscriber.php',0,'<*nw','<*nw','YhvFȫbiPG6q0]Q','',0,'?'),('O?s\ZK?','wp-content/plugins/wordpress-seo/admin/filters/class-cornerstone-filter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/filters/class-cornerstone-filter.php',0,',\n~؛ƜE~,',',\n~؛ƜE~,','N7\')ҨU.7UfLMvIv\'','',0,'?'),('O/nY!IJ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/HeaderUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/HeaderUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']̅>E9<KT','iF@ũ^Łg?/8$l(dGFx)k%','',0,'?'),('Oڗ<B2jH','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/AbstractProcessingHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/AbstractProcessingHandler.php',0,'}ͦ,3q#','}ͦ,3q#','T1RL#I\"57s8:\0]H?A','',0,'?'),('Oy k	b','wp-admin/css/customize-nav-menus-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ؘ1Ͱ5','mI?s%@PGȢ6U,','',0,'?'),('OHI!K!0[','wp-content/plugins/wordfence/lib/menu_scanner_options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_scanner_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','drmQ?NدE','0z!_N\\×\n~N|dsm','',0,'?'),('O*m_)8_3','wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7.f+ {o','[5%b+r4ظi7+H\"B1','',0,'?'),('OOM_K7n','wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B:W@N','aHlqQH5Vh|7hfKN4','',0,'?'),('O(&K)zi)Δ','wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/FetchSitemap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/FetchSitemap.php',0,'\"jkQ','\"jkQ','`|E什4s#M1@','',0,'?'),('O໑<3ru|x','wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media.php',0,'8wo\0G\Z|','8wo\0G\Z|','5?}YHX8AGnyFPf9`>','',0,'?'),('OhuG&\0L','wp-includes/Text/Diff/Engine/native.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Engine/native.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KjJB','5lݲUgoK\\c-F`A{^{','',0,'?'),('OlO?MREYD','wp-content/themes/kadence/inc/meta/react/src/icons.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/icons.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n96u\r','jxlQBc~\r1hF:[7q','',0,'?'),('PC[fH(-','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php',0,'&/37(','&/37(','D{_\\M%FnJc$tI^JBkBe','',0,'?'),('PHZ`=','wp-includes/blocks/pullquote/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/;1&	<L;','Ni?)B:7ɲ\\7\0\'b8gi','',0,'?'),('Pbw=i','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\ZIw5AlLۢ','K{8fl7sRh嗋I','',0,'?'),('Pc\0$*U','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/Handlers/NullHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/Handlers/NullHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0r:˸8(=0','*DN&.ny/U~ՃCWGhV','',0,'?'),('P~V%RY3[>','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U@wwn','	wE,iAl\"ڷδ\Z\"','',0,'?'),('P/:̮҉H','wp-content/plugins/wordfence/waf/pomo/streams.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"xx!3W','\r,&ɩ!:xl[','',0,'?'),('PNiC\"\0+O#','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ServerRequestFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ServerRequestFactoryInterface.php',0,'bzU3W!','bzU3W!','+wWxF7.m@S`S;/*ɜ','',0,'?'),('PE۫7r|oI6>','wp-includes/js/backbone.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĤNg\\[%I2T','4ڵq_ڇUcxRtQC','',0,'?'),('PEgJZ/X\nm{','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64MimeHeaderEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64MimeHeaderEncoder.php',0,'d_)nmĕ','d_)nmĕ','.@0r!k^+vJK t%\Z','',0,'?'),('P NtD݌n\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yK] ','b}\"ozV(\rV\'QuIv','',0,'?'),('P\'(?+z$','wp-admin/js/postbox.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/postbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g=%(\Zf690','Ia1%&ܜa;^%3isJ','',0,'?'),('P2z55ݤHX','wp-content/themes/kadence/inc/customizer/react/src/typography/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/typography/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V~#qFbˎ','vRFQ_T #\\=vu$@','',0,'?'),('P73o	\0=','wp-admin/js/word-count.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/word-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rffB)','6j,AުǭsDeCz&\n','',0,'?'),('PCb-Yoi8','wp-content/plugins/wordfence/js/jquery.colorbox-min.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery.colorbox-min.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5=q)','H4\\v/XGK:gkl','',0,'?'),('PDFg_LaD','wp-content/plugins/kadence-blocks-pro/dist/early-filters.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/early-filters.js',0,'n/\\c5\'','n/\\c5\'',';uB;lVt#4Nց3Gy</9','',0,'?'),('PGM{u]˶SH','wp-content/themes/kadence/assets/css/related-posts.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/related-posts.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lGK\r@SGT \"','/}JfVZ\nJ\Z\\OZn','',0,'?'),('PJ~]; `y','wp-includes/widgets/class-wp-widget-media-image.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SՔFiɓn','ʋ4ʁpq%ٍVlnt#aLtl5,;\n','',0,'?'),('PK2I)','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yw5(nbm','m!`~:-\n&3@N[9d\r','',0,'?'),('PLF^9R6zp','wp-includes/blocks/navigation-submenu/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fH2Xm.W','\Z(f)gWNVy!qܹzg%','',0,'?'),('Peq,4\"ȾXؐa','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Security/WordFenceCompatibility.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Security/WordFenceCompatibility.php',0,']UnmRR',']UnmRR','NEC0cH/^ ZF`','',0,'?'),('Pgh\0-','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php',0,'Qen8oQ<','Qen8oQ<','Cʣ5ۦ\\Bt\r{f2BR','',0,'?'),('Pizta}a','wp-admin/users.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','퍡Lpr%b	\\','E_\'ExA07`b.*','',0,'?'),('P8WE-K2IE','wp-content/themes/kadence/theme.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/theme.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r1?Պ','\n%R#kY=Gj?[:#-.','',0,'?'),('Ph~P','wp-includes/blocks/page-list/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8	x vR<','II|{8ʰ$Ni0<&[vHV^','',0,'?'),('P\neu\"','wp-includes/sodium_compat/lib/php72compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pWdt1','D㳌*z6ؕ(A\\)iÏܜo,','',0,'?'),('P9AC','wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/AbstractASQueue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/AbstractASQueue.php',0,'btl1D','btl1D','Gc;Sjw؅u3y3\'mPgYr','',0,'?'),('Pè&R{(6M]8','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/dashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/dashboard.php',0,'Ϣ7׭fUc*','Ϣ7׭fUc*','\0pnha(}/6X!+','',0,'?'),('P@;b<\nc','wp-includes/class-wp-oembed-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-oembed-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XhC_?\\7I','swư`sƷ`5<g~*\\c^}','',0,'?'),('PM\ZI̸ݭY`r','wp-content/plugins/wordfence/lib/wfHelperString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfHelperString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')`E','OMCn=O5hKE,q`*','',0,'?'),('PJ1h|r','wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-taxonomies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-taxonomies.php',0,'43,','43,','U0`7(tYs\\htr(\'ݩ1','',0,'?'),('P?n>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php',0,';z3\0',';z3\0','aH)ݞ6.4sϤЗjI','',0,'?'),('PE:^N\0*','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/pinterest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/pinterest.php',0,'0(Mu] ','0(Mu] ','[E׸-v5!Bu(偝/aue3Gk','',0,'?'),('P&!\Z7֩','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/decatur-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/decatur-georgia/index-https.html',0,'1O~ZgT','1O~ZgT','X T;t^6P','',0,'?'),('P1$\\*C','wp-admin/images/stars-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/stars-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A#SMe.^','[耿_(\rhYTqZ','',0,'?'),('P0aRz= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3gkeͿݾ|h','Hzj鞨%p=ZiNAZ','',0,'?'),('P<{I<\Z','wp-content/plugins/kadence-blocks/dist/blocks-advancedbtn.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedbtn.js',0,'Ydala\nP','Ydala\nP','9*qwD#ZdՈE$-S8*s','',0,'?'),('P-R>L!2g','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_real.php',0,' խJ^2<8i',' խJ^2<8i','_)lP%VB-&Q^μFA','',0,'?'),('PZy7qXI9','wp-includes/blocks/post-author-biography/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author-biography/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M?a	ayw','ǲqp:\rʡkV&FH+ưs	p','',0,'?'),('PVVN{j-','wp-content/plugins/wordpress-seo/admin/exceptions/class-file-size-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/exceptions/class-file-size-exception.php',0,'iyv#<Q!','iyv#<Q!','rkv\")6B}zE87RE؀','',0,'?'),('Q#!٭캶4','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=e9\"!V|','.Ab|`EdY0]L?J/Cw','',0,'?'),('Q\r	VAu','wp-content/plugins/wordpress-seo/src/services/importing/conflicting-plugins-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/conflicting-plugins-service.php',0,'RJ$&>','RJ$&>','X\nCDn;\'+&$7[KBk','',0,'?'),('QefX_كY&','wp-content/plugins/wordpress-seo/js/dist/externals/reduxJsToolkit.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/reduxJsToolkit.js',0,'`H<_ 7:','`H<_ 7:','SOیP]%>φ+nITA','',0,'?'),('Q%Epau]G7','wp-content/plugins/wordpress-seo/src/conditionals/new-settings-ui-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/new-settings-ui-conditional.php',0,'Kh[J!N','Kh[J!N','P\ZB\'A|!ڔRm%(\\o#+\'','',0,'?'),('Q4*d\r%?Ѿ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php',0,'-LcGҒvS','-LcGҒvS','A5M\'H\"2^,_#C.gx','',0,'?'),('Q;(Mp*','wp-admin/js/widgets/media-widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yM_ Q.\rv9','=W@EH\Z\Z+m+Mz','',0,'?'),('Q=_޴ym','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':8u','\ZTMF$\"f','',0,'?'),('Q?ٟgL|ua','wp-includes/class-wp-textdomain-registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-textdomain-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ب S)9','U*V9\n0*+r-}ۺ\'1}','',0,'?'),('QBWqz.','wp-content/plugins/kadence-blocks/dist/blocks-show-more.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-show-more.js',0,'V<S!=%KehVp','V<S!=%KehVp','\0f	Yz+TW19K=[9U3@i','',0,'?'),('QCȧ$9B)M','wp-includes/blocks/tag-cloud/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\\kvs\n\\>','U?e3i;eHpq\\Jy\n%꙲','',0,'?'),('QF\0ru-HH\ZO','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/CurlHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/CurlHttpClient.php',0,'°)!d','°)!d','+{\"5P!i٩rBBW~]r','',0,'?'),('QG3G]^pXS~','wp-content/plugins/wordpress-seo/src/conditionals/semrush-enabled-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/semrush-enabled-conditional.php',0,'-I\Zʑ*0\Z7','-I\Zʑ*0\Z7','\"-_z/VFda{vp<fi&','',0,'?'),('QT*fP.','wp-admin/includes/file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bAjmL','r<,EWiK}-MFu\n3F','',0,'?'),('QY1TlVr<','wp-includes/js/customize-views.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r<`D','b2M!o;-veq\\f]l:','',0,'?'),('QqPOQJ','wp-includes/fonts/class-wp-font-face.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-face.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8d\rPS~9\08','pfJF}⇘Nr:0τ/','',0,'?'),('Qt;Qܖy','wp-content/themes/kadence/inc/dashboard/react/src/starter.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/starter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⏎A;?ep','XtpYv5$5%.B}','',0,'?'),('QuoPX\0Sڞ','wp-admin/images/bubble_bg.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/bubble_bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~g<ćI0','\'+uW`-AS\'}S~Sb','',0,'?'),('QcmuX\Z3B+X','wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$mR_`W6\0','s)W?PӎB*?xBZdɗeZٞ{','',0,'?'),('QPA鐚z','wp-includes/blocks/columns/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rr4{6G','yU47\"!\'R@rOk<=NI\n~UX','',0,'?'),('Q?JN;A','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lWeU{9','G8=\0> 3wg3.4','',0,'?'),('QP5ZwNia','wp-includes/blocks/quote/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Evb&UW{','$0	8s;_	I,u[\\N','',0,'?'),('Q\'=!Y5','wp-content/themes/kadence/assets/js/src/ie.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/ie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k2A+2.\0ù','B);Տq©&*\ZȆG*^e','',0,'?'),('Q}i)s>%Uu','wp-content/themes/twentytwentyfour/patterns/template-search-portfolio.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-search-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!g+SȲlp#F','r49KPe6ZG0^d/','',0,'?'),('Q6K4H','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i0\Z_c','SBYlMЪD撧}\Z+>#};','',0,'?'),('Qx̿Py\'uE|','wp-includes/blocks/page-list/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z-ݒ|3','-xÑ&>&r\0IB\r\n/','',0,'?'),('Q-C-]C','wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E/i?ݶ83|E]','C#OKKؗB.FYƉ+EwFKY9.','',0,'?'),('Q5ޱr^','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AyԚx\'y','sBo˦~?\nԗlQ+޾','',0,'?'),('Q9nb7\rnH/?0,','wp-includes/js/dist/private-apis.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/private-apis.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ՙf4r`gF','A򤴀1VgEa@ݵ','',0,'?'),('Q`8M8','wp-admin/press-this.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ƛ{tY[:g\Z','i>[t\"{D[\r:gUlt:P,p','',0,'?'),('QW0=+K','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','گCI^S[','acQ乁\ZD:fe	\"bo?:F\0x','',0,'?'),('Q4%z>*I','wp-content/plugins/wordpress-seo/inc/class-upgrade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-upgrade.php',0,'uA8NO-sw','uA8NO-sw','S+b.iC%y=%ALQ','',0,'?'),('QˢIEZ0k','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seopressor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seopressor.php',0,'OfȶLc','OfȶLc','Q+V\'?Hɦ]ĈhX\'\n ','',0,'?'),('Q.]Z|k\\3(','wp-content/themes/kadence/assets/images/kadence-logo.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/kadence-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','҄ALxG\"E',')f\'*7sNa\\TQu\\n','',0,'?'),('Q|~anvzd','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php',0,'*NGV`eZ','*NGV`eZ','{r-3]eldxc@p`^','',0,'?'),('Q]>.&ry','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/StreamableInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/StreamableInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ܩuKG~{ޜ','#prGX0V#AԋDiN\n','',0,'?'),('QG72C\ri','wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?G-3w$vۼ +','#C:v-!WOb','',0,'?'),('Q\nеy','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Union.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Union.php',0,'kv-a)I0p','kv-a)I0p','gY(M?47Ʋal','',0,'?'),('Q.ì\\XeOI','wp-content/plugins/wordfence/views/dashboard/options-group-general.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(t*-6ـX','mVdhI∂dTK{z\Z','',0,'?'),('Q)*8Oԫ4;i','wp-content/plugins/wordpress-seo/src/helpers/wpdb-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/wpdb-helper.php',0,'y:\Z6Q\rAe\'D','y:\Z6Q\rAe\'D','BH\r$i$Pd !٧9','',0,'?'),('Qlg-','wp-admin/js/comment.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/comment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Xv4\nl','G}P8wCjIȀOKîX~3','',0,'?'),('Rv5W6`ھ','wp-includes/css/dist/nux/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/nux/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s{̉7U=\n','l[ƅU+0&\"߮','',0,'?'),('R9TN/g','wp-content/plugins/wp-rocket/assets/img/imagify-install.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/imagify-install.svg',0,'=)]Q(','=)]Q(','I^/EgA_vZDU,zhl.\0','',0,'?'),('RG){2zWVh','wp-content/plugins/kadence-blocks/includes/resources/Health/Required_Function_Verifier.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Health/Required_Function_Verifier.php',0,'\ZxN?ޝ7','\ZxN?ޝ7','DZ	hb`Tfʘ[@3X?','',0,'?'),('RG󠘍&t','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t!jRԔ0Q#nK','\"X(1-PT%ӶsX=f','',0,'?'),('R#7kc_z{+','wp-content/themes/kadence/inc/customizer/options/learndash-lesson-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-lesson-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I&GЗ%','w\r2-DjYQ=FY','',0,'?'),('R3Us3}T','wp-includes/js/autosave.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/autosave.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǋcJnH\'','T%#5rc5꘩m7','',0,'?'),('R8yҞ綄','wp-includes/css/dist/block-editor/content-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/content-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xWrw%J^','C	4?	kkWyO_ugɼS%','',0,'?'),('R9\0s@`c:','wp-content/plugins/kadence-blocks/includes/assets/js/kt-tabs.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-tabs.min.js',0,'%׿W%?2+','%׿W%?2+','>]6Fhq8}dmNW?','',0,'?'),('RD*I||]\"','wp-content/themes/kadence/inc/meta/react/src/meta-controls.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/meta-controls.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ru^ni^-','+jrj9qo%ǲmt~','',0,'?'),('RQb7f |~ۓ(','wp-admin/js/widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4>APPu4Ą','v5ᐪmє\"-*~``Qg1F/','',0,'?'),('Rhz%s!ӇVd','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-editor.php',0,'6.Vh猜/','6.Vh猜/','DoF|8)!Q>p8k~2{oY\\hsU','',0,'?'),('RjqIӏ\ZY&','wp-includes/sodium_compat/src/Core/Curve25519/H.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\rJ`X\"8by','oHiYN3	>_J,S^','',0,'?'),('Rk4t<Bt\'','wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner.php',0,'EPCe>F5t`\\','EPCe>F5t`\\','!~k0<<譁,_@\nx','',0,'?'),('Rr|R+jA`','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/autoload.php',0,'Z9`B4ŁxU','Z9`B4ŁxU',',1&|>##h?w!0pg','',0,'?'),('Ry	mVGeŔ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/RelatedPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/RelatedPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DC5p,b','E2-*S470+{\\Pz-!}]','',0,'?'),('R1?YVDt','wp-content/plugins/wordfence/lib/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('RPO)/\'%1xe','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Result.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Result.php',0,'1^4x\ZuMi.','1^4x\ZuMi.','Aye3̮\r-<lZ%?Oº','',0,'?'),('Rb:ZKL','wp-admin/js/application-passwords.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/application-passwords.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\"5pC\05P;.','	>W̞66}{F+*CWVJ','',0,'?'),('Rq8U{\0','wp-content/plugins/wordpress-seo/src/surfaces/open-graph-helpers-surface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/open-graph-helpers-surface.php',0,'I\\9qP\ru!sD','I\\9qP\ru!sD','-rhC*?Өo :Ço','',0,'?'),('RAH=W>a','wp-content/plugins/wordpress-seo/src/integrations/integration-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/integration-interface.php',0,'q0\0ND	F','q0\0ND	F','SlfA O	w|=EB͐Dfq','',0,'?'),('Rx4Mp@9u\n֊ p','wp-includes/images/wpspin.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/wpspin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$n4H{','-*znD,\"aHKHrޱ~\Zy\Z%','',0,'?'),('R|Rx/bzn9\0*J','wp-admin/includes/plugin-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Rl\rc','NPFFӟkvJ̻_\\q','',0,'?'),('R쀍	','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/ShortPixelLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/ShortPixelLogger.php',0,'X`8U>-MD!:Gl','X`8U>-MD!:Gl','sW`YSX%#qp3\"J3','',0,'?'),('R4tiTpL|E','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeEncrypter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeEncrypter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MbgGiV','Yp,G-Et1/g}1q2$','',0,'?'),('R\\SC|ju9A','wp-includes/js/media-grid.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-grid.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R=^/}f=b','=K?՝t]	y\"*@yT_','',0,'?'),('R#wB0{\\˾','wp-content/themes/kadence/inc/customizer/css/kadence-customizer-preview.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/kadence-customizer-preview.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&4(RydNoli=#','l4xjLlf8Z\\%>AYT|)?&','',0,'?'),('R¥Leq	&','wp-admin/js/user-suggest.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/user-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jl,f.Vh','\ZԂ	8՜g\\ISグ6','',0,'?'),('RܰoL8~\\lCR','wp-includes/blocks/audio/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z#@ϛ\0v','ͲCOR̋<l%n\ZS>*','',0,'?'),('RH\r0!d?c&','wp-includes/widgets/class-wp-widget-categories.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bofOճK','jc\ny;~;3RH3z4UhG','',0,'?'),('RG5to$o','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-greg-high-performance-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-greg-high-performance-seo.php',0,'\Z\\3\rfKctL','\Z\\3\rfKctL','l9X.(gZSJ:(*','',0,'?'),('S{죃@q3','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/InputBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/InputBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YԀ/',';={s=\'u#:0\n','',0,'?'),('S?dxSَ@','wp-includes/blocks/query-pagination/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AL4vKpA\\','UϵRxvqͧ%Ήzu*l','',0,'?'),('Ss\r]2iO\"','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/ServiceProvider.php',0,'\0PIUFl','\0PIUFl','/!ժjfG|G_fIi\'\Z','',0,'?'),('S)n&U0L\0','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CheckFinished.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CheckFinished.php',0,'5߅$Z','5߅$Z','sM6إjX@V?`^Ԯa}ծ\'n.KA','',0,'?'),('SVf=1_Mwr>\"J\n','wp-includes/blocks/comments-pagination/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*n,Z~t<4A','	x{]\n_Yo\nws{-\"E#','',0,'?'),('S!7Y*e4JS','wp-includes/blocks/comment-template/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L0Hs$8\"!','>GidV 5uv4','',0,'?'),('S.FȫAj(:','wp-includes/js/hoverIntent.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/hoverIntent.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ң4K','z\\:Ǝ[4d`}{;ѕfxLԩ=','',0,'?'),('S0־K/17u','wp-includes/js/jquery/ui/selectmenu.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/selectmenu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','괁Msm','B?5SEVJz~^~.8%_\\u7','',0,'?'),('SAboa-eNR','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php',0,'簞Cʨ!/hP','簞Cʨ!/hP','u\rwN+0t_rg%M)\n$','',0,'?'),('SC$0\ZÑH','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/easy-digital-downloads.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/easy-digital-downloads.php',0,'jBzG=\ZCU','jBzG=\ZCU','è+@HY=\'%;h\"I@4ǎ4|՘I','',0,'?'),('SX+71?-','wp-includes/js/jcrop/Jcrop.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jcrop/Jcrop.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z7eQ%K','!@X7JŃp3K;S*!L','',0,'?'),('SdO䐔qFt','wp-content/plugins/kadence-blocks/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/ClassLoader.php',0,'+fq(4Ȯ','+fq(4Ȯ','k(\r(Njj\'̣6./\'','',0,'?'),('Sj~6{X','wp-admin/css/colors/modern/colors-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fiKSS	ũIb','` q!ء G,','',0,'?'),('Sr*zqqR','wp-content/themes/kadence/inc/customizer/options/header-popup-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-popup-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ߢJ&-Wc','^c.\Zo\rgrv\rÆ*m1Ta~','',0,'?'),('SzWNKUS','wp-includes/blocks/calendar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\\fY($ĭZ','ɵ/5\rWinއ,JOp','',0,'?'),('S{\\p@rF<>','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/CDN/Cloudflare.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/CDN/Cloudflare.php',0,'yW|FklE]Yś','yW|FklE]Yś','Cib(E!\nyxT\nN8;VpR','',0,'?'),('S~w\ZAjMʕ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0:G\Z+^q_','K\r:fVe+vG!.*=','',0,'?'),('SCi1ۭj','wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ߗ\"\n`','^Q)7</EouO􊟈DϷ>k','',0,'?'),('Sp>WrYE','wp-comments-post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-comments-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AJ3^!@Dx','wsn8`wi','',0,'?'),('SS4saKb','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/CacheInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/CacheInterface.php',0,'a=aܬI)','a=aܬI)','N!%Ă<|(L/Ե1b','',0,'?'),('S?\"=8,kv','wp-content/themes/kadence/inc/customizer/options/header-mobile-cart-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-cart-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l!dlm2d1ᔮ','E)n6߂g@\rU?L%5}Cq','',0,'?'),('SY15	H_F,','wp-content/plugins/wp-rocket/views/settings/mobile-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/mobile-cache.php',0,'͔]*2i4]N\Z','͔]*2i4]N\Z','\r#bяK]:0}g','',0,'?'),('Sl+d{\0%L','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-notification-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-notification-presenter.php',0,'Avq`','Avq`','hCbb\"(aEmsH^VSA2Ķl','',0,'?'),('S߿Aʢ-hlÄ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php',0,'|9\n_nMH\0.','|9\n_nMH\0.','\\Tw31TU','',0,'?'),('S䍇t\\<P','wp-content/themes/kadence/inc/components/heroic_kb/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/heroic_kb/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?4;b)js','hJ &Ix,֘,S\"9}|','',0,'?'),('St J9G','wp-includes/css/dist/block-directory/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-directory/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1`{4؍','2^24=J*;ϽЫ\0]X','',0,'?'),('S.ou>','wp-content/themes/kadence/assets/css/tutorlms.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/tutorlms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r@\ney۳','o0_߷oɦp\0h?bb8','',0,'?'),('S\npލG%','wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('SW\0؋?UPN&','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{C#Ċ ','\'!PY<osO','',0,'?'),('SÜ2c%׀a','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ResetInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ResetInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\'2ף-U','Wۗ\n\0Ĝ[Og1A3@+','',0,'?'),('StpDU','wp-content/plugins/shortpixel-image-optimiser/class/Controller/OtherMediaController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/OtherMediaController.php',0,'j4ĒGe-\Zb','j4ĒGe-\Zb',')	%R|OtޯY)qDFl','',0,'?'),('SХWcQq+7','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-title.php',0,'I(0ʚh4\"X','I(0ʚh4\"X','ot~@:΂ޥWau΍ֽ ','',0,'?'),('Sڹ\04yc!eE;','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Config.php',0,'&8BJ^Rdw9oe','&8BJ^Rdw9oe','k^\'P\Z_!\0s.	\n?','',0,'?'),('S&az8Jض9','wp-includes/widgets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r|U;=fQ','BGYmI\nqTvQ\ZdPư','',0,'?'),('Stvg','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.X9X/9B42	:','_xulcޅ6\\M\Z̪w+)','',0,'?'),('SgBvm','wp-content/themes/kadence/assets/images/fonts/lora.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/lora.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h<@?5\r5','~ٟ5F!6^(*u','',0,'?'),('Spm$UJ','wp-content/plugins/wordfence/css/license/response.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/response.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V7iixWC','\'=Ұ\0̀> P5a	d','',0,'?'),('SEF~)','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Media/Embeds/EmbedsSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Media/Embeds/EmbedsSubscriber.php',0,'M;.QI8','M;.QI8','`8[JL+PNbB(2\0)','',0,'?'),('Sy4#l;O޻\'	','wp-content/themes/kadence/inc/customizer/react/src/border/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/border/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9]r%$','̖@{X{V)\n','',0,'?'),('S\\8z;X8','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-term-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-term-watcher.php',0,'\n^@Mz9u<Hq?','\n^@Mz9u<Hq?','2B/\nᆺѲtJ3\"ݨ\07ι+','',0,'?'),('S*F/|J_uB','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Normalizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Normalizer.php',0,'Sk~g!i','Sk~g!i','\r}Kۻ⨪vU(a','',0,'?'),('T\0Υ}xY\0ھJa$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php',0,'mPr|ThtT','mPr|ThtT','A7Nyg\Z|E)\\Y8','',0,'?'),('T(_P	tc(z','wp-content/plugins/kadence-blocks/includes/assets/images/masks/mug-hot.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/mug-hot.svg',0,'lc˽^؈UK','lc˽^؈UK','b[JDN|r\\j}d1nP	','',0,'?'),('T\r(v','wp-content/themes/kadence/webpack.config.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/webpack.config.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s+g85(g','k$۬ S`	ɚ3sd3v*\r','',0,'?'),('Tp.fqu]\'.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/ServerSentEvent.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/ServerSentEvent.php',0,'WBs$C\Z<','WBs$C\Z<',')]h\rmo\0t5/o','',0,'?'),('Tr~W]','wp-includes/class-wp-comment.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v@','w}4rK5/i*Rej8QVkz]a','',0,'?'),('TLYSam4H*e','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!QH9-','GTɀCrJ-%u<A((h','',0,'?'),('TVPX\\c','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mGIv&<N','5[!eL^9Qλ$x','',0,'?'),('T+[u1:\Z\Z','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AllowedAttributes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AllowedAttributes.php',0,'BGB	؊FFJz','BGB	؊FFJz','/XŋjFg~ٓ\0/\nȬ<r','',0,'?'),('T6K?s 7(','wp-includes/customize/class-wp-customize-sidebar-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-sidebar-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VjBرq','{#i`\0j` pǍ+fF','',0,'?'),('T??:q׮Pah\'','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ANX[`h\0','\"xIB6E?i\'265y/','',0,'?'),('T?!0]?#\\b','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPDismissOption.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPDismissOption.php',0,'<y kL','<y kL','V]D9aX,pL]Z>\\dB	=','',0,'?'),('TL>ǧ0&@3','wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','--U!^*MUaq','s@TZx9FfӞS{*)5y<','',0,'?'),('TMl','wp-admin/includes/class-wp-screen.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Chmr\'e7','p`NR[C|{ߜk\'90Anu','',0,'?'),('TO_רwEϧ<v΍','wp-includes/blocks/navigation/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',', PV~HrUׇ.','[L}R13.eq&ڳ	DZtQ','',0,'?'),('TP?.䑌','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Message.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P8DzI','&zYe\"\\C@)*9','',0,'?'),('Ti܂ey\r','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-rating-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-rating-block.php',0,'G+\'#@bw=v','G+\'#@bw=v','}W8%y8^Cu\0¨ٕ','',0,'?'),('Tn;3PS6','wp-includes/css/classic-themes.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/classic-themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZЗe|LZ','Uؚ`\0jAm\rǩ2##','',0,'?'),('Tnbchp\0j-u','wp-content/plugins/wordpress-seo/src/introductions/application/version-trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/version-trait.php',0,'״Ð\nOe','״Ð\nOe','iJ/;\0=X6brxd0ئ','',0,'?'),('Tw=+6','wp-includes/js/tinymce/wp-tinymce.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/wp-tinymce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u/⧀v5e2','չ%at;8xA+abS','',0,'?'),('T}&K.b6ؖs','wp-content/plugins/wordpress-seo/src/routes/first-time-configuration-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/first-time-configuration-route.php',0,'\0Vf^HHk','\0Vf^HHk','0wgVqَ0OQ)r','',0,'?'),('T.o@Ψ2wvX','wp-includes/js/jcrop/jquery.Jcrop.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jcrop/jquery.Jcrop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2FjGZvCQ\0`[','U=OmC5y}5\\|\0','',0,'?'),('Tvm?,aT4','wp-includes/ID3/module.audio-video.quicktime.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.quicktime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0:D~h(WI}','}`)ȅH\r+45qkX','',0,'?'),('T(J|,9a','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/FileNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/FileNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[0QBvOO^','A7Шi1U{@فx1QԪ17','',0,'?'),('T\"&7JFc','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vvMpX','*m\"P5cM~S.Zl!mbǂ-~','',0,'?'),('T\rfV+ j','wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gxXJTbx','fx/xG\n856	Z+','',0,'?'),('T08K#;z','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-bulk.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-bulk.js',0,'Ǎ¹LbE41','Ǎ¹LbE41','*\r9xN_\Z,NMZ_͍','',0,'?'),('T)a{N58','wp-content/plugins/shortpixel-image-optimiser/class/external/themes/total-theme.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/themes/total-theme.php',0,'ء-t˘êx','ء-t˘êx','v]	y秼wKPx~','',0,'?'),('T\"72Ao','wp-content/plugins/kadence-starter-templates/wxr-importer/WXRImportInfo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/WXRImportInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IP\r)F:r_P','\'H1᥏zEAs޳~92#Ic	','',0,'?'),('T`52z/>w','wp-includes/blocks/query-pagination/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̌\\SN5J','7:NyIN[g4Ơ޺O }qF','',0,'?'),('Tdt`A\nߏ?','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/LogRecord.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/LogRecord.php',0,'|FGMWιO','|FGMWιO','=HZґ\ZDUQw~	','',0,'?'),('TsL\\q','wp-content/themes/twentytwentyfour/parts/footer.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/parts/footer.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mo^t-9','3i&aP{d4J{R','',0,'?'),('TړbIv}z5','wp-includes/blocks/avatar/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D||PyXG','~_8x~5K<A{ؚe ','',0,'?'),('T܌7`\0(','wp-includes/js/mediaelement/renderers/vimeo.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/renderers/vimeo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C9YO','+®-FVpݨIhtLiP%Ki6','',0,'?'),('U0c\\?a5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php',0,'^ύ/PiyI%','^ύ/PiyI%','\0DMr=~|<1F4vq(','',0,'?'),('U\\p{JOQ&','wp-includes/SimplePie/Cache/Base.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bĞAʖ䦴j','oOw~9K4oY[Ke\\RG','',0,'?'),('U	ճݩP','wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-facebook-pickles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-facebook-pickles.php',0,']^a#o\Z^',']^a#o\Z^','|\0QGAgv`[jbOE','',0,'?'),('UYgRw','wp-content/plugins/kadence-blocks/dist/blocks-infobox.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-infobox.js',0,'/AE7O;j','/AE7O;j','4}(T-&`eks@QLQ','',0,'?'),('U0z\rӃ','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q+QV==p','/5k9f?;_VrD','',0,'?'),('U?I˙\n~r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap80.php',0,'gPz}6','gPz}6','<<aVvgi$j) ls','',0,'?'),('U\'(oJ','wp-content/plugins/wp-rocket/inc/Engine/Optimization/CSSTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/CSSTrait.php',0,'\'\rV:zPC','\'\rV:zPC','G~xoVwGSZ{`i\'AQ','',0,'?'),('U(|W5[4N-Nb','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dDˤTcQ	','j\Z1#{]2apLU<j?q','',0,'?'),('U(6\'QRZ','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-table.php',0,'D@Y=%w','D@Y=%w','Qb6bl.f$o\rD(DN	','',0,'?'),('U)\'#olj\"','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ǿ[hb','YY̫4]?}\"ovn8','',0,'?'),('UI_Ym_','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PvBiY_','z\0H$yD7s{w5','',0,'?'),('UIj[\nCa;5','wp-content/plugins/kadence-starter-templates/assets/images/masks/cat-solid.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/cat-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kEV8&AEc,','+մK8y','',0,'?'),('UO/G\Z_a@e','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/InvalidArgumentException.php',0,'fm٨9m','fm٨9m','d:qYt<oǽA8){','',0,'?'),('U]3(O1Dn1[ڔ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/HttplugWaitLoop.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/HttplugWaitLoop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\nV\"c)W2k','xt9@rv`!-bo','',0,'?'),('U]}_\ZM/v','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php',0,'rnJ?bS	4','rnJ?bS	4','<\'	):m8:%y&ť% ?ɍ','',0,'?'),('Ua\\f۾]','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/HttplugWaitLoop.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/HttplugWaitLoop.php',0,'&>(ԋK|j','&>(ԋK|j','CV.)E/c2^$hF','',0,'?'),('UgЮADeN\\ڛм','wp-content/plugins/wordpress-seo/src/generators/schema/faq.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/faq.php',0,'WQf:&=','WQf:&=','O@RvFp.E?\ZiKC','',0,'?'),('UmD3%x','wp-content/plugins/wordfence/languages/wordfence.pot','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/languages/wordfence.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z)߃xyS4','ԅ94/}pv*y/8ɣ','',0,'?'),('U.G\0h7K','wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ǲ겊T','s׷my([~MNԘ;i','',0,'?'),('U]Z7','wp-content/plugins/wp-rocket/inc/Engine/Heartbeat/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Heartbeat/ServiceProvider.php',0,'C\Z6f8-h','C\Z6f8-h','+@ fKH~cYk蠖\r}0','',0,'?'),('U×H mH/','wp-content/plugins/wordpress-seo/js/dist/languages/fr.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/fr.js',0,'ݼ/$p$u?','ݼ/$p$u?','ysyJ!{!䰮gLÌJ','',0,'?'),('U|E\0h','wp-content/themes/kadence/template-parts/content/comments-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/comments-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WX~]#','n8y7کFsobUvvz¦,','',0,'?'),('Unɓb4lZ,I','wp-admin/css/about-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/about-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{MRlV]','m\re&q͖_\n~qu','',0,'?'),('Uj1 {ǃP!','wp-content/plugins/kadence-pro/dist/header-addons/header-html2-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-html2-options.php',0,'܎eK\'[','܎eK\'[','5,QT}W::1i\0','',0,'?'),('Ua Dum \ZFF$h','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestStack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestStack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LB@f)','\r,)6GlՇRr','',0,'?'),('UڊTa\\JƄ','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-candidates/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-candidates/index-https.html',0,'Z9{:ç','Z9{:ç','KR1X\ZXĝgƠ@f60\'','',0,'?'),('U$i\"u&9','wp-includes/images/crystal/video.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lڤ;=','S\rIU9_<f`&HYwu','',0,'?'),('Uԋ~K&J','wp-content/plugins/kadence-pro/dist/local-gravatars.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/local-gravatars.php',0,'4\\<#Ƹ','4\\<#Ƹ','̞7gM²RO\"? Ka6','',0,'?'),('U \re>iE','wp-content/plugins/kadence-blocks-pro/includes/query/query-cpt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-cpt.php',0,'5͗IlYglF_','5͗IlYglF_','L8#!cBӱ{}4ͯɔLc	','',0,'?'),('U%%߫x̎','wp-content/plugins/wp-rocket/inc/Logger/LoggerAwareInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/LoggerAwareInterface.php',0,'{D&Jlh!̶t','{D&Jlh!̶t','|ӏWxf2L&߲\'\0','',0,'?'),('U>\rLL2','wp-content/plugins/kadence-starter-templates/assets/images/fonts/montserrat.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/montserrat.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yM@	bU','\Z2p$aATK\Z{','',0,'?'),('UG&t_Tr','wp-includes/css/dist/commands/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/commands/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HD;6s','Jnȴ1En%4^4ڳS','',0,'?'),('V\nKOZ7!JO','wp-includes/css/dist/block-library/editor-elements-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-elements-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vHօ<Uj+@T','VLb4dopwXK','',0,'?'),('V\nU`_58','wp-includes/js/customize-base.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-base.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L妽uW?t','LIIM c$kƁd&@G','',0,'?'),('V\n[{yj1','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactory.php',0,'w`)F̵{','w`)F̵{','z}L\\jD3dj-@TY\n','',0,'?'),('V<7Gn','wp-includes/blocks/separator/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' `^\r','RhLZqGzh/^c*C','',0,'?'),('Vȕw\0:AoR','wp-content/plugins/kadence-blocks/dist/blocks-accordion.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-accordion.js',0,',%K0|^iq',',%K0|^iq','Ծ-i`,̓-AQ==\r_','',0,'?'),('V\r3#J{','wp-includes/sodium_compat/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X7{(G5','5<HX0t>-','',0,'?'),('VTd8>','wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JԆ[','VdVӆ	J\0t\rϙ','',0,'?'),('V#7A@?)','wp-content/plugins/wordfence/views/unsupported-php/admin-message.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/unsupported-php/admin-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A	HRQ~','jZ=8<Oc-R=s.)4ƃ','',0,'?'),('V++,iʯc','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/ErrorHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/ErrorHandler.php',0,'|ӓ\\YL\0\Z','|ӓ\\YL\0\Z','\\sg[kؖqKI ;G*8','',0,'?'),('V0\ZVv0`&;','wp-content/themes/kadence/inc/customizer/react/src/customizer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2_f/1N%I','H/[V\n:Z#x%:IE+o|w|','',0,'?'),('V2L\0ۺ','wp-includes/js/jquery/ui/controlgroup.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/controlgroup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Fo`NE+','	JB|^!sso5HLRt','',0,'?'),('V3S((5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php',0,'<Ϩ͇ͅ#8','<Ϩ͇ͅ#8','YvoqTYu\ZE7<]UwL','',0,'?'),('V?ONeZF\\','wp-includes/js/jquery/ui/accordion.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mvw2','w1O߾0VI$W=m','',0,'?'),('V@vyzv:Y[l','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4e0vۯ','FufW\"ኤGcwm\';i[_','',0,'?'),('VDLmh/l','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php',0,'p?\'JW[ApZH/','p?\'JW[ApZH/','t靧lomw#*\n(F\nq','',0,'?'),('VE8kbg&:,','wp-includes/blocks/post-content/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\rL&^TL','?w@Q׶wT\Z06\n>=h','',0,'?'),('VL67G^l%D5z3','wp-includes/default-widgets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/default-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	B z\\f\0','%rN8*G#CUᴭPzp_-\n֌','',0,'?'),('VM99\rUϩp+!','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Regex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Regex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f94ubk[','U(2@blCL\n\Zc','',0,'?'),('VW;z*(','wp-includes/blocks/navigation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fZn7-t','Kh(D1q\\R>\n؏ʯo','',0,'?'),('VdmJpnzpG4G','wp-content/plugins/kadence-blocks/includes/assets/js/kb-countup.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-countup.min.js',0,'Lɯ%6G','Lɯ%6G','v\Z.~X\Z\'ҨA;\Z&VT)c>ZJ','',0,'?'),('Vi\'Ruh:u','wp-includes/blocks/query-pagination-previous.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-previous.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KP2S瓐#E',']ejAY1Ҳ:U3!m\\','',0,'?'),('Vm;_QOȨ>nς','wp-content/themes/twentytwentyfour/patterns/text-faq.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-faq.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x?ضcB\n.X݌','ϣd#[?z31j\\$k[gC6G','',0,'?'),('VmmPGka','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/woo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/woo.php',0,'J9NE<$D<','J9NE<$D<','\Z)rTqnɒ/BQ','',0,'?'),('Vne!z0u1?','wp-includes/shortcodes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vv;b<_B.','ss¼)uo|6d5ǖWV0','',0,'?'),('VrmKEpj6','wp-admin/images/w-logo-blue.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[NW_pw0','ޣ^Qt3HunU❻~\'T2','',0,'?'),('VrQlcu}kh,','wp-content/plugins/wordfence/js/jquery.tmpl.min.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery.tmpl.min.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\}\"7ڷDZ','.IH\Zg\0H!7`gޠZzȄž6|','',0,'?'),('VuTU&w/x','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-selection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-selection.php',0,'cp=rs0z','cp=rs0z','UpR6\'1~?wC	Դ2R;.','',0,'?'),('VaG{Y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php',0,'ЩJSx!y:v','ЩJSx!y:v','pZLQe5n2WAM68Z','',0,'?'),('V/\r	`z:','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/virama.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/virama.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jS^M\"','[W߭jb mPw(.Ym','',0,'?'),('V댏$x','wp-admin/js/post.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߣx{9i=5','ȑCYr,/\n3ٕkN)\"u','',0,'?'),('V!U9D`}','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/RequestInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/RequestInterface.php',0,'X\n).3`KX0','X\n).3`KX0','@b\'PHF>ufT=D\n','',0,'?'),('Vrz(nol*','wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OU0!ubG|','h]%I 	I\0|1V~\n`','',0,'?'),('V7RvXL4E','wp-content/themes/kadence/inc/customizer/js/kadence-customizer-preview.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/js/kadence-customizer-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w-=Ь΅Fkt_','OUO$ՇҼwUڞjMw(|i','',0,'?'),('VMÝ7^J','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/index-mobile-https.html',0,'@kF[6q9','@kF[6q9','%ꠥr< d{m%rMU','',0,'?'),('VÄnͲ$mqh','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϷN=|Уwu','$,oo]҇fY{B\\\0Q_n','',0,'?'),('VȟaOJ','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/roswell-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/roswell-georgia/index-https.html',0,'_r{)G!ȕ','_r{)G!ȕ','v˕ogXd\'K!;','',0,'?'),('VBhKFR	?','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ZSf^k9Z+p','w1/mL0}i/+,2jO.','',0,'?'),('VJ^\\}[Q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php',0,'9\ZG_RJ','9\ZG_RJ','ļ_\'eyx5E`e15\0H\0','',0,'?'),('V׀\'hĈ+:','wp-admin/includes/network.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̽ M&yz','<+̉n!tk`_?CzqҢ','',0,'?'),('Vਐ~)f9Ӳ׫','wp-content/themes/kadence/template-parts/title/search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VXIM~:jfH','JjԌ]8Z>DB7.#h9峂','',0,'?'),('VښKJ`݊{d','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageThumbnailMeta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageThumbnailMeta.php',0,'>__	X','>__	X','~[8igRn*vj U4HjL_h','',0,'?'),('V޽(LQI','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/DryRun_ActionMigrator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/DryRun_ActionMigrator.php',0,'!Tnu`\'3Sח','!Tnu`\'3Sח','~LX@П*7=Itٶ9f*','',0,'?'),('VuxpRcQ\"','wp-includes/Requests/src/IdnaEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/IdnaEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ދ}2ee','}C\r0gN5#<W`+\0%Fds{Lrd','',0,'?'),('Ws$8~Nȁ-@','wp-includes/js/mediaelement/mediaelementplayer.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelementplayer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ĪL5!\n','o^:v\\mocTW[k','',0,'?'),('WbM3%ڷf','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UploadException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UploadException.php',0,'déQf','déQf','NB}oD$f#H','',0,'?'),('W:Y/Fo','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Request.php',0,'xGitO','xGitO','_eyS)	].+\Zi<tC','',0,'?'),('Wod}Ӕ;P','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/nginx-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/nginx-helper.php',0,'9w#B~04\'\Z3','9w#B~04\'\Z3','癉z>/}_4Fi91:}OO','',0,'?'),('WWO>mA','wp-content/plugins/wordpress-seo/src/presenters/open-graph/title-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/title-presenter.php',0,':=I3$,.իCN',':=I3$,.իCN','A_Sķc1ICZcd0IniAFe','',0,'?'),('W>fg>:{<&','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-check.php',0,'P\rEkܙ-/5g','P\rEkܙ-/5g','U^\Z%	6x߆Ds[F X','',0,'?'),('W!߹mNu4EW','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AglInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AglInstaller.php',0,'8W`GjW','8W`GjW','z\'TP?Xpo79ϓ?;Cd|(¡','',0,'?'),('W&ִ )+ڱ','wp-admin/includes/class-plugin-installer-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-plugin-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l!`#KV	\rG ','	[` yl3S2.ʼCˬ','',0,'?'),('W8h!ɩkĉ\'','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rRUb*\0\'','x<sBZ2jRM\'0%$i{ V','',0,'?'),('Wf)xuK>','wp-content/plugins/wordpress-seo/src/config/migrations/20200513133401_ResetIndexableHierarchyTable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200513133401_ResetIndexableHierarchyTable.php',0,'%/d^N`T}','%/d^N`T}','΂Sc8LBܮLu%۔u','',0,'?'),('Ws{NhPr㼱','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w964\"ky','X\"v-*3','',0,'?'),('Wx\ZTa7{','wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1-ySkg','4\ZH+*P`,汹҄|*Վp','',0,'?'),('W{g- X\'=n8','wp-admin/moderation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/moderation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZEVUu','Fq61<wt&b1','',0,'?'),('W})Ӗ7e}59,','wp-admin/load-styles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/load-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';7%W9C0R','dC;U~1SvK\r\'cdyonw\"ЏR','',0,'?'),('W@BŶ\'1(','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0w?Kn~=X','ekKSsɀ|!Yuݟ_','',0,'?'),('W0\r9!s','wp-content/plugins/wp-rocket/inc/Engine/Common/Database/Tables/AbstractTable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Database/Tables/AbstractTable.php',0,'eP^F\'}I>\\+݆v','eP^F\'}I>\\+݆v','IM\"	gOԺwZJ,֣','',0,'?'),('W) (v/31','wp-includes/html-api/class-wp-html-processor-state.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-processor-state.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aqܛg','r|=At&q@$O.}ЭM׽E','',0,'?'),('WLjN/@Ϣư','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T	nrk',';\\Xځ/0;QP.B4\Z','',0,'?'),('W?Abee\"l','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/buddypress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/buddypress.php',0,'̱u','̱u','r۟.ALk_PGQHj','',0,'?'),('W4h<H$AŎ','wp-content/themes/kadence/inc/customizer/react/src/common/color-picker-fields.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/color-picker-fields.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZZCVl\Z','Ssr&Aqϋh-W>','',0,'?'),('W64<<5}:ׄ)','wp-content/plugins/wordfence/css/wf-onboarding.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-onboarding.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?۷Bq-UOZe ','ԶX}C_, fF*6','',0,'?'),('WW}U$@c','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php',0,'QoR<:zuqV','QoR<:zuqV',';RfJ~<~8otyR:Kh','',0,'?'),('W)1fc{','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','毼zU.ʏ','f&h\0]6\0OUWFp6\ZE]','',0,'?'),('Xm?H֗dH','wp-content/themes/kadence/inc/customizer/class-theme-customizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/class-theme-customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D,JU,g\'#',')qmq1u86b!˱#;Cތ:','',0,'?'),('XZG3jq\'7ō','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/SignalHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/SignalHandler.php',0,'6;In6u','6;In6u','=\0MKo53^=9.Fߺ','',0,'?'),('Xb~R`','wp-content/plugins/kadence-blocks/uninstall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/uninstall.php',0,'Y\rlq9g$>Cn=','Y\rlq9g$>Cn=','p\\;Z5.gW>˙X>','',0,'?'),('XZpo`\ny','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php',0,'d?Nh=cW@SW','d?Nh=cW@SW','p&V\rX_Z	SsQUVz!e}qL','',0,'?'),('Xͮxⷙ#','wp-content/plugins/wordpress-seo/inc/class-wpseo-replace-vars.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-replace-vars.php',0,'Z\Zȫ<jN_	6','Z\Zȫ<jN_	6','	yLX=-yA5F\n:9$@\Z^\Z2r1l','',0,'?'),('X͉8S	U2','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidOperatorType.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidOperatorType.php',0,'1ߺq*E;s','1ߺq*E;s','n^͛c7\0d.&@x\0`','',0,'?'),('X!ʺZP灭ϋP<<','wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-checklist-promotion.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-checklist-promotion.php',0,'݈ormLw^','݈ormLw^','qM(A/N1qvI^-?','',0,'?'),('X%fVqjҋv','wp-content/plugins/userway-accessibility-widget/includes/api-script.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/api-script.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CFw mx','6oi(q6J\0»R\02[s','',0,'?'),('X,ECj$_8I0','wp-includes/images/smilies/icon_cool.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_cool.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n`ivj.','事F9;2_	$$~LOa6_','',0,'?'),('X5SGJW»WYt','wp-content/plugins/kadence-blocks-pro/includes/blocks/form-activecampaign-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/form-activecampaign-rest-api.php',0,'<Jǚ$9_и','<Jǚ$9_и','LOv[g&k}>3̊n\Z=	m','',0,'?'),('X;ZoBbf!Kc','wp-content/themes/kadence/template-parts/header/mobile-header-row.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-header-row.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\0rH/T-','9A@e׃ڔ%]S%C}(>3','',0,'?'),('XJ\nsp3t9!҈','wp-includes/style-engine/class-wp-style-engine.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mg3uO&6[J',']Z\"	]ȅ7OA,dmMv','',0,'?'),('X^؋FSD<','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-summary.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-summary.php',0,'X9\"Yd$','X9\"Yd$','v3ub:7^P*^V]','',0,'?'),('Xg#m\rfj7m^','wp-includes/blocks/post-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yvp@6.e','U9-@B4Aң57Q?{_','',0,'?'),('Xt:]$8<eY','wp-content/plugins/wp-rocket/inc/Engine/Deactivation/Deactivation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Deactivation/Deactivation.php',0,' *\rx䁥',' *\rx䁥','1r7	CrkHP\r&','',0,'?'),('X}wfIR','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/reset.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/reset.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Ёgu','j#$JQFlvŅ4iZId','',0,'?'),('XchT@tvL','wp-content/themes/kadence/assets/css/src/rtl.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/rtl.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qQܑʑ%','hT0[WTs\"uh9zk/.','',0,'?'),('X9*O2|v{[\"','wp-content/plugins/kadence-pro/dist/header-addons/templates/divider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/divider.php',0,'Į9NrҰI++x','Į9NrҰI++x','{bi\\V`0ٌn','',0,'?'),('XFN3S','wp-content/plugins/kadence-blocks-pro/dist/icon-upload.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/icon-upload.asset.php',0,'3\\w*ّF','3\\w*ّF','?Zu,#Kb߷n','',0,'?'),('XTTRJF]','wp-content/themes/kadence/languages/fr_FR.mo','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D6d','Muy\"d#y|riU4V','',0,'?'),('X:8+˓2>V]8','wp-admin/images/sort-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/sort-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aìk:bтvFj','\'aK\0tGJBqXW*(J|1z[(','',0,'?'),('XPT˧kc','wp-content/plugins/wp-rocket/inc/front/process.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/front/process.php',0,'@q\\}[','@q\\}[','[TnEjd($:!hΝ\0s><','',0,'?'),('XQΩ\0Yz5','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ڼBf%','@^H|VTo+3˵]\r`o','',0,'?'),('Xi83qb|,\r','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f!ɎГ°','Fv^ZSu؞Łp\nCk','',0,'?'),('X2FGrmF','wp-includes/blocks/button/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t|lj\0\'s','$0\"9q`\"k$gpXU_`Y?','',0,'?'),('X{a#2\Z','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php',0,'b=HA4{Y','b=HA4{Y','(]Ɋ\0۹ӄy=q_','',0,'?'),('XT{{~QA','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ai_?G+	 Vl','Z\Z#<7&w\ZE\"\nVX;Y_d','',0,'?'),('XsYqePL','wp-includes/blocks/code/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aV0_','\"=P*ѐ|6LE?%Bik','',0,'?'),('X-7P>vůiau','wp-content/plugins/wordpress-seo/src/analytics/user-interface/last-completed-indexation-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/user-interface/last-completed-indexation-integration.php',0,'4o\'n','4o\'n','3V@1RCM\";c]Ebr^:','',0,'?'),('X֏|5_8EpA','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/BufferStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/BufferStream.php',0,'ʟ@2$aoJl<','ʟ@2$aoJl<','Nk{n\'_Mva|guȟn&FI','',0,'?'),('X	bTeiMG','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php',0,'3?Ռ%(ܫ','3?Ռ%(ܫ','>죸;W_\0̓\nϲ5L^eǄ','',0,'?'),('XGzX','wp-admin/includes/class-wp-upgrader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IῩs.4\'','?J.\"_W{Mx!iO','',0,'?'),('X~Vzl!_]/-3','wp-content/plugins/wordfence/models/firewall/wfFirewall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/firewall/wfFirewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XC#BsTb','×GH5kӹrܰRR_x-','',0,'?'),('Xk(DqțG','wp-includes/js/jquery/ui/slider.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5s}@N','`WCGZǍ\0d$ejxYEr8','',0,'?'),('Xѓipuߏ,','wp-content/plugins/wp-rocket/inc/Addon/WebP/AbstractWebp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/WebP/AbstractWebp.php',0,'#7ԕof_Ҽ','#7ԕof_Ҽ','}@|ˉ6YGlēJ|gx@d','',0,'?'),('XedB','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Subscriber.php',0,'ZfT(ȠU','ZfT(ȠU','h$.(X@/| B;U)R룬R','',0,'?'),('XN8jc','wp-includes/blocks/post-excerpt/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͐/-\0I]T~ ','a&jf#\Z-CxWOnpj','',0,'?'),('X!lB]\"','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_classmap.php',0,'VVAMVQ]J','VVAMVQ]J','pej8ZG$\'Ug\n\\o&G','',0,'?'),('X=2h4/{+','wp-includes/spl-autoload-compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/spl-autoload-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6u{t',',Z\rM	>܅gp/	Z\Z#`!.','',0,'?'),('XpomOS','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/ContainerExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/ContainerExceptionInterface.php',0,'hX,pmk|','hX,pmk|','\'o*LLzux#u\'','',0,'?'),('XĈ\'\r)','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-reset-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-reset-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LK0ۗ','R9KZ%#oZ$ﳢŸY0','',0,'?'),('XTCW_^og','wp-admin/includes/class-wp-debug-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-debug-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\\6~~Dvxv','\ZW^S\\E*E96\n*&','',0,'?'),('X՛n(o\n','wp-content/plugins/wp-rocket/assets/js/preload-links.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/preload-links.js',0,'Q4^QY;','Q4^QY;','P8\"LsUS!ݡt!','',0,'?'),('Y.y	W','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Attribute/Required.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Attribute/Required.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jix;$<ݟ ','	i|g9*n?3 rgz','',0,'?'),('Y3E;N%','wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-single.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-single.php',0,'*|_O\'Hڕ6c+','*|_O\'Hڕ6c+','翕~bQZ5:Bj\"J\Zq\r`B','',0,'?'),('Y(Kg\0_','wp-includes/js/dist/annotations.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/annotations.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':91','\ryX3()/HMr2`','',0,'?'),('Y*c`]#đ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php',0,'I)4i-q*','I)4i-q*',']HH.hKtwGjzɞ a','',0,'?'),('Y,Qpgmu#e~','wp-includes/widgets/class-wp-nav-menu-widget.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-nav-menu-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-(\"vV>','N8X<ه\\՘1vvF7','',0,'?'),('Y/ޑ	\Z','wp-includes/js/dist/escape-html.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/escape-html.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(6;`@%KR','fw`}@6:֘,j=Uo','',0,'?'),('Y@Qqp]\"f','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Page.php',0,';PqV F6#',';PqV F6#','W.,JRSRi{JK0]zJYo','',0,'?'),('YBt\n\ncݟ.vi','wp-content/plugins/wordfence/views/diagnostics/text.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/diagnostics/text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zɬ53;','nTY/൪_,nl[lWZAs%','',0,'?'),('YCүъp','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advanced-heading-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advanced-heading-block.php',0,'n+\\(y6(zr','n+\\(y6(zr','I2G-S$Np㊠95i)\r','',0,'?'),('YV29}D8','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CZ?@JN_ji<\Z','<H\"F@%1`7<	}','',0,'?'),('YZ}];qo/P','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Retry/GenericRetryStrategy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Retry/GenericRetryStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QLY5zo','87lwR	Jmt;/I]','',0,'?'),('YqۯBzA\\,4OU','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SMFInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SMFInstaller.php',0,'4*ԊQq','4*ԊQq','㉠d1W\0dܩK/Z2W','',0,'?'),('Y~8AZ)','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/FromClause.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/FromClause.php',0,'zYΓoz$L#','zYΓoz$L#','U-OkcBa~pq8@r','',0,'?'),('YLah(','wp-admin/edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zl+HFnա὇',' S1\ZחX4~8j8bc?5*\'','',0,'?'),('Y,eAw`','wp-includes/images/media/archive.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9h\0ìu','\0Bb3\'\')JG ](G9Pr2 s','',0,'?'),('YmՎu剱d','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/RevolutionSlider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/RevolutionSlider.php',0,'kا|2j','kا|2j','(vwGl#<МJUO4M0I;','',0,'?'),('Y<\\(jΈ6b):','wp-content/plugins/wordpress-seo/src/integrations/alerts/trustpilot-review-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/trustpilot-review-notification.php',0,'F|O>I[}~C:xI','F|O>I[}~C:xI','eVLxk:G_7bz<<SԈL_#','',0,'?'),('YBWy	+BOmz','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#:N\'DxN','[_|А~E+~E(`_','',0,'?'),('Y68H;%,_c\n','wp-includes/css/wp-auth-check.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-auth-check.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aק1~^wF','OlT,R3G ;_7 ','',0,'?'),('Y6	/m*\n5','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcherInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcherInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4-\'g$_̒','NC8	,]=)jj̄?j!>','',0,'?'),('Y#jD_2n','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/keyphrase-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/keyphrase-data-provider.php',0,'nw>5s١@+ħ','nw>5s١@+ħ','Nݝ+	zR4 턻~9q:aMS','',0,'?'),('Y&)_wo8','wp-content/plugins/wordpress-seo/images/alert-success-icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/alert-success-icon.svg',0,'?h0X','?h0X',',0\ZA/ZeKO\\pң\ndF\nefi','',0,'?'),('Y\'K`HPYs','wp-content/plugins/wordpress-seo/src/config/migrations/20210817092415_AddVersionColumnToIndexables.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20210817092415_AddVersionColumnToIndexables.php',0,'HFjbUv|I','HFjbUv|I','!ON}#쒦=Ev݄\0fTٶC','',0,'?'),('Y5L:rfT','wp-content/plugins/duplicate-post/src/utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ձ936','Ij1y$1JCZ*QO','',0,'?'),('Y[@G&r\0','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/Migration_Command.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/Migration_Command.php',0,'k<]^ܴ=3c','k<]^ܴ=3c','*\n`3q^,,G/H','',0,'?'),('YJ|[DyY','wp-content/plugins/wordfence/waf/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('YѼa\rH*-U','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_FinishedAction.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_FinishedAction.php',0,'!dt','!dt','Z:ЫwiGe&g;((f\'Ӈ','',0,'?'),('Yإ}vOa$_','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php',0,'gմ3=','gմ3=','=Yh#HX	Iw-\0QJ','',0,'?'),('Y]ŞI','wp-includes/js/jquery/ui/effect-slide.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-slide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`','{,oףqIlz<HHrU+o]M','',0,'?'),('Y֝U}r/','wp-includes/SimplePie/Cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	~ܯ{ʹ+h','mdnnunpU0 l6ZiR','',0,'?'),('Y0n@','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Plugin.php',0,'is\n~H8m[','is\n~H8m[',',Iz@VcSHNtc!̥=#T','',0,'?'),('Yq0y','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Config.php',0,'sr:X*m~j','sr:X*m~j','>d-q1-wYkurN}aVdB','',0,'?'),('YUL5Jޔv[','wp-includes/rest-api/search/class-wp-rest-search-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/search/class-wp-rest-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' $[wLua','ˍ^ ;\0d2Œ43s.~$[Z\"','',0,'?'),('Y3~@A','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gմ3=','=Yh#HX	Iw-\0QJ','',0,'?'),('Z核A@t','wp-includes/blocks/search/view.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/view.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ft sZ','t띙8l\"êK8@N1gY#x','',0,'?'),('Zұbi.\Z','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/GrantFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/GrantFactory.php',0,'x*^l\rn-','x*^l\rn-','$=Y#=YX/2os;Np','',0,'?'),('Zcvrh|E2','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/FormattableHandlerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/FormattableHandlerTrait.php',0,'=fo%C&','=fo%C&','l#vvqzy_4E+5jD)j\"','',0,'?'),('ZL܏vN%%_','wp-content/plugins/wordpress-seo/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_static.php',0,'vC4@гo/D','vC4@гo/D',':^)l2%\'','',0,'?'),('Z$=\rL̃','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wr1&k\niiu`','V=e0j^m','',0,'?'),('Z3-1\'Z[XI^','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Schema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Schema.php',0,')w	',')w	','te\"lqp-o>1jNp','',0,'?'),('Z4<n?e','wp-content/plugins/wordfence/lib/wfConfig.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5#~?$R[','DvIP0K뾊솒+Dy{S\Z','',0,'?'),('Z9}.Jk=','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I\Z\nӣ','i>zR@kW6uky','',0,'?'),('Z:cXLjNc','wp-content/plugins/wordpress-seo/js/dist/languages/hu.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/hu.js',0,'sW?(07*(','sW?(07*(','B֥v&/\Z+hkƛ.1!','',0,'?'),('Z>n؏/qNb','wp-content/plugins/wordpress-seo/src/helpers/import-cursor-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/import-cursor-helper.php',0,'=\"x#','=\"x#','\\Ե2˚fwSjD0s}Q','',0,'?'),('ZAPz','wp-includes/blocks/pullquote/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gMkӴ1','7Ad5xqR\rn\0Sg\r','',0,'?'),('ZD:-h${ma','wp-content/plugins/wordfence/images/sort_desc.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_desc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?զ)X?N','bEԚB#:(#=_(\Z|U#','',0,'?'),('ZdkLşT','wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t5<7^Anr','k+QȺF4/rĳXj5','',0,'?'),('ZgpЅ3Vq9X2','wp-content/plugins/duplicate-post/src/ui/bulk-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/bulk-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n}u&2u̶կp','4kfzzbT#Gqbs6[]hą','',0,'?'),('Zte5*8OX\'R','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/AbstractSafeAPIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/AbstractSafeAPIClient.php',0,'?K;','?K;','lAԕo\\A+d=X**0','',0,'?'),('Zvyݩ=Ⱥ;u','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php',0,'plzI?','plzI?','K\\gLYQ\"\rѢ7fT4','',0,'?'),('Zx12KZ,','wp-includes/customize/class-wp-customize-header-image-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-header-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\rH=#b(rE','y^DEaz-O96^	$FJ','',0,'?'),('Z}MyR6#`v\Zs','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-list-item-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-list-item-presenter.php',0,'\0E\ZKԏ~','\0E\ZKԏ~','GΪy*+q-\'m7P','',0,'?'),('ZҌ[\nv	F','wp-includes/SimplePie/gzdecode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/gzdecode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rF<\ZiǨu','|R\'gAEێqqT!:O0_','',0,'?'),('Z0s{\0GtZ','wp-includes/blocks/categories/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dWf4#ġEXt','*Z\rw{MM	\'in','',0,'?'),('Z.zY#O`)','wp-content/plugins/wordpress-seo/src/integrations/front-end/rss-footer-embed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/rss-footer-embed.php',0,'M}U)%','M}U)%','4H\0 =(/L2\0','',0,'?'),('ZLژ}ħq','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/KadencePucReadmeParser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/KadencePucReadmeParser.php',0,'Z>qQm6ܟ/:C','Z>qQm6ܟ/:C','`S~DKڌbD`+LkQ','',0,'?'),('ZJM`r8','wp-content/themes/kadence/inc/customizer/react/src/title/title-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/title/title-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iXCHo[G','\rEdqb\n_FIKH-EB','',0,'?'),('Z_\"~J','wp-includes/js/wp-custom-header.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-custom-header.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g,ﶸU','W#iԽMǟv(Q\rRC','',0,'?'),('ZяݒS','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\Z^ZHG%O','mc;\ny㐲0,5F|=C','',0,'?'),('Z %/Zz9','wp-admin/includes/taxonomy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*{jQPB','h}yU^l\r<Oju9=\\#','',0,'?'),('Z\0Y æfg','wp-includes/js/crop/marqueeVert.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/crop/marqueeVert.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\09R','Kcg$e2\\p$1z`CkJ','',0,'?'),('ZtXh7\nWcdϡ:','wp-content/themes/kadence/languages/fr_FR.po','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UO@H>F`','J0%\'%TB!P2v~ՅנUs','',0,'?'),('ZƑPc<','wp-content/plugins/kadence-blocks/includes/assets/js/kt-slick-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-slick-init.min.js',0,'ς|,3|k','ς|,3|k','_	F4Qg/\"Zq(>','',0,'?'),('Z\ZEڨ_.','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YFE;\nQ','k =Is%YhÈSeоŀ','',0,'?'),('ZvaixИ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R3TR?|-Uw,I','ӓ>`K$kYƧh\nOu','',0,'?'),('Z0H]<R23','wp-content/themes/kadence/template-parts/footer/base.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qFM(1a','2I/JHjswE)[5','',0,'?'),('ZH7)zuNx\"','wp-content/plugins/wordpress-seo/src/config/migration-status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migration-status.php',0,'?,qLF\ZAG','?,qLF\ZAG','iL>b~z/5ʤq','',0,'?'),('Z*Է!\"E\Z@','wp-includes/blocks/pullquote/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J}Y','FF8QΑyޖ/W-ͣÍ+K[','',0,'?'),('ZRr(&b:-','wp-includes/css/dist/format-library/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/format-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oSo.s-;+1fK','3]?4sa%&_[X[o||','',0,'?'),('Z=ӧrc\"y','wp-includes/IXR/class-IXR-date.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IVdB+AJ?#','{~(#\Z6u,?jk2`','',0,'?'),('[Gea\'i','wp-includes/js/jquery/ui/datepicker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/datepicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z,vkU','?fԌt]C2xdд','',0,'?'),('[\"lG=C7v','wp-content/themes/kadence/template-parts/content/entry_author.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R#Mm[L:I(','u2ouK/N!(Z&t','',0,'?'),('[(WcG','wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XWbK8i','.775OnmgLI/we','',0,'?'),('[2Y7Aγɹ','wp-content/plugins/kadence-blocks/dist/blocks-column.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-column.js',0,'BWForfy8(','BWForfy8(','1G]۬58VLͬi1³N','',0,'?'),('[5YNhKM','wp-includes/customize/class-wp-widget-area-customize-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-widget-area-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T:\'l),6P\Z','rH]yEwF/[0Z3[\"','',0,'?'),('[9J=\nuE\0O\n\\P','wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','κ2}','[,<XYyy~EJZ?6\r~ש','',0,'?'),('[Op7d','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/jquery-ui.theme.min.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bK0bxљ]','4\ncE2=V{+\\goЅO','',0,'?'),('[UWv<Z;\ZF','wp-content/themes/kadence/assets/images/icons/credit-cards/laser.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/laser.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2f6g)B','8QjV\'4Ⰻ̎n\0b(Ό','',0,'?'),('[cç/Ķ\\FN_','wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-php-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-php-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YԪ0UH+iɇ:','A}H\rC{g$i__U(7.L','',0,'?'),('[~6Mp\'q','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-wpseo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-wpseo.php',0,'֚:E%P','֚:E%P','	V׷)7![йȲ!N','',0,'?'),('[~jKX9_','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ׁ	.M4$','~Q.m\"|	A4$pɑjJ(n\n]','',0,'?'),('[#ܧ\Z>]<','wp-admin/css/colors/ectoplasm/colors.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','363zZ]i><ye','Un4pQ?~`|;K','',0,'?'),('[q`1x','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-runner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-runner.php',0,',W9B',',W9B','eZ9[L-e_reG\"\'Km\'','',0,'?'),('[>x;wn/tH','wp-includes/js/wp-emoji.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>eH\']eB8','%)9\nKit5,-)іZ','',0,'?'),('[1YAdk,','wp-includes/SimplePie/Sanitize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W,a4Vk66L','`QV;`_1pRF;','',0,'?'),('[^ґ&','wp-content/themes/kadence/inc/components/beaver/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/beaver/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'5>ˣrUPF','\':~&hW3kU^\r\0:3lb','',0,'?'),('[IՉ\0GV','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','оٻZ7','e+)Xzkk#2ă\0bx͉d','',0,'?'),('[lŁ1EdnY','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/admin.ajaxWatcher.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nů)','\'vᦸ =\'Xk<6YSt','',0,'?'),('[A0b[BG','wp-content/plugins/wordfence/images/logos/shield-free.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-free.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m3k#^\Z\Z+W','Lmd1a ףM\\m(#p^1M','',0,'?'),('[@p','wp-content/themes/kadence/inc/customizer/react/src/text/text-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/text/text-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{)DOÝt','fh9w6}Ѷp	]zM4F','',0,'?'),('[F0\Z%\ndv֠c0','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Where.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Where.php',0,'!`jĈm^[6ҙ','!`jĈm^[6ҙ','L[} il7Ų⺍͘','',0,'?'),('[BX\nQc','wp-includes/blocks/file/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6HZCw+{jR','*m~2}vD3*}.ɉ%3ЮQ','',0,'?'),('[ӽ$qjg_5','wp-includes/css/dist/block-library/editor-elements.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-elements.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vHօ<Uj+@T','VLb4dopwXK','',0,'?'),('[Ηz9@Mܡ','wp-content/plugins/wp-rocket/inc/functions/htaccess.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/htaccess.php',0,'(ts5 ','(ts5 ','K\"擁\\쑄Q+_','',0,'?'),('[wYZ\rMt\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CakePHPInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CakePHPInstaller.php',0,'*(M5^1p+','*(M5^1p+','wV!\\]ijU&$k<VCWd|','',0,'?'),('[{Lzҍ7Aҗt','wp-content/plugins/wordpress-seo/packages/js/images/succes_marieke_bubble_optm.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/succes_marieke_bubble_optm.svg',0,'n	ti[D','n	ti[D','EVhuva!Ahį\rR8*gu9$}','',0,'?'),('[ئmNph','wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php',0,'9 ?vz|ʄ','9 ?vz|ʄ','3#|VR}\">p>Y&ReF:)','',0,'?'),('[ꠏ|Koیb7','wp-admin/user/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xCS6LC2!u','`Ky2Mplξ\"a\0אּtޡD','',0,'?'),('[Մ)ƚ2])E','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/InflateStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/InflateStream.php',0,'\rm,09=Vƫ','\rm,09=Vƫ','@#!l\Z蠤I(','',0,'?'),('\\\"D\n:<u','wp-content/themes/kadence/inc/customizer/react/build/controls.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/build/controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l`е@z?\Z','3y@1v>onJU','',0,'?'),('\\%?>e8','wp-includes/class-wp-block-pattern-categories-registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-pattern-categories-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o3sCƻy6_R','\0qҥi/scm','',0,'?'),('\\;!R0ks','wp-content/plugins/kadence-blocks-pro/dist/blocks-splitcontent.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-splitcontent.js',0,':U\0RҎS?s',':U\0RҎS?s','iW%MHi۶<ko9	PC','',0,'?'),('\\e&$1I>Q','wp-content/plugins/wordpress-seo/src/surfaces/twitter-helpers-surface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/twitter-helpers-surface.php',0,'~O\rl*','~O\rl*','4,a01պy','',0,'?'),('\\Ɋ6O+tjR{','wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_man_1_optim.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_man_1_optim.svg',0,'w2+6:+tT@','w2+6:+tT@','`w,ݯc/>Bi_KhiM?','',0,'?'),('\\9','wp-admin/ms-upgrade-network.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-upgrade-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qc8E%!','	H_cQX̤ՏLsڭ','',0,'?'),('\\Au0*(4+','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Store_Deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Store_Deprecated.php',0,'7::XFƝ0\'P','7::XFƝ0\'P','/ nf<%n)9lf׭Ύu','',0,'?'),('\\:tP:B*','wp-content/plugins/shortpixel-image-optimiser/res/js/punycode.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/punycode.min.js',0,'ez(G>heqA(','ez(G>heqA(','M%^qҖQ,2}','',0,'?'),('\\=9\r=.4F/','wp-content/plugins/wp-rocket/inc/deprecated/3.6.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.6.php',0,'L0#-','L0#-','ɲod@%$3%m醷\'HZ;','',0,'?'),('\\C/{_b [','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/soundcloud.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/soundcloud.php',0,'W縤e ^0','W縤e ^0','iQЍ !PQ}TĒew','',0,'?'),('\\FS\nOM','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Provider.php',0,'\",֜V\0vFW','\",֜V\0vFW','_2ܤPNq\ns֗a','',0,'?'),('\\H:u3%Fw','wp-content/plugins/wordfence/views/waf/waf-install-success.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-install-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t2H$\n','5(/PhJSZ\"&]}rIp(-t','',0,'?'),('\\JZIgHB','wp-content/plugins/wordpress-seo/src/editors/framework/word-form-recognition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/word-form-recognition.php',0,'AV7s7-]2ŉ','AV7s7-]2ŉ','\0ۺPpL~-G@ڰlߟg L','',0,'?'),('\\L}Y~la','wp-includes/blocks/gallery/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3JDFĭ~2?','kRELMX]lf,*hOI{','',0,'?'),('\\N6i\\z^','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Logger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Logger.php',0,'h3bL]Ĭ','h3bL]Ĭ','ݙls|\\.3$4#Le<l`w\'g','',0,'?'),('\\R$GO΄y','wp-includes/css/dist/block-editor/default-editor-styles.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/default-editor-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rDH2&A','^v4-vx\"ݥ\nDԾ`n','',0,'?'),('\\S jh)!%[Cz','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Pexels_ID_Registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Pexels_ID_Registry.php',0,'gHtJZ\nѰ<_u','gHtJZ\nѰ<_u','rn*D >vI9p8\0G5u','',0,'?'),('\\[i%Ͱ<e>','wp-includes/css/wp-pointer-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-pointer-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','╄)y-?','&P\ne5o,V?A\ZU;9;z','',0,'?'),('\\t2HhY*A~ٯ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/notification-settings.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/notification-settings.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܪ&0','*.S0N7Z\'	X9ￔGz*','',0,'?'),('\\x}o#QRDh','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mp琿,lQJ','Pbs\rp!9 K;n$@B\"x','',0,'?'),('\\]j#;VTG','wp-content/plugins/duplicate-post/src/admin/options-page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/options-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C{WXVs]','72qXnFܭY$An~xfL','',0,'?'),('\\;l(}zoyP','wp-content/plugins/wordpress-seo/src/editors/framework/inclusive-language-analysis.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/inclusive-language-analysis.php',0,'ZcDNc','ZcDNc','\0[{!_GgsW!\0MTv','',0,'?'),('\\7Qo','wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%;wQ8@','wi>6Ƭ4.NC\Z4IO','',0,'?'),('\\k!zozq6','wp-content/themes/kadence/inc/components/entry_title/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/entry_title/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','atal\'7Z',')i\"|qlrۗ&^T\0(','',0,'?'),('\\т?$̈́8','wp-admin/includes/dashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r3\'NIu#Eu','	\nU\0-s3:P','',0,'?'),('\\\rU_=Z5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php',0,'WxHmSg3','WxHmSg3',' &g°}K7~hY0.wnT<P9','',0,'?'),('\\/oI:6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/Formatters/ColoredLineFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/Formatters/ColoredLineFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ˤ<B','u$7f*N*\Zoĺzήͧ\Z,','',0,'?'),('\\ӟs9X','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_DayOfMonthField.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_DayOfMonthField.php',0,'iOԂbt4\\','iOԂbt4\\','ڒ5fCSQ\0Q)=\Zk$\0I','',0,'?'),('\\;_Ւ<\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Utils.php',0,'bx\"3j>!S','bx\"3j>!S','gTy!i\\}.1_xe','',0,'?'),('\\3~,%ay','wp-content/themes/kadence/inc/customizer/react/src/measure/measure-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/measure/measure-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QȖok»','\0	;F骕=B\Zm7kA=E\\f','',0,'?'),('\\\0>+Fb','wp-admin/revision.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p-JWl>0pͫ','[8uo0_+gI/.yhre&','',0,'?'),('\\L\rni','wp-includes/blocks/template-part/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Jd՝<TS\\','#XQwESbz)l!uO _kϝ1','',0,'?'),('\\창E*w! ','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ads/Adthrive.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ads/Adthrive.php',0,'VX)SLYJ&','VX)SLYJ&','Ea/Adf[5g[՝Ġ,\n3 ','',0,'?'),('\\Le/s','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericResourceOwner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericResourceOwner.php',0,'V>t\Z','V>t\Z','<\rQQV;|JR>R<P?\\8','',0,'?'),('\\hR30:rZ','wp-content/themes/kadence/assets/css/src/slider.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/slider.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L82Ʉ)r	w\Z','}16\"⻣','',0,'?'),(']J*ƒXRE','wp-includes/block-supports/dimensions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/dimensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uz/\Z;n\'zQF',':a.9=}`|nܽi{BWAhKL','',0,'?'),(']4/sC|2A','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/rating/wp-postratings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/rating/wp-postratings.php',0,']#Ќ@5WQ',']#Ќ@5WQ','<MS{.*٥/w9qC\0','',0,'?'),(']:Y\ZҼ+~?Z7','wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-glight-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-glight-init.min.js',0,'򉼡t㥉&*','򉼡t㥉&*','ߍH)ލ`õDrL<','',0,'?'),('](R&!1;3','wp-includes/js/wp-ajax-response.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-ajax-response.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aDIHPJ@gW','#B4/dӂ[Dΰ&4HZu9W','',0,'?'),(']3ْɹ/u','wp-content/themes/kadence/assets/css/src/woo/_account.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_account.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[	*Zd¼','*EJ\'l3g\"A9D2#','',0,'?'),(']9ɐ22%i8\0l','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/ServiceProvider.php',0,'Юyb.޹q$nY','Юyb.޹q$nY','af^\rT\0~V-HqЫ!','',0,'?'),(']:\ng60A','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/abstract-post-seo-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/abstract-post-seo-data-provider.php',0,'x_$)-Q','x_$)-Q','/$<d16Q\n','',0,'?'),(']<a[4rg?','wp-content/plugins/wordpress-seo/src/repositories/seo-links-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/seo-links-repository.php',0,'h!q ʽ:','h!q ʽ:','\0\\(\'7Qzr|9`3$','',0,'?'),(']B#2zbU/','wp-includes/Text/Diff.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$+甡䁆<','&`~+>eah]c<~.f','',0,'?'),(']I?q	|M׋','wp-content/plugins/wordpress-seo/src/config/migrations/20200616130143_ReplacePermalinkHashIndex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200616130143_ReplacePermalinkHashIndex.php',0,'k-eDFX','k-eDFX','1꣚&tݼPelל^K','',0,'?'),(']L0eE\"u ','wp-includes/js/mediaelement/mediaelement-migrate.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q0blz7',';YR/(v0vsaDy','',0,'?'),(']Wf@^zLlcc','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\'3a뫑*','Guf+M\ZqV:','',0,'?'),(']ZS5=y','wp-content/themes/kadence/inc/customizer/react/src/focus-button/focus-button-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/focus-button/focus-button-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\rU-[kp#5','U.$OXwZlh7KLzQ','',0,'?'),(']_gpT]t','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/LazyString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/LazyString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q=4f_#g','SOD-#gGӻ	@`;2','',0,'?'),(']`hMּ7Zq=','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2 DgaYWr','hZ)U:`)\'mF=hBqz7\\wf','',0,'?'),(']d}ϼ(mO','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-inline-modal.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-inline-modal.php',0,'AH35q	','AH35q	','w\0W1\\G\"V\Z2Xu-','',0,'?'),(']kuDֽ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/mapped.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/mapped.php',0,'39hnW','39hnW','kzy:,L=mݡdNm<^!$','',0,'?'),(']q>zqĲMc@','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Store.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Store.php',0,'S<','S<','tHn/`çA՜2>PUAL','',0,'?'),(']tg&=Nʽhc','wp-content/plugins/wp-rocket/views/settings/fields/number.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/number.php',0,'DXuqYLir','DXuqYLir','1h>f:=CJSƇYW-{h','',0,'?'),(']NJjӎe','wp-includes/widgets/class-wp-widget-media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dLt<','L}Kf\\AR ŭ(si{U','',0,'?'),(']B6\"\'6+7','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionInterface.php',0,'Grʿ$F\0,','Grʿ$F\0,','?m$7	妃!X%R','',0,'?'),(']>tfdXzyy_(','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IYT*#40ڧ','y8Y,JFkR','',0,'?'),(']=p^r\05\\\rJ','wp-content/plugins/kadence-pro/dist/header-addons/header-divider2-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-divider2-options.php',0,'x*5;w+%','x*5;w+%','y?rnU{Alr','',0,'?'),(']c1O','wp-content/plugins/wordpress-seo/wp-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/wp-seo.php',0,'N_v*;\"i_','N_v*;\"i_','=gȇa\"ЧaK<aS','',0,'?'),('][8[^9H','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2WILs췡','$篺FBpYTKj3<l6','',0,'?'),(']PTkvt8A','wp-admin/network/menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J/M9eYe','kd?\0cQkt߸Fjf','',0,'?'),(']sv?\n62','wp-content/plugins/kadence-pro/build/mega-menu.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/mega-menu.asset.php',0,'y)Vw<u\r|SU','y)Vw<u\r|SU','\'\'a[3O|\rs@#E*?Ȥ','',0,'?'),(']*J','wp-content/plugins/wordfence/images/icons/email_go.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/email_go.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jEH).','& qC1QU_.O31!&۴','',0,'?'),(']߅Z=5','wp-content/themes/kadence/inc/customizer/options/lifter-course-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-course-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@%]1sc3\\','`ϷOF2@8XN]k?%yi','',0,'?'),(']\"}[YR','wp-admin/css/edit-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@f:E','ncqT;*{$B','',0,'?'),(']I]B	-{T֯','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_CronSchedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_CronSchedule.php',0,'W\"2(\'HKyv','W\"2(\'HKyv',';[9#j(d*Z7V]J2AY','',0,'?'),(']\ZqEKkHM','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-number-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-number-input-block.php',0,'Mp̉/uU+рg','Mp̉/uU+рg','D[{ITjw4[IRzE\n','',0,'?'),(']4d9C<s3','wp-includes/blocks/video/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SLYY]Fǖ»','h(_HbbIR<sDgAQ_','',0,'?'),(']6CC','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TheliaInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TheliaInstaller.php',0,'n]\ro\\wrҪ','n]\ro\\wrҪ','X}N\r)Wt[fZyjG-\0\'','',0,'?'),('])8P\\aC\Z','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php',0,'T(U|BT\r~,','T(U|BT\r~,','\Z8iz067Z\\Gk%V','',0,'?'),('^$BkU>LnF','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PxcmsInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PxcmsInstaller.php',0,'HIfl]','HIfl]','7fp<bs\"ڰ%a\'','',0,'?'),('^1cÙwxE','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DframeInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DframeInstaller.php',0,'Pk_`ԥo','Pk_`ԥo','3Qv7kwH8wu5J:','',0,'?'),('^9(-(Ųy 0q*','wp-admin/user/about.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!N 93nDl','rR89<;9i1lZQoC#Y','',0,'?'),('^@ղ{\'_92','wp-admin/upgrade-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/upgrade-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[a@1.QZ','tˁ9{/yg1\'uVl','',0,'?'),('^BΦ2,9','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-table-of-contents-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-table-of-contents-block.php',0,',\'juI',',\'juI','_D	kY.6I\\bNμ0','',0,'?'),('^H\0B|4@z','wp-includes/IXR/class-IXR-error.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g6\"u\\\'3b','*?ۧU=?,]0=CZ-6Dq.G','',0,'?'),('^U.iypG','wp-includes/js/mediaelement/mediaelementplayer-legacy.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelementplayer-legacy.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AVtFƣ','2q{Y*lX[qkd}Jp','',0,'?'),('^\\]@E^w!S','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/EventSourceHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/EventSourceHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lwk-0dTA','(u-\rL2HZhP=540vD','',0,'?'),('^`$V`rZ/T','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap80.php',0,'\'gc0Jv','\'gc0Jv','Vp/\nAŁKR:','',0,'?'),('^tv߲J%','wp-content/plugins/wordpress-seo/src/conditionals/web-stories-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/web-stories-conditional.php',0,'+)tL5=','+)tL5=','U}o+SOY:<WQ2Tg\0H','',0,'?'),('^yG=ڜFg;3á','wp-content/plugins/wordfence/images/button-grad-grey.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/button-grad-grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RCTy?','DH~ϨP_{!','',0,'?'),('^Ð+y|','wp-includes/images/crystal/spreadsheet.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','59Т1Tn','e\rCi0[R8@GaJN','',0,'?'),('^qnk\\[~','wp-content/plugins/wordpress-seo/src/config/migrations/20200428123747_BreadcrumbTitleAndHierarchyReset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200428123747_BreadcrumbTitleAndHierarchyReset.php',0,'ma;_d_3','ma;_d_3','2ć<NJ(,I@qފU=j','',0,'?'),('^&*E2F6','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SiteDirectInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',0,'}A(sA&5','}A(sA&5','Ig3eGhGnXR(Et~a(\Zhm','',0,'?'),('^YKbF2TT-','wp-includes/blocks/avatar/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*(\ZIz','e2,ՔenCL]s+','',0,'?');
INSERT INTO `hyu_wffilemods` VALUES ('^H W','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Update.php',0,'[79שV!','[79שV!','*Djۡ@P|8EaFv}m','',0,'?'),('^q.xh','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ط(qaS','}qgxe\\Z9\Z Tp@g','',0,'?'),('^meB$M:\nQ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ServerExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ServerExceptionInterface.php',0,'-6}jB0s','-6}jB0s','/W=cW\r_<ԂQ|VOP4)|p-','',0,'?'),('^5O	Z}ciVjQ','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequiredParameterTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequiredParameterTrait.php',0,'/-Pm9P','/-Pm9P',')dѩdց/ɑl%\n\\\\n}','',0,'?'),('^#r/qf>','wp-content/themes/kadence/inc/customizer/js/kadence-customizer-preview.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/js/kadence-customizer-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\ZW$;&/q[','QrԜ؅SGČ#sm-<','',0,'?'),('^y/c','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Factory.php',0,'0Ep^gnX=','0Ep^gnX=','K)-^K0z','',0,'?'),('^c/o\n\Z+','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php',0,'ŕ>i7:[}<\n','ŕ>i7:[}<\n',')UuI I4 .zM_p*','',0,'?'),('^uuWdM=','wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z=Eo0[','m?\Z\"g=0N\"Q`u\'~I','',0,'?'),('^{gOڈ','wp-content/themes/kadence/inc/customizer/options/footer-html-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-html-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XJ6?칿,d','.OY$5yiel(#-ž\\tKAba','',0,'?'),('^	0\\O&','wp-content/plugins/wordpress-seo/src/helpers/notification-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/notification-helper.php',0,'dp3A<õDVxK','dp3A<õDVxK','2ReE{mkk>~b&$^','',0,'?'),('^e]ʷ,','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-sorter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-sorter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m/>Pe','M$|7z*=x:%IV*=7','',0,'?'),('^S6\rxT58s\'UH','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderInterface.php',0,'<BJbj','<BJbj','2@kh#?_8pmDUQ','',0,'?'),('^^\\Q=(w','wp-includes/js/imagesloaded.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imagesloaded.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h#vɯȒɦC','Ij+V`) P3J(\"xR`','',0,'?'),('^JdcU+~','wp-content/plugins/wordfence/lib/wfScanFile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Nv$>',':<QM7٧F&g\\F]|t','',0,'?'),('_\0d MP~D','wp-includes/revision.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2/%6xI۫','\nQÏ(/I\"&{iR^ܾ\'\r','',0,'?'),('_k4!*}݄ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"UE\"Eb;Dn','ԱrgCXJU1։Ya,1','',0,'?'),('_\r\r,ayAW]','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/FileBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/FileBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ģ2O.A?','jaey¸K4#Cܣ$pKѤ\';','',0,'?'),('_*⽞L0>\r','wp-includes/feed-rss2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-rss2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lN+5	O?','@!`C*Mezj@	@Ljw','',0,'?'),('_#U1pGS','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zrtw(e','ҿDI<^i2dW]G_-+A8W','',0,'?'),('_!_j;1␐S','wp-content/plugins/wp-rocket/views/settings/fields/one-click-addon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/one-click-addon.php',0,'YKz0y,','YKz0y,',')(\'MI.0K\rrܝĽ','',0,'?'),('_#&iv','wp-content/themes/kadence/template-parts/header/mobile-button.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xP=z	','-\nJ8+GRIR3-G8','',0,'?'),('_.D?`}p','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/ThemeResolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/ThemeResolver.php',0,'@%oL)\"!y\\*w	','@%oL)\"!y\\*w	','.̠@,x0ZN7J}ҮB!b','',0,'?'),('_E!E|E','wp-content/plugins/kadence-pro/dist/dark-mode/mobile-dark-mode-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/mobile-dark-mode-options.php',0,'R/^	d','R/^	d','cl>ʁ]0Du\ZwFʹpT6','',0,'?'),('_F\\\Z!Wy&','wp-content/themes/kadence/template-parts/title/back_link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/back_link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԋ9lqr!u','x0:?\n\r:un`Z11+M','',0,'?'),('_MKx2/A\")WE','wp-content/plugins/shortpixel-image-optimiser/class/Controller/StatsController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/StatsController.php',0,'Z!B$','Z!B$','*l*a]\nI,@}N_^k%ߗ$','',0,'?'),('_j_/yӱ','wp-includes/load.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FL)?\\DY@','L;XN0W9yx(r;_,&(','',0,'?'),('_uҽ\". \\肟','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery-doctors/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery-doctors/index-mobile-https.html',0,'k,dKyJ-|x¤','k,dKyJ-|x¤','0Kxe\'t,ٞGzjy>kKj','',0,'?'),('_w\'JS6','wp-includes/blocks/gallery/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ދl>nqyW','ɹa߿Kۘn͓+nb','',0,'?'),('_{FZW8\"r/','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Response.php',0,'ЃBHF-*{\"','ЃBHF-*{\"','çI9Yx?G=Dl?9','',0,'?'),('_|t\'qu','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php',0,'ivWj{zy6','ivWj{zy6','0p\"VRAR\rlV\\BhĐV','',0,'?'),('_~[H y@x.+','wp-content/plugins/wordpress-seo/admin/class-yoast-network-settings-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-network-settings-api.php',0,'0:)!@I','0:)!@I','#C j8ZcWk:$כ\':','',0,'?'),('_}ËJqm_#Ls*','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PJ̣-d','R3x\\t}jڲ\"uG{>q>','',0,'?'),('_&[qMn89','wp-content/plugins/wp-rocket/views/settings/page-sections/heartbeat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/heartbeat.php',0,'>1q\"f@','>1q\"f@','/\00va\nebHd՚[/mKDf','',0,'?'),('_!\\=nTykX','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wq6l\03nF~','kN%c\0Qf\0o\"bк0','',0,'?'),('_8D','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-wp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-wp.php',0,'+vY!e\\9h2','+vY!e\\9h2','&a=sg;T\"UO_CL3k*','',0,'?'),('_ms*v\'*','wp-content/plugins/wordpress-seo/src/presenters/admin/badge-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/badge-presenter.php',0,'VȝmQW{','VȝmQW{','\Z/OE,p8g\\h\\\"5','',0,'?'),('_ٙrC4<|]','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/FileinfoMimeTypeGuesser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/FileinfoMimeTypeGuesser.php',0,'^>BvB߮ץ','^>BvB߮ץ',')p7ki.VY0+yۥ.','',0,'?'),('_<* D','wp-includes/Requests/src/Exception/Http/Status503.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Ϸ\r|;%','^J9$ Ň\n\"]k[qN','',0,'?'),('_|TM^J','wp-includes/css/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'.@	>\0zN','F\rt~x\riG- t;ڂ','',0,'?'),('_43=','wp-includes/images/uploader-icons.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/uploader-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Mm','p+/i!Zţ6m','',0,'?'),('_C','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/MailboxHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/MailboxHeader.php',0,'o*9f2','o*9f2','{\0$Y`oɳ/K+>քY];:ݪ','',0,'?'),('_ڧ<7S','wp-content/plugins/wordpress-seo/src/conditionals/robots-txt-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/robots-txt-conditional.php',0,'e\rw\ZKsYy;','e\rw\ZKsYy;','=NlOlH:限IH','',0,'?'),('_B\"̒`JP-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Cookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ekp6ٯ7','C\'hLיl[B|','',0,'?'),('_ S\\o>','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wp-meta-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wp-meta-seo.php',0,'cOSM&','cOSM&','2dc2v[\\Ebj','',0,'?'),('_(CM69','wp-admin/includes/class-wp-links-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-links-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^uYU\'K?RI','G#$dN6\0:ZxP(TR\'NҎ3|],','',0,'?'),('_8}?','wp-includes/css/media-views-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/media-views-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\"yU[','pOQFfHЃ}m[b\0M','',0,'?'),('_2m rJ\0600','wp-content/themes/kadence/assets/js/cart-update.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/cart-update.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#{gqtԖ@m','^>PQtO:#=^','',0,'?'),('_2oUE6','wp-includes/blocks/query-pagination-next.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-next.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tlc}k`bzr','k$\\9OR׬ýЌo|Y#','',0,'?'),('`\0WLH&','wp-includes/blocks/query-title/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']l¥ˀ3','d\"Q٥[Rf?а-[1#xr,md\r_','',0,'?'),('`\0hi}&5`','wp-content/plugins/shortpixel-image-optimiser/res/js/debug.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/debug.js',0,'be븝NbS-','be븝NbS-','Ncxfo4^\0!)2','',0,'?'),('`A4~\ng','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/SessionNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/SessionNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zOJ@;=','o\'Z\"cOzhRJ*)&','',0,'?'),('`S`NI^G','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(i@Gg0p','G</14ŅL5!','',0,'?'),('`\ZQ&`4','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-headspace.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-headspace.php',0,'<wQz31vl','<wQz31vl','>\\=so&IjK','',0,'?'),('`%ֽj\'P','wp-admin/js/edit-comments.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/edit-comments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','af~g2PZ8','	)%TL?#-.Ʉ','',0,'?'),('`,8Vi4NP','wp-content/plugins/wordpress-seo/js/dist/languages/nl.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/nl.js',0,'/8gD','/8gD','ۻСXVɔ:Xv=UE#(x','',0,'?'),('`1{3|EbjCL$','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/abstract-term-seo-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/abstract-term-seo-data-provider.php',0,'#+\r8\n_h','#+\r8\n_h','Vi\r%\"$b|\"Pf','',0,'?'),('`1;\'wl','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Requirement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Requirement.php',0,'%ImPB9','%ImPB9','Q#{e{V*AqEǍQ]','',0,'?'),('`9\\$\\b\Z\'>','wp-content/themes/kadence/assets/css/src/woo/_blocks.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_blocks.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߀D\nĂO','2aSp8cEh','',0,'?'),('`=?T\"Ԧ]%','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4<W-@߁|',',%]\'/xs]	r8W>r_','',0,'?'),('`@\"xY','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Queue/Queue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Queue/Queue.php',0,' c\r>bS3f',' c\r>bS3f',']CDv$hþ`^\ruLZ	nw(','',0,'?'),('`Bd3 Cj3n','wp-includes/blocks/verse/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v<_55ڬQ785','+.D[7 U=aI-H\0w','',0,'?'),('`Se>KG\rH]','wp-content/plugins/wp-rocket/views/settings/sections/nocontainer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/sections/nocontainer.php',0,'`8Yb8}tײI','`8Yb8}tײI','C^7QoVlܰ	~\rX','',0,'?'),('`v(\n9bn<kƾE','wp-content/themes/kadence/inc/components/options/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/options/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5݅Kr:s','\\*1o<ӉOna','',0,'?'),('`}}}Iʬ','wp-content/plugins/kadence-blocks/dist/blocks-countdown.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-countdown.js',0,'*ϋFݥ:','*ϋFݥ:','2S:TRMX%PcU;Dv','',0,'?'),('`N2EﾮpC','wp-admin/images/privacy.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/privacy.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Po%фCu','!éoTu5HF#&HhV~','',0,'?'),('`\n2','wp-admin/css/code-editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/code-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VDBQVgF','w86=ݔ2\rD%VE5S	T','',0,'?'),('`ڃje&','wp-content/plugins/wordpress-seo/src/helpers/blocks-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/blocks-helper.php',0,'Kp|k4C|=/','Kp|k4C|=/','F8M7T{߄qjIPS','',0,'?'),('`\'? ݒ$','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/FulfilledPromise.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/FulfilledPromise.php',0,'yjp	z~','yjp	z~','ކQ\"bI슫3\ZB\rWV','',0,'?'),('`a(g\"','wp-includes/js/dist/html-entities.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/html-entities.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V-g\"','מϐJO].-ȼOTM','',0,'?'),('`Yu72','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/StreamFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/StreamFactoryInterface.php',0,'Dhf%En|1N','Dhf%En|1N',']\\sUS1U{MQ^W3D','',0,'?'),('`%*iV','wp-content/themes/kadence/inc/customizer/react/src/check-icon/check-icon-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/check-icon/check-icon-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VHkQiM?','rLf(4/rmvCA[_g','',0,'?'),('`c0\\3','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QD2jFD*.eq','5r]$1䘦\0jfFD\0t%gq','',0,'?'),('`ooZW8`','wp-includes/js/dist/preferences.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/preferences.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KOs-DIUS','3u3iEmBU\'m\0H iտq-','',0,'?'),('`}ۦHv`46Q','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/APIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/APIClient.php',0,'_-Q9[B.c','_-Q9[B.c','\nўvӨ$`K0o','',0,'?'),('`PAEo','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php',0,'Dhsޗ#','Dhsޗ#','vi~ZZp8٢{+{kbO','',0,'?'),('`,jM62=T','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!i \'y Rh','Ǫ4?m,\'\\%Zd2gį','',0,'?'),('`;\"-+~;','wp-includes/js/tinymce/plugins/media/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/media/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#@,4dGM','XHx0֍X\ZOG|{F2','',0,'?'),('`}+6L-q[$','wp-includes/sodium_compat/src/Core32/Util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1`0','qƖ%/ygrwÛ\rLR>=Y','',0,'?'),('`U2mdW','wp-includes/class-wp-customize-nav-menus.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2^@\nHOֆN=U',';cE?c_ؠ̻}d<BLt^Z\rc','',0,'?'),('a)6ю','wp-includes/js/plupload/moxie.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/moxie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#C\r5Ǳǒ','I9_/xt5(.gtT\Z}&','',0,'?'),('a.A<ǰr','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBagInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBagInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#3_q$X^',')(n_XLa%WSHs9U','',0,'?'),('a(T4=.W3\'','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php',0,'3<!5l?qq','3<!5l?qq','6-2Ա`wVOն\'>\'','',0,'?'),('a(\0\'~uW','wp-content/plugins/wordpress-seo/images/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/index.php',0,'EЛO0cAg3','EЛO0cAg3','	蚠{cFJw!}a9','',0,'?'),('a)TMWOoQ|','wp-admin/images/media-button.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6@pz^ye','_\ZSjזY VZGen_','',0,'?'),('a,I]6<C-\Z\'','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/FileBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/FileBag.php',0,'2\nDķYRD','2\nDķYRD','6J- 07e2=7s','',0,'?'),('a3TW\'oY|','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorage.php',0,'gJo','gJo','2 -w!cS$!uMGPTN}','',0,'?'),('a5pUe>i','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php',0,'q^.9!+<	N','q^.9!+<	N','1a\'[cӛeQ)\"6\0@\'','',0,'?'),('a@7ˠ%WcML_','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php',0,'=[\"\n3]vL','=[\"\n3]vL','?kcf%eRC}Rބ\"M','',0,'?'),('a@`^~c','wp-content/plugins/kadence-blocks/dist/blocks-posts.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-posts.js',0,'2\rKZ<CTO','2\rKZ<CTO','{3\rZ%Gn)Q9CC[+_&Os|','',0,'?'),('aB.pU}!','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@AD]4',':.f0\n4cdƐ2P/P\0','',0,'?'),('aQlWMЪ','wp-content/plugins/kadence-blocks/includes/assets/js/kb-navigation-block.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-navigation-block.min.js',0,'aSgPj','aSgPj','/шIԪzsvZQ}g','',0,'?'),('aQ<5{Bz\'CU','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-advanced.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-advanced.php',0,'OnȭKb!','OnȭKb!','ʎ@Fam`0N i.\Zaz','',0,'?'),('aR$q4R6\rv','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_CanceledAction.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_CanceledAction.php',0,'SS !F|rHj.L','SS !F|rHj.L','6h}?!E)rZ\'~PRZ$-,','',0,'?'),('a\\c,I\"5T#̋','wp-admin/images/media-button-music.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-music.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9 M\n5E','x\"0$!H]','',0,'?'),('a^OZ@&\";','wp-includes/css/dist/block-library/elements-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/elements-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0YpU',')m.~yw`@ycZB','',0,'?'),('aaܘ\'!By\"','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-wso.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-wso.php',0,'#=ۃ,i','#=ۃ,i','uD:]`Ȳ`O>-	啽ÀFV','',0,'?'),('ab*~gyy','wp-includes/block-supports/position.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/position.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P|⪭w$JD','ufUCq$qx+0l!26fX','',0,'?'),('agOIK1އ.\ngB','wp-includes/blocks/navigation/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӗo\0b*','|-K&}\ZخݗR[ޓE+','',0,'?'),('auK9sf/ ','wp-content/plugins/kadence-pro/dist/header-addons/header-divider-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-divider-options.php',0,'ռyIt\'utjc','ռyIt\'utjc','5E$up|vIǰ(HHG!lC','',0,'?'),('axhΗ!5SM=a','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/SMimePart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/SMimePart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ppߦ%|','Qt3oK*)fO&w+\'+jC','',0,'?'),('aybqg=Q4<','wp-content/plugins/kadence-pro/dist/header-addons/templates/button2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/button2.php',0,'̪a','̪a',' pzBgă\"_M,`_6','',0,'?'),('awU\ZTzK','wp-includes/blocks/post-excerpt/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e̅bJ&^ŧ','2u	lxDg/v','',0,'?'),('a([Ն','wp-content/plugins/shortpixel-image-optimiser/res/img/filebrowser/folder-closed.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/filebrowser/folder-closed.svg',0,'eU^J`GAϥ','eU^J`GAϥ','`Ff?%Z}#^c','',0,'?'),('aJr&-D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uo}S}8.','$s?;fĠ=`\r	&!','',0,'?'),('aGi5U','wp-content/plugins/kadence-pro/dist/header-addons/templates/contact.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/contact.php',0,'Q%&=\\','Q%&=\\',']g&X\00\0՟ bqUA','',0,'?'),('a(mEBl','wp-includes/media-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/media-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X9?F','e)aН!4\\[l0F0','',0,'?'),('acCH\r=l@ĸ','wp-admin/plugin-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','._\rwJ','ւ5&0lsK⦨	߉\0\"^߬Ȝq','',0,'?'),('aolՓ\Z\nO[','wp-includes/class-wp-plugin-dependencies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-plugin-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Їg<.~','\'UCzՕ,@klDL@L*ЃY','',0,'?'),('aߦO:O̦ݴ','wp-content/themes/kadence/assets/css/src/rcp.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/rcp.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U;ڲ)?V','~ǰʼC8}tڞE2','',0,'?'),('aaiG}\Z ','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\0zQ칋dK$A','R|.`\r@/`0?6t̆	I','',0,'?'),('a\n/>۹6aԮ','wp-content/plugins/wordpress-seo/src/actions/importing/importing-indexation-action-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/importing-indexation-action-interface.php',0,'F0\0\Z㋯M]C','F0\0\Z㋯M]C','j-#*ʺ_\rD3WwT','',0,'?'),('a \0K@BиO{','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php',0,'C\'[uIV','C\'[uIV','3cz*ZW,Z#,ꐟOžͧ','',0,'?'),('aXʤG\'ɀn\r|tN','wp-content/plugins/wordpress-seo/src/wrappers/wp-query-wrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/wrappers/wp-query-wrapper.php',0,'&ҙm?D','&ҙm?D','vڣg`fv0n;\\U\'','',0,'?'),('aϫ|O','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Buffer/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Buffer/Subscriber.php',0,'$X>R@-1Ta','$X>R@-1Ta','Twx-])І','',0,'?'),('b]1\r\"#I=','wp-content/themes/kadence/assets/css/polylang.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/polylang.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iV\"	]~	AC','_7\'T3^3J~aќt{','',0,'?'),('bm(u','wp-content/themes/kadence/inc/customizer/options/footer-widget3-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget3-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʟ:yf}ق','đFl1EDSĽjd=r3|PW','',0,'?'),('b!!$^','wp-content/themes/kadence/assets/css/src/elementor.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/elementor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u۰0sBЃ__','Q9\\7ϰ$M/h_','',0,'?'),('bcW@ɉ+_','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php',0,'?UE>An','?UE>An','%7Y(-FSMYE?,Ҩ','',0,'?'),('b5(	s$0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QkD4','DK8\Zk.-zܒB#ml','',0,'?'),('b^Xc\0','wp-content/themes/kadence/assets/js/admin/meta.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/meta.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}s .d','wY@Q-A9f*̛','',0,'?'),('b/|a\"#^\'4','wp-content/plugins/wordpress-seo/packages/js/images/jetpack-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/jetpack-logo.svg',0,'ahNN>W\nw','ahNN>W\nw','`h-ݯrb20і;<rf/i\\|{','',0,'?'),('b7(	%EgE','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNoticeRepeatLong.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNoticeRepeatLong.php',0,'HM}31VV','HM}31VV','xkdO*_*67','',0,'?'),('b<caT!5','wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.js',0,'ϊĬ,$fG.\nґ','ϊĬ,$fG.\nґ','97;yxc-B/Ӧ+]ͷ','',0,'?'),('bN9M{y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php',0,'U)|Ӭ','U)|Ӭ','NLabL\"Կϓҁh','',0,'?'),('bUND>kGȸW','wp-content/plugins/wordpress-seo/inc/class-post-type.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-post-type.php',0,'(]$@u3H','(]$@u3H','FS{O8jSɂj9?c1:=x~','',0,'?'),('bVX˾$L}q','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configuration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configuration.php',0,'g}0_t3\\','g}0_t3\\','^T\'O {q52k.^+h','',0,'?'),('bY,ϥYr۝;','wp-includes/js/crop/cropper.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/crop/cropper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ky5ni*M(','ٸTޝOwLy=}gTl','',0,'?'),('bnռEIBA<','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/DateTimeImmutable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/DateTimeImmutable.php',0,'ZO[b+V','ZO[b+V','c2eVr-%F6.\0z~n *','',0,'?'),('bs>g\"yF','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wp.Uz!)0','ҘARJ<F#Mg*Nhn1O','',0,'?'),('bu}$-','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Combine.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Combine.php',0,'a:(ey*bG ','a:(ey*bG ','[^(NgQ]qO1P;V','',0,'?'),('b_iE=f]','wp-content/plugins/wordpress-seo/packages/js/images/wp-recipe-maker-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/wp-recipe-maker-logo.svg',0,'EVV#J@','EVV#J@','p>H̩5g(@9$','',0,'?'),('bE#vX9Ư,','wp-content/plugins/wordpress-seo/images/error-icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/error-icon.svg',0,'+9U;1pĿkt[','+9U;1pĿkt[','Zrg6Jv`<cěb&','',0,'?'),('bd<glng','wp-content/themes/kadence/screenshot.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	xYX_','n񕯚\ni%k^=	[}R0rwȔ','',0,'?'),('b&i鹋(I','wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-promotion.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-promotion.php',0,'HOCYo㉦','HOCYo㉦','J6K07\0n	ґNo58}g','',0,'?'),('b+:gIL.3|P','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Option.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')xP\'#S~','{:&k^w{!L[\' tl','',0,'?'),('bHzfWgw','wp-content/plugins/wordfence/lib/wfSchema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X]I','kew̄E?ӰĴ&Ƌ#L','',0,'?'),('bW6TQL5/','wp-content/plugins/kadence-blocks-pro/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/autoload.php',0,'g(X','g(X','צ?h	GQ=o-܅_2>vHVǽ','',0,'?'),('b,><g','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/cta-small.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/cta-small.php',0,'`kDn$O','`kDn$O','K;NIRwQhHcr&p','',0,'?'),('bPn^k!E$','wp-includes/js/dist/undo-manager.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/undo-manager.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W86K\'M\"',':!kW{iVB}0.Wtm\\','',0,'?'),('beA?TG\"v','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O6_XE','S\rv?`=HI:\'Bgn4*','',0,'?'),('bKojqAZ','wp-content/themes/kadence/assets/css/woocommerce.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/woocommerce.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SU+sq','3<k,n;ų R(|R2?','',0,'?'),('b\r#9a$wn','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-squirrly.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-squirrly.php',0,'s|a*e3_','s|a*e3_','WCA@?u2,S*(mR]|5','',0,'?'),('bҌ &?{','wp-includes/js/customize-loader.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V,yV~=','r\'b\Zvi|~4K]^5','',0,'?'),('b+ƴݟ3','wp-includes/customize/class-wp-customize-nav-menu-location-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y1]Fh','VӒk\07\'baKX-','',0,'?'),('bIPG!H','wp-content/plugins/wordpress-seo/js/dist/languages/ru.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/ru.js',0,'PAl=dxn','PAl=dxn','U(P&Xv\\a3\'ƞoQ&','',0,'?'),('bU+R;7~`|	','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MatomoInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MatomoInstaller.php',0,'˧֛WDHIGXB','˧֛WDHIGXB','CBhXϭ]jd-f&\rF2X$+\0','',0,'?'),('b񪥲K+xwF','wp-admin/css/site-health.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-health.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f@ܾ6l','dK\"hsP?G%\0A Ǎ','',0,'?'),('be{Y','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/BatchFetcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/BatchFetcher.php',0,'E[~%4','E[~%4','QFjd6Kl(xNgXlt','',0,'?'),('blrГ3б','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery/index-https.html',0,'?4Ok','?4Ok','Z=(Y4*ǮNu?XGJ','',0,'?'),('c餟(Ok1!͂','wp-admin/privacy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i6[$@lڜS','RiS2&x\Z8T\nGtaMtry	','',0,'?'),('cgl$+!kYz','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceLocatorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceLocatorTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','49n>MU','xZqdC*v\r	8.','',0,'?'),('c.K-k3d','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy.php',0,')f5)W\nuiW4d',')f5)W\nuiW4d','G($mX&x1c0N3R+','',0,'?'),('c#5?lCTh','wp-content/plugins/wordpress-seo/src/values/robots/user-agent.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/robots/user-agent.php',0,'in\0T#_X>','in\0T#_X>','`%[hCX6ȍ͖GO~o3J','',0,'?'),('c4L]˞Mc','wp-admin/includes/class-wp-post-comments-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-post-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2aSYyl)K6','F_۰G\ZO0c~Ih\nY;jƣ','',0,'?'),('cp	PU3/','wp-content/plugins/wordfence/modules/login-security/classes/model/request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ܮM,~/r','F;W]&z~o\'/q+','',0,'?'),('cWL݊ͧ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Drivers/LocalStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Drivers/LocalStorage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>kŧ\\8',')m*\rLX3c4pWgO1[`','',0,'?'),('c\Zr te\\-','wp-content/plugins/wp-rocket/inc/common/admin-bar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/common/admin-bar.php',0,'mNnD%iJ','mNnD%iJ','ٗ@@6jkōP}k=ߤ!','',0,'?'),('c%;8QVWƝdȇ:','wp-includes/blocks/paragraph/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XVʘgB_','(k\"\r8I#OfVK','',0,'?'),('c&fM\Z>/\n','wp-includes/css/dist/block-library/elements.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/elements.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0YpU',')m.~yw`@ycZB','',0,'?'),('c,[xޫ3\n@','wp-includes/js/jquery/jquery.masonry.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@`&n|}A','\\ۙ	}Mg $0 [B','',0,'?'),('cJ,l{@g/U','wp-includes/js/dist/router.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/router.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jMVXBNv','W+nDmbi 0','',0,'?'),('cbqicX3\"\"[\Z9','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Downloader_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Downloader_Provider.php',0,';e^*}*Ҟ\n',';e^*}*Ҟ\n','<ˌfP7̏ܥ#8qX%FV[m','',0,'?'),('ctשXپuyv','wp-includes/blocks/image/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g/P0','[+^̶\0QP\'yH5','',0,'?'),('cQiQv','wp-includes/css/dist/editor/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xm\0aXU','Ԓ]C\'t\r},ޞ&C','',0,'?'),('c7im\\BSb','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/multisite-schedules.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/multisite-schedules.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r.f\r',')LqU\Zu$&\Z{dPtQ','',0,'?'),('cT6p}OV>','wp-content/plugins/wordpress-seo/src/integrations/watchers/woocommerce-beta-editor-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/woocommerce-beta-editor-watcher.php',0,'󡡵vf@z)','󡡵vf@z)','pi\"Yz==ù\' U','',0,'?'),('cH#\n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php',0,'lbLG]Cd.-','lbLG]Cd.-','86̓j7ݖ\0եiFk','',0,'?'),('cPV[b	n\Zz','wp-includes/images/media/text.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/text.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c4t;GJ\n','f-@0=IKE%>pYaF.Ik','',0,'?'),('c䢔4\\','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/myspace.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/myspace.php',0,'*BjХ','*BjХ','$6uH65읟6|3','',0,'?'),('c5L\rK\0t=i','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sz)j','yo.\n5\\J=C0.Ԉ޳|̫','',0,'?'),('c蒎8W9.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/MixedPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/MixedPart.php',0,'`\n>\Z!','`\n>\Z!','N|YbSGH:ra','',0,'?'),('cD\rO;`','wp-includes/interactivity-api/class-wp-interactivity-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/interactivity-api/class-wp-interactivity-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a*|^=%1','{Dik.M{aͱ:#nD9\"k45b','',0,'?'),('c[b]ݽJF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I]U	Xg','TϚ-1 [@./i󒶦iq0o','',0,'?'),('d$Ú^Btˁ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php',0,'a9KF6.','a9KF6.','ODCԧ/;:Ŀ._o{9X/','',0,'?'),('d:wOІ','wp-includes/ID3/getid3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/getid3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LonBğ?','ĥ7fHQa./ oQ8\n','',0,'?'),('d1쵓-;O','wp-admin/js/custom-background.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/custom-background.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PA3 K}Û$','4hN\n:QqXz!iq^sYĄ,i','',0,'?'),('d\ro 6M^n','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ic<','0\nc~ϯQJ?l2P\rx','',0,'?'),('dY`Å\"','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/APIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/APIClient.php',0,'o]%fI0','o]%fI0','wrv\\G$<^ū?a9i!۰','',0,'?'),('d\ZY;gKW','wp-content/plugins/kadence-blocks/includes/assets/js/kb-image-block.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-image-block.min.js',0,'Uf\ZSݡs\n%BU','Uf\ZSݡs\n%BU',')[\Z;\rA`;1t~q\r','',0,'?'),('d3ZfIK','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-search-bar-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-search-bar-options.php',0,'3Q!ظק\'','3Q!ظק\'','tK`_	{eH(ui9ɋϹU&','',0,'?'),('d4c\r/-\n>','wp-includes/blocks/post-date/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3٦>L\'','?ahƖov5nh','',0,'?'),('dr4N}C|x','wp-includes/js/dist/vendor/wp-polyfill-importmap.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-importmap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f)ͣ~7+	p','gި\r5\'MQn8z>','',0,'?'),('d}颃(/	XE','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/AsyncDecoratorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/AsyncDecoratorTrait.php',0,'	\\%>','	\\%>','i[\\)pLFǯ_	kwGU{','',0,'?'),('dNrK>0','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Subscriber.php',0,'&P~˗F\0p','&P~˗F\0p','g]3Z+Pԥ7I=	N⫄YAWa1','',0,'?'),('dkJQAw6im<B1','wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ÉAuӧh/4z','f\rA?H2ņ<wBK\Z\" ','',0,'?'),('d$Y1=','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m&Z\':\nbn@','\"G~Nz@~D%V~8\r','',0,'?'),('dAuh041','wp-includes/blocks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KGqOW7ʽn','\\O	w?xsa^\nPmw5E44','',0,'?'),('dvӈ|<w8','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6-pJz5A0','cDzNH=L:b|_dZGBy','',0,'?'),('d\n\nFm\"pWh','wp-content/plugins/duplicate-post/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{0,Q6n','`sN.-ډGDT-\nt','',0,'?'),('denU\Z','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-off-canvas-trigger-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-off-canvas-trigger-block.php',0,'I_FYy|U','I_FYy|U','+i?e(B\"mb@Z1⠈','',0,'?'),('d\rt~<','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php72/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php72/bootstrap.php',0,'C\r<AUa','C\r<AUa','fw=t3Păԙi]܃/;','',0,'?'),('dkkF1R0.','wp-content/plugins/wordpress-seo/src/actions/indexables/indexable-head-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexables/indexable-head-action.php',0,'W!Vt>s','W!Vt>s','7~>D\"[jn','',0,'?'),('dB9Sh7Aw\n','wp-content/plugins/wordpress-seo/src/conditionals/primary-category-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/primary-category-conditional.php',0,'Cb2SAr','Cb2SAr','h-Nڔ!)̸vhvrbhZD','',0,'?'),('dqi=_Zù','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-abstract-query-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-abstract-query-block.php',0,'G%-ihT','G%-ihT','<FA.(E(B\'WÙx2)%p','',0,'?'),('dNQrG /','wp-content/plugins/wp-rocket/inc/Logger/StreamHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/StreamHandler.php',0,'-<nq','-<nq','\ZnsJ!-[y\'.\'F#+GF','',0,'?'),('d0ٷ\ZԌn','wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0<N5ҖouM','p\"\r<P13rz=Ɠ]','',0,'?'),('dDA%l`^G','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorInterface.php',0,'1)ZsܽK','1)ZsܽK','0:&=F VoI~}@^0','',0,'?'),('d\"\'\0sr2','wp-content/plugins/kadence-pro/dist/dark-mode/templates/header-dark-mode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/templates/header-dark-mode.php',0,'S!q^','S!q^','H^Qz07fծ\rgIzj','',0,'?'),('d(%J@G','wp-admin/options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jݚB#Z	E骖','&c3{V=3x~P3̽RQgbT#','',0,'?'),('d1Tgb!','wp-includes/blocks/query-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-b,wrˡH','ٖ~.YwAC$|\025?','',0,'?'),('dhħ{q42K\"','wp-includes/SimplePie/Rating.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jkB-\r?Q3QwU7','{nH(>}Q(ab>\nFY+','',0,'?'),('d4j2UV$P','wp-admin/css/wp-admin.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/wp-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7#Q&M?»|[','QD6hPqqM9FO\\O','',0,'?'),('d@!dJ','wp-includes/js/mediaelement/mejs-controls.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mejs-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.۷Z#e0<l','X*\ZX(Z!ȽD2aB','',0,'?'),('d|K<c:8Q','wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-woocommerce-post-types.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-woocommerce-post-types.php',0,'pRy\n㨁','pRy\n㨁','a	B|[4]ӛĳ)$[','',0,'?'),('dduvJ^6)l','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/UnicodeString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/UnicodeString.php',0,'X(ȓGk9`','X(ȓGk9`','mXf?N\Z:=o\0^`;Gt','',0,'?'),('e\0hLщ','wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YѱƔUy{','paivINa\'%fE?Mv','',0,'?'),('e\rZfޞ|','wp-includes/js/api-request.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/api-request.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\'|\")!ô\"p','\ndPK3*R\'5Ē \Z\'?','',0,'?'),('eΗ\\l Nk','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php',0,'\"鰂g~.Db#','\"鰂g~.Db#',' #\Zm-0@ʖDGь','',0,'?'),('eXǌ.\\(&d','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a4P^/7E','ѧ\n7YGĢj*D_.~Cb','',0,'?'),('eikH\'Z','wp-content/plugins/kadence-blocks/includes/resources/Cache/Ai_Cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Cache/Ai_Cache.php',0,'LÌQKR@','LÌQKR@','$B<<Ql\ZdxX7ncG','',0,'?'),('eXLi4x','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/CharacterStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/CharacterStream.php',0,'JAs&\"','JAs&\"','(f뱲ɉۤ%GQ\r)d\'9%po4','',0,'?'),('e+oN|zzxc','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I|D҈\0\Z6N\Zyw','&л:/0Qa	X\r8L鉘','',0,'?'),('e.PȴNBSx[&','wp-admin/includes/class-wp-plugin-install-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-plugin-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8(=W#R<sG]','kHsq`|jL\"̙GcIv]','',0,'?'),('e0|KL;S','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/StarbugInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/StarbugInstaller.php',0,'ssXL$','ssXL$','DjAj`e2lj6','',0,'?'),('e08/;t','wp-includes/blocks/tag-cloud/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q{OХ/','a&gBmAR[Sjzn.','',0,'?'),('e0.W\"F`2哛','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MkLUȀ|v	?',')*վ\n`\nSm.p','',0,'?'),('e6uV@<?wCC','wp-content/plugins/wordpress-seo/src/helpers/wordpress-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/wordpress-helper.php',0,'ñ܃','ñ܃','pj8A2a&{ \"9|ZX	;WV','',0,'?'),('eOE~','wp-content/plugins/wp-rocket/inc/classes/ServiceProvider/class-common-subscribers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/ServiceProvider/class-common-subscribers.php',0,'f3v[Ҝ','f3v[Ҝ','&8B\0z\Z%fv๱7~b','',0,'?'),('eRj&p&ũ','wp-content/plugins/kadence-starter-templates/assets/images/fonts/oswald.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/oswald.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')~*6ox8','/3\Z80\n+,Mٜa','',0,'?'),('eoBsI/ݘ','wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js',0,'\nd\Z1','\nd\Z1','#i\01|rcv]UtgӮ/','',0,'?'),('ep\r}u_4','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Щ3^7DPk@c_l','eנc10F^bBQ@Bu','',0,'?'),('ep0#tH7kߔ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Stringable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Stringable.php',0,'e(\'n~@','e(\'n~@','$ʧT\'t/ّ.ncDK/','',0,'?'),('er-qSw5To','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/ClientState.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/ClientState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6[}Th4j\"','v6+e~z  a3{','',0,'?'),('euo(8?5','wp-includes/js/jquery/ui/menu.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\悗5O','5lWf@.NQLs','',0,'?'),('e}0wTnv_g~','wp-content/plugins/wordfence/views/scanner/options-group-basic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VEgO`#jV4C|','sc	;*r3$XG8ͬRK','',0,'?'),('ei92koj.','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractDataManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractDataManager.php',0,'<2|CmS=','<2|CmS=','DGRG\\\n>O]^)B_~S','',0,'?'),('ew;Rkꬿ i0','wp-content/plugins/duplicate-post/src/watchers/republished-post-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/republished-post-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݱ49f\'','dYX<J޶lU[-hͮ: ','',0,'?'),('e©\\Y\r','wp-content/plugins/kadence-starter-templates/inc/class-downloader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-downloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}<]&#:MJ','qzjGվV*\'\nJ\0G','',0,'?'),('eg3>МMԶp','wp-content/themes/kadence/assets/js/src/splide.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/splide.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u@|y','vT߻aѼ>x5fKH`X[W)y','',0,'?'),('eςuD','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','byE','O2Dj%s@ǛȓOh/uT','',0,'?'),('elsUO|R}ܝi','wp-includes/sodium_compat/src/Crypto32.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\r}jǊQX]m','ɱ䱃Fn2c.nMڣ A','',0,'?'),('e__%x','wp-includes/class-snoopy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-snoopy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kY$0{','3[D\'\ZX5ܝMHm$«R6蛃','',0,'?'),('e^#|ۍTЩz','wp-includes/Text/Diff/Engine/xdiff.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Engine/xdiff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^L4Xטo	','L\Z(M b;E.:)Cp','',0,'?'),('el>L','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerTrait.php',0,'N0!?5Jl]','N0!?5Jl]','⑨cm\'T}#xSF<B','',0,'?'),('eFΝ','wp-content/plugins/wordpress-seo/src/promotions/domain/promotion-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/promotion-interface.php',0,'!3Qi}','!3Qi}','=+_<;wlAR@z[4U','',0,'?'),('e\'7\r','wp-includes/blocks/group/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bl?Go$g\Z)','mS釂qj a]X\nSӿw','',0,'?'),('eI)YS(VR/','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Subscriber.php',0,'-`pD`J؁w','-`pD`J؁w','pFԛx\\?X\ntwN <qTk','',0,'?'),('eu7=	3cz','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4jR۲	Eg/','ƞD7M\"lz+5]v@>','',0,'?'),('e6z;vjO?/','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-posts-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-posts-block.php',0,'d)','d)','F2232n\Zh_%X<	','',0,'?'),('evgŶ3Nu3','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-captcha-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-captcha-block.php',0,'Fu[Rx.V\\έ','Fu[Rx.V\\έ','r)}KW)\n~?7LfBHAx9','',0,'?'),('eG벪*jp','wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZF%~*q',' dsr	5~ .-Z͜5d','',0,'?'),('eX(r߀)L5t','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/CHANGELOG.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PV4iy','ZFJG)%pDPH;(Vg','',0,'?'),('eA.zNks1S','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/rating/kk-star-ratings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/rating/kk-star-ratings.php',0,'\\\\\'','\\\\\'','Ueͮ~EkZRo<#Ƈ1a<','',0,'?'),('e.y>k','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-ultimate-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-ultimate-seo.php',0,'=0M5؄i0','=0M5؄i0','W=:iTL7rƆ9Go+','',0,'?'),('e7VwܸC','wp-content/plugins/wordpress-seo/src/surfaces/classes-surface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/classes-surface.php',0,'>ЊD;u\r\r','>ЊD;u\r\r','Y̥޴\n\0n|vI-:*','',0,'?'),('eLjMVoz','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php',0,'d]ͻwz5>k','d]ͻwz5>k','>;W~mZFߙrcR0v6NX','',0,'?'),('egXw#&ll#','wp-content/plugins/wordpress-seo/src/main.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/main.php',0,'݇ލ,H\'','݇ލ,H\'','kq縱4Gcz%\r7kҰ)','',0,'?'),('fe-=?˚g','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/PhpToken.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/PhpToken.php',0,'Yv`\0Ȕlv0','Yv`\0Ȕlv0','*FumIag(Ry','',0,'?'),('fnFro:L','wp-content/plugins/wordpress-seo/admin/notifiers/interface-notification-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/notifiers/interface-notification-handler.php',0,'έVR`X','έVR`X','zؒNuvwqI[=RQE','',0,'?'),('f\0>t0\0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/FileNameProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/FileNameProcessor.php',0,'ahsDcg`','ahsDcg`','I7\\jetR	Օd\n_TPP&C','',0,'?'),('f\"$HH3<S','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php',0,'c	_R^yf','c	_R^yf','j~֥wW\0\rA\re%[','',0,'?'),('f2]\Zmѵfc','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAttachmentCount.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAttachmentCount.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v3}*9٤*>!?','X>kCK(3Ky!Q\"c$','',0,'?'),('fEa)riwC4Xǚp','wp-content/plugins/wordpress-seo/src/helpers/site-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/site-helper.php',0,'TK]{@qVYI','TK]{@qVYI','ajM|s#d[v]]\Z$\ZҸ؟c','',0,'?'),('fKgW	^','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/TraceableHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/TraceableHttpClient.php',0,'܄7(%H~','܄7(%H~','~ڹ,m9|;|ļ<_','',0,'?'),('fLϖKd','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advancedgallery-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advancedgallery-block.php',0,'Rg;4:ҙ','Rg;4:ҙ','? 4cT>:\rk\\','',0,'?'),('f]&܈','wp-includes/images/media/audio.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/audio.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8gt &h','@Eyڑ[-C4{\ZкϮ_v]C','',0,'?'),('fpjH\'','wp-content/plugins/wordfence/views/blocking/blocking-status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/blocking-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DaG]:','^ĶUO95Eֹ~zqMq3@','',0,'?'),('fu3\nM\\}6*0','wp-includes/class-wp-customize-setting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YY\'VɎc','I&>WKi!%ͯ(7ԧQwْ]#%d','',0,'?'),('fFAlUp','wp-includes/blocks/post-featured-image/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zC,`ћ@m^R','ﳴtytg.^<:\"J<','',0,'?'),('f16|1Ćwλ','wp-content/plugins/kadence-pro/dist/elements/duplicate-elements.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/duplicate-elements.php',0,'Ώ㏵\"yC','Ώ㏵\"yC','۩3!4RşFe','',0,'?'),('fb`(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php',0,'6wXr','6wXr','zb^uQ4NMz:0?߼OĊ','',0,'?'),('f霰f؟|hUL','wp-admin/includes/ms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/ms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%lY\\M>x[#','׫$*/j;uL\'D-&?j','',0,'?'),('fmȄ%#!y\r','wp-includes/blocks/navigation-submenu/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eFs),3+','qP,$B{r^_z#@b+VGj\n)`','',0,'?'),('fŭ8;slV','wp-admin/js/privacy-tools.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/privacy-tools.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eo`Q[.','_A6}K\r9@\rroN\Z','',0,'?'),('fǥSV~9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Result.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Result.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hߵ3CxW(5','$4-ѷ]BqW$E=O\"K','',0,'?'),('feR)','wp-includes/SimplePie/Item.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XiqlUGՑ','gPL/(O)G.GnE','',0,'?'),('f3YT','wp-includes/js/jquery/ui/tabs.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/tabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tx͊m~d11OЃ','>.Y,0#奖CV!~[\Z.S(v','',0,'?'),('fzxՏ','wp-content/plugins/wp-rocket/inc/Addon/Varnish/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Varnish/Subscriber.php',0,'@&lM(XQ4','@&lM(XQ4','̍ծ͜[-:t7l','',0,'?'),('fֈVԹ)9','wp-includes/theme-compat/embed-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/embed-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','me8','}Ecz]#nw?yRa0ޅ6','',0,'?'),('fܬ[','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WPXCloud.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WPXCloud.php',0,'j-eagnDB23','j-eagnDB23','cZPDKÑ)Mn\Zת\03Th','',0,'?'),('fߘNOo','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php',0,'h6{\\u<m13','h6{\\u<m13','ݙ;ٳcUAHI7ٵGrW','',0,'?'),('fR%@cF#','wp-content/themes/kadence/inc/customizer/react/src/sorter/sorter-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/sorter-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"	\rx\\(FzUi',']bj-ZG/mF;QExZ','',0,'?'),('fǚH.','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XH>̥BTAtcD','LUi8Y)Qܔ@z\\Gj','',0,'?'),('g8ʊD\n','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schema/ActionScheduler_StoreSchema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schema/ActionScheduler_StoreSchema.php',0,'vh<2FQ','vh<2FQ','{BGagY~Xrn٤f','',0,'?'),('g#LͬKA]ea2','wp-content/plugins/wordpress-seo/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_namespaces.php',0,'5,}vĨ3G)','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('g-E\ro\'JꚄ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php',0,'Q70&]}`-','Q70&]}`-','E<J\'9:&6+(Y$|X','',0,'?'),('gq}Wֿ\rm','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/acf.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/acf.php',0,'e}N','e}N','dyj&\rג^cS6C%=Vk~q','',0,'?'),('g#,vM:','wp-includes/js/jquery/jquery.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b>|	<2\\Q\Zs','k+/fgƃL@cf9sJtX/nn','',0,'?'),('g)*tD㜆,','wp-content/themes/kadence/assets/css/src/woocommerce-account.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woocommerce-account.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o*	j\ZUа','\nJؘ436ĩy <dlF}H','',0,'?'),('g)NpJ@o{Ӱ','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientInterface.php',0,';{RX',';{RX','@Sz~#3DmWeN% ','',0,'?'),('g+yrqD/','wp-includes/vars.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F1\":һC\nI','K-{90I5֐EI\"E=m4Dt|','',0,'?'),('g+wJoG{b','wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x4\0ޮ颺','YV[6#\\^uC2f','',0,'?'),('g-ҝPt-CMyq','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ws9ٺ\"iM*','	1^۞;CpdRC\Z','',0,'?'),('g8~$}zt\ZG','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/index.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+>ƉQZr','4?2>S2+L?ΘVNBDsۈ3P','',0,'?'),('g;եA^.','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Ӈ\r;cޓ_','`<5(kE_[M?-PL','',0,'?'),('gJT@YD c','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-prebuilt-library.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-prebuilt-library.php',0,'-2⸿7)ȏ','-2⸿7)ȏ','!zK FǅxۮXvQ','',0,'?'),('gQir똿/!','wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')#>Y-*','fb9#j#0Kͥ)','',0,'?'),('gVevpH','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/RawMessage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/RawMessage.php',0,'*Հg:C8','*Հg:C8','ªu}B<bqDn\n+','',0,'?'),('gj:`d/','wp-content/themes/kadence/inc/components/the_events_calendar/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/the_events_calendar/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*xUbft(l','Ƣ)Vu_QAXS-Kʾ\0UOD','',0,'?'),('gmOhRbi(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SqsHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SqsHandler.php',0,'2Z1r','2Z1r','~%$mT`gѿT\ZjxU>','',0,'?'),('gmgD$J','wp-content/plugins/kadence-blocks/dist/blocks-progress-bar.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-progress-bar.asset.php',0,'}	5fj):]','}	5fj):]','<lH\\,H 񼮨Ū\nFf/Q	T0','',0,'?'),('gv\ZUO','wp-includes/blocks/html/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';D4[7z,3','\\s|oí_6M0imrQj$ԑ','',0,'?'),('g|y_o4\"XN','wp-includes/images/smilies/mrgreen.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/mrgreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-5^Jj','Mg$+;\05H&\\E6%w','',0,'?'),('g~d\npR-L)','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/BinaryFileResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/BinaryFileResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6| zF*','Qk\\2$(e&+Si&','',0,'?'),('gzyR\ZM̻*^u','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QfSraPE','Ktq<m\\<h9	','',0,'?'),('gB.:&>7U','wp-content/themes/kadence/assets/images/fonts/nunito.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/nunito.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}4~v6Ciw','תW\rUw\\:ltcUf|-\n','',0,'?'),('g\ZŞ|q(','wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zWM&836','TR@peS`FaױC>+V%8JyQ','',0,'?'),('g$G\\;r1X','wp-includes/images/wpicons.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/wpicons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dSuqV_a','cZ_?n_K61\\}r','',0,'?'),('gKN>J4','wp-includes/blocks/freeform/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fZHӔCW>','Qtu>Y-Dӿ]hmoh#','',0,'?'),('g/*vNm','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/AbstractServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/AbstractServiceProvider.php',0,'+V\'=5','+V\'=5','Do\'\";&줰bh4B_\0ZqͰ','',0,'?'),('gf1۶y;_','wp-includes/class-wp-http-proxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}4TޗU|',']#j+xwęη:b\ntc','',0,'?'),('gs)m%','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`rll3@ޠ!s','F+RZςeQ$epG%Ev-xE','',0,'?'),('gi]r\\ּj','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#=m,','Zc촒P{b6H}TRɅ1n?o','',0,'?'),('g]e!^(PK','wp-content/plugins/wordfence/models/common/wfTab.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/common/wfTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2T}HW\'<}\\','Z¥|sS8e3Eؗ$ܜ-h','',0,'?'),('gQ%KyQ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php',0,'E>%́a','E>%́a','@wQ?\nz>t','',0,'?'),('g\'!TpF<','wp-content/themes/kadence/assets/css/rankmath.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/rankmath.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!:#ga','\"o%nK[I=LdwzML{f','',0,'?'),('g63Z)j','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OxidInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OxidInstaller.php',0,'܆4d`R1M=','܆4d`R1M=','aşeݥQvryA<@s{','',0,'?'),('gOPmo','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Settings.php',0,'\ZeG','\ZeG','U<_e]?\rPPQ1?u\"X','',0,'?'),('g~)~sʞI','wp-admin/includes/class-language-pack-upgrader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-language-pack-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TFpH','8}nEKnjc.WƗy','',0,'?'),('g3\"892:3?E','wp-content/plugins/wordpress-seo/src/analytics/application/missing-indexables-collector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/application/missing-indexables-collector.php',0,'1nJ*$\0E\r','1nJ*$\0E\r','F\'E0>߶Z4rZ78','',0,'?'),('gӁ\"}H,d','wp-includes/blocks/social-links/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%E}w\rc:5','<=ia.k{U#\0','',0,'?'),('gw5ZᛃT','wp-content/themes/kadence/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B7&]NDd','@HM;ﺾ5 i\'o5V','',0,'?'),('gِ5w&4','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileException.php',0,'{*HA_ܦO','{*HA_ܦO','#@<Pnz1NX<N','',0,'?'),('gG\'QS{yt','wp-content/plugins/wp-rocket/inc/Engine/Optimization/ContentTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/ContentTrait.php',0,'U^,{fK$_!','U^,{fK$_!',' /=gDx\rtF	1pOZ\0luX','',0,'?'),('gdS40e8(7','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-slider-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-slider-block.php',0,'(L-vlTuL','(L-vlTuL','a5ixE&hH7pAM','',0,'?'),('gcQO⵾','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/StrategyInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/StrategyInterface.php',0,'Y8b','Y8b','Ӟ\\]͕fm]#z\"٠ޞ=','',0,'?'),('gX^V','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php',0,'4ٜR[(=','4ٜR[(=','KA*	\"Ʈ$aYSiSI','',0,'?'),('g]bR% ZE','wp-includes/js/shortcode.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>}OP8Z,Ob>',':Da!قv2\"!','',0,'?'),('gY0ڦlE>','wp-content/cache/wp-rocket/atlantagynecomastia.com/what-is-gyno/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/what-is-gyno/index-https.html',0,']absV7Cv',']absV7Cv','B!\".3ɴڄung.m','',0,'?'),('g+_P=yP#','wp-content/plugins/wordpress-seo/js/dist/externals/styleGuide.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/styleGuide.js',0,'<kO\'2S*h;[\\','<kO\'2S*h;[\\','!^eLsR͈H&7BDHQ','',0,'?'),('gEd1D}','wp-includes/js/jquery/ui/autocomplete.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/autocomplete.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!6Fx@S\r?','hcϘ\r5.%hI\"\\@ MHem','',0,'?'),('gPmqkU\\c','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_AbstractField.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_AbstractField.php',0,'WXvvlX8','WXvvlX8','qdwLԹL90k9dZ+T`','',0,'?'),('hiFǷɵxN','wp-content/plugins/wordpress-seo/inc/language-utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/language-utils.php',0,'4yJ`{ZYPz','4yJ`{ZYPz','H\Z;N<yzg[H مm6vo','',0,'?'),('h4\"9ӜA','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F Xi','nĘ0c,΄lӈ%##D','',0,'?'),('hZ[=wr','wp-includes/sodium_compat/src/Core32/XSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\:R/+','ɫ:jNmmR[','',0,'?'),('h\ZOhl_Lm/','wp-includes/class-wp-customize-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6po#M$ T\\','oX6ҳ\r·AOkˢ5\Z','',0,'?'),('h d껅2_r','wp-includes/functions.wp-styles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/functions.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kl(>D<>~Ɨ','pЮUj^*(aެ0@t\\nI\r4_','',0,'?'),('h F5/M','wp-content/plugins/kadence-blocks/dist/components.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/components.js',0,'$tql]*','$tql]*','^\r.,\rNJ\nZkC鏸DH2uL3','',0,'?'),('h.	X»s[eN','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMime.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(0gVc','bc>0ÏuSɇo:','',0,'?'),('h0X-i^G`8','wp-includes/pluggable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\n~.G)?|U','?&^y살fVz&l||6ōQ\\','',0,'?'),('h4#3`-݈\"','wp-admin/profile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0,g;ꙴ','CqN,`vS*Z[`m','',0,'?'),('h;S7M6=SlA','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PhpBBInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PhpBBInstaller.php',0,'4BVG[','4BVG[','j\0 &\ZL~Z\"auͰݖA0','',0,'?'),('h@Z%RF;ti\\m','wp-admin/css/login-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#2$O8q/','<f*?5>ЯJF嵍ѓ\\C,j4','',0,'?'),('hVۂ+kujN@','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php',0,'EO	:\'\ZӎXP','EO	:\'\ZӎXP','+sx}^d1^gR.','',0,'?'),('h\\{tO<p&AE','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/HostMessage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/HostMessage.php',0,'-^ur0$ L','-^ur0$ L','TgWM.7m+O8','',0,'?'),('hc= 0','wp-includes/block-patterns/social-links-shared-background-color.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/social-links-shared-background-color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','};`\ZԴ','>**?-T*H%9/EVyf','',0,'?'),('hc98jc\"X`u','wp-content/themes/kadence/inc/customizer/options/learndash-course-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-course-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eYd8',',N+$T?1m_}^	lj~nM}','',0,'?'),('hzVz$=','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RedirectMiddleware.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RedirectMiddleware.php',0,'8d\0b^G','8d\0b^G','0g(w~8`ʔ~cCK!','',0,'?'),('h|hEf:Ʊ2~','wp-admin/network/theme-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','堷ȹH^r','fkL\Z)h/F_M9jV','',0,'?'),('hjuQ3A','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1jv:4|FIyj',')%Mbg+IGQj>kA','',0,'?'),('hɋ~st','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O3klOQ1','M[8`	&呢qL(ْN\"','',0,'?'),('hOT,$(','wp-includes/blocks/site-title/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݒ9f \0,C','|4GꇎACK́E0q\"','',0,'?'),('hc!\\d/ \0L]sD','wp-includes/assets/script-loader-react-refresh-runtime.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-react-refresh-runtime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0!j1M/>?','V<#Y&=z;I0Nlz','',0,'?'),('h~cTOoy4|','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\"#6${ JL\'\"','eŇ6\Z(q&ڶ]\nCliީ','',0,'?'),('hn(GT0@Ԇ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/FileinfoMimeTypeGuesser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/FileinfoMimeTypeGuesser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\rY+_B0!','_Id^RGAp{pņ\ZVw','',0,'?'),('hMVm ','wp-includes/blocks/categories/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~B[|l','\'Y9 9_\0&	','',0,'?'),('h<]OpNCƴ','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ ʰ8: ','KKMJiٍTQ.92=w1|','',0,'?'),('hK%H;NC','wp-content/plugins/wordpress-seo/src/exceptions/indexable/author-not-built-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/author-not-built-exception.php',0,'[zZ\'_A^X','[zZ\'_A^X','dN*m$1^\\@Spe','',0,'?'),('h󥱍}\Z3D','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!rO','%T\n6iu{?zu_8ٷ','',0,'?'),('h^v$e$0b0\0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/CHANGELOG.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PV4iy','ZFJG)%pDPH;(Vg','',0,'?'),('hzzg)$x','wp-content/themes/kadence/inc/customizer/options/tec-event-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/tec-event-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݐJs','Q:_(8.ce\0IV','',0,'?'),('h<f#n(8','wp-content/themes/twentytwentyfour/templates/home.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/home.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','68h[e\0)>','W$E4B,+[%H','',0,'?'),('hI`\'86','wp-content/plugins/kadence-pro/dist/mega-menu/kadence-mega-menu.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/kadence-mega-menu.js',0,'FkO2sGx','FkO2sGx','y~]t~Mݲdݨ\'Z2>N','',0,'?'),('h/:(','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/EncoderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/EncoderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\Z^.OV%j','Jv`ŔgmwV.ʌ\n;Vؖ-`lB','',0,'?'),('hQKV<r:Mg_','wp-includes/js/dist/format-library.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/format-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{x=.','hc4u&y\n̩aܫB/','',0,'?'),('hzH(Q.bWfO','wp-content/plugins/duplicate-post/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('hsq&;3	<','wp-content/plugins/wordpress-seo/src/introductions/application/introductions-collector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/introductions-collector.php',0,'gk^','gk^','KH\\֛w8E{ʹMb','',0,'?'),('i&M5','wp-content/themes/kadence/inc/customizer/react/src/palette/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/palette/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ILo9B ','NT5MPTQhaя陹\\\Z','',0,'?'),('i[fW8','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Settings.php',0,'E:\ZHR','E:\ZHR','/Rn?!`|s8>hT.\rkR','',0,'?'),('ikmCxʷ','wp-content/plugins/wordfence/lib/wfDashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IA-&R','S\0H\n#8yܵ\n;¸@.=!B','',0,'?'),('i\rЎOQ<B7|','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/ListMediaViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/ListMediaViewController.php',0,'c6?s&+ɦ','c6?s&+ɦ','hqb(,<,.oGC7}jD\'','',0,'?'),('i6oV51,n','wp-content/plugins/wordpress-seo/src/config/migrations/20200429105310_TruncateIndexableTables.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200429105310_TruncateIndexableTables.php',0,'$eBg|)\\`LE','$eBg|)\\`LE','J @6LoU=-`cC','',0,'?'),('i2G]xe','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_wide.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_wide.php',0,'Ectν:$','Ectν:$','Aś]Ug\Zq62{1y/ ¿','',0,'?'),('i{pW\r9/','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-settings-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-settings-data.php',0,'AcP','AcP','d9I\">=5i8?Aг:X','',0,'?'),('i]$\Z<XV\\.','wp-content/plugins/wp-rocket/inc/Engine/Plugin/InformationSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/InformationSubscriber.php',0,'ՆNr&','ՆNr&','?pS$e_dVӓMXo','',0,'?'),('i;&o?','wp-includes/IXR/class-IXR-base64.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*6DTe','?F]L2}\rS@b2OouU\'O','',0,'?'),('i(	0t7@Q@','wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-bad-request-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-bad-request-exception.php',0,'$v)WؔE','$v)WؔE','X_<XKnm_&K$E3S','',0,'?'),('i*bq1}&tͫW','wp-content/themes/kadence/inc/components/third_party/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/third_party/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',|iX-izŰ','c%CCycjg?MT','',0,'?'),('i,po432Th','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/MockResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/MockResponse.php',0,'f?u-$?I','f?u-$?I','hsR.h__CqEv}נNj','',0,'?'),('i3|	JP*','wp-content/plugins/wordpress-seo/src/conditionals/development-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/development-conditional.php',0,'ɋ3 3G.71','ɋ3 3G.71','y6UtĒfDkw+т_GnaB','',0,'?'),('iB:I\rk;יvO=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SilverStripeInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',0,'1o\ZG)Ǖ','1o\ZG)Ǖ','Kϓ\"Նgȼ!5	aS','',0,'?'),('iKW$i\Z}\"1`','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php',0,'@\0@y#uoŽ','@\0@y#uoŽ','m;2nP3.6','',0,'?'),('iYX%ŖD|\r%5','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/RapidLoad.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/RapidLoad.php',0,'BYR','BYR','щ0庐9@g#UAM~b$*f','',0,'?'),('iZ`\n_}琿','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Ja\nJm%P7','} 6`ǔenVz','',0,'?'),('ia{-\Zؙo','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}<܎s9','Q\'r t7=s*a`<zo_','',0,'?'),('idܶ1\"^','wp-includes/blocks/separator/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rcJȑ,U 3','ee[G.|+4Si?E5{I]gx','',0,'?'),('ii\"oC`','wp-includes/sodium_compat/src/Core/HChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Rz@MMQmr','qX9Oa4A\'̾e','',0,'?'),('in=	l','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_DBLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_DBLogger.php',0,'1&Ɓ1H','1&Ɓ1H',',@j<=>Wfր\\\r','',0,'?'),('i?o\rW+$J\n ','wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N2J娳YB瘱','\ZPL㨒ZitA7d','',0,'?'),('i\'k~WI','wp-content/plugins/shortpixel-image-optimiser/class/Model/FrontImage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/FrontImage.php',0,'v.-gz6&','v.-gz6&','rN?&Zh=Ɯ}GG°7E^ԿsP','',0,'?'),('iڰHczL=y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php',0,'^BYnW\";','^BYnW\";','AqOLlRV&7m}a]/\Z','',0,'?'),('i;+Osֿ','wp-content/plugins/wordpress-seo/src/conditionals/import-tool-selected-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/import-tool-selected-conditional.php',0,'_I&(iW[0|','_I&(iW[0|','/\Z4+٭\"~#q3Uԗ{\'','',0,'?'),('i(fRAI\"(,<','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\0=6̔','MejK@ۅO㨧_1','',0,'?'),('i-X8V[~E','wp-admin/css/install-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/install-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a3	Xu','Hz[y9̏P:!=y','',0,'?'),('iCC,+','wp-content/plugins/wordfence/lib/wfWebsite.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfWebsite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t~AJao','AlET2	:$&b','',0,'?'),('ik\rf','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SyDESInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SyDESInstaller.php',0,'&CC?M','&CC?M','Q\"o맲hǈyBg\\A','',0,'?'),('i\\=Xh$','wp-admin/js/language-chooser.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/language-chooser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӤkulLS','r4ij\"܈6&','',0,'?'),('i?1ٙm8Җ#/?','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+KDľ0','|;)߉ASf!`A{)ɥ?gc	=','',0,'?'),('i;_+iJ\ZvcF','wp-content/plugins/kadence-pro/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_namespaces.php',0,'\"@~Ǵ[@A','\"@~Ǵ[@A','ЬKql:~ҝ٤Bu$*Vz)','',0,'?'),('ikCT,','wp-content/plugins/wordfence/lib/wfIPWhitelist.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2h2aE0','D:]踝zw%[joX`','',0,'?'),('j\\	\ZF','wp-content/plugins/kadence-blocks-pro/dist/blocks-modal.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-modal.js',0,'tt%;C<5','tt%;C<5','6Z8!\\7gG״~S','',0,'?'),('j\"29dv8','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Smush.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Smush.php',0,'YZq`mtR','YZq`mtR','xM2뵏(M\\o<X|rb','',0,'?'),('jS^p N	','wp-content/plugins/wordpress-seo/src/generators/schema-generator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema-generator.php',0,'۸4X_x@g','۸4X_x@g','CNDLdEPmW79','',0,'?'),('j!\Z/InBJ','wp-content/plugins/wordfence/css/iptraf.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/iptraf.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ebf.\nV[xPh','J-@ ]-	cqWQ$8','',0,'?'),('j&V164','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r9 #{','ﾱnѿ0c~NrAug~ΔI','',0,'?'),('j\'P\"3V','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpOptions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpOptions.php',0,'N2A`2%F<','N2A`2%F<','|ыvjoߥ#ȐR1]wL.j','',0,'?'),('j*\Z@w','wp-content/plugins/wordpress-seo/src/helpers/date-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/date-helper.php',0,'b	+{R\\Knl/NP','b	+{R\\Knl/NP','9qm_DIe岺R6˓h`Ϲ','',0,'?'),('j/G%At@#\'p=','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWP.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWP.php',0,'	nJ^nXqR','	nJ^nXqR','1˩ȏDQpGoQY9c`ȴo','',0,'?'),('j/^r.','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/HavingClause.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/HavingClause.php',0,'o4X˟+4>\0jO','o4X˟+4>\0jO','f	x2[I,>Iܚ\Z^8}=','',0,'?'),('j8:L,H','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/style.native.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/style.native.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o(ɚ=L;:y','[TF]\n%˟DÜ]tst-','',0,'?'),('j:i#c,\\\nTŤt','wp-content/themes/kadence/inc/customizer/react/src/palette/palette-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/palette/palette-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v}LF\0.m\na','ѽxBX~ȗ	\ZQzewΗ-|>','',0,'?'),('j;_=\Z','wp-includes/blocks/group/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Q*&D\\','qmVPkP\rF,~3,F-','',0,'?'),('jQe;e','wp-includes/css/wp-pointer-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-pointer-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r@o4R','Hףm|oC4U\\;uP6u0\nl','',0,'?'),('jX^OH匯1g','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ResolvableArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ResolvableArgument.php',0,'Q\\J\0$o\Z\0/','Q\\J\0$o\Z\0/','c\\v*<G;ۏF LU_','',0,'?'),('jgXxrTsƤ','wp-includes/blocks/comments-pagination/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nPTV>0]GxK','\"GHH}*q\\\n-c|','',0,'?'),('jmEAXuw>܆','wp-admin/css/colors/ectoplasm/colors-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lJ%zKSNɩ','*x6be `?Գ2 lhkͤ','',0,'?'),('jtZܿ,','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','raai','{JLͻ&{{T:B','',0,'?'),('j~5I٠\\','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DolibarrInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DolibarrInstaller.php',0,'l\\nR;','l\\nR;','#SuxCqZ^{b;u\0J\nʭi','',0,'?'),('j䱋%]','wp-includes/class-wp-xmlrpc-server.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Bĝ~&|Q','VCTa<xsT3^m-4kޠ','',0,'?'),('jp\0Z','wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<^p5Ɀ;','Z<OϰwHS8O7\'Y9H','',0,'?'),('j)nQ8ޮD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vuײuxJB|','_\\OytnŒZմ','',0,'?'),('j5F+o','wp-includes/images/crystal/interactive.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rm``9','$멘<x1ՓIRV-VZ\\jg.','',0,'?'),('j]ҧ\Z^6','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerInterface.php',0,'@tX(7 ','@tX(7 ','\"[)@WęH{ۿP','',0,'?'),('jB\Zq','wp-content/plugins/wordpress-seo/js/dist/quick-edit-handler.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/quick-edit-handler.js',0,'q5G_ZBT~i','q5G_ZBT~i','6io,\nDթ','',0,'?'),('jk<۽B','wp-content/plugins/wp-rocket/views/settings/fields/sliding-checkbox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/sliding-checkbox.php',0,'Y]=]/','Y]=]/','ANDZL\"䖧iUUb?C\"¢>%\0','',0,'?'),('jP#˾*KC','wp-content/plugins/kadence-starter-templates/assets/images/masks/circle.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/circle.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'(r bcNX','\n3h92`2W%w,Ead4','',0,'?'),('j7RVM{|','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagProxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagProxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ZW19#*4','Whv`VQc6\rq6͒X1_O','',0,'?'),('j4-O ՄrL\n','wp-content/plugins/wordfence/models/block/wfRateLimit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/block/wfRateLimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','29Q{\'Db2w','A152sN äUA-Vx','',0,'?'),('j0x 	dA/','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/page-builder/visual-composer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/page-builder/visual-composer.php',0,',hUV%O\"Å',',hUV%O\"Å','Azb-fIq?q+:J]N','',0,'?'),('jgs66$8*E','wp-includes/class-wp-dependency.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-dependency.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r:G5+H݆=K','\0>\'oPHc=JӌQT}dDGN','',0,'?'),('jgh\r(?7','wp-content/plugins/wp-rocket/inc/classes/event-management/event-manager-aware-subscriber-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/event-management/event-manager-aware-subscriber-interface.php',0,'-(ǯ X','-(ǯ X','|;C5a3B\rG&8\"3uSk','',0,'?'),('j`\\A7OpqF','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-imageoverlay-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-imageoverlay-block.php',0,'b3sX','b3sX','a_wFA]clYP&D','',0,'?'),('jߛ7%NZ[T','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/NoticeModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/NoticeModel.php',0,'dV(no\'','dV(no\'','s\\Z)^8,MtR٣M','',0,'?'),('j⭾7#-','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/columbus-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/columbus-georgia/index-mobile-https.html',0,'?JER&%X','?JER&%X','e~}uF=VG7UVwl_.zAC;<','',0,'?'),('jdCT[^R','wp-includes/block-patterns/query-large-title-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-large-title-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q$4-1e',',Ch1z`q\\2ߑ{]','',0,'?'),('k$6O-Nx','wp-includes/js/tinymce/plugins/charmap/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B쟄P\rL','x[G-90b.zGaz>r','',0,'?'),('k46Ñ!a\'%DL?','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/reset-all.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/reset-all.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+sXn_	\Z',' ?`},ZE#j','',0,'?'),('k3F+#','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/date.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/date.php',0,'@8zltF','@8zltF','21#D2XրhDW&)^cIE','',0,'?'),('k\"6a4:˔','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advancedbtn-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advancedbtn-block.php',0,'4-<9	Rǡ/$','4-<9	Rǡ/$','O<)x3~:(dd9(D]','',0,'?'),('k#lYݗ;t;\r+','wp-content/plugins/wordpress-seo/src/conditionals/non-multisite-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/non-multisite-conditional.php',0,'~\r[e}\rި','~\r[e}\rި','A]ѢlUqỲZ_@01','',0,'?'),('k,JΤ7}b\'','wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/class-kb-entry-csv-exporter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/class-kb-entry-csv-exporter.php',0,'uʏ ZӋɌ','uʏ ZӋɌ','1B\nü\nP\n2Wy&/z','',0,'?'),('k6*H	u١','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xڪ)tdE;','?ӟqcA\ZQ<Lsu:I.','',0,'?'),('kBQoߐn','wp-includes/Requests/src/Session.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',:]_0+','67xuvOAHc\nd`Utm','',0,'?'),('kEnfϋߟ\'qb','wp-includes/blocks/video/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.q/Q?m\"q','CD@bϹ>aEΐŐ','',0,'?'),('kF5^</e','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N!B1	S\'','>/:JHyWeQʦZͿ#8֒,','',0,'?'),('kKJOzd','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	h ا\n_7kp','&JoF3۲ak^','',0,'?'),('kM̙Ysp','wp-admin/credits.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>]ı1ws','Ktpew\roU.&\nǑ1','',0,'?'),('k[1','wp-content/themes/kadence/assets/js/admin/customizer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\"$FMaY',':? opk+:\rXxjt9vXOJ','',0,'?'),('k[	*әg\"c','wp-content/plugins/kadence-blocks/dist/blocks-single-icon.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-single-icon.js',0,'TvB!6H','TvB!6H','&\\+WD\0S#FSx\n','',0,'?'),('k\\pq8Jc\r>','wp-content/plugins/wordpress-seo/src/config/conflicting-plugins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/conflicting-plugins.php',0,'CY8\"Ԩ6','CY8\"Ԩ6','#(\na	/EUl;Wؓ\0T*','',0,'?'),('k`\n>(׭I','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlHandler.php',0,'!|ZZ@狙','!|ZZ@狙','G&Pҝ`gIOGTU/+\rPR','',0,'?'),('kaSP#','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-card-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-card-block.php',0,'ExHpvD\\','ExHpvD\\','\'R\\N5.w{:X','',0,'?'),('kg@H]u7o5!\0N&','wp-content/plugins/wordpress-seo/js/dist/settings.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/settings.js',0,'qgxU%8X','qgxU%8X','ڔ<:䃨9ΰӖ7귩','',0,'?'),('km|Kma0\"*k','wp-admin/js/tags-suggest.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6oW&9','hQWSx%&	$#8曵D','',0,'?'),('kqK8P\0d.','wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/OFL.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/OFL.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T30rhD','O6lXӸ@ϗ檉FKH@','',0,'?'),('k~219\rN','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tlv+vR=P4','1C6󝨂bS\n(`A]}','',0,'?'),('kC:WRe!t','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Btb;pԩ\Z','C2LޫdĎ5C	0f\Za','',0,'?'),('kQd{EJ','wp-content/themes/twentytwentyfour/patterns/cta-subscribe-centered.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-subscribe-centered.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Zg:)z','kݸ2چ.dbj','',0,'?'),('kgaFz7','wp-includes/Requests/src/Utility/InputValidator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Utility/InputValidator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\rʮYe	Ll','a1Qau/dsLZvU','',0,'?'),('k7h&EyHN!','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/IdentificationHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/IdentificationHeader.php',0,'dzlANoW','dzlANoW','\Z U+Jh}ЋtUzvS^\rX','',0,'?'),('k$&LS&7@B','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/DryRun_LogMigrator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/DryRun_LogMigrator.php',0,'DYp\'9','DYp\'9','ؐN:=5%w*l]vHnl','',0,'?'),('kh$\nk ܚ*','wp-content/plugins/kadence-blocks/includes/class-mailerlite-form-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-mailerlite-form-rest-api.php',0,'}^:KsncC','}^:KsncC','`-]N`	QDa7)Hx&֗b','',0,'?'),('kxr,ji(','wp-content/plugins/wordpress-seo/admin/class-asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-asset.php',0,'!W@y`:','!W@y`:','(!Vڨ#khs8\rRQ','',0,'?'),('kB˞b=y','wp-includes/user.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s̳Tx:^%%','^\\P4؅פXqȿ4','',0,'?'),('kaJ\Z\\D.P','wp-content/plugins/wordpress-seo/admin/roles/class-register-roles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-register-roles.php',0,'ɏ3I!BWڧ','ɏ3I!BWڧ','}*05-Q̡p`ˣrPa','',0,'?'),('kU/^ ','wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','90@ev','BZExܥ+D`H,C UdoLu[','',0,'?'),('k2K8 P8+Q','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Subscriber.php',0,'=\0uj [N','=\0uj [N','`g\'рQPms\ZM9OL','',0,'?'),('k hѻ<xj','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-null-tab.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-null-tab.php',0,'1|\'0]','1|\'0]','T!K-+[jje\"a1Lгi','',0,'?'),('k\'\n+&=n`3','wp-includes/js/dist/dom-ready.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/dom-ready.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w=,BXщ/g','?,Ɵp(~I܁1<kp|$7Uu','',0,'?'),('k^m\\','wp-includes/blocks/navigation-link/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JgUs6','ZT \'VcLu媘+cX','',0,'?'),('k>v#Cr5i?','wp-content/plugins/kadence-blocks-pro/includes/assets/js/aos.min.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/aos.min.min.js',0,'zhޟ2','zhޟ2','<|DQ1XMJYб','',0,'?'),('kW\\y(','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidVersionComparisonString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidVersionComparisonString.php',0,'	2zAkY\rW','	2zAkY\rW','+J~mY$68/g4a\"','',0,'?'),('l3mr44lr','wp-content/themes/kadence/template-parts/header/header-row.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/header-row.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P6D3c7','OuPRSv.>дD','',0,'?'),('lU4ࣙn','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Combine.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Combine.php',0,'	pԺԢ<E','	pԺԢ<E','!NR UQ\\S7dA\rߏ','',0,'?'),('l	.Gh','wp-content/plugins/wordpress-seo/src/memoizers/presentation-memoizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/memoizers/presentation-memoizer.php',0,'l4_~=.I','l4_~=.I','TNE)Oz2.kDC^9F','',0,'?'),('l,W+>uPg|\Z','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Config.php',0,'GWrlZ','GWrlZ','d]=<4u⦈7c+:WÃ','',0,'?'),('l-qcldt7K','wp-content/plugins/shortpixel-image-optimiser/class/Controller/AdminNoticesController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/AdminNoticesController.php',0,'}㛫OY&','}㛫OY&','Y_8\'vU01|Pqlke/i','',0,'?'),('l/\nԀWͱ-c','wp-includes/widgets/class-wp-widget-recent-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-recent-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I%*19','uכwxmI{cul','',0,'?'),('l0:Da/L7a;','wp-includes/js/dist/preferences-persistence.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/preferences-persistence.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ƏRƥZ','VO1pfn<JעAJ;','',0,'?'),('l9=h,>&','wp-content/plugins/wordfence/lib/wfDiagnostic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ykf1u&','_~xfN&OK#]bjL%<)','',0,'?'),('l;\\Fv_-x\\3{','wp-content/plugins/wordpress-seo/src/routes/wincher-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/wincher-route.php',0,'Q\'l_OE','Q\'l_OE','8`4TeIoL0\'J )z','',0,'?'),('lD#SSxr','wp-content/plugins/wordpress-seo/js/dist/classic-editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/classic-editor.js',0,'\"s}V	/','\"s}V	/',' \Zx<5Se\Z\">	8;#6z^)','',0,'?'),('lFyiWR','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ImageEditorController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ImageEditorController.php',0,'Pܟ4Y*xq','Pܟ4Y*xq','#^\"Vv$GƨƑB}\rr','',0,'?'),('lHviV|-BF\Z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' -)X.X(ܒ','MZ\\o:PZa`1_ǶR','',0,'?'),('lZq#eS%s7Y','wp-includes/js/dist/notices.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/notices.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JOCL|bS 4y','׸ZVک\rQH=.M','',0,'?'),('lac+Y7c?BB','wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/CustomQueue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/CustomQueue.php',0,'w^','w^','E(/OjeC?wF4\0I','',0,'?'),('loEQu?','wp-content/themes/kadence/inc/components/polylang/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/polylang/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Ǽ/e:D','{娏}r~.`@ԭ۳9*','',0,'?'),('l|]S]6d','wp-content/plugins/kadence-pro/includes/uplink/admin-views/field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/uplink/admin-views/field.php',0,'*/uodEWb6\\ͼ','*/uodEWb6\\ͼ','#pT|-I_ܙĪ_7s}zi','',0,'?'),('lRM۳zt^o','wp-includes/js/dist/preferences.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/preferences.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\rU0zx(','IxQPF\nd\r1zg5Wb','',0,'?'),('lm:#;f!	','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U)2ڤ9ߗjVr','2kTMr;eWNhN	/','',0,'?'),('l&S\n1^','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcherInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcherInterface.php',0,'&߮7^6Ŋ','&߮7^6Ŋ','nv	ls9u,<J}CA^N/','',0,'?'),('lYӼ\0tH!r','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-seo.php',0,'0u?m\0W-6	','0u?m\0W-6	','&3m8`l*}\"MO*T-','',0,'?'),('lU-8/Кa','wp-content/themes/kadence/inc/dashboard/react/src/help.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/help.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\"ŭ֣>)ON','[XЖIB!8~?\ZC-5V0','',0,'?'),('l[ڭj<}S>8','wp-content/plugins/wordpress-seo/src/builders/indexable-hierarchy-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-hierarchy-builder.php',0,'W\"`V	','W\"`V	','dt,79b9@g5O-b','',0,'?'),('l\ZF-((C','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/WPML.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/WPML.php',0,',&n^:i#',',&n^:i#',';Rek+Frr;OGEla','',0,'?'),('lSNVngy<','wp-includes/blocks/image/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.rAS״Qd!','9sC|\npt\'8u@\Z%','',0,'?'),('l0S/g V','wp-content/themes/kadence/template-parts/header/mobile-social.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3i		xG.','a;ٽKrC-9EZ-s@×5qr԰','',0,'?'),('l5X~dB)NHI','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Flatsome.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Flatsome.php',0,'4jjQ@i','4jjQ@i','58tj\0,: ?\'\'%Eh','',0,'?'),('l<#q,','wp-includes/blocks/archives/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GL\0Qv+s','\0BP}eGu6ؠko\ZC','',0,'?'),('l2g','wp-content/themes/kadence/template-parts/header/mobile-cart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tSXeeno\"֯','Y.TynC3*_','',0,'?'),('lm(f_q`bC%t','wp-content/plugins/wordpress-seo/src/presentations/indexable-static-posts-page-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-static-posts-page-presentation.php',0,'S՘YsOz1K!','S՘YsOz1K!','Lti]V$IF`>s\nwaC?o','',0,'?'),('l14&yaW','wp-includes/css/dist/customize-widgets/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/customize-widgets/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~b^','jRϘV3!י=AJ','',0,'?'),('lz ]3>dD[','wp-content/plugins/wordpress-seo/src/editors/framework/site/term-site-information.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/site/term-site-information.php',0,'\rp1[','\rp1[','))\"htOP-E\0ږՖfy	','',0,'?'),('lh=9+5f','wp-content/plugins/kadence-pro/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/ClassLoader.php',0,'{0,Q6n','{0,Q6n','`sN.-ډGDT-\nt','',0,'?'),('m)\raHE','wp-includes/blocks/social-links/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hr2J<~C','I6\r\n?xhG#\ZT','',0,'?'),('mDTmsA}','wp-includes/certificates/ca-bundle.crt','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/certificates/ca-bundle.crt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UC%Pʅ$p','<eNfFKFo-YSlU','',0,'?'),('meDd	\n`','wp-content/plugins/wordpress-seo/src/user-meta/application/custom-meta-collector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/application/custom-meta-collector.php',0,'3?U{X!ub','3?U{X!ub',':168LDR&k<5;~&T0','',0,'?'),('mΝo%* 6','wp-content/plugins/wp-rocket/inc/Engine/Activation/Activation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Activation/Activation.php',0,'4S&kfke','4S&kfke','y0\"ac>7\\i<!5̤H`','',0,'?'),('m߄@M:','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php',0,'58p^Z','58p^Z','\ZZvѢ3kw9IO-3ى@SM','',0,'?'),('m`!_!p^','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Path.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Path.php',0,']R^gYSd',']R^gYSd','hh#38p%挚uÐ','',0,'?'),('m>{z;2E','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php',0,'7N	$=;T&','7N	$=;T&','\"=	{Aj\"z]!-k~]?v.','',0,'?'),('mAp	1GU/','wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؑ4䊕x1V','\Z|%\0^x\n?ֿx','',0,'?'),('mAYRb|S','wp-includes/ms-default-constants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dj^6|٫E','a\r?܆㦡c¹Mk)\'ʗ=C','',0,'?'),('mE\\)o','wp-includes/js/jquery/ui/spinner.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ļ>O\"qo|','=X.Jw`hW+Jt^','',0,'?'),('mN|`zw,- $','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpClient.php',0,'F,@','F,@','\nМ&\\A+VQl!2N+','',0,'?'),('mTZ`xk<Y,/Ss','wp-includes/class-wpdb.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wpdb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Ua[Y}#&','i\\r;ؖ@{\nleC','',0,'?'),('mWX6f`x^m','wp-includes/class-wp-classic-to-block-menu-converter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-classic-to-block-menu-converter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n?E\'ѹ.Wm\r0S','/%Aضh\0~@њ[~9F<	','',0,'?'),('mY}ɽ?','wp-includes/js/jquery/jquery.ui.touch-punch.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.ui.touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LmQ4փ]','k>jT@z՜.OBj0\'t','',0,'?'),('mZ3p)]&!n','wp-content/plugins/kadence-blocks/dist/early-filters.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/early-filters.js',0,'fWd6\rc','fWd6\rc','ǁ~o	\'u4\nj-3Ndm 蒷rJ','',0,'?'),('mdWB6IB','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php',0,'3kzng0','3kzng0','hR4w\"ǔiBRÄo0','',0,'?'),('mi^BACF)','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lpOz)!\\','A>ǹbx>34m|cX(B','',0,'?'),('mrEʑAX^<','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','exe䩆_\r8S\n0{','L>w;Xĕ \r:m9','',0,'?'),('m-\Zm1w','wp-includes/js/jquery/ui/sortable.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/sortable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YꞼo*$c','\re/|ɿu+f5ݐT\0x(','',0,'?'),('m[̣x?<(̭','wp-content/themes/kadence/inc/wordpress-shims.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/wordpress-shims.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(}2%Y','K*\09Jbhove.G=o','',0,'?'),('m5)\'aH\r-','wp-includes/blocks/home-link/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/home-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*(`=~','fgm3뜌BD~q@5','',0,'?'),('m2z<@!','wp-includes/css/dist/preferences/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/preferences/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uo?9}fRu','o?v_q`1,<p','',0,'?'),('m?ߌjUZ','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel.js',0,'$2)yoP,%','$2)yoP,%','ALlD1P)F.;$.y','',0,'?'),('mڇ\"=VZ5gD','wp-content/themes/kadence/inc/dashboard/react/src/dash-controls.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/dash-controls.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^p̮RK0)m','ޓ?CY!	8Wu~]uG','',0,'?'),('mU L;','wp-content/themes/kadence/assets/css/src/heroic-knowledge-base.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/heroic-knowledge-base.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*]A+Cqe|m\Z9','{Ց\0)q4\"e\ndd','',0,'?'),('m\\~bu,bt','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Client.php',0,'<oVBY','<oVBY','2ƼΞw4фCWSgQ','',0,'?'),('n&-ѽ{]','wp-content/plugins/wp-rocket/assets/js/lazyload-css.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-css.js',0,'tPݝ?=Aa','tPݝ?=Aa','rRwSc~2f˴2\\o@\\','',0,'?'),('nQʒ\'k\"%','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\rΠ;K۔b/','ߠP x|ΘQ=	TcvL\n*Ȱ','',0,'?'),('n]j7<3ISsQ','wp-admin/images/post-formats32-vs.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/post-formats32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t.E5GN\Zv','(Z,ImY,·ԗtGa','',0,'?'),('n<*<Ls','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/gallery-format.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/gallery-format.php',0,'XG3l5c','XG3l5c','Kdï=)4󎨋}!KMM','',0,'?'),('n[	X}0','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LL#\0uD,Yi]','~^ٴ	di*W<6','',0,'?'),('n lXzD{','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-repeatertemplate-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-repeatertemplate-block.php',0,'4^ަiQ','4^ަiQ','05>9->lQ\"/S+4AI<䟨','',0,'?'),('n#t=\'b]{','wp-includes/js/tinymce/themes/modern/theme.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/themes/modern/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UE|h(Zf','ӣ	}ʫE0).TXKd~HNlK20','',0,'?'),('n,qO6ѠwYyL','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KG\'%f[Tu\'','[M\rD#O/G%Gy~([c8i8','',0,'?'),('n0<Pey\0.','wp-content/plugins/wordfence/modules/login-security/classes/model/style.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/style.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+hJN3}{','{>ߓv18g<]\'E#\\O@','',0,'?'),('n9(7{','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+kL\n~֡','ƌ~k\nVLPP[Z','',0,'?'),('n:|s\\pUx>F]','wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.min.js.map','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.min.js.map',0,'wW~:|2=f','wW~:|2=f','$~;y\"C)<hO܉]	w','',0,'?'),('n?<}rm\'eq c','wp-includes/blocks/site-title/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','agû?cW;R*','p#=SZ9߯:f=/ު\"/','',0,'?'),('nAj+uVG7d','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nR1՞\nixBi','S⃧=ȌbjKi$y','',0,'?'),('nBoeRAXGO]','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSS.php',0,'sm(`B','sm(`B','QsrJhm\r-o:5Xd$x','',0,'?'),('nCSmwXOqIL','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/Aggregate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/Aggregate.php',0,'),*2fùI>8','),*2fùI>8','\"Qc.HvDI⊛/o','',0,'?'),('nF%\'DN^906','wp-content/plugins/kadence-blocks/dist/blocks-search.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-search.js',0,'euڦC`C','euڦC`C','ٜt\'88ۈw\0~JA','',0,'?'),('nHS{)Kͯ5','wp-content/plugins/wp-rocket/views/settings/buttons/button.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/buttons/button.php',0,'LPƫ.B_:8Mm','LPƫ.B_:8Mm','\nCOC48>:eoΦryZM5e','',0,'?'),('nZ/1T:{&^/n','wp-admin/js/media-gallery.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_85o?','Ƥ$30IXC,b\"0lNF','',0,'?'),('nZT=ƥCȐ쮔u','wp-content/themes/kadence/assets/css/src/simplelightbox.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/simplelightbox.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ctƩ,7k&','\ZN\r\r:y[GRV?','',0,'?'),('nmX z\"2S·G','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-ai-events.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-ai-events.php',0,'cP\\On	\n','cP\\On	\n','xC@ر9A4_c\'a','',0,'?'),('n{oh\Z*','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectedPromise.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectedPromise.php',0,'\'$tFf','\'$tFf','n\\GzO*bq}=|) q','',0,'?'),('n|q$:D','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z]\ZMV/	',']Ks2j9|!JSע','',0,'?'),('ny˷(m:KŹ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BaseInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BaseInstaller.php',0,'_ah [D\'$7%-','_ah [D\'$7%-','io[w|\'bZrs`52S','',0,'?'),('no~pT뎵','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/envira-gallery.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/envira-gallery.php',0,'IȬI_wo5r','IȬI_wo5r','P0` 99{\ZODk\'v˾cYABgؼ','',0,'?'),('nog{?','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-testimonials-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-testimonials-block.php',0,'d%cT+\0.x','d%cT+\0.x','CgG\Zh(QưQ1,','',0,'?'),('ngnDz2bV1','wp-content/themes/kadence/inc/components/elementor_pro/class-elementor-dynamic-colors.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/elementor_pro/class-elementor-dynamic-colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\Z;7b[;','YQ;.d\"_pdcwC+}','',0,'?'),('n@AF','wp-admin/network/sites.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6U𼗆.ג\"','kB(?忭Pq~cKE8M?','',0,'?'),('nc$HrW(','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{}PF	ݺ)uB','>+gPcmmPџ͍DvB9HB','',0,'?'),('n [P%i7','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/WPGeotargeting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/WPGeotargeting.php',0,'Tq&j7zgv0','Tq&j7zgv0','\Zd.>Jgs*Ud܋=U7<}3','',0,'?'),('n<\"hGVMf','wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\\Igr@~','9Sw!>eWH-<y|b0&7)','',0,'?'),('ng7xՏA','wp-content/plugins/wordpress-seo/admin/class-expose-shortlinks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-expose-shortlinks.php',0,'qI?,PP5R','qI?,PP5R','20oaĐ1rU)bf~fxd','',0,'?'),('nvw_1','wp-content/plugins/kadence-starter-templates/vendor/composer/installed.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w F\r]GB,','_\n-Ռ#EOg8C7W?t','',0,'?'),('nF`np~vuTkK','wp-content/plugins/wordpress-seo/src/helpers/indexable-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/indexable-helper.php',0,'$UMhP/N`E','$UMhP/N`E','GT]0w_}#,M3#','',0,'?'),('ndn?1+؄dD','wp-content/themes/kadence/assets/css/src/rankmath.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/rankmath.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c7\\D\09','/:X%˲JN\ZE?L1GaB>_','',0,'?'),('n@Y&ks','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/loading-hourglass.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/loading-hourglass.svg',0,'Ax$p\\','Ax$p\\',')iߍ׎<¸\ZF(K0\"n','',0,'?'),('nкvnj=ͮ','wp-admin/includes/class-bulk-plugin-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zj.%|','pPH;?\0U+kfrɫ)|','',0,'?'),('nI!C}|=f','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uGhXPnrj','zzd{=!B] >`','',0,'?'),('n,Q3bO','wp-includes/js/dist/warning.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/warning.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0{YK\Z','=ŀ=J=-{{Gb85!>','',0,'?'),('nnt6	m','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php',0,'K\\\'t9i_axp','K\\\'t9i_axp','$!,R#\"]kywJG0C~RO47','',0,'?'),('n09jv8\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ef!77#2A','QO|R)VqCW(@@+','',0,'?'),('n׳[xʂv<','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/cookie-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/cookie-notice.php',0,'cUz{W','cUz{W','(72V)-\n$q##mB','',0,'?'),('nۗvXH)','wp-includes/sodium_compat/src/Core32/Curve25519/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yϛvj\n','Sx^V>m!-qDeV','',0,'?'),('oU8Q','wp-content/plugins/kadence-blocks/dist/blocks-singlebtn.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-singlebtn.asset.php',0,'\'o/@S6o','\'o/@S6o','AuGϧop9g}_eSwJTAb','',0,'?'),('o!#c2^','wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\ZgtLsK','b3zk8xi','',0,'?'),('o&	dкT','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-prebuilt-library-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-prebuilt-library-rest-api.php',0,'w!3D[6|a','w!3D[6|a','\rpw,I]|TN˃ΏS','',0,'?'),('o&;;K|-%1}3','wp-content/plugins/wordpress-seo/js/dist/installation-success.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/installation-success.js',0,'B1\n+ִSp','B1\n+ִSp','#L(.%	y6BNY[BW','',0,'?'),('o\'RD-\0o','wp-content/plugins/wordfence/images/support.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/support.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cl$rn<.','$MԮ&(ᩘs^	Ϣ*N','',0,'?'),('o\'r+Ԯo	a','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',0,'\"f/2|fb','\"f/2|fb','2e=1\n2qx[H@JVV#c[<','',0,'?'),('o1iL5z$7','wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u1\\8;#j-','P|l_Z3z<NɧK','',0,'?'),('o;!2y','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4z{]3','`SIYC.Z`TDv	k','',0,'?'),('oC\"Qty','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+%','4!H:6>lEEc#a{A{','',0,'?'),('oE}m\"afWD','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-grades-stages/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-grades-stages/index-https.html',0,'Lw)\rE@Y','Lw)\rE@Y','S%ZѣDޚX.B\ZDg7\rhT','',0,'?'),('oO*_5H','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_AdminView_Deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_AdminView_Deprecated.php',0,'v?_Q','v?_Q','Vܢ18U\r&]_RPf~9Od\0LIwv','',0,'?'),('oP_8B@r57','wp-content/plugins/shortpixel-image-optimiser/class/Controller/AdminController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/AdminController.php',0,'-4cV;\"pI','-4cV;\"pI','k/_|z4j@߷׆cspZ:\ZnM','',0,'?'),('oPcx1)8b?','wp-content/plugins/kadence-pro/class-kadence-theme-pro.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/class-kadence-theme-pro.php',0,'D\'1)8Y','D\'1)8Y','^ Q,8I\rFanTc','',0,'?'),('oPco.r','wp-includes/js/tinymce/skins/lightgray/img/object.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rdPE}u\n/MA ','#;!I.>uʍSVm{|e-','',0,'?'),('oS]~(7;\r','wp-includes/js/dist/shortcode.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EVGϭTehꌟ','f\Z`[ʟr~[ˮ/LedKw','',0,'?'),('oZmN8)G|co','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AttogramInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AttogramInstaller.php',0,'hh_	!U8Bp;','hh_	!U8Bp;','<lǭȕ <qUL6]x','',0,'?'),('oZ0<c0','wp-includes/SimplePie/IRI.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n9,zӄycE','Yek\Zkt~n4&p#Ӝ','',0,'?'),('o\\Ga߰%#[','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.{%I','o7IW%휱q[01|{a?S.','',0,'?'),('ofGkL`t@','wp-includes/blocks/cover/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ܵϛq_)K','C\Z\\5{}s,E]\"~d','',0,'?'),('ok89~nU5','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-inclusive-language.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-inclusive-language.php',0,'|yz#y5','|yz#y5','v,BaЇ}bHf۞-217','',0,'?'),('op/\"BAt','wp-content/themes/kadence/template-parts/title/title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';0@ CP','fl4^gX2|n+&ZV:','',0,'?'),('oz·ݯ5aQ','wp-content/plugins/wordfence/modules/login-security/css/admin.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/admin.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JXlX+',':5Jpż W\"{Ozk','',0,'?'),('o}1=(E&RD_','wp-content/themes/twentytwentyfour/patterns/page-newsletter-landing.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-newsletter-landing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QUq$3Vh=e','s%`hM\0\'h&ih7k2qDΓ','',0,'?'),('o}C܊8EG','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E8uChG<o܅\"','TQtݓzωT0A','',0,'?'),('o{ѱ`r<','wp-content/plugins/wordpress-seo/src/generators/schema/abstract-schema-piece.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/abstract-schema-piece.php',0,'ԩ4~aw','ԩ4~aw','\'fqٟɋ߈<Ew#o΋','',0,'?'),('o嬩Ep','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/NewExclusionFormat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/NewExclusionFormat.php',0,'Ys]`~<','Ys]`~<','K3=OuhPuT&)t3t;\n','',0,'?'),('o	Hٟ`B ','wp-content/plugins/wordpress-seo/src/conditionals/user-profile-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-profile-conditional.php',0,'iiFc|+d','iiFc|+d','X/\"xMy[ׁ,[\rT&gh','',0,'?'),('o	ǻ	&c','wp-includes/blocks/paragraph/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"a\'	b+0ԙ«O','(wm¤b\Z:7=1','',0,'?'),('o{O[ 9','wp-content/plugins/kadence-blocks-pro/dist/blocks-repeatertemplate.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-repeatertemplate.asset.php',0,' *p퉟',' *p퉟','ME}RT\rI2(M6b<\03','',0,'?'),('ow*\nΛ΢GҜ]','wp-content/plugins/wordfence/modules/login-security/img/header.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/header.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]j-','8#̄(8O\"	+h\"Fb','',0,'?'),('o܁OCOF','wp-content/plugins/kadence-blocks/includes/assets/images/masks/star.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/star.svg',0,'4ʓ(','4ʓ(','>$Oaa-\'6J,#iC\"','',0,'?'),('o㮚-;?X:pҡ','wp-trackback.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-trackback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sS2S`qy+<l','.H.$}Y_ \00!','',0,'?'),('oYڅX','wp-content/plugins/wordfence/images/flags.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/flags.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W7 (˿!\Z7','Bx0%Ly6!X\\z/<n6=\ZW','',0,'?'),('o[n3uʹP5','wp-admin/options-general.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ywWD-#}ֺ/','ߵ|`=hn_Q6\0(\Z','',0,'?'),('o^52+eG','wp-content/plugins/wp-rocket/inc/admin/ui/notices.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/ui/notices.php',0,'/Ǹu\'dz~','/Ǹu\'dz~','PE(\0\"®YW{_0>','',0,'?'),('p7uL_{2Û','wp-includes/js/jquery/ui/draggable.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/draggable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sy4','gC{lƊJ<gN4Fdr<Hf','',0,'?'),('p$8ιd9()','wp-content/plugins/all-in-one-wp-migration/lib/view/main/translate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/translate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vz\0c','n2hd	CKyuڿ[l)>;','',0,'?'),('pF}GaKh','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IOIK#SLqr','̓}^؝zc\\fk,wM','',0,'?'),('pt@CF','wp-includes/blocks/template-part/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hBu}i','_o=;X#Ǘ;;1w\0u:h','',0,'?'),('p4H.\0gP\"!','wp-content/cache/wp-rocket/atlantagynecomastia.com/privacy-policy/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/privacy-policy/index-https.html',0,'R=㧡\\E','R=㧡\\E','#0\Z]2lNq5֮, ڡ','',0,'?'),('pٱI~X5ע','wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.knob.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.knob.js',0,'X\"-K7\r_8','X\"-K7\r_8','өьx_t27{~Zo&','',0,'?'),('p{\r %>/Z:','wp-content/plugins/wordfence/views/scanner/issue-base.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ϼg v5aS*','N.0-?s?,ߟ`.B','',0,'?'),('p)wVof','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery/index-mobile-https.html',0,'gq1','gq1','pBJ,m<]2\ZanRpk]{','',0,'?'),('p+~(`_nh','wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڠrJxaY','6wZy\"pqUQx21WY	','',0,'?'),('p.TQIcC','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-html2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-html2.php',0,'|𥭗Py1','|𥭗Py1','3L\'Qn0j.O!q[','',0,'?'),('p:,`OlL(A','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k~H7<B','\0!FEKP7߻0\n;6}$','',0,'?'),('p;jN;DUak','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-search-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-search-block.php',0,'XQo+','XQo+','*`ܗI-Ǜcw','',0,'?'),('pF-Lrbd','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/TextPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/TextPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~6+j','\"~NTv%8+','',0,'?'),('pU?%G\ZJX=`','wp-content/plugins/wordpress-seo/src/actions/indexing/limited-indexing-action-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/limited-indexing-action-interface.php',0,'_4[_','_4[_','$LT\\B\"1.t\0`8Pg>>,Zi','',0,'?'),('pUya	bva;8','wp-includes/js/comment-reply.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/comment-reply.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9(ރ-,qh','W(V4nrkx|/lae\no','',0,'?'),('pVIc.Ch&*f','wp-content/themes/kadence/inc/customizer/react/src/base/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/base/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bk\Z̶dxod\'DF','*>~Ɉ^㏌WHØGw\'cbnf}','',0,'?'),('pbA]%ꞢSV8','wp-includes/block-supports/background.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h[pv','_͞EՔ/6{iCtlDL','',0,'?'),('pkZA3~\n','wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-plugin-inactive-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-plugin-inactive-conditional.php',0,'n#UVOI','n#UVOI','Pb`5\0v\0뤩b','',0,'?'),('ptA!s3A','wp-content/plugins/wp-rocket/inc/Engine/Capabilities/Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Capabilities/Manager.php',0,'tqJ\\ֺ','tqJ\\ֺ','LDj_͋1WL5J0W\"','',0,'?'),('pvVKoseL<','wp-content/plugins/wp-rocket/views/settings/page-sections/license.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/license.php',0,' p73xr',' p73xr',')*j9Hyׇ6 C?d٠/Je)8','',0,'?'),('pwQFcߠb*','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@$qG2k5$z','ֆF*`\'O triR:j0W\Z=j','',0,'?'),('prJ4o<','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-nolist.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-nolist.js',0,',Pb8,F]',',Pb8,F]','hIp\nPo&Qy?','',0,'?'),('p.а[ÍD','wp-includes/deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Mu5{mzp','l|kyܣj*	G>xE6','',0,'?'),('pPv,	΢[_','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\0bB+*Z','Q	K\0aS`mdD>','',0,'?'),('pѱ-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\npΦ~5;|','f{#ϊAYGmFxF','',0,'?'),('p9axg','wp-content/plugins/wp-rocket/inc/functions/options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/options.php',0,' $\\*REML',' $\\*REML','Rn/;lNe.,[Py<o2y','',0,'?'),('p\\*e\n\rψ','wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"cdxW{fNb','Oj+hŤ\nⵃ8Qܮ#w_pC','',0,'?'),('pl}`$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js',0,'!i \'y Rh','!i \'y Rh','Ǫ4?m,\'\\%Zd2gį','',0,'?'),('pŧ\n+R2Zb','wp-includes/blocks/post-title/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/nR\'y\\@V','Ij4V=ӘG\r\Z/T+','',0,'?'),('p+~3Ƥ{Y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionUtils.php',0,'O+Us}U*\n','O+Us}U*\n','hU5.omK	qYSu_9','',0,'?'),('p̓02@PFtk','wp-content/plugins/wordfence/views/common/unsubscribe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/unsubscribe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y:h3>a ݑ4~','EqTgO>F-O(IƚZz','',0,'?'),('pӯ\0	9y1]9','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-search-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-search-block.php',0,'@B	\Zf','@B	\Zf','ڦݍ#EgYx~','',0,'?'),('p:_\ZC,','wp-content/plugins/wordpress-seo/admin/class-admin-gutenberg-compatibility-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-gutenberg-compatibility-notification.php',0,'_Aɺ^O)9','_Aɺ^O)9','\Ze%ͣ]$[g80','',0,'?'),('pql8ՅyՍ','wp-content/plugins/wordpress-seo/src/actions/indexing/term-link-indexing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/term-link-indexing-action.php',0,'0\0ߙ5oqU','0\0ߙ5oqU',';(a\"bBDBYQ','',0,'?'),('p}GJ$x','wp-includes/block-supports/align.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/align.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'joyJ','^{L7\\br;GτR;֒','',0,'?'),('pkɛ\\','wp-content/plugins/kadence-blocks/includes/assets/js/kb-splide-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-splide-init.min.js',0,'X/6\r-=C','X/6\r-=C','xDq%!f0.A7Vh|_','',0,'?'),('pJȮ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/retention-settings.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/retention-settings.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0qO6\0bbO@','$d.	9iav&xc#j','',0,'?'),('p򏐵\nJu[ഭ ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'9le)(/@z','w&UR8b5\Z\"6	H8W\0|m','',0,'?'),('ph61C-','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/CurlClientState.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/CurlClientState.php',0,'a2J#qZ\"','a2J#qZ\"','*$ٕ2\Z⺨\n\"^3ֳ','',0,'?'),('p;vLyE6','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php',0,'EʃF\\H-M|!','EʃF\\H-M|!','Т-Ͳ&f@YGz<','',0,'?'),('qqC$@','wp-content/plugins/wordfence/views/common/page-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/page-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5*<X;','N5%=kUHVKAlEI\"3j','',0,'?'),('qsAtd\\','wp-includes/js/dist/warning.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/warning.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\n\\P=`J','>>-Y2IPl6Uqg\'=1߻','',0,'?'),('ql>\0','wp-content/plugins/wordpress-seo/src/initializers/initializer-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/initializer-interface.php',0,'XM\n/0t','XM\n/0t','{b<K1j<؀ĵi1X̾','',0,'?'),('q\"co>2Rh]','wp-admin/includes/plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' bm8y1\rC~f','t\"oSJ%3ɲ~q)wO','',0,'?'),('q%)ud	','wp-includes/blocks/buttons/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n;N[JOM','*>߸7@&lmwcؔ\0Q<','',0,'?'),('q1HamH Q&pR-^D','wp-includes/blocks/image/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.rAS״Qd!','9sC|\npt\'8u@\Z%','',0,'?'),('q3D(n','readme.f10b963b5c55ad2aeac9d5fa00d8e4e0.html','/home/nginx/domains/atlantagynecomastia.com/public/readme.f10b963b5c55ad2aeac9d5fa00d8e4e0.html',0,'Y$	,8l:','Y$	,8l:','u^7TMA֤}+ozNY_:BdMtB7#','',0,'?'),('qA)~bKle','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-cpt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-cpt.php',0,'ѤJ%Y:0_)','ѤJ%Y:0_)','f=%<fW8XbQ','',0,'?'),('qAP\'}A݇u','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ErrorHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ErrorHandler.php',0,'Y#eݍ4S$K','Y#eݍ4S$K','݇f>YcѰpl$ghUӣg%','',0,'?'),('qLILc','wp-includes/class-wp-recovery-mode-link-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode-link-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zBWZ 	m\r\0','t\n_qGƵby}2+\0I','',0,'?'),('qQQ5|eb|','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/index-mobile-https.html',0,'ΠbF\'?G׃','ΠbF\'?G׃','rT&bE]ċݜ','',0,'?'),('qW3ep!B','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tiGqUj+VP','@jlUQ]7s\ZlV0R','',0,'?'),('qW27.`<Q','wp-content/plugins/wordfence/css/wordfenceBox.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wordfenceBox.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CWY~H#]','r{\ZI5O1QӇC','',0,'?'),('qZĄ{g [=/?','wp-content/plugins/shortpixel-image-optimiser/class/Controller/AjaxController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/AjaxController.php',0,'D&ɯ','D&ɯ','Ȼ!tM=.8^\0aզg |','',0,'?'),('qc_Ҳۯ+','wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-category-quick-edit-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-category-quick-edit-watcher.php',0,'v$*:$:aB/ց9:X','v$*:$:aB/ց9:X','ڍD.pDcw.A쐬W9:\"] Wۭ','',0,'?'),('qh665y|=?S	','wp-includes/js/jquery/jquery.serialize-object.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.serialize-object.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*DB\ru6!','`RԶ2ɀ`MxiGfzC2','',0,'?'),('qjO.CެИ}','wp-includes/blocks/navigation-submenu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P_V߹+5F','Wzaô}mPJ̨˂ug@5\n$A','',0,'?'),('qpX\'5#4,	','wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Tables/Cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Tables/Cache.php',0,'cԢ7H$M#P','cԢ7H$M#P','Wm6e³gޙ|1ZR','',0,'?'),('qtղ9~jWD','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php',0,'dpTnɿܻd㎫','dpTnɿܻd㎫','y;X+\\^v6kP|v\'~$','',0,'?'),('qyB6;\ZMb','wp-content/themes/kadence/assets/js/src/css-vars-ponyfill.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/css-vars-ponyfill.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tU7sQz,}','[;&-p߾\\~+G7Kad','',0,'?'),('qZ\n^\'Kl','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!@A<(ݷHmq_Y','6OJRU--lN=!!','',0,'?'),('qfEH7d','wp-includes/css/dist/editor/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+*L','\r>dfsU\r|ddq^','',0,'?'),('qsƞù','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aho\nÐtLJ','ypYUf\0z,^~','',0,'?'),('qbrS5','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Controller.php',0,'<Gy','<Gy','Y\\v=Ri֕n#\'ߛjɄMzh`b','',0,'?'),('qb\rp<?2#q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/PushedResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/PushedResponse.php',0,'AIfdo]','AIfdo]','~ezqөDK\0fB','',0,'?'),('q*;[lR:ҡ7e','wp-content/cache/busting/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/busting/index.html',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('qZ\0=s\r\r','wp-includes/blocks/text-columns/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a¦ax:`]\'^','e±QnS0>,i(tHUnZ)K','',0,'?'),('qR+q\Z2','wp-includes/js/dist/edit-post.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pvJŰA{R','XtEFnK9~D-','',0,'?'),('q0#$/qh\n','wp-content/plugins/wordpress-seo/src/helpers/wincher-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/wincher-helper.php',0,'W}4v@','W}4v@','沠ܨt[Ygx\n','',0,'?'),('q05','wp-includes/sodium_compat/src/Core32/SipHash.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5O&?E	%','^%%hT,k2Ȯn=n%:','',0,'?'),('qef[7','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php',0,'Ln:)<g','Ln:)<g','7f :<KڦMs','',0,'?'),('qEv{Z[','wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q~f\"','p,-gWԎW.cEM','',0,'?'),('q5@*=&\\X','wp-content/plugins/wordfence/lib/wfHelperBin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfHelperBin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';!ȍ4QX#','չ%-^qUqMeY','',0,'?'),('qxvy!=+>','wp-content/plugins/kadence-pro/dist/infinite-scroll/hooks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/hooks.php',0,'eYs89/u4','eYs89/u4','JqzH2H1mdi\\ʟp+֞','',0,'?'),('q$\'6e-W]','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ثv','hG8J4\"G`ǖMDz','',0,'?'),('qCIVge,1','wp-includes/css/dist/block-library/editor-elements.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-elements.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c|$\0{o','$2iQf~\':Sr4:A>','',0,'?'),('q?MrM$,a','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/RocketLazyLoad.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/RocketLazyLoad.php',0,'!\0xi0y&\0','!\0xi0y&\0','}\"\0\ZC\\\"\"HC','',0,'?'),('qi֬yd+O\'','wp-includes/css/dist/commands/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/commands/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7.y`D1+q(','a#瞙Xk|8\'&	g','',0,'?'),('q4F+_[os','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHasHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHasHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`$J\'<I=dHt','eJ~\Z`uChH`VXLh	','',0,'?'),('rrLwY1@_V','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ShopwareInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ShopwareInstaller.php',0,'	nx1i[','	nx1i[','}PGj{,P[\ZVŰQ,Kc)6N','',0,'?'),('rtfd','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/query.php',0,'Zhb?7_S','Zhb?7_S',' \',C,/ۡ=Fץ*{','',0,'?'),('rhvLk/','wp-admin/network/upgrade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pTq7JA','*ɾmdl,iGU*!1G','',0,'?'),('r\"%1}/2Y','wp-includes/blocks/pullquote/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8PR[uN6\n',';$wC.\\}8!:','',0,'?'),('rt5Z0P\\~','wp-content/plugins/wordpress-seo/admin/class-product-upsell-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-product-upsell-notice.php',0,'>?w','>?w','u5lG2]gzB\"\\6QHf;','',0,'?'),('r\'N`Ou','wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamiclist.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamiclist.asset.php',0,'c7O!]nSs8','c7O!]nSs8',',6`Og1SŭYʎer0-u','',0,'?'),('rxZ3!\\@T#J0','wp-content/plugins/wp-rocket/views/settings/sections/addons-container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/sections/addons-container.php',0,'}S e8+%Cʫ*','}S e8+%Cʫ*','Bh1\n,v$*_K8	~','',0,'?'),('r+zk; 4WI','wp-includes/js/tinymce/themes/modern/theme.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/themes/modern/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(3oU2ŝU2','2.pt\"r`)\r.Cl\\\ZBIX','',0,'?'),('r3\0=\rjBZ','wp-includes/js/dist/widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(!Tqw','szIasAN\'X;\n','',0,'?'),('rI\0ygE!2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ļ 0ͱ\Z4[','a?\'J%;Nį9l\\t߰|X','',0,'?'),('rVyY)r\nf','wp-content/plugins/wp-rocket/assets/img/icon-i-circle.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/icon-i-circle.svg',0,'\Z-nJlR7','\Z-nJlR7','wLi_~%|\"8GѲL>E)','',0,'?'),('r\\t\Zc*t','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/index-https.html',0,'+\Z\ZÈg6{','+\Z\ZÈg6{','wMől5HZ<|۬Y1z\n','',0,'?'),('rtIg[;?','wp-includes/sodium_compat/namespaced/Core/Salsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rVNck0}/Ճ','nKkZ	 N$  EКe$','',0,'?'),('r}q2uz5','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareTrait.php',0,'\07J줳\nF2\\xFu','\07J줳\nF2\\xFu','B%;eaOaWn<5','',0,'?'),('r\r+މR','wp-content/plugins/duplicate-post/src/revisions-migrator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/revisions-migrator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<T','_^bOkys,K?,J4uF','',0,'?'),('rL;\rAc','wp-content/themes/kadence/assets/js/admin/dashboard.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/dashboard.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZB]Y,}ՋIxI','Nc2SCVw`?DrO*y:','',0,'?'),('r(n՞jb\"','wp-admin/js/media.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'(lo(01ou','Hyyбk1Z/IvD','',0,'?'),('r/ކ1[\ZJ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MayaInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MayaInstaller.php',0,'}tBSj&O<','}tBSj&O<','s	a|Pl,m0;(Bޭ;}','',0,'?'),('r޿5L6','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/control-points.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/control-points.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(x>{X!q','XpT\rlZnHg/]Exkx4','',0,'?'),('r#@֥e','wp-content/plugins/kadence-blocks/dist/blocks-icon.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-icon.asset.php',0,'w/W۳з=6Ce','w/W۳з=6Ce','e$CaBxwL6	rn|\rƸQ','',0,'?'),('r,-h\'g\".','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Message.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Message.php',0,'E:ϸx:S','E:ϸx:S','ѤI(\ZICd9A2yL7','',0,'?'),('r$W3+Y]','wp-content/plugins/wordpress-seo/js/dist/externals/propTypes.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/propTypes.js',0,'㙓վ@^f','㙓վ@^f','ź]p\rxzB-poF/!u','',0,'?'),('rߐUPYOZ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php',0,'B*{j','B*{j','#sL&zP_NbtqZz^','',0,'?'),('rs3h%K/Em\"','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<fFe\'RD','G1M}(zgt9KAx¾ K','',0,'?'),('r\Z,}-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aQ^浖4','!qK$]4P\ZifSla,/@zI','',0,'?'),('rBktЂu','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Response.php',0,'4dc	nZԬ','4dc	nZԬ','B\"]gb4k<]	%ogc	','',0,'?'),('rGnB','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Full_Activation_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Full_Activation_Provider.php',0,'g,95/:','g,95/:','Ž?COs󜏖<+`\0>7','',0,'?'),('r&EeDq','wp-includes/blocks/social-links/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɐ!\",?&`','ȯ\rck?D]	^-fL>\0','',0,'?'),('rtCd$Y','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Math.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Math.php',0,'\'mfP;=\nm','\'mfP;=\nm','qW[ϖvYiq8$԰dZ@yU','',0,'?'),('rɁh\r͌','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\rՠ','	 ]Դ7[AgES).rLux','',0,'?'),('rU_}7K','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/HostResolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/HostResolver.php',0,'O*!*^ݩ-y','O*!*^ݩ-y','KݣMS\"UE˶16V%,','',0,'?'),('rnz\0`]e#+t','wp-includes/blocks/comments-pagination-previous/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-previous/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#nq6ϟ\\','\0e\'a 2A=Fd]0$f*d@','',0,'?'),('r3e\\,Sq','wp-includes/class-wp-block-supports.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-supports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Hne\n4','AQ8|Pel4;~߯z|P','',0,'?'),('r~sn;ɭ ','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y;shb\n','p\0mFDA$^Mtpi','',0,'?'),('r_/HG=%<','wp-includes/images/arrow-pointer-blue-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/arrow-pointer-blue-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mrތ]49c','{&DOzAf/gáA]~(','',0,'?'),('rr(Jg(yt','wp-includes/js/mce-view.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mce-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(a3[Mz>','B	=<GcO.η7)f','',0,'?'),('rv0#~>0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ChunkInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ChunkInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ƭ1?2','Vī}ApLsjBFpQ','',0,'?'),('r)el','wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ai8!M܃x','$z[ptX7F f','',0,'?'),('rh^g=','wp-includes/blocks/embed/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#z=5;{\'nG','tcjp$1QQ','',0,'?'),('r\nb#','wp-admin/css/media-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c>ekof{','Rj1B*Ls̛;T6X,Zit','',0,'?'),('r7/y*aڛP] 0','wp-content/plugins/wordfence/views/blocking/blocking-create.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/blocking-create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BVF\'jno','\rKaTEf<MhMF(4P','',0,'?'),('rpAl;He ^','wp-content/themes/kadence/template-parts/title/categories.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A\"[%m','沐s\n-iWlsAT0jv0','',0,'?'),('r*-(','wp-content/plugins/wordpress-seo/inc/class-my-yoast-api-request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-my-yoast-api-request.php',0,'m6 UlS`','m6 UlS`','(¿G\"-\ZLh 9 ','',0,'?'),('sD_w.]18:','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/WpBakery.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/WpBakery.php',0,'=ۏ(%b]\"','=ۏ(%b]\"','&&Z+leGW\0I/^-P*F ','',0,'?'),('sAsYD]','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' (_0tKG`C','&ITaw0^}uT:]FvB+','',0,'?'),('s\ZPׅevBǴ','wp-content/plugins/wordpress-seo/src/conditionals/no-tool-selected-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/no-tool-selected-conditional.php',0,'NRr{B\r','NRr{B\r','r>G6u$Y +5,2]','',0,'?'),('s\'ވ/>KW','wp-content/plugins/kadence-blocks-pro/dist/blocks-portfoliogrid.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-portfoliogrid.js',0,'k5 /!1','k5 /!1','ݩc.-u]9id2','',0,'?'),('s:*D-bq)ҷ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/BodyRendererInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/BodyRendererInterface.php',0,'BM_q','BM_q','td%UI5.Uܞu7','',0,'?'),('sDI6|U_','wp-includes/blocks/post-template/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KkD\'2','E2찁;+i_B;l*.B','',0,'?'),('sLYCa','wp-includes/blocks/embed/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQXhoW;E','	c\rYDZ\\iju+kU%','',0,'?'),('sQ\n\n$,YPx','wp-content/plugins/kadence-pro/dist/infinite-scroll.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll.php',0,'m6ozb*r ','m6ozb*r ','8|\Zxoy0 {k>ߟ&Yx','',0,'?'),('sWځ@!=/','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/JoinCondition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/JoinCondition.php',0,'zVBZ%0\\y ','zVBZ%0\\y ','bH3.3zd@M\'V;f','',0,'?'),('s]ٲ,ox0','wp-content/plugins/wp-rocket/views/settings/page-sections/dashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/dashboard.php',0,'ML<0rLP','ML<0rLP','ģ|MPĿ.iD}24','',0,'?'),('s_Vjdvv','wp-content/plugins/shortpixel-image-optimiser/class/view/view-bulk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-bulk.php',0,'&@\0O','&@\0O','$VuȭKR@W&_m.zA','',0,'?'),('sa\".,7y\\/\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php',0,'z\nŽ:In','z\nŽ:In','lc`Jҕ1M&H a','',0,'?'),('saOY,~r൭k','wp-includes/blocks/search/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>&dl`C[','W%ptX1\rPu\\B8j','',0,'?'),('soS#yD,','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/BMPConverter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/BMPConverter.php',0,'M`6V1Xb2:Q','M`6V1Xb2:Q','\08M^blܣ˫؃J#8Ϣ7','',0,'?'),('s=g%/','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҩq\0\Zao','8k+xna{Tl[*B\0m','',0,'?'),('sh\r?b0$','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/NoSeekStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/NoSeekStream.php',0,'>;Cǐ^3LYl','>;Cǐ^3LYl','l&*Zצcb3_','',0,'?'),('s-4\Zv]','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php',0,'dDÚxT','dDÚxT','	{N\"]	>יG\"P<.','',0,'?'),('sK,f\\','wp-content/plugins/wordpress-seo/admin/services/class-file-size.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/services/class-file-size.php',0,'l [_=oKF#;','l [_=oKF#;','x_vw?r~x?}pnTI7k','',0,'?'),('sxc4k~;','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AllowedTags.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AllowedTags.php',0,'Kt5xIq','Kt5xIq','~t_70h|\\Ш<J=z]jO','',0,'?'),('sJ0v@T','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L-<;w','5ܸ8(o2YO5_q&*','',0,'?'),('sEΞqpB','wp-admin/css/widgets-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\CiBf$N\Z','ZV*o ̖\"*!:[`O','',0,'?'),('sB󿝾9)>','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ListTable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ListTable.php',0,'J<}','J<}','f.$3:ʺO.r^.oM\"6','',0,'?'),('s\r\'n=@','wp-content/themes/twentytwentyfour/patterns/template-search-blogging.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-search-blogging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٷhX8-C','PrFd{?ZS2t\r','',0,'?'),('s6<&lp/','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php',0,'\08IrތX','\08IrތX',':pa\\|{J l BGˋ','',0,'?'),('s<}mssS','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatableInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatableInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&m_ͬ','hZ1LviMM䨍#.','',0,'?'),('sQ#LN\"cN*','wp-content/plugins/wp-rocket/views/settings/page-sections/tools.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/tools.php',0,')\06:Xx',')\06:Xx','N:Rږ}H uBMd\"*ۡ]','',0,'?'),('sȼr1͘d:','wp-content/themes/kadence/inc/customizer/options/header-sticky-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-sticky-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TaYά`r#','sH͏JؙiY]qJM \'=','',0,'?'),('sדbġְ6B2','wp-content/plugins/duplicate-post/src/watchers/original-post-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/original-post-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z:,R\'LO','\'*\"\06;))&ÞIz','',0,'?'),('s0ylꃋD\\\"','wp-content/plugins/wordpress-seo/wp-seo-main.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/wp-seo-main.php',0,'w%tmRg','w%tmRg','C;@ykNb,P,','',0,'?'),('sŏU\'e@d','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ғ:K[Iw\\g','`e	nOJM%NhA{ghf','',0,'?'),('s4RX>O','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h^n=(&݂N&','SDIBz_-?(YpEyƹA','',0,'?'),('sΆd!ybWP ','wp-content/themes/kadence/inc/customizer/react/src/select/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/select/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\'I&Qƛ','2ЂWBk-r#4k+\nS','',0,'?'),('s˱Y*uO','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ˀJΗrhZ/Na$','	:H0v=T$bԆ^s\\71͐','',0,'?'),('s*TV1oE','wp-includes/js/jquery/ui/effect-blind.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-blind.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z#*A','.\"T3$\0Tj/ Cǻ@','',0,'?'),('s\r=/ϵP\"0','wp-content/plugins/wordpress-seo/src/user-meta/domain/additional-contactmethod-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/domain/additional-contactmethod-interface.php',0,'&q෿8mĦ','&q෿8mĦ','pAX#t7W=bs0reF	\rGf2Y','',0,'?'),('sC4M**B)','wp-includes/css/wp-pointer.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-pointer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ԧ(0(y','Ij6ʄ{鈊\"	Ԯi6ǭ','',0,'?'),('sj\'H]{4^','wp-content/plugins/wordpress-seo/src/integrations/blocks/block-categories.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/block-categories.php',0,'}_畮)1U)E','}_畮)1U)E','i܃L1F:jb<','',0,'?'),('tV֑HC','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SendGridHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SendGridHandler.php',0,'EwL5\'E)@','EwL5\'E)@','%q!ˡ5zZd#Tq','',0,'?'),('t	U iާ\"s','wp-includes/blocks/buttons/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n;N[JOM','*>߸7@&lmwcؔ\0Q<','',0,'?'),('t`E^r 5(','wp-content/plugins/wp-rocket/inc/Plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Plugin.php',0,'AIB%:Ww@','AIB%:Ww@','\ng\r\\*t-Q	an\Z;','',0,'?'),('t ~@r.W8_','wp-includes/blocks/avatar/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl}EG\0~<Y>','W8\01WSac)#\n77N','',0,'?'),('t&I%{-^r','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php',0,'[a\rbS','[a\rbS','F+V>%Ijp8~x$rgLU','',0,'?'),('t.?V({Bu','wp-content/plugins/shortpixel-image-optimiser/class/Controller/SettingsController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/SettingsController.php',0,'+mig䠽,','+mig䠽,','sql\'FlȂc,uU&','',0,'?'),('t/Ji6WX','wp-includes/class-wp-recovery-mode-cookie-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode-cookie-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǩ.l','kuXx^-b\ZrP^ΊMi','',0,'?'),('t1#߇x>\'','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php',0,'e%?j^7Kd','e%?j^7Kd','xm+JWsC\"aP&yk)E','',0,'?'),('t5^	kS(1zG^','wp-includes/blocks/archives/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ς<X^zۗ!\Z-','R/qE$H\\v2V\0\rKi','',0,'?'),('t6O\raȆf','wp-admin/js/plugin-install.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/plugin-install.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','chPP\rDW',') $K8v3X&okv','',0,'?'),('t8p̋z{jDp','wp-includes/css/buttons-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/buttons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xqh`RI\rƢB','zϵ1.eR5Ĕ7¿+?','',0,'?'),('t=9\'#T;','wp-content/themes/kadence/inc/customizer/options/header-mobile-social-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-social-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<h&Mq(','xO&v_ofIxy,9re(Z','',0,'?'),('tOᕡZAx','wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-built-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-built-exception.php',0,'0CJAQR','0CJAQR','_2LГN	JwGL|DAA\rL','',0,'?'),('tQ=uMA','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Container.php',0,'m=b5K\0\"cN\Z\'5<','m=b5K\0\"cN\Z\'5<','ź*%K\Z1u8>I#͑	gH','',0,'?'),('tU/DsIڤst','wp-includes/js/wp-auth-check.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-auth-check.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H6bX+M\'','n@to:\\e!65,KV\\=','',0,'?'),('t[[=6u7;YT','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4s[lAc4f','ƺ>y.~yK^)*f6F','',0,'?'),('ta;_Y\np=[_:B','wp-content/plugins/wordfence/images/icons/check.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/check.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DFPL','+ʣфȯ?+\0_ŴQq','',0,'?'),('th)YC]+\n̬','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Utils.php',0,'pk~IQnd','pk~IQnd','8P\Zb&{JnQ]|Ȓ','',0,'?'),('tmJp\'p\\W\'s','wp-content/themes/kadence/assets/images/fonts/josefin.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/josefin.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?t$$%6','ܮDvH܏*I`\0EۃS㻳!','',0,'?'),('tm6ۗq.=j','wp-admin/css/colors/blue/colors.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>5Y>r ','yek:\\<bZ}^bIU}','',0,'?'),('tm\nGO	\'\Z޵','wp-includes/js/jquery/ui/mouse.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/mouse.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\"k_BZBWVV','Ia1q\0/9H:\ZfQ@f\\3g2','',0,'?'),('tt?~YvbYH£Ш','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/database.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/database.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ƀ=f?]','6\"eQhxw\0kr','',0,'?'),('t/k6[','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/index.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S`;U\'b9^',':݆ޯCpXdh? @\\ȁ','',0,'?'),('tӧLAKA!%0','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QΏ\'PCܙM','SJߦlrXe2\"\0','',0,'?'),('tROLZ\'','wp-includes/blocks/query/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e_LdsM','I!	#<pw.R;0L/','',0,'?'),('tveRgb','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-rest-api.php',0,'@M}My','@M}My','xudI2f)<?LL`Z?O','',0,'?'),('tdyH\ncIp','wp-content/plugins/wordpress-seo/src/config/migrations/20200428194858_ExpandIndexableColumnLengths.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200428194858_ExpandIndexableColumnLengths.php',0,'V\n(Tez','V\n(Tez','`ا\'V.RPcz[7mPE','',0,'?'),('tI\',dl','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Host.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Host.php',0,'L*8$o{','L*8$o{','L!v6\'b;HyP	','',0,'?'),('t	ҚQ(r\Z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseStreamInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseStreamInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h_(M93','͐͹$$(\"ު_CA$)9','',0,'?'),('t}jlU)@u','wp-includes/css/dist/edit-site/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-site/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','saS*N','C\Z@\"Kǁ̥*cXvS늞i','',0,'?'),('t܋H6B','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/UrlHelper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/UrlHelper.php',0,')Tb\n\"m',')Tb\n\"m','mNAUv,\0rTjgϒwX\\To','',0,'?'),('te)%mW;','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/action-scheduler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/action-scheduler.php',0,'8JD~','8JD~','.nP,bZ\"ԙ,(K,R','',0,'?'),('tqKUu','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaScanViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaScanViewController.php',0,'ܶnA1`','ܶnA1`','.U4!gc6[a\rXi@','',0,'?'),('tH.K;+֭aF','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php',0,'ŏ`\rjl','ŏ`\rjl','bŶT!5eYW}o<x&-C','',0,'?'),('t	|E>L','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AsyncResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AsyncResponse.php',0,'\\VpQ[ĸT','\\VpQ[ĸT','ʟOGA)랃h{9_n5?','',0,'?'),('t\0a\\_\'W','wp-includes/blocks/table/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Saq*yz-T,)	','B~7#\\\"z@Đ*fx5','',0,'?'),('t}Qu','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DependencyInjection/HttpClientPass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DependencyInjection/HttpClientPass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z+0$5 ','|Gu礔%6sp?\0r;\"r','',0,'?'),('t]B47_','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php',0,'_x`t\0/DHnwk','_x`t\0/DHnwk','	.9K\\&DU9M$E:m9k','',0,'?'),('t/5̨by/P','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/deviation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/deviation.php',0,'/}D\rm(`','/}D\rm(`',']Mq\'Z5v~Y}(V','',0,'?'),('tZ$9~rAM','wp-content/plugins/wordpress-seo/src/config/schema-ids.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/schema-ids.php',0,'+{>P	IP[','+{>P	IP[','Kj}L_TE#vꐝaU)Qd','',0,'?'),('u64E~:','wp-content/plugins/wordfence/images/icons/working-indicator.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/working-indicator.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VF{N	\'G','fXRZ|:Ob=f[y5 ~	','',0,'?'),('upYAʏK@m','wp-content/plugins/wordpress-seo/src/editors/application/seo/term-seo-information-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/seo/term-seo-information-repository.php',0,'8DjI=','8DjI=','Uʧ\n\ZQ\\dQ6!;@}j9};i\\]|','',0,'?'),('u!+\Z','wp-includes/SimplePie/Cache/Redis.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/Redis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t]>e\n(40','r*%P2I7\ZKaq#','',0,'?'),('u)zZhLP|','wp-includes/blocks/spacer/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rzP#R\r$-','ލ!]L13q+#u}N!\"oh\0x~','',0,'?'),('u>]\0aO<G:5Z','wp-includes/blocks/latest-posts/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8m	x#\0Yt','|A?\\z8eo$JS2P)](','',0,'?'),('u?._Y2','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php',0,'Z)\Z~{io	,','Z)\Z~{io	,','tJY=hx$G','',0,'?'),('uVИ$|','wp-content/plugins/wordpress-seo/src/presenters/open-graph/site-name-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/site-name-presenter.php',0,'ݬgN=th#m{ ','ݬgN=th#m{ ','	5߽jS6Y\"vH,hv','',0,'?'),('u[1;kN','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\"','67AJn\r1[M\0c=%Uo\'*5)','',0,'?'),('u[yjGPB','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%9G5v׏_','mV,^4b	L~\Z8ֆe','',0,'?'),('u^AAp[V','wp-content/plugins/wordpress-seo/src/services/health-check/report-builder-factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/report-builder-factory.php',0,'ML`;\Zx/','ML`;\Zx/','5\r\n*	b?آश%Cخ#','',0,'?'),('uapF[t#(q[','wp-content/plugins/wordpress-seo/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/index.php',0,'EЛO0cAg3','EЛO0cAg3','	蚠{cFJw!}a9','',0,'?'),('ucz,BZ\\n^W','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/sumome.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/sumome.php',0,',F<?+])\r',',F<?+])\r','V5e\nrŉ1sV{zk2ܑ','',0,'?'),('ue,\"\n	hg.','wp-admin/css/colors/_mixins.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X`oi`HxC','dpe܊&΁s-','',0,'?'),('uk$;','wp-content/plugins/wp-rocket/inc/Logger/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/ServiceProvider.php',0,'\r|,֣','\r|,֣','[)<c0G\rGH:0\rvOT','',0,'?'),('u{\0D㿰','wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/failed-storage-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/failed-storage-exception.php',0,'{\"\r+[%Ɣ','{\"\r+[%Ɣ',')+,+LhQ>{GO+l','',0,'?'),('u[D','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#gx@oTM','ee6s--I$Q¼@ٍy','',0,'?'),('u,}WoZ:','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/ProIsp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/ProIsp.php',0,'~=\0Q8oHN','~=\0Q8oHN','\'lCz41laYKSHOE#fjkv','',0,'?'),('u{c\'rF','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php',0,'QeztWb{','QeztWb{','Ux={Jg5S9n','',0,'?'),('u?D','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^=o4m~`','_&HSY;8Ҧ@\rJiA!#.s','',0,'?'),('upM!GR?a','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/TraceableResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/TraceableResponse.php',0,'rTFEȽ','rTFEȽ','\\ҐO#FN\\:$AVC>','',0,'?'),('u4ǀ\n%w ','wp-content/themes/kadence/assets/css/src/all.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/all.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[%w6!ޗ','@1f\n5.oJs2B','',0,'?'),('u3!pAf)RM','wp-includes/js/tinymce/plugins/wpgallery/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_vQ8_$?','<A06kJX\nvA/%O-v_\'pA@ئ','',0,'?'),('u+_DfJ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php',0,'Pcf%3gC','Pcf%3gC','/\":ڪ(qA: :O2,@[','',0,'?'),('um-O\'ߝ]#','wp-includes/sodium_compat/src/SodiumException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HDfaezR','㶜\\L>LN-@G\'tmGikR߮g\0','',0,'?'),('u4ka! @ERQ','wp-content/themes/kadence/inc/customizer/react/src/borders/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/borders/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʒrQn2k-m{','jU|fE~ѬORb\n֝!','',0,'?'),('u<Ǥ4e!<~','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-videopopup-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-videopopup-block.php',0,'ϩٝ`zr','ϩٝ`zr','cc8s/ĬPl\nN\r*BXNϱ','',0,'?'),('uk6O>&W','wp-includes/blocks/text-columns/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c^*wG㐾Q','+\\1{*CG+JLv','',0,'?'),('uGF\\:)','wp-includes/blocks/post-comments-form/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|O1\\AlF<\Z','uN\ZnMuǠ.\Z.Ui+','',0,'?'),('uqg\Z\08hԭ\0','wp-admin/custom-header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y&','Θ4Cw@XdoN=w<~o','',0,'?'),('uҫ;^\'B*','wp-includes/global-styles-and-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/global-styles-and-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>y	xo/\"','OʾtD%nv\r&AEz','',0,'?'),('u:z2DQ4','wp-includes/blocks/tag-cloud.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|j6Vs&V','ִiCk뷁-*Q̾q3wySa','',0,'?'),('uC,SN','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AsyncContext.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AsyncContext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DŃ,fkK3','z/f	Ì\\ȔF\ZӚܑ5d`s','',0,'?'),('uczJDM','wp-includes/blocks/image.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zb	:_qM<','?*W$~ocEi#jN','',0,'?'),('u`2\'O','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-worker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-worker.js',0,'%˗ /5a','%˗ /5a','Й\Z`\0l^ø~O','',0,'?'),('u\'M2','wp-includes/blocks/embed/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.LRәB>','9h*y=,OA\\\Z\0~_','',0,'?'),('u)f\'R]k','wp-includes/Requests/src/Exception/Http/Status407.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status407.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZqmP\'ˈ[s','\\M#E&[~W>Al','',0,'?'),('vڴVKP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PNڡ\'f','\r]~[_˳PBTA`*,O','',0,'?'),('v\r_G3fr6','wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/Queue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/Queue.php',0,';oR١lh',';oR١lh','beQ7*{||os2yu','',0,'?'),('v)F~q?b','wp-admin/includes/class-plugin-upgrader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HbћdS	06Q','Y;O#6N)&t1f	%~\r','',0,'?'),('v&5jrjL #ܲ','wp-includes/blocks/categories/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\hpRZq',' @FH8 .IL\Z}#?\rZ','',0,'?'),('v).x3.#Ul','wp-content/plugins/wordpress-seo/js/dist/post-edit.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/post-edit.js',0,'\Z}R-];*6~q3&','\Z}R-];*6~q3&','{	G٣Ŝ/ICI\Z7I!,餠','',0,'?'),('v1,->d.#','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y[ǡhb','2bVCΖzMOp26ݢׁ','',0,'?'),('v3S+7\rĠ9C{','wp-includes/blocks/navigation/view-modal.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view-modal.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G9ZLl<','}$gvFJUR*a\ZmX','',0,'?'),('v58,U;','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/ClientCredentials.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/ClientCredentials.php',0,'@dicU+','@dicU+','e]6HGJdkI`ߟ$}Nbj','',0,'?'),('v>\nA?U(','wp-includes/blocks/post-terms/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\"h','@\Z\'_:e$)nF','',0,'?'),('vAHk\r4','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/InlineRelatedPosts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/InlineRelatedPosts.php',0,'$JZpi^O','$JZpi^O','PIpXw\Zn-vV*9UrV\n','',0,'?'),('vK;@saU1;	^','wp-config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-config.php',0,'!7:WEe<,','!7:WEe<,','}rns)OԲ|ݝ9)W~','',0,'?'),('vLM.f%OMR','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Oq+O','5\'REһ56dgo','',0,'?'),('vMm*&Z`\'/b+','wp-includes/js/jquery/ui/effect-puff.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-puff.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bĠf$','%dU(W.:kYtL<','',0,'?'),('vQڙ]6','wp-content/themes/twentytwentyfour/patterns/posts-grid-2-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-grid-2-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d>0ÜM5ԙrS]H','\"ߔ\\kqM:_ёfu','',0,'?'),('va9q]Ag','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=C1JUÎQ2','l͝{a\ZՊ?-hۉnFk\n','',0,'?'),('ve׶\\l.х{','wp-includes/js/dist/vendor/wp-polyfill-formdata.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-formdata.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S|hDO3\n\n2','4N^pZ$BoT#ZvR\r8vw','',0,'?'),('vifuP0^>d','wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SG˺F','[(R$2otb','',0,'?'),('vnkd0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CurlHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CurlHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Ӌ+҇','WPn\ZqacB$⧦:Z\\wPb:','',0,'?'),('vv˖g˝:䒼z','wp-content/plugins/shortpixel-image-optimiser/class/external/gravityforms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/gravityforms.php',0,'RG$::U\\','RG$::U\\','Cf$=,p2י=@*','',0,'?'),('vw@HzF','wp-admin/ms-admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UjAڦYqu	','\"G\nڔMhQ2l\'ܵ','',0,'?'),('v~6gɸKicxg9','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Concrete5Installer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Concrete5Installer.php',0,'Sp:Tbh[W','Sp:Tbh[W','KLBtx;s}m渋bd&w','',0,'?'),('v]z3tB','wp-admin/includes/class-wp-importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zo-Օ㿃','\\v+6)l\'\ntsݡUhP?pJ','',0,'?'),('vDW}HdJH','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/CHANGELOG.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|w+um~-','NUc*=taWSI%PO*','',0,'?'),('v=؍.?w;','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php',0,'>!cafJ','>!cafJ','BV~\'Mf|5롑!P§^ʠmJ$	','',0,'?'),('v\0â!rh;','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/NullLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/NullLogger.php',0,'`/,M_H	','`/,M_H	','RNhW`\0,o؜','',0,'?'),('vޣR','wp-includes/js/jquery/jquery-migrate.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b*Z{ϖ','\0m\\$6EI*[dwLw','',0,'?'),('vv%`k-<T','wp-includes/Requests/src/Proxy/Http.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Proxy/Http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[4j(	-','e\\;\ZoA <?{zrɩЧY\']','',0,'?'),('v̇@Ti&','wp-content/themes/kadence/tutor/single/course/enrolled/above-lead-info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/single/course/enrolled/above-lead-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e_lNΩHQ','k)2=K3<sbY,','',0,'?'),('v!|>\0.','wp-content/plugins/kadence-blocks/dist/early-filters.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/early-filters.asset.php',0,'B\0#SX]T','B\0#SX]T','d\\Ǭ4(ZazIEh\n)ϣk+','',0,'?'),('vmwz\\-s','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php',0,'Bffh','Bffh','Ok>WrC㊚Zj\04Ia','',0,'?'),('vâ,\\+Q֧','wp-admin/css/l10n-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/l10n-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OSGfK罚8]','dxk3rްVNĪet-','',0,'?'),('v%[VS}','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/InvalidArgumentException.php',0,'pmsf!%v','pmsf!%v','5BH3s) [\0>(J7','',0,'?'),('v.#PH2','wp-includes/blocks/buttons/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬>uY*','/-(y$g2','',0,'?'),('vq?\0{=ŭe','wp-includes/blocks/site-logo/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';,	zWS$\ZZ','+<Va\rRM%qtAAP<}','',0,'?'),('vO>oDB5s','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Minify.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Minify.php',0,'꿂/\"^Zx^','꿂/\"^Zx^',']al *LGB:2>\rp,','',0,'?'),('vG.gA#r','wp-admin/images/align-right-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-right-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hl>r]lWx','V:h#ȆBT5i\0?cBc','',0,'?'),('vG*)oA-','wp-content/themes/kadence/tutor/single/course/content-lead-info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/single/course/content-lead-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7%~r,','՛2ЌB:1?]J8xc\riR[gO','',0,'?'),('v4|><','wp-admin/js/xfn.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/xfn.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wcW_~\r1>p','4[Ÿ$[\\Ə4-3zx','',0,'?'),('vK#3','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php',0,'o)a5Sp','o)a5Sp','ow\r:b\"\08}~:tan	','',0,'?'),('v{#lb\0}B','wp-admin/css/colors/light/colors.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[A9|Pٯ','97E\nhz{/\rZ=Kus','',0,'?'),('vҸ);D~J\"q','wp-includes/js/jquery/jquery.form.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OfN',':Ua8\ZPI	j','',0,'?'),('vqj=6v\\','wp-content/plugins/kadence-blocks-pro/dist/blocks-query-pagination.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-query-pagination.js',0,'R\\g%','R\\g%','zd^=-p\\(g4bvd','',0,'?'),('wul|pQ','wp-includes/js/autosave.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/autosave.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7PECA','ߺK\ZXLz^ƙ)Y̧D,d','',0,'?'),('w,a\Z\r)wb#','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/StreamHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/StreamHandler.php',0,'A;z;','A;z;','ٸrj:X7].+ZFoƖ','',0,'?'),('w5n3$LZ2`7','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-home-page-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-home-page-watcher.php',0,'=rqr','=rqr','EуM7\0+ƿ','',0,'?'),('w8h*\\;e[','wp-includes/blocks/archives/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Kݑ։','9j鹠٠4Sqò_\\`','',0,'?'),('w<YTEh\nr\'','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-footer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-footer.php',0,'͛wޖ8>C','͛wޖ8>C','Cw<%!iYy>;WJ7U','',0,'?'),('w@ӂɏK:','wp-content/themes/kadence/template-parts/header/cart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vֈ4V=Nh','IB}ZulS.co%!mQjT','',0,'?'),('wDI-EIl','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e4ʟE','4N+&:<Y\Zt\ZqڡlY','',0,'?'),('wI_Iyz3Yj}	','wp-content/plugins/wp-rocket/inc/deprecated/3.14.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.14.php',0,'eN&&|;xYL8','eN&&|;xYL8','n7WC0:v\rf^;)5','',0,'?'),('wTQް=\"','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Address.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Address.php',0,'L)k','L)k','CJ1!̐`JR/~4os8','',0,'?'),('wZkFD9h','wp-includes/blocks/site-tagline/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@|<tڤ\nhf13','%g`=FsX?WS}~=.','',0,'?'),('w[UcGR','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(=9\Z ','ka\\9e)P| tѶl_vZ5','',0,'?'),('w}fR	nL tzk','wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-othermedia-top.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-othermedia-top.php',0,',]?.*=>8',',]?.*=>8','F^\0(^!l\\L2:6(~','',0,'?'),('w򵨈6ш\nC','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpContentEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpContentEncoder.php',0,' UUgr',' UUgr','o6W܆fsօَ>pԿ]A','',0,'?'),('wM\r$Nb5]','wp-includes/images/media/spreadsheet.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/spreadsheet.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','68\';6.G','fǋBΐFl8	UWFj&YW n','',0,'?'),('w	|IX>s','wp-content/plugins/wp-rocket/assets/js/wpr-admin-common.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin-common.js',0,'s&ERL7','s&ERL7','(Rmo4ovZG$/ft','',0,'?'),('wž!JLa/+','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Pool.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Pool.php',0,'Gjq','Gjq','ZKZ!S˱|MtJ','',0,'?'),('w\'\Z/','wp-content/plugins/wordpress-seo/src/helpers/sanitization-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/sanitization-helper.php',0,'8+d}UP','8+d}UP','fi8SҥzTd\"w\'q4','',0,'?'),('wξ&K`5DQ[','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^=o4m~`','_&HSY;8Ҧ@\rJiA!#.s','',0,'?'),('wL0]r.','wp-includes/images/crystal/code.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`119',';67\r!x\Z_@H&C-','',0,'?'),('wKU]j','wp-content/plugins/kadence-blocks-pro/dist/blocks-repeater.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-repeater.asset.php',0,'uO8Ͼ\rX~,','uO8Ͼ\rX~,','D&n\\ͮx4ߺ`@X~Tׇ','',0,'?'),('w@IeRf7','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hR','=mH/\neC3u58','',0,'?'),('w`M>{','wp-admin/includes/noop.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/noop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ÐoKKVe','(CFγϓasFI`IsDD','',0,'?'),('w	\\\0V;sy\r`','wp-content/themes/kadence/assets/fonts/star.ttf','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/fonts/star.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';#}=/sJ$#','ـOP4Cao{u_.vV|CPӯ','',0,'?'),('wË9/,+1','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g۰/*C,k#','avxu흶j=ISD{!','',0,'?'),('wq=+Y5)\'m','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpMimeHeaderEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpMimeHeaderEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Q\n|Cb<J\Z^w','Ǻޙ\' \' \rHw0	\0K','',0,'?'),('w֔&MYQ','wp-content/themes/kadence/assets/images/icons/credit-cards/amex.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/amex.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}X4f&뫐','T=xfѴnQW/R.ꖾ8$','',0,'?'),('wՋ\\G&A','wp-includes/blocks/template-part/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{oŅtc7S/(','v*ruߩMqR	!g)M?','',0,'?'),('w+2v)wq0\'OG','wp-content/plugins/wordpress-seo/src/routes/yoast-head-rest-field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/yoast-head-rest-field.php',0,'bc[I/ބ	v','bc[I/ބ	v','*Man8CH)0.-T','',0,'?'),('w$\\Y.t','wp-content/themes/twentytwentyfour/patterns/page-home-blogging.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-home-blogging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0+CaGn\"','΂IN!19i1Hgs#4OO','',0,'?'),('w$YRa\',ض ','wp-content/plugins/wordpress-seo/src/values/twitter/images.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/twitter/images.php',0,'ɗBoiӖb','ɗBoiӖb','=]MKg9`D,=t5mT','',0,'?'),('w:}VP','wp-admin/js/common.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/common.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lQV','\'v4tZ$!717E/N','',0,'?'),('x	G!N$.dTb','wp-includes/ID3/module.audio-video.flv.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.flv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(AZ?!x&3h','7T@7lEœ#V,Li\'','',0,'?'),('xcL?sld)','wp-content/themes/kadence/template-parts/content/entry_loop_thumbnail.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_thumbnail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^> +4UT5].','#vQ!CY\0k?','',0,'?'),('x#wH_lw<Y\r)H,','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-decryption-password.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-decryption-password.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^!hA{t','@OxhiެKFJYz','',0,'?'),('x#bW;i{ig','wp-content/plugins/wordpress-seo/packages/js/images/g2_logo_white_optm.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/g2_logo_white_optm.svg',0,'mj<]5K','mj<]5K','!ON@hAv-4J\n','',0,'?'),('x9@^6ߑo','wp-includes/images/w-logo-blue.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[NW_pw0','ޣ^Qt3HunU❻~\'T2','',0,'?'),('xD\"t:0{wa','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\Z!7캃','#%#3mfPnI[\Z!nG7','',0,'?'),('xIH.9YBO','wp-admin/css/colors/coffee/colors.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^uiPA\Z','67SD><ȶyeՋVNcMM','',0,'?'),('xLKx 2Is!#Q','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rUCB\"',')M쩂tUδԪF.','',0,'?'),('xO) 8O>^ԡ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BonefishInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BonefishInstaller.php',0,'׮RA}','׮RA}','sg9LgW\"Yd\"U&w','',0,'?'),('xVM>n{Oǟ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I,0`-=OxH','ⰁmWka2Sj>\"w<','',0,'?'),('x`sp(7$\'','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-warnings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-warnings.php',0,'ՆF>','ՆF>','(\Z9[ha=oY^L{_A.S','',0,'?'),('xab+g9oہ\n','wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-ajax.php',0,'U\rr5OA:','U\rr5OA:','q:G9v\ZM`-\r<`6*3','',0,'?'),('xaKP9j	','wp-includes/blocks/comment-date/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-date/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jܫU70ty','#&#0Mu׌SóG朻gu~','',0,'?'),('xhE)f\n','wp-content/plugins/kadence-blocks/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/InstalledVersions.php',0,'-Y$R\0','-Y$R\0','NRí2Hh&HX:b]d̳2O','',0,'?'),('xy!q).ˉ\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m͟r 9',';	_Yt7KsmC\ro','',0,'?'),('x닑s<A','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/Fixtures/web/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/Fixtures/web/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eU~m\"RT\r4','3T/΀JpFG\0$!','',0,'?'),('x䥵2','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/Regex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/Regex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UG+*v;8ຌ','0%9B 1{C/ro)_','',0,'?'),('x7.D&ڹg','wp-includes/blocks/navigation-submenu/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\"a(','%]cČ	&$__1;S߷\"','',0,'?'),('x^m]̲/L4vU','wp-admin/includes/revision.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ߩvM-ҠHk','4uFG|eh+:<fn	','',0,'?'),('xS]&B|g','wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Notices.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Notices.php',0,'hw;cyUV','hw;cyUV','j0hjck@#XӴË,?.#³','',0,'?'),('x޶5LC}','wp-content/plugins/wordpress-seo/admin/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/index.php',0,'EЛO0cAg3','EЛO0cAg3','	蚠{cFJw!}a9','',0,'?'),('xԵ1WÏ0dhH','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/RuntimeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/RuntimeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\rԝ`q^9*ȡ','\r$s޺&D??-*Vή','',0,'?'),('xKB\'[7Y+=q','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php',0,'v.%=\\Ke~9','v.%=\\Ke~9','Ў壒J{ͮµuhwt\0pN','',0,'?'),('xyۮ[ͳ!Q-','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-date-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-date-block.php',0,'WOHQ2\\ Y5','WOHQ2\\ Y5','&J~˵<즌Pq>3','',0,'?'),('x\0ꨰS+6]','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-archive-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-archive-watcher.php',0,'c}0y\n','c}0y\n','ߎQ¬b(:`#P޲A3DfEPcF','',0,'?'),('xčGYzc{','wp-content/themes/kadence/inc/customizer/react/src/title/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/title/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6	IM','\0/LxN%hfKv','',0,'?'),('xtF4\\i','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r3hFIP	','\\WWL	Us+`z\rL','',0,'?'),('x.XJ$ɮܹ','wp-includes/blocks/pullquote/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EK;G','W$Cnl{LǬ\\a@','',0,'?'),('xFbDg8-bs~','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Email.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?F͵(',')7}\Z\Zp\r\Z^t2(\ZI','',0,'?'),('x덂@}Yi+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ώ@/@MmN','xM\'Ȥ=ڷ?$S,Fy֥','',0,'?'),('xz#]ru?0O','wp-includes/sodium_compat/namespaced/Core/XChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hg`ɸ:ڕ^','F/QH\0^l 0BΓի6S@Ph','',0,'?'),('xL]֭BlX','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/IntegerArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/IntegerArgument.php',0,'ZD~#qi6','ZD~#qi6',')س1Rͦ^wm6PszIB9','',0,'?'),('xh}rJ[f͚','wp-content/themes/kadence/inc/customizer/react/src/background/gradient-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/gradient-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bG=R\03h0','5X.|&_~_pAP?ofz1','',0,'?'),('xG;.l	eW','wp-content/themes/kadence/inc/dashboard/react/src/notices.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/notices.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$rY?ra','Y`_va\rb<\ZսY$>\"','',0,'?'),('y׮I|<;)$/','wp-content/plugins/shortpixel-image-optimiser/class/ViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/ViewController.php',0,'mW8\nGi','mW8\nGi','GbVZfb=GAsO','',0,'?'),('y1-/fIנ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','09\rɘadP','F*OОq^lgz,I?bR]KֳE','',0,'?'),('y\r{dOz[','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/FileNameSanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/FileNameSanitizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#R\'/v?9','mc5Ǯ*`xƝ&LL','',0,'?'),('y\ZWh,ϿB','wp-content/plugins/kadence-blocks/dist/blocks-lottie.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-lottie.asset.php',0,'=5]UwǷ?G','=5]UwǷ?G','M~z;;ϏGXL)\\`$]3> ܫh/','',0,'?'),('y\Zpؑ-','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Exceptions/ImageDownloadException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Exceptions/ImageDownloadException.php',0,'e(a#g^\Z','e(a#g^\Z','_\0rhXvnk','',0,'?'),('y&EzݜZy׺ڲ','wp-includes/class-wp-recovery-mode-key-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode-key-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lMG=y5','>Gi/\0jDTk\r8 p:u','',0,'?'),('y+|pU\"AY$F','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-rss.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-rss.php',0,'ҋUX\nݚ.','ҋUX\nݚ.','蕸A4#))śoGe9l/p&','',0,'?'),('y52m\0l\"e','wp-includes/js/dist/priority-queue.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/priority-queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e$0Ahڰ~M',' gV\nUЬy6e$~RP18','',0,'?'),('y<!߰I','wp-content/plugins/kadence-blocks/dist/blocks-header.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-header.asset.php',0,'] Uw82Bb','] Uw82Bb','D}[BA\Z>=w*T\r轳Z<','',0,'?'),('yA0Xz(\'\\','wp-admin/js/widgets/media-gallery-widget.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-gallery-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wl3IEh','ZhX\0	,P6[=2޸','',0,'?'),('yO\0yjeB\nVp','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eƀkvk\r','iiLMP4ިO_!iN	','',0,'?'),('yO;;%Lѥφ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/OverflowHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/OverflowHandler.php',0,'|\'`VVpNfU`','|\'`VVpNfU`','@h^\Zl8AG,2Wl}yT','',0,'?'),('y]ޤ$p_P_B','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-radio-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-radio-block.php',0,'yAy1jE)֒TS\n\"','yAy1jE)֒TS\n\"','9\r!,r0`RT&YAf','',0,'?'),('yi[\"Yhoԣm','wp-includes/css/dist/patterns/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/patterns/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EK1rOPj','x\\-#.F\Z\n@c\"','',0,'?'),('yuhm\0626v\0','wp-content/plugins/wordpress-seo/src/helpers/image-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/image-helper.php',0,'$gDwp;','$gDwp;','MvP|-^\Z?oY	pVΖ^j(F','',0,'?'),('y|2.!|Խ4R','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/HtmlFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/HtmlFormatter.php',0,'<^C&Z`Ġ','<^C&Z`Ġ',':_-r;T\'rf:m]','',0,'?'),('y\n,\nC|[i','wp-includes/customize/class-wp-customize-selective-refresh.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PWgigc','+tiʃYA5n}}-	, rQ','',0,'?'),('yr;9)3W+(j','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-transformer-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-transformer-service.php',0,'VNY`|\"$','VNY`|\"$','ByyŪSs۹!','',0,'?'),('y{\\ba\'\\','wp-includes/customize/class-wp-sidebar-block-editor-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-sidebar-block-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']mL-D+Zٕ','o,bLnBQv-|qd\'B=X&','',0,'?'),('yxM@O','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-smartcrawl.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-smartcrawl.php',0,'t@Nj^E','t@Nj^E','~/|kcgj#㠻0tc','',0,'?'),('yR?kZB','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php',0,':pD8ƾu2',':pD8ƾu2','#wy?Vڧe0M(%3*\r','',0,'?'),('yV|/N/','wp-content/plugins/wordpress-seo/js/dist/externals-contexts.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals-contexts.js',0,'@@8Xٵy]','@@8Xٵy]','0kuPIPQ{!ե@[\nm','',0,'?'),('y\\_>Qu','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php',0,'xbXTC[A','xbXTC[A','6Iz\\frU;q6=z.qw,]4','',0,'?'),('yEa:[\0','wp-includes/class.wp-dependencies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class.wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o=`,WQ-8','\"]_1ts\"d-{Ă^\\','',0,'?'),('y*CyPJԷM','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTestCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTestCase.php',0,'΢Y	<i','΢Y	<i','YcAʌCR7a&YI\'A','',0,'?'),('yFrWrj','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Managers/ManagerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Managers/ManagerInterface.php',0,'>yYH+4','>yYH+4','NRwK%$J)(lo2(ahY9- ','',0,'?'),('y&qŏ3+\r/','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-conditional-fields.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-conditional-fields.min.js',0,'.?1J?UV(','.?1J?UV(','č{2#ptGZ\rp','',0,'?'),('y32/[X#F','wp-includes/blocks/query-title/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\".S@;Ggx6','J\Z6\ZC}RZ!\Zw5(==YSmxuF','',0,'?'),('yG\\`MR','wp-admin/network/site-new.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zꩦg1r24','JBv\Zbela(\ri`^ j: JV<','',0,'?'),('yem$JS','wp-content/plugins/wordfence/lib/wfDeactivationOption.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDeactivationOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	}? 5','\'zg/ٽn+uF=[\Zl','',0,'?'),('y\0Lz㶵و','wp-includes/blocks/group/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4L`*A7\Zg','IlA2]OI_0i','',0,'?'),('y\Z9,JtƦ\Z','wp-content/themes/kadence/assets/css/rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E`#Lu ','Zk7((8w:(cl','',0,'?'),('y/-Rc/!RJ','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WordPressCom.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WordPressCom.php',0,'qꘆ_#\Z;&o','qꘆ_#\Z;&o','[4HbE광4\'MR	C!kDE','',0,'?'),('y+hmlԅ+6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԩSß&[k','ճب uA<DSdg\'B[~','',0,'?'),('z\nIX\rԒ:\n','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/noindex-author.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/noindex-author.php',0,'~\0||','~\0||','+jO0҄*r,BRS	z\0','',0,'?'),('zɐ@//@','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J58OO}s','$9dS>;:\nad_X[F','',0,'?'),('z耕D+<6','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Uninstall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Uninstall.php',0,' PDR9',' PDR9','9Ha|paO\\}Dژ','',0,'?'),('z.[D8R','wp-includes/js/codemirror/jsonlint.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/jsonlint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I)fykT+<՟','$D;;0F~pGғFˁ','',0,'?'),('z0fWJ:[Ny','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php',0,'~|z_T|?o','~|z_T|?o','}21`?]-=_mfh-4D','',0,'?'),('z2_>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LogLevel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LogLevel.php',0,'P_a+.zO)','P_a+.zO)','ksɄ)ekv0*ctyĝH9;t','',0,'?'),('z4Aox','wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-table.php',0,'U{]cQ=Vh','U{]cQ=Vh','<uYk\nʛ.zz','',0,'?'),('z9Fwܜ$V{t','wp-content/plugins/wp-rocket/assets/img/one-com-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/one-com-logo.svg',0,'2#Xy','2#Xy','p2.M82pOcti2,','',0,'?'),('z;j2WD6[V','wp-admin/js/accordion.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' -)@O(b','1iLOUm\r[X00\\EB-','',0,'?'),('zC2/g','wp-content/plugins/kadence-blocks/includes/assets/js/jarallax.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/jarallax.min.js',0,'}V~\\','}V~\\','LfXT\r~4\"!N)G ','',0,'?'),('zPdq\ZKNv!','wp-content/plugins/wp-rocket/inc/Engine/License/API/User.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/API/User.php',0,'Ӳ6!Qe\'b','Ӳ6!Qe\'b','d,76œ.Ӭ^','',0,'?'),('zY30ѡ!}E','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/utils.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"% S2KUK','n nA}Mp(HA4\Z;','',0,'?'),('z`½2Yq0}c/J','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Compatibility.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Compatibility.php',0,'QhU	Fl','QhU	Fl','(/)\0|3\0buxtwqS۾','',0,'?'),('zl,sW6uDWѵ','wp-content/plugins/wordpress-seo/src/helpers/robots-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/robots-helper.php',0,'% \\QXpC','% \\QXpC',':ީ{EP1uьR8fg+ޘy','',0,'?'),('zn3,Mm','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-check.php',0,'m7TL','m7TL','I&+i(`e\Z=~Œ.S0','',0,'?'),('zoܲ~b','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&5uNi!z','#ɛ!wcw؃}6~A','',0,'?'),('zw|e?ld','wp-content/themes/kadence/inc/customizer/options/general-button-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-button-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DyffW','^wA/MK$϶\Z>xZ	DG','',0,'?'),('z|LFD','wp-includes/css/dist/edit-widgets/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-widgets/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XCD#It;','$\r3X*v\'5mOAe','',0,'?'),('zLM`6-','wp-content/plugins/wordpress-seo/src/config/migrations/20200728095334_AddIndexesForProminentWordsOnIndexables.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200728095334_AddIndexesForProminentWordsOnIndexables.php',0,'-wP F.!\Z','-wP F.!\Z','Ux\\0fVyo','',0,'?'),('z:ш`E','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-secondary-navigation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-secondary-navigation.php',0,'F\\q5ʥ^','F\\q5ʥ^','Dն,<A\n6>[','',0,'?'),('z8ad\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/MimeHeaderEncoderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/MimeHeaderEncoderInterface.php',0,')nBLȳ#߹',')nBLȳ#߹','iڝkzY\"L5\r=','',0,'?'),('zmSA}I)','wp-includes/sodium_compat/namespaced/Compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aik/j\rn3','1\'ջ.O}5Afi~>:}s','',0,'?'),('z~60Y{x','wp-content/plugins/kadence-blocks/dist/components.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/components.asset.php',0,'3\0H','3\0H','m5s>Ӊ\'ݚ|e\Z3J','',0,'?'),('z2]w\'=\"-4','wp-includes/blocks/query-pagination-previous/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-previous/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?(f=GWrv','1	\ZNT9Zɯg0&/\r3\nmDVǯ<\\','',0,'?'),('zv#ѰDdd','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y3]3`:|','iEX:\'(uquO2]t','',0,'?'),('z&iDI#T(','wp-content/plugins/userway-accessibility-widget/userway.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/userway.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mp-8fc!','rAy/5$ͨ=(k1Zk~','',0,'?'),('z5*\ZADZCkj','wp-content/plugins/wordfence/images/icons/magnifier.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/magnifier.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uO{:qcV\'',' atvdQ0(IjƖO$e(*','',0,'?'),('zL5	g5Ď','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','trIbw\'-7','uS{<n\r߅+-#;᷃QЮ','',0,'?'),('z8 L{q','wp-content/plugins/wordfence/lib/menu_scanner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_scanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8)ՋdJ','.ٔGe!V*Ef2P?`fqP','',0,'?'),('zQ<\'U~R\\','wp-includes/css/wp-embed-template.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-embed-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\Zʆk$9h','TXW2GkKld~w','',0,'?'),('z29S#	p>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/WPFileNameSanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/WPFileNameSanitizer.php',0,'?NQ','?NQ','՜ݢOw\ZEOR<Xh=Ma2Уi:Ҫ','',0,'?'),('zJXw{!\rF','wp-admin/includes/class-wp-upgrader-skins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-upgrader-skins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\"ґ-щ','.7j3?̶·?2UE.GW','',0,'?'),('z[Aky0c&','wp-includes/blocks/avatar/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Rd-u','7oWݹP*\0ӛ^Ũt','',0,'?'),('z΋ۗ`瀃1\0','wp-includes/js/jquery/ui/effect.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1}Yz4','#brF4е\'/].~98rQ4;/','',0,'?'),('zWsW5ʈ )','wp-includes/css/dist/customize-widgets/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/customize-widgets/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7_??x:_','5>0{3+۟>#_','',0,'?'),('z[Yd#$gY*g','wp-includes/css/dist/block-editor/content-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/content-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<OyflDE','6=+<Z&P}=i*:rmI','',0,'?'),('z׻nH','wp-content/plugins/kadence-blocks/includes/assets/js/kb-countdown.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-countdown.min.js',0,';x2#W^',';x2#W^','7\n3gl887Xms٘DS$Sh','',0,'?'),('zѮAl','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','晇}6ݠB','4K~ה6(o_8','',0,'?'),('{\nRoR=\'g','wp-admin/js/widgets/custom-html-widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/custom-html-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$[!x{LRoq','ԫ/~ؿCt.R7WQL+ݳR','',0,'?'),('{N2Qu=	','wp-admin/network/theme-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','( aԢ[U?','ЈegTG.=a\0@','',0,'?'),('{Oɗ\0oO','wp-content/themes/kadence/inc/customizer/react/src/common/icons.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/icons.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K?x*#%`','pؗ^Qs%i<\rQ6\'ܜ%','',0,'?'),('{!dDn0 ĘN6','wp-content/plugins/duplicate-post/src/ui/classic-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/classic-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^[(b`J =','I)hmfX\n?M\\M:i 4;ɫ','',0,'?'),('{? ȩ8},','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/index-https.html',0,';T~&;!D~7\Z',';T~&;!D~7\Z','0&<EO=\'In3Pf','',0,'?'),('{KBjâʍ#ST','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Exceptions/ImageDownloadException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Exceptions/ImageDownloadException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z%ZobJ','	F㳩|tw\'-բJu','',0,'?'),('{Zu_J\"\"N','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CcgZBܲMt','\rcy`Lȓ1OlF\'uv4W~1','',0,'?'),('{[/ڑ','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/option-howgetips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5夑=MwKh','jT59ODPI !8\"L','',0,'?'),('{]2]$D^sq','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-default-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-default-data.php',0,'/,2|nh','/,2|nh','d+xM{&&߉}nݧ&','',0,'?'),('{`|M#,8','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E~\rmCe','u -8gy\0R{DE0r','',0,'?'),('{a{4;Moز','wp-includes/block-template-utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-template-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&tex\'6a','/@*C*8Z\Zɹ\\o!P\n9','',0,'?'),('{b/;wHs','wp-content/themes/twentytwentyfour/assets/images/hotel-facade.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/hotel-facade.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\-2ɏV\0=','PGVGD,F?*Fg\nD(H(+','',0,'?'),('{c4r0A\"w','wp-content/themes/kadence/assets/images/icons/credit-cards/amex.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/amex.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Q4Vr','p4fEPN.:,xaX','',0,'?'),('{tE~PA1','wp-admin/js/tags.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=<@7K>ʹ3h','ѷfR*z;ܓ`c6|F3','',0,'?'),('{y\"ҵݩ{','wp-admin/includes/class-walker-category-checklist.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-walker-category-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',T9}\'p*mU','\\M U[)T͔\'Ow','',0,'?'),('{yVNayoUX7g','wp-content/plugins/wp-rocket/assets/img/logo-varnish.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-varnish.svg',0,'1JF\\[{','1JF\\[{','zDᠢ s\'[W&r!l7C','',0,'?'),('{8-0fa','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/CallableArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/CallableArgument.php',0,'V]S(4','V]S(4','Æ,5q>2;ɷ+|ŵ w','',0,'?'),('{rDYAN^','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php',0,'Wh6n A8','Wh6n A8',' t1rm09d:xgftlZU','',0,'?'),('{X{Q`','wp-content/plugins/shortpixel-image-optimiser/class/Model/CacheModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/CacheModel.php',0,'2Ώ͞4\'','2Ώ͞4\'','~1z? X6\"NMj4eiF','',0,'?'),('{VeT','wp-content/themes/kadence/inc/customizer/react/src/controls.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/controls.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sd4!0˟g(','*pb:6	\r,/-^fut','',0,'?'),('{jɏ|n	^<WH','wp-includes/css/dist/nux/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/nux/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','慁WNJ%',';r³гvnneEIU\Z^Ζf','',0,'?'),('{)4e4p:fW','wp-includes/js/jquery/jquery.query.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rġLz;ҿ0','ղ<C=H:LW΍9b\n','',0,'?'),('{=s^mk&ӻ','wp-content/plugins/wp-rocket/inc/Engine/Support/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Support/ServiceProvider.php',0,'d ;ޙϏNB','d ;ޙϏNB','|	iKw#YY','',0,'?'),('{ڴuEfF3','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/PathHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/PathHeader.php',0,'8tH29Ѱ','8tH29Ѱ','Œ|cO)hLb00/_9z','',0,'?'),('{PbO','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-result-count-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-result-count-block.php',0,'8lKi,=','8lKi,=','Ma ,ʂw3A\n+','',0,'?'),('{Laty.','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/CDNOptionsManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/CDNOptionsManager.php',0,'uL/L,>#k','uL/L,>#k','w]/P\r\0OYcχVȻ\\','',0,'?'),('{^\'\\*fm','wp-content/themes/kadence/inc/back-compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L.M%tFE','i%\nʘ3Ƽ6Uw-wN%!','',0,'?'),('{Oqdͮxd','wp-content/themes/twentytwentyfour/patterns/banner-project-description.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/banner-project-description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+^qQxn\r5','(\n)0My2qԤvޠ)p','',0,'?'),('{!̮Nl}Xe','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DokuWikiInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',0,'g`psd액lJ','g`psd액lJ','r[4h^KHHÉ& zKԞl','',0,'?'),('{,>ueY>\\','wp-content/plugins/shortpixel-image-optimiser/class/Model/SettingsModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/SettingsModel.php',0,'Ȏ\\j;\'','Ȏ\\j;\'','$\'<\\6j=4R Yk','',0,'?'),('{e;^3.X\rS','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/NormalizerFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/NormalizerFormatter.php',0,'VΈJ%!08','VΈJ%!08','&o,jalsg}\"uF\'w?','',0,'?'),('{\nrI','wp-admin/widgets-form.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/widgets-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ض(vC>','ơFK	ּPA|s&Jfϼ','',0,'?'),('{iwܟ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php',0,'TYϡl\r','TYϡl\r','1U%8K8#de^+i^','',0,'?'),('{RC\Z.*\"Q','wp-includes/feed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e$Ha#k','7Np	v1$EO˾\0sv%','',0,'?'),('{\r-}^','wp-includes/images/smilies/frownie.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/frownie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q','r~Dzoh߱ػ\">E+Ke','',0,'?'),('{;1384/','wp-content/plugins/wordpress-seo/admin/ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/ajax.php',0,'BX!-7*','BX!-7*','\"IT5KvFlg1,𚠞C','',0,'?'),('{&*\rDN9','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php',0,' m`l\0SJ',' m`l\0SJ','kYVuQks=Tcg','',0,'?'),('{?\r\n\'','wp-admin/images/imgedit-icons.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/imgedit-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\2}Gi;O','TN~-@N̞V\\(u$','',0,'?'),('{6{̞yk','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KKb2sgwD','^H\\o^74#+.;uAY7hIǅSoq{','',0,'?'),('|jx7(Q}0\'','wp-admin/css/list-tables.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/list-tables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z{qW^','wfju`I^+0sy','',0,'?'),('|LF85<ZM','wp-includes/blocks/gallery/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\"^Fؠ7','l4zE.,)*yi|;>','',0,'?'),('|]C^H۔_','wp-content/plugins/duplicate-post/js/dist/duplicate-post-options-450.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-options-450.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b`;6n','@|j׍0x,bVCI?','',0,'?'),('|*W\'Z','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php',0,'%ZhJim','%ZhJim','B[9%-ݷ.`.}#VMJ־','',0,'?'),('|-z-','wp-admin/export-personal-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/export-personal-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dA_<}:=,\rf','޹%tI/	O1E޲c_ҝA','',0,'?'),('|.]0','wp-includes/blocks/pullquote/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T_W1=\"0','%8!KHӄB	E\r<߬wX<W','',0,'?'),('|/:8*DAugo=g#','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-table-of-contents.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-table-of-contents.php',0,'-E8tu5Y','-E8tu5Y','R9X1IPcYcwR2l#','',0,'?'),('|/ڒ\0[*4x','wp-includes/js/admin-bar.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/admin-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gtf ҏ\Zt','Vs~-ܤ̛','',0,'?'),('|8|\\;O\n\0i9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/CommonResponseTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/CommonResponseTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sLPE֊\0ů','\Z2L2@\0fmp\'?m~Ӎw\Zc','',0,'?'),('|?mF2','wp-content/plugins/wordpress-seo/src/helpers/aioseo-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/aioseo-helper.php',0,'jx_=0 ','jx_=0 ','`TLQͨ∜Fd\r>]tF*','',0,'?'),('|N!;xN&gm','wp-admin/js/widgets/media-image-widget.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-image-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G9FmqQ','J6%V\"\rKyɳh8NF','',0,'?'),('|UvΫYLL9','wp-includes/Requests/src/Exception/Http/Status500.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BNxTZ0z','0/6X\\ד!|4&LI9','',0,'?'),('|i3z','wp-content/themes/kadence/inc/components/buddyboss/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/buddyboss/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֆN9 b[r8Y','Wf\'li!2ZU::Jm/?T','',0,'?'),('|kC+1Ze\Z','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z)SBE6\\*4','PqT&%Q$!}V<Dy','',0,'?'),('|l+F#ڟ','wp-includes/class-wp-user-request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-user-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>_Tv|0','M{XP~\0*>ekQYUPW#`D%','',0,'?'),('|m1\0z^m{','wp-includes/css/dist/customize-widgets/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/customize-widgets/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z{!Y-8Ex	','K48G-}kPz^≮','',0,'?'),('|sK:O','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap80.php',0,'QMY3Wnæ','QMY3Wnæ','1,-,ZɝQۘ=-G6','',0,'?'),('|>͜lz\\u','wp-content/themes/twentytwentyfour/patterns/posts-images-only-offset-4-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-images-only-offset-4-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*1c1)2K',')e9ɬջ`9cTF<0','',0,'?'),('|B=\nQJ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/InvalidArgumentException.php',0,'\'[2hc,5ᖜH','\'[2hc,5ᖜH','SvSt<e\\$$i	','',0,'?'),('|p\0/`P\"I','wp-content/plugins/shortpixel-image-optimiser/class/Controller/QuotaController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/QuotaController.php',0,'͠h`','͠h`','v5󀚯;\rUo-bsT-\\:','',0,'?'),('|C-6(Çzp','wp-admin/js/password-toggle.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/password-toggle.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\0N6ޯ','k!.߀fǿx`7{','',0,'?'),('|;Vc;=͏U','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php',0,'+moBīE\0SۘGX','+moBīE\0SۘGX','\n#1#3hLEyiv#,','',0,'?'),('| 4x\\Mn','wp-admin/js/code-editor.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/code-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2N1B9Xk','XJÒHsf=]\n*vHXПDC','',0,'?'),('|ӧ}t?Ȥ*y','wp-content/themes/kadence/assets/css/ie.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qxak&q','KH? ~JE2)\'i\n)A','',0,'?'),('|4)=3}&Ϥ','wp-content/plugins/wordpress-seo/src/conditionals/get-request-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/get-request-conditional.php',0,'al	$GLrjq','al	$GLrjq',':sT)0P*<j5\"w&cRb','',0,'?'),('|32^qj','wp-content/plugins/wordpress-seo/js/dist/frontend-inspector-resources.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/frontend-inspector-resources.js',0,'dtx\0ǒ?_$','dtx\0ǒ?_$','5+mDU)[oҙOeBݦ;YP','',0,'?'),('|sk[cЙ','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php',0,'uU_sS҂\'`','uU_sS҂\'`','c?P᪨8+БL}2:Xq','',0,'?'),('|~bÅLw^\\','wp-content/plugins/wordpress-seo/packages/js/images/x-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/x-logo.svg',0,'2pT!(\r','2pT!(\r','Mwjg8\\Gg`6<}{\ZN]{x^p','',0,'?'),('|U XMa1','wp-content/plugins/kadence-blocks-pro/dist/blocks-repeater.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-repeater.js',0,'QSS}$\'}','QSS}$\'}','zJC\'>.`!(8\\4WMR','',0,'?'),('|T]:Y$=\'h','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*B>	Crg','h$V<`X),㍬᫑I\nDX,y؞','',0,'?'),('|Y>	Ɔ','wp-admin/link-add.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/link-add.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nPU-\r`(l','!>e:Ⓝ?\r}k?ms','',0,'?'),('}ĉ=t','wp-includes/images/toggle-arrow-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/toggle-arrow-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\\CDr','-N7~@}_=V_@A','',0,'?'),('}aX]D*I','wp-includes/blocks/file/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n8.g\0BP','T<xOտWYz?!%mp3|@','',0,'?'),('}.3X$H7ԭ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*27ADvm','P;\'1cagn\"ljX','',0,'?'),('}\"w/bƒ*EӴ','wp-content/plugins/kadence-blocks-pro/includes/assets/js/isotope.pkgd.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/isotope.pkgd.min.js',0,'B7lײI;\nJ','B7lײI;\nJ','\nѾ\';S[n\09!`~?~','',0,'?'),('}#z{bXjܧ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php',0,'4mK&5-F','4mK&5-F','U)ǽ+q4KEHHyt*iD\Zgm','',0,'?'),('}<ZE{~n.Z=','wp-content/themes/kadence/inc/components/template_parts/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/template_parts/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pܰZZR`','al(:]Kf\\i+@$WT\0.s','',0,'?'),('}<}#*%V>ɖ','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-admin.php',0,'ġߘTZ4BBS','ġߘTZ4BBS','&.Xt=ctAPOB[DF3','',0,'?'),('}BqQo@l\"','wp-content/themes/twentytwentyfour/patterns/text-alternating-images.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-alternating-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';.+텕!;',']?G<IL)+<9-<kgvԣ','',0,'?'),('}DD5uc0<','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/advanced-custom-fields.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/advanced-custom-fields.php',0,'7rS䱭','7rS䱭','\Zwָ\ZZ0\"Vaut','',0,'?'),('}NĒAǈ#','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ą	`/','@|~h<piw=:<\\ǁ]','',0,'?'),('}O !ٶ]OO[','wp-includes/block-supports/typography.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N+&MbOGu','cw`X49#A>WӇ7y','',0,'?'),('}\\5\r$lW','wp-admin/js/tags-suggest.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','룉anXz','uv\n+TU\\[.L%P','',0,'?'),('}`g\"P2V','wp-includes/images/spinner-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','12^#8','#˒=$c6	B46','',0,'?'),('}nѠNE(by{N','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/NoPrivateNetworkHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/NoPrivateNetworkHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rvtt w','\Z\0FF\"Z>ڠtJ!U_b\n\"=','',0,'?'),('}|\0+N6]R','wp-includes/blocks/audio/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G^x[','^\ZV.~kZF(+Բ\n]tހB','',0,'?'),('}~\r8j˅;','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/gdpr.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/gdpr.php',0,'gd~rmΖl1s','gd~rmΖl1s','/Rͭ2Pz+7}%hKo','',0,'?'),('}3[*?=z+P','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-ewww-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-ewww-subscriber.php',0,'G/\niW+G3','G/\niW+G3','͡\"wRgςV}=E5','',0,'?'),('}UT7<`+h','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/robot-book-summary.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/robot-book-summary.svg',0,'njʞSʌW','njʞSʌW','^,p\ZD0TH\\nò\\d?.s','',0,'?'),('}˝WuZJ;^#)','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\rG#X|Y','N|E^wAdNvPhD','',0,'?'),('}l8\\;~','wp-includes/blocks/social-links/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>yLv','эЙuN22\"$yd','',0,'?'),('}Le)','wp-content/plugins/wordpress-seo/src/user-meta/infrastructure/cleanup-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/infrastructure/cleanup-repository.php',0,'i=l%@/','i=l%@/','`?3,ĵEE&sRKyN_Қb','',0,'?'),('}-$LH_R','wp-includes/blocks/paragraph/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vz/\r{;','Ʀ[rGkbJa/!Jz8','',0,'?'),('}7 ޘDHDPl','wp-includes/SimplePie/Registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';M{ٟR','Ԧ0-/\\kW%oޏ\'E)D','',0,'?'),('}b`I-0','wp-content/plugins/wordpress-seo/js/dist/externals/styledComponents.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/styledComponents.js',0,'],\'5\'\"T','],\'5\'\"T','\Zw1#z+1ͺ̼L.xw','',0,'?'),('}V:pÊ<H','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/RedirectionException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/RedirectionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\*dgRN','Z\"\0\\0$߈V=$e','',0,'?'),('}M	m&M','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ResetInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ResetInterface.php',0,'eXpQ^','eXpQ^','1vE8o\"n\r,9','',0,'?'),('}D߅N_','wp-content/plugins/wordpress-seo/src/surfaces/values/meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/values/meta.php',0,'sCLxes','sCLxes','o^ɯJ\"ecꏾwl1[G;\\}','',0,'?'),('}AûyE2h8','wp-content/themes/twentytwentyfour/patterns/testimonial-centered.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/testimonial-centered.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gg~89e','뎓\"J3mwB>o(ŀ','',0,'?'),('}<H$tm','wp-content/plugins/wordfence/css/wf-adminbar.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-adminbar.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԧ_SZډ˴&nQW','ܭ3[=[]|Djga,X	n-H{o','',0,'?'),('}绠CY`C','wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\"[ 3y','%m(k	$V	c^\r','',0,'?'),('}Ȑ\\L`i)','wp-includes/ID3/license.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>5>q%S\\/,x',' \Z3\nԨc\0kѕ6k6','',0,'?'),('}{RҢ\"','wp-includes/default-constants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rnEɼP8BJ?','F%ODv\ra!Pś_=','',0,'?'),('}pSydڱ','wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-control-blank.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-control-blank.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ă=Vťy>','t~byٚiip|ړqXjJ','',0,'?'),('}z,[X9Yex','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap80.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'gc0Jv','Vp/\nAŁKR:','',0,'?'),('}1|	vGW1J','wp-content/plugins/kadence-blocks-pro/dist/query.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/query.asset.php',0,'9z\'#rә','9z\'#rә','/n%\re+:	D|)U8','',0,'?'),('~S*9Qx՞','wp-content/plugins/kadence-starter-templates/assets/images/masks/mug-hot-solid.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/mug-hot-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':iiP=\Zac','SAXGP)ľEa\\d4φ@','',0,'?'),('~f$0d9-n','wp-content/plugins/wordpress-seo/src/presentations/abstract-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/abstract-presentation.php',0,',-ʽ$1cOi?Y',',-ʽ$1cOi?Y','dXUQ3+Nal+zu**%1\0qe','',0,'?'),('~Ⱦ/mր!','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sX][sC>Q','>_c\ZJ+aUmv)lg','',0,'?'),('~\Z?OtY1','wp-includes/blocks/comments-pagination-numbers/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ңʟ;Vkn4','Lc߽4!BĢ:[Z\rQy','',0,'?'),('~\\_b$-!','wp-includes/js/jquery/ui/selectable.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/selectable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Nbd*bNuC','lI-)jWEe;hҲ','',0,'?'),('~\'C_hFƶ','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-social-images-provider-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-social-images-provider-service.php',0,'elXl,)geVu','elXl,)geVu','QF}g\0id1?#<\"x4p\0&3','',0,'?'),('~<KZ޺/չ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php',0,'Q\\jxPF','Q\\jxPF','	GKaGg0z܇< Íx3','',0,'?'),('~=N	loM3','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n[3\\j\0','v>.R[#Ղcr64Ũ','',0,'?'),('~?JIb*׺eC','wp-admin/images/resize.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/resize.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lN','6󀏸&?5?sqGM`P;','',0,'?'),('~F㫎>dyj','wp-includes/css/jquery-ui-dialog-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/jquery-ui-dialog-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jhZa@>]c','9|7S^=$קq6o<Kv\Z','',0,'?'),('~GKZQ#J','wp-content/plugins/wp-rocket/assets/img/logo-cloudflare.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-cloudflare.svg',0,'ə	˗C_9','ə	˗C_9','\\>tUEW`wy5zUr<KIX','',0,'?'),('~JJaM:1rS','wp-content/plugins/wordpress-seo/src/config/migrations/20200430075614_AddIndexableObjectIdAndTypeIndex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200430075614_AddIndexableObjectIdAndTypeIndex.php',0,'6?Nq({`','6?Nq({`','ƛ6߀nӟ\n88D5o','',0,'?'),('~VXA&_M@em','wp-content/plugins/wordpress-seo/admin/class-export.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-export.php',0,'i]@5|>;','i]@5|>;','1g_\0h˦i!KN.se~Jx*@','',0,'?'),('~VXa]7p|R','wp-includes/class-wp-post-type.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']G9Ԧv=5i-s','	5Ei)_TjUa5','',0,'?'),('~^f=UPk1','wp-content/plugins/wordpress-seo/src/initializers/migration-runner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/migration-runner.php',0,'R\\`t','R\\`t',';6n,_FU','',0,'?'),('~iI;ݭ]AS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GPEKTY)&F','_0d}f!vmEwWo','',0,'?'),('~lp2ʈ$h','wp-content/themes/kadence/inc/components/beaverthemer/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/beaverthemer/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڼA\n|=.fMf','9tTf9hN%ҤL(Y','',0,'?'),('~qIPIr','wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eY۬x2Y','gHn~<0^Ff88.%x8','',0,'?'),('~sB-=-xw','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/LazyOption.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/LazyOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mo`!m,~_G','_ydt|ZјG^uUH5}3nO','',0,'?'),('~t9CzStyVg','wp-content/themes/kadence/template-parts/archive-title/hkb-searchbox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/hkb-searchbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jMgF~;','~!\"U,fbH`_*e(&E%;3{P','',0,'?'),('~uITCQPjq','wp-content/plugins/kadence-blocks/includes/assets/images/masks/diamond.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/diamond.svg',0,'l4<-ENOY','l4<-ENOY','D#m93ӑ]{4kv*/`,','',0,'?'),('~}{ >D}<','wp-admin/css/code-editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/code-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','03;7v:P','JlAZqFv<3I^k','',0,'?'),('~$\0ea','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_Schedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_Schedule.php',0,'vt;ZNmļ','vt;ZNmļ','\"-ܢumsw>vuJԡX[6','',0,'?'),('~̤ÀHO','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/Resources/stubs/JsonException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/Resources/stubs/JsonException.php',0,'cgᬽ\Z^{a','cgᬽ\Z^{a','mq5zug-r)nT[','',0,'?'),('~ReOXf2`','wp-includes/class-wp-post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6<bTr','	m\\|+3´x3Vwg','',0,'?'),('~36isqn','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/GoogleAnalytics.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/GoogleAnalytics.php',0,'[B[c','[B[c','P@2x	X@n|','',0,'?'),('~C023*J','wp-includes/blocks/more/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w.,$#>','+穩T^3=@5_jzǼ[9+N.','',0,'?'),('~*޿S̙e','wp-admin/images/freedom-3.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/freedom-3.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(縫\ZX֚1l','集(;F\nkQu','',0,'?'),('~XPO\n*̕&4\0','wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Ai_Cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Ai_Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','77\"*Kd8q','Qc+ȋsfZb3d4	:','',0,'?'),('~Pfԩ~1LYw','wp-includes/blocks/button/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oc0RK[1߄-bg','6z(s*V@dE\0CCIo/ݓ!','',0,'?'),('~ťs\01y$L}h','wp-config-sample.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-config-sample.php',0,'TC YRʫ<','TC YRʫ<','4yA>k3U&Jn7@$Ɨ-z[','',0,'?'),('~Ӹbc\Z$@$*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8b;=YXJ)շ','̆%\rNn_n\'EݸږW{=D','',0,'?'),('~\n\'$<','wp-includes/blocks/details/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z$Up=','hD0DcErCQ6&0VLf|љ\r','',0,'?'),('~i\n餓','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/CharacterStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/CharacterStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rHvaC巇zu','&7fMƔpB[#-,7','',0,'?'),('~!ۘr)W','wp-content/themes/kadence/template-parts/footer/footer-html.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1F}R;m\0Z\\','K\n[Z\"m?43Q78i8zVH','',0,'?'),('~-!ƼPֈց','wp-content/themes/kadence/assets/css/src/header.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/header.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0rC\'ҽ','\rrLpOdU/oinkg탎{','',0,'?'),('~AA3dh޽yM','wp-content/plugins/shortpixel-image-optimiser/class/wp-shortpixel-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/wp-shortpixel-settings.php',0,'auzRnEˏ','auzRnEˏ','cK6\0#>Y!(OW{mh','',0,'?'),('~DK-nB\r','wp-content/plugins/all-in-one-wp-migration/uninstall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gll^','pOEQ-KX\rͲTӣο*@0`','',0,'?'),('~F\Z>*(','wp-content/plugins/wp-rocket/views/settings/buttons/link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/buttons/link.php',0,'$2q[0ya)','$2q[0ya)','SW(Ȉ-9O7\Zd(QaK^','',0,'?'),('~z(hB\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/ServerException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/ServerException.php',0,'g|Zo}','g|Zo}','gڇ$z\"c@rN1)','',0,'?'),('~[\"Au)lֺ','wp-content/themes/kadence/assets/images/icons/credit-cards/diners.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/diners.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sn݄D?.','D\\j*Ciï77\nJ:^L@EI','',0,'?'),('~\r/O[\Z\0`','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-dynamichtml-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-dynamichtml-block.php',0,'Kf^IhoW','Kf^IhoW','&\0Obh	oǇy3աzٵʳ','',0,'?'),('\0\r\\xIhJ\n|q3','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\"RFw','RGm2fc0=~ǔy@2	$W','',0,'?'),('0bX<zS}','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-contact.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-contact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ti=jz&s','&<\nZ\Z\Z夃8L5\0eL\'A8\Z+M','',0,'?'),('\n-v~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/TimeoutException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/TimeoutException.php',0,'F~O$5FvW','F~O$5FvW','gOf4Â,8uE4j-zI','',0,'?'),('ldKм','wp-includes/js/dist/components.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/components.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GA{g6Wm','l&/ɲ/xa\'~Ut\'w[Sv','',0,'?'),('\\pҪt\'\0穯`','wp-content/themes/kadence/template-parts/content/error.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y1OO-}k','zw?U;tbbʤ','',0,'?'),('@o=z<F%','wp-content/plugins/wordpress-seo/js/dist/externals/componentsNew.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/componentsNew.js',0,'E*\ZR@#R','E*\ZR@#R','ZP27\r++t/ARIV]<{f','',0,'?'),('.\\\\JQ-Y','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-install-plugins-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-install-plugins-exception.php',0,'Ѣf96*/i','Ѣf96*/i','CHaF];\'P\\\'sn&İnB>','',0,'?'),('.l+8z#Js','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'kD[}yPz','$sFOwoܬ!t`Mi7+','',0,'?'),('6\0OkvzfTN','wp-includes/js/jquery/ui/effect-fold.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-fold.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':U\Z\"U','	V?TŚ|H^UދIJD','',0,'?'),('6>n@^!g','wp-content/themes/twentytwentyfour/theme.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/theme.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`U݅;\r','?똒\0Q戴Wi|G}$ak`	','',0,'?'),('7.ʋ51','wp-content/plugins/wordpress-seo/src/generators/schema/person.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/person.php',0,'ǡRv,q\r2','ǡRv,q\r2','L߆91g8ﮢ*`b5rĖOҕ','',0,'?'),(';4\'L','wp-content/plugins/kadence-starter-templates/dist/starter-templates.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/starter-templates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CLy','%?ru{qÔwԔ;9|0J9','',0,'?'),('@={&}_','wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`^ɤ=R@\0>d','}E˷N.@0		','',0,'?'),('B2j70/zLq','wp-includes/css/dist/block-library/classic-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/classic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>dc5?','?\"4AHCǓ_/','',0,'?'),('JBk829Ta','wp-content/plugins/wordfence/js/chart.umd.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/chart.umd.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b?\\ٰYgD\rz','Od :X RU+@9','',0,'?'),('cJweIOIq','wp-includes/blocks/cover/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D<]z ','ge(C5M bXEQ`B','',0,'?'),('j&^b','wp-includes/ms-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~K1Zm98o[Ŋ','*JlULrbΘ6kOeHD','',0,'?'),('j^SN-O ','wp-includes/css/dist/components/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/components/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2gث','!{rB4ίZ^`>Ԥd%!','',0,'?'),('knpx?yD<','wp-content/themes/twentytwentyfour/assets/images/icon-message.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/icon-message.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}-\0Yv','ᙬʢPjO w[5\\C)u','',0,'?'),('tS\"lZcQ','wp-admin/js/auth-app.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/auth-app.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','04z>s,\r','S\\|3m4:ϭqB\r7','',0,'?'),('u6xijR֠z','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-checkbox-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-checkbox-block.php',0,'mYFͧ\\=!Z','mYFͧ\\=!Z','NYR_l(#`o1G*V','',0,'?'),('}BfkV=15lg','wp-includes/blocks/avatar/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*(\ZIz','e2,ՔenCL]s+','',0,'?'),('~!NYbT;D','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/StreamHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/StreamHandler.php',0,'4<^-36','4<^-36','RpS5۪,,$7eg;t','',0,'?'),('Dt:*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r<\rDǪ|!','2g\0ťWDxv8w	)2-3\n','',0,'?'),('z~48lGo8','wp-includes/js/dist/style-engine.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/style-engine.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N8 K뵉Oԋ','j1@ksw!6s)nެ9?]','',0,'?'),('D8-¤rl','wp-content/plugins/wordfence/images/logos/shield-care.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-care.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	 sh߉\0tv','f2\"(>lH93 	C$<','',0,'?'),('mᵍX\0\n','wp-content/plugins/wp-rocket/views/cpcss/metabox/container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/cpcss/metabox/container.php',0,'tUnN,a<','tUnN,a<','ths\ZG0of*]hkpnv','',0,'?'),('%G]f@%Z','wp-content/plugins/wordfence/views/common/section-subtitle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/section-subtitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n^\r#fstW\Z',':taQE&͜s١\nGb\\Z S1{','',0,'?'),(':s;A/5yP','wp-content/themes/kadence/assets/js/src/shop-toggle.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/shop-toggle.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KW-o5\Z','ZW1i		Y-}Z9jZ{','',0,'?'),('ʷftyN','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/CurlClientState.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/CurlClientState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\Z\ZqS','V| J>}c\0C7$','',0,'?'),('BC;st3D/','wp-content/plugins/wordpress-seo/src/exceptions/indexable/not-built-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/not-built-exception.php',0,'\ZW	-#','\ZW	-#','X왶ѓ>076k2','',0,'?'),('\"ޏQlKam','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Up\"Q\\sz-','αzQj9D51&Af8kK31','',0,'?'),('СqD֚?iX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MyWn','DZ_1dȐrFŷb	C*Ñ','',0,'?'),('>b;\n','wp-content/plugins/kadence-pro/dist/header-addons/header-tertiary-navigation-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-tertiary-navigation-options.php',0,'\Z:I1C\0ċ2','\Z:I1C\0ċ2','ғm\0x<@=o$Wa3 q*','',0,'?'),('KQ}U&;&Q','wp-includes/meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8	˒Z\'ojd\0','2Aj\\5\r*RGd,@L6K','',0,'?'),('kDXNh#}I','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w@4\Z(%:9','V\"q)pYFG','',0,'?'),('trεF_ ','wp-includes/js/wp-emoji-loader.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vt\ZUO7ls:\Z','D`%Å9_]M%vzVxZ(\0','',0,'?'),('ؖ\\z','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceNotFoundException.php',0,'bh\\oR','bh\\oR',',7=T3*rZ\\7yaX&Dtz','',0,'?'),('SiVc5f','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ParameterBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ParameterBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɑS=s%;','73b.?2ݒ։m?o','',0,'?'),('d;hQا','wp-content/plugins/wp-rocket/inc/deprecated/3.12.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.12.php',0,'5nCr','5nCr','\"lIMNv	_	,MmpBs','',0,'?'),('ShJ$OK]g','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSSGeneration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSSGeneration.php',0,'q<=d3J\n','q<=d3J\n','M$#˜ѳB(Cit^GǠ','',0,'?'),('͍ρbB','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':CVFІR',',)|Fa悃f>;J\\','',0,'?'),('E\Z\0Fa','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/CodePointString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/CodePointString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~,VT	3p','=h>IhXC.rដ{iHCk>Yz','',0,'?'),('	_\\<J?TLa[','wp-content/plugins/kadence-starter-templates/dist/images/taxes-bg.fe6cba5c.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/taxes-bg.fe6cba5c.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rH7CzZhwT','nDA#\\Xq\0IFmԘ','',0,'?'),('QRC-hbT','wp-content/plugins/all-in-one-wp-migration/changelog.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oڌ;1\r\rp7ߊ','q2y~v{&,EL3h=','',0,'?'),('OpB/$&','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php',0,'u,\'b=e','u,\'b=e','H3OWAe{za\0!=z_','',0,'?'),('x%7g:','wp-content/plugins/wordpress-seo/js/dist/new-dashboard.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/new-dashboard.js',0,'	V<CGZ\Z','	V<CGZ\Z','72) Sf25ި4#zյ','',0,'?'),('pbܗ','wp-content/plugins/wordpress-seo/js/dist/crawl-settings.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/crawl-settings.js',0,'E3bHWuܴP','E3bHWuܴP','j9fp*prOr$	','',0,'?'),('&Ƀ$(z','wp-content/plugins/wordpress-seo/src/generators/open-graph-image-generator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/open-graph-image-generator.php',0,'\'eiK,	?,','\'eiK,	?,','n4w:KCAFMTf2[','',0,'?'),('3-f\n','wp-includes/css/dist/list-reusable-blocks/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/list-reusable-blocks/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OJ0x^]','*o@V+[)n\'4]ȧf','',0,'?'),(';!1>YxQ','wp-includes/js/dist/block-editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wpCJI2<','}RP3kQǙ\"sUȌ-','',0,'?'),('GԟCs','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-offload-s3-assets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-offload-s3-assets.php',0,'vE)|\ZZ/=a','vE)|\ZZ/=a','k=\0ZEg\'B%iD%6oPA','',0,'?'),('LkkB ','wp-content/plugins/wordfence/css/license/premium-global.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/premium-global.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٬5&]U\0','=:I#_A\\R֣XFSOrec','',0,'?'),('fdW1\ZxEWJ','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Subject.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Subject.php',0,'.;Yq@xpU','.;Yq@xpU','A\"lQ9s`(E4?tT+ ','',0,'?'),('Bzqt','wp-content/plugins/wordpress-seo/js/dist/indexation.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/indexation.js',0,'G-)R7?\n','G-)R7?\n',':r]\rF!2έ}SmD{x','',0,'?'),('HXS0.!rG*M ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php',0,'.o34;+ ','.o34;+ ','d<sVobY	<Ӝbz5ty','',0,'?'),('ah#8c','wp-includes/js/tinymce/themes/inlite/theme.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/themes/inlite/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ODIc`EJ','pvT5Z>jj\0\0fxa/g=&','',0,'?'),('A2L\"F}4','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-base.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-base.js',0,'H>aӾ\rn!.','H>aӾ\rn!.','sm>6}V(k|XÑ5','',0,'?'),('Mx-#*\n$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php',0,'/6ޟMD\nPk','/6ޟMD\nPk','y	C\Z9X̔\\2<ZY\0\'','',0,'?'),('#\\7\ZhGl','wp-includes/blocks/post-navigation-link/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r[u׀?vFq!u','R/(+\"	~$W\r@]c=@Jw\ZG','',0,'?'),('LLz$ɵ(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php',0,'hzԴG','hzԴG','nUI{&nn9S\'T,4eW','',0,'?'),('\06֮','wp-content/plugins/wp-rocket/inc/classes/logger/class-stream-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/logger/class-stream-handler.php',0,'\'hY!\0B=O','\'hY!\0B=O','\ZWsw>kv\rnmOfV~ڬj','',0,'?'),(';fa-B\rW`','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':xM~v#&','RLe}xkXg/d5݊ǣOW','',0,'?'),('r=cMz','wp-includes/js/dist/is-shallow-equal.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/is-shallow-equal.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%+$d=,.)','yQ9I%H4Bt5)','',0,'?'),('%	+곂4{:','wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oѕbYR','tiioP7,R|qX)ᆊǮf@Kv	','',0,'?'),('0ႝ}1','wp-content/plugins/wordfence/css/jquery-ui.min.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/jquery-ui.min.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}O^0tGGQ','ٍ$rb=phxK5]8QRjn4','',0,'?'),('_+.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MoodleInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MoodleInstaller.php',0,'_\0@{(Ye','_\0@{(Ye','+/6|{$u#MQ-&\\`m','',0,'?'),('!h\Zɨ$\"R','wp-includes/css/dist/edit-site/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-site/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y[8Yf~Yht','		{Q,lz46/}Ñߍ\n','',0,'?'),('ںuM[\r','wp-admin/images/wpspin_light-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wpspin_light-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{%-E;|','u)JA92$N8\'F','',0,'?'),('Nxډ\Z8yH\\','wp-admin/js/theme-plugin-editor.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/theme-plugin-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?tS~5~','wT}υ*e}vW*!EH','',0,'?'),('sSki<4\'c-6','wp-includes/js/wp-embed.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wbsxgp)q2*','.b$-\'wP\\/\"OXH','',0,'?'),('y	Be8','wp-content/plugins/wp-rocket/inc/Engine/Saas/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/ServiceProvider.php',0,'vװmT','vװmT',':sZʲ;I#K^q*8','',0,'?'),(')e.\nO','wp-content/plugins/wordpress-seo/images/video_plugin_assistant.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/video_plugin_assistant.svg',0,'\"0GiQfi6','\"0GiQfi6','<	26^S]įA-0L}2` P','',0,'?'),('HoߚZ','wp-content/plugins/wp-rocket/inc/Addon/WebP/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/WebP/Subscriber.php',0,'0m<Σ','0m<Σ','43w57`=1u3Nێ:12䍟ȡ','',0,'?'),('+G2|A#','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php',0,'0,?%8nT','0,?%8nT','3lAewmkt3^','',0,'?'),('ܯYP','wp-content/mu-plugins/wp-cli-login-server.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/mu-plugins/wp-cli-login-server.php',0,'Kbacc\nxI','Kbacc\nxI','P\nG]\02~wqbP','',0,'?'),('X}D2ct','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ChunkInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ChunkInterface.php',0,'b`}P!\0.\01','b`}P!\0.\01','X7x),9Y*ägIP/<','',0,'?'),('^VjLZX8t','wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/installation-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/installation-integration.php',0,'?j(X%UĠc','?j(X%UĠc','GՆ!nGAM^(0*pH;','',0,'?'),('e97aJS','wp-includes/images/smilies/icon_smile.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_smile.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3.)2p','ˠ\",RʨTr=orЗ:','',0,'?'),('k<>ƞ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/HttpExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/HttpExceptionInterface.php',0,'*^\ZSJm	','*^\ZSJm	','&BJF=T K %h(\Zp','',0,'?'),('XQd9rڼ','wp-includes/customize/class-wp-customize-themes-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-themes-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"PK=15?L','3ࢊkXzW _s_Wn','',0,'?'),('cdcƚq~%','wp-includes/blocks/navigation-link/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i&ѶRp%','D.rO <BdZh8\r~W]','',0,'?'),('go@>3:ۏՍh','wp-content/plugins/wordpress-seo/inc/class-wpseo-replacement-variable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-replacement-variable.php',0,'>\'%bC','>\'%bC','|.#fZZY	9~\ZrK','',0,'?'),('LOuzd-J','wp-content/plugins/kadence-starter-templates/assets/images/masks/blob3.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/blob3.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\n*X\n]me','(Wk5:_vA','',0,'?'),('8yY;o;Vb','wp-content/themes/kadence/assets/css/header.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/header.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>J}*gp',']^yFn* \n#V\rI\Z','',0,'?'),('%\ZTc.FG','wp-content/plugins/wordfence/css/license/premium.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/premium.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z+DqKҍU','җdUAEqm:,*ɕ','',0,'?'),('(Uz*Hr鐟','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WinterInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WinterInstaller.php',0,'O󕋚zM9l^','O󕋚zM9l^','\Z19P=bɠͦ|;@~-v','',0,'?'),('/0k{P0ǋ','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/BooleanArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/BooleanArgument.php',0,':#d_KW',':#d_KW','ll]g{.Tӊ{0','',0,'?'),('0\'reXL1\r','wp-content/plugins/wordpress-seo/src/dashboard/user-interface/new-dashboard-page-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/dashboard/user-interface/new-dashboard-page-integration.php',0,'h!˳$X&k>Q	E','h!˳$X&k>Q	E','ȃě]MJp4Z=csgG','',0,'?'),('=^ԉRu39M%!','wp-content/plugins/wordpress-seo/src/integrations/admin/migration-error-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/migration-error-integration.php',0,'\r	؈\Z_W28','\r	؈\Z_W28','v*G\r$EZ:۞f','',0,'?'),('?L4*i','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-process.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-process.php',0,'3ǆ{/%Adf','3ǆ{/%Adf','$g~ZI2:ߨ[!Gڨ_1','',0,'?'),('?Z;ݱM','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color-link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',l24a\rZ','m>{$	iq4-BqУ2Y','',0,'?'),('auDmfKa','wp-content/plugins/kadence-blocks-pro/includes/countdown/class-kadence-blocks-pro-countdown-cleanup.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/class-kadence-blocks-pro-countdown-cleanup.php',0,'>劯hB','>劯hB','ؖ	SF?I0N@IV+TM]','',0,'?'),('cCEqX.`o{','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-themes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rdy1:^','أ.W|\Z?es>L#l','',0,'?'),('el5sEúQ','wp-admin/js/media-upload.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media-upload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WC}KF j','w@S¼|\r>R4\nN3YsS','',0,'?'),('}`;[ۖ?','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php',0,'	!p','	!p','I+>!]@pbi?+6L%$1\0h','',0,'?'),(',CUU9i-','wp-includes/css/wp-auth-check.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-auth-check.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^#N!^D',')}faW`mHӵr)KZ','',0,'?'),('N:K0l','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Settings.php',0,'p05)ڐmp_=','p05)ڐmp_=',')TIإd.D<>*N菵(4','',0,'?'),('Z,Qԃa,9','wp-content/plugins/kadence-blocks/dist/blocks-advanced-form.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advanced-form.js',0,'{J_{$	\0','{J_{$	\0','%8勫1zMvN-	*3[5','',0,'?'),('? EռU','wp-content/plugins/wordpress-seo/images/link-out-icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/link-out-icon.svg',0,')\"&S',')\"&S','|>Ѳ<_]*[GXr$J','',0,'?'),('8k}n','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_NullSchedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_NullSchedule.php',0,'lO^53\Z','lO^53\Z','-f !=!C~c]jmt%','',0,'?'),('`Lm5Zr1','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SDޗOª&z','gmЬ-\\i}WDF*Cp','',0,'?'),('ȉV?	])A','wp-includes/js/media-views.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bSWs',')K@q=bnwe){cH','',0,'?'),('Vk8`+','wp-includes/js/dist/development/react-refresh-entry.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/development/react-refresh-entry.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>l_T,','G\r׽fnyYE\0ywE','',0,'?'),('`hNkON8','wp-includes/blocks/file/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\nG&nOR','Ӳs55؈Ix','',0,'?'),('W=ԘHdz','wp-includes/class-wp-site-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-site-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ALIצM`Lz|l9','td}##3qA~ZPu~%:','',0,'?'),('X-4J_3','wp-content/plugins/wordfence/lib/wordfenceHash.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y!\0-?*L','3JԄ3kUPbX;9)','',0,'?'),('\'>[·','wp-admin/js/user-profile.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/user-profile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6MZpT*#\"','WU[2&=˖z1[Q`HuVS','',0,'?'),('@h	<+qЙH','wp-content/themes/kadence/inc/customizer/options/footer-bottom-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-bottom-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZnCf@M,','l&T>5*\\72ħ','',0,'?'),('݈H.','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M3O-_>z','34TFS[R<!=},#f','',0,'?'),('Pdc3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.<$E\0g:T','ƝER%f\\ɾ\rv8C^h','',0,'?'),('HJ,Yfu','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NNxFN\Zr˛|','T#!yfvr;ۡ^ITe\0o&','',0,'?'),('Vs\0','wp-content/plugins/wordfence/lib/wfIpLocation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfIpLocation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s+̙gO;*XW','jԚ6Ĕ-	B1&+n','',0,'?'),('.:*Ka)&','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_InvalidActionException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_InvalidActionException.php',0,'2B_Qu\Z','2B_Qu\Z','KcqVZ`l֢pĪmWsL','',0,'?'),('q_ġ>','wp-content/plugins/wordpress-seo/inc/class-yoast-dynamic-rewrites.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-yoast-dynamic-rewrites.php',0,'%7W','%7W','gHn*O\Zef<u^vfVb','',0,'?'),('OXg]<f@','wp-admin/css/farbtastic-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/farbtastic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S@[\\,3|!','Sm\';d`eM0i=?>?{','',0,'?'),('uWۓWP^(L','wp-includes/blocks/post-navigation-link/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OvSi?\0Â(','ŶCϭhF0:2Iv\ZT','',0,'?'),('3Ƈe(ú9','wp-includes/js/jquery/suggest.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\+A)n.;','I<{\04`<!jZ8돲DHW','',0,'?'),('bN8hk','wp-includes/rest-api/search/class-wp-rest-term-search-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0a^bR\\r','0EtZ[ĈiuО','',0,'?'),('\ZLNGd5Ds4','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/OneCom.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/OneCom.php',0,'(9ƢVu','(9ƢVu','Xx-Lt\0\'tUt8n\"s8','',0,'?'),('\\(wBI','wp-admin/network/update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l	ΒRU;ppb',',!m4fNR\nB^','',0,'?'),('(tTlDά7&MP.','wp-includes/js/tinymce/tiny_mce_popup.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/tiny_mce_popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B7I10d','\'З/!\Za!~)1D','',0,'?'),('(v}ߟΆF','wp-content/plugins/kadence-blocks-pro/includes/query/query-card-cpt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-card-cpt.php',0,'׊`s-Xˁt','׊`s-Xˁt','E\n\'\Zv\'VklW','',0,'?'),('/	E:KR寥v','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V[SPkC','ںمŴ}C:ø=~Q(8$Q','',0,'?'),('9EǊ}\n>@b6','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Utils.php',0,'TW05TA','TW05TA','@RP5a=EOHRj\"b>Z','',0,'?'),('@F Ӡ(e*[','wp-admin/js/theme-plugin-editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/theme-plugin-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-J~',' |DO?{ٿ%זY}О','',0,'?'),('Bهv<Sv稳','wp-includes/SimplePie/Parse/Date.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Parse/Date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\\O2C[\nջ','=<ei|MqZ]V[]&I-q9)g0','',0,'?'),('D0\Z','wp-content/plugins/kadence-blocks/includes/gfonts-array.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/gfonts-array.php',0,'@wTڌ','@wTڌ','FS$˾OLU\Z}TAߠ|)SIϲ6H','',0,'?'),('F GJBs7','wp-includes/js/media-models.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ychx*{ədW','A5S(|GFKE~','',0,'?'),('MȮs%}+=','wp-includes/blocks/latest-posts/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^L|','J>\0+2jVf԰+Gy5[1','',0,'?'),('Rdl$[*W','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/NativeResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/NativeResponse.php',0,'O	Xo֍P`s','O	Xo֍P`s','A,ZTVj02[)iq3','',0,'?'),('W= \\\'x\"W}d','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','թK^㥾','M8:naƋGZqQdý!\'&g1','',0,'?'),('Yػ甩*','wp-includes/css/dist/edit-post/classic-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/classic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','je@dOV9','\ZGTޜHc3#L-QXl<I','',0,'?'),('YX Ղt&','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Events/Event.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Events/Event.php',0,'d[|:+Kan','d[|:+Kan','mao㌭粯X-׭md$<?f','',0,'?'),('`|y	Ihv3','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-factory.php',0,'jt)]t2M3|q','jt)]t2M3|q','󜝐GzhƄ\\l𗊑̀!','',0,'?'),('cr)Ft','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/BodyRendererInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/BodyRendererInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e>yfp','ͤ\0λ*{&GqDEiU','',0,'?'),('l;$	\n','wp-content/plugins/wordpress-seo/js/dist/dashboard-widget.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/dashboard-widget.js',0,'\r\\gVڀڄn','\r\\gVڀڄn','hs|ݣG`4rՄmc ','',0,'?'),('lv^:)','wp-content/themes/kadence/inc/customizer/options/lifter-member-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-member-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KvJ;4<Ml','\'o\rWۑ\rF','',0,'?'),('mi\ZtT(_\rp','wp-content/plugins/wordpress-seo/js/dist/block-editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/block-editor.js',0,'?j#ruG','?j#ruG','D;j)c؛u.{g_ iw','',0,'?'),('p)T\Z35','wp-content/plugins/wordpress-seo/admin/class-gutenberg-compatibility.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-gutenberg-compatibility.php',0,'yκw),Z','yκw),Z','0HxŐxo3Pd\'hS','',0,'?'),('w5)','wp-includes/css/wp-embed-template-ie.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-embed-template-ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6	؞мq ','o+8]SuH.CgR9&+\\W','',0,'?'),('yj9Gu%Չ','wp-content/plugins/kadence-starter-templates/inc/class-starter-ai-events.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-starter-ai-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+9g~cJ`','y75,dbDz@4,y`?\Z','',0,'?'),('j_F-p>','wp-content/themes/kadence/assets/css/content.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P~~H@y',',uw.шU\0E|㟼','',0,'?'),('h!\"Uwk,8','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/mailchimp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/mailchimp.php',0,'<~~) 00','<~~) 00','JxXY$GdBAf:','',0,'?'),('\0+OW+','index.php','/home/nginx/domains/atlantagynecomastia.com/public/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]#NX,','Dz\n}_7x,9t:\'\r','',0,'?'),('Q/W\0vI','wp-content/plugins/kadence-blocks-pro/tables/KbpQueryIndex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/tables/KbpQueryIndex.php',0,'[JFӈIZ','[JFӈIZ','ݾډ0(v\\rac','',0,'?'),('е\"kjG','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fCfo hF','2\0^8m<\ZQ~IQJY?','',0,'?'),('.M2\\','wp-content/plugins/wordpress-seo/admin/class-plugin-conflict.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-plugin-conflict.php',0,'ԵO,5wVL','ԵO,5wVL','\Z7E@^Ŏl.\0#','',0,'?'),('A1\Z;','wp-includes/rss.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i}7$VCt\0','#بwAJrhV!<C\r)5o:o','',0,'?'),('V=	\"]\Z','wp-content/plugins/wordpress-seo/src/conditionals/updated-importer-framework-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/updated-importer-framework-conditional.php',0,'d!kSＹ','d!kSＹ','b0},?/Q&No','',0,'?'),('{hB-o:Ih','wp-includes/blocks/query-pagination-numbers/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@E(1˱eB','O;\nV[%\Z3Ehdx:{','',0,'?'),('ܥƙV!׈1','wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Np+','):WD%QS6BZ7(','',0,'?'),('vJT5q','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpListener.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JO=JůUV-','D̩+r6AM\"k|Fa0\\','',0,'?'),('岠jf`mwj*','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php',0,'EFn[3I4$i','EFn[3I4$i','2q]C>0!,qVU::,\Zf.4l','',0,'?'),('vA\nGr3C9`','wp-admin/includes/class-wp-internal-pointers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-internal-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Yq#ӇwA)','>8q`7a\"v*G<Ht','',0,'?'),('7x5\0},xp','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*4|jsRt\0','ՑsmǚMQq薍q @d\r^','',0,'?'),('d!w\'~9','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Qq-5}','\r?\"MR`!e*e$mAw?X','',0,'?'),('\07&&s#6','wp-content/plugins/kadence-blocks-pro/dist/blocks-slide.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-slide.asset.php',0,':l[Wvm!	f',':l[Wvm!	f','lqiϷ%Ҩu\\0Ap','',0,'?'),('Hg	','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttplugClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttplugClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5zD\\|5^7','js1ضn\Z*\'EMlo|/(','',0,'?'),('0\0c^ǌl','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ChefInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ChefInstaller.php',0,'ßN;$2!fG','ßN;$2!fG','>h5\n\"uADbr}\0q','',0,'?'),(')o3\ZKL\0k','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Contracts/Sanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Contracts/Sanitizer.php',0,'ZIs&*Q-OS','ZIs&*Q-OS','b/^ta4WՉ(','',0,'?'),(',JI&Qaeԥ','wp-content/plugins/kadence-blocks/includes/resources/Health/Health_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Health/Health_Provider.php',0,'wInl#','wInl#','ĈASi[>|η(X3Lc','',0,'?'),('4mo~\"fh14','wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-presenter.php',0,'JxH?hb`sy','JxH?hb`sy','zϕjD6ĤNRY,[VM2VX=','',0,'?'),('>֗*','wp-content/themes/kadence/inc/customizer/react/src/common/swatches.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/swatches.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AVʜ7(','\\̎}ΏZŕ^;e','',0,'?'),('Ebl8y}','wp-includes/js/tinymce/plugins/link/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/link/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*NȒmQ','`3cYQ9Wޭ#lpS+G4','',0,'?'),('EmVh޿\'r$<)','wp-content/plugins/kadence-pro/build/meta.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/meta.asset.php',0,'gG.6=7q?','gG.6=7q?','_tS_aSC','',0,'?'),('WnJ.\'/x','wp-includes/blocks/embed/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.LRәB>','9h*y=,OA\\\Z\0~_','',0,'?'),('Y.|g{H\\b','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(1i;','&.9\ZEٱ8aJqK5`w','',0,'?'),('h\'hQ{9`','wp-includes/Requests/src/Exception/Http/Status401.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status401.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RuM6/R\\','9`s-KGHےw3޲7	','',0,'?'),('oVu4;f','wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-integration.php',0,'duI(Y','duI(Y','\\Ouip\'(y]	+\nZ<}','',0,'?'),('WkV','wp-includes/blocks/comments-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','哊ϦQu:','\"se47igٕF','',0,'?'),('^$1ʛW','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php',0,'#\rqIITg/','#\rqIITg/','y7\">_-dVq0hEŚWBu\0','',0,'?'),('?z6aDz','wp-content/plugins/wordfence/images/loading.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P','j*edoX~7&N9|L','',0,'?'),('01&YI[J.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php',0,'Cs;E3[n9','Cs;E3[n9','$D	[_}±U5-f<U\ZWW	','',0,'?'),('LKkLAY','wp-content/plugins/wordpress-seo/src/user-meta/application/cleanup-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/application/cleanup-service.php',0,'aDe2gϞ~P','aDe2gϞ~P','ȱȉ]\Z\ZNbu\\\0nD)R,˙}&','',0,'?'),('4L@fi}J{̨','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Kinsta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Kinsta.php',0,'o8j/@Z','o8j/@Z','#swu,n Z+b7#g0','',0,'?'),('ۀ\nC','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php',0,'HPfm tӥW&','HPfm tӥW&','89S$26>Ţ!&fgXII','',0,'?'),('и+:3XnNtexX','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{W7h>','	2mw3)zWgv{AfHu`Co','',0,'?'),('Ș		\0}P','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-factory.php',0,'0*2*ZY.?8','0*2*ZY.?8','LOoMٸzӫ7!*s-&','',0,'?'),('ʆnD㮖(','wp-admin/css/install.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/install.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VOmp\\','sY))e5rϖi|Ბ{','',0,'?'),('j5fj','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B؎S-','R@@lQF܃\'(m^znwnxqO[','',0,'?'),('ʟ=|ƵX','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/PartialFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/PartialFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V`(Ο9Ȏ','?%@\\\Z\0yঀQ\nt%:핌H@6_U','',0,'?'),('}*IҪD+.','wp-content/plugins/wordpress-seo/src/introductions/infrastructure/introductions-seen-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/infrastructure/introductions-seen-repository.php',0,'ʑ\n;)1ԛAw','ʑ\n;)1ԛAw','/ФvKT%񤎯9޴q3','',0,'?'),('˟&昌	9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TransportExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TransportExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cj	>>S','gO`Z\0(L~Gh9','',0,'?'),('KSEōL3','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V=r@ٸ~kt','|J\0R]-23zTH?U','',0,'?'),(')\"C}JZ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\V}p$g-<\Z','ٞQjkƆλ{&=Zd(','',0,'?'),(')ũ2[	4_a','wp-includes/class-walker-category-dropdown.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-category-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԂIV*t','Iw^KHĶ\\s~BW㺾fI','',0,'?'),('+o28E+K%;','wp-includes/PHPMailer/PHPMailer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/PHPMailer/PHPMailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gul4gV','bi\0cH6;`B4/>0R %/U(','',0,'?'),('30xbc','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php',0,'s,jğpX','s,jğpX','4s:(FnvkNhf3R\Z[:IGc','',0,'?'),('9	','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php',0,'8T0$8','8T0$8','+v\r$}ɧ)HJ\"p5b_d','',0,'?'),(':+[gCZ','wp-includes/template-loader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z	ҿ܌~','\'4h 䱺[E%JH','',0,'?'),(':%滘VM`','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php',0,'CDp\nXmL','CDp\nXmL','o6Tk;M\\GIaӅf','',0,'?'),('Fo6\'Dt~ه','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/ValueError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/ValueError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','84)vsW[','7i$NV <\rv*Ty','',0,'?'),('H	 Ɩ86In','wp-content/plugins/wordpress-seo/src/loadable-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/loadable-interface.php',0,'J\\;TU*@l;','J\\;TU*@l;','cԤ\ZhEA2fԾIƝx-','',0,'?'),('H@d.Rem3','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-container-tablet-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-container-tablet-block.php',0,'};}舭_g','};}舭_g','L`%Ɵ ]M۳|Sl40eVO;','',0,'?'),('Yr~Ҁ:$!','wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[{7DYhЧmf}\rf','\n?\raؐAL:, ={L5}+,','',0,'?'),('i2O׍+sX.','wp-includes/js/jquery/ui/core.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/core.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>:-\'','u?TNKqQ*x/-Z.v','',0,'?'),('k\nh','wp-content/themes/twentytwentyfour/patterns/hidden-search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*{{*LIxx','G^I5]8P]F)	,`g	','',0,'?'),('b]ٺ=0_','wp-content/plugins/wordpress-seo/src/conditionals/news-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/news-conditional.php',0,'MU{)O','MU{)O','QVQbK_ΎRƕ]-mlY<9iqV','',0,'?'),('@<N8iy','wp-includes/blocks/separator/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EOcm{','/`i-^3җ;BT;#\0r}:j','',0,'?'),('PM˝=U','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʿm\\m10f*)','	mY_\\\'.]WyW00','',0,'?'),('f;FGDm7','wp-content/plugins/wp-rocket/inc/Engine/License/API/Pricing.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/API/Pricing.php',0,'tDN8$8o?y \\','tDN8$8o?y \\','*k;rO>nDN`]G','',0,'?'),('e-\nyV','wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Wwb>EyJ','\'~6ȝ\nBagzdQ','',0,'?'),('PUac','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YAG=bu','z,ͥt	<{@Y{iysc(SL','',0,'?'),('ؾZ$0ޝD','wp-content/themes/kadence/assets/css/src/_links.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_links.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D&lofJHf&֪','S9@s<4hG|0^Q&v\\|&\'','',0,'?'),('W ㏖k\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php',0,'b~7ov ,','b~7ov ,','Y_Otڍ^V_[\Z*(:2vFM','',0,'?'),('nvZYV','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n6G6)(P','CXEa/fPK{˾^j\"C3FeִS','',0,'?'),('#\"or`uX3','wp-content/themes/kadence/template-parts/content/entry_loop_meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C_*et','9bd?\0L O','',0,'?'),('\\%dhRq','wp-content/plugins/shortpixel-image-optimiser/class/Helper/DownloadHelper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Helper/DownloadHelper.php',0,'<.%v','<.%v','氎vkceiX)}4ϫs$','',0,'?'),('!#Ltht)8','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Scheduler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Scheduler.php',0,'&t1%m','&t1%m','z[A![Vn ?6','',0,'?'),('ZDl=컫','wp-content/plugins/wordfence/views/waf/waf-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UTFE`q!ȑG','s 97ܿ.ԜWN(}@\Z7','',0,'?'),('UglL\0`fM.n','wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer-process.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer-process.php',0,'s\Z\\u7t','s\Z\\u7t','	؁\\ҕ9]5{9rhK}-\nRgB.n=','',0,'?'),('{/趒Z','wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	n.}/|̻','u6׉ q~p~boQd%1j','',0,'?'),('\ZB~Wb','wp-content/plugins/wordpress-seo/src/values/open-graph/images.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/open-graph/images.php',0,'z!m:P','z!m:P','ฮiBX cMм1E`\n','',0,'?'),('!d{:ɬP ](M','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactory.php',0,'}UVY%M.s','}UVY%M.s','>fGm]?rUEE3Y\Z9\\4','',0,'?'),('$-xg/`orx','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/pods.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/pods.php',0,'Xw\0\ZwW','Xw\0\ZwW','b@QMGMK72=\\˥','',0,'?'),('Akj(t','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/MockHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/MockHttpClient.php',0,'\"I#:v','\"I#:v','/\"AT٣۞Т,y\' \rB','',0,'?'),('B%v6I\"Jb4ӡT','wp-admin/link-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/link-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UE~_a','T:LLhҬ~PW\n','',0,'?'),('KF.penTf','wp-content/plugins/kadence-starter-templates/dist/images/spa-bg.31525996.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/spa-bg.31525996.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wH鲷\0U','_T)#҇,ȏD\n5\"5','',0,'?'),('Vza*-<S','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/FileStore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/FileStore.php',0,'<Gt~<\\','<Gt~<\\','gZ7k]NRk͝*','',0,'?'),('bK\Zx\'C^w','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Filters/Group_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Filters/Group_FilterIterator.php',0,'N89Jn]/l','N89Jn]/l','IU\n96Ԡ*./O=','',0,'?'),('xcױͼ','wp-content/plugins/all-in-one-wp-migration/lib/view/import/oxygen.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/oxygen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f?!S1*','l? ug~\nPC,ǭ','',0,'?'),('~O^A\0n','wp-content/plugins/wordpress-seo/packages/js/images/connection-assistant.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/connection-assistant.svg',0,'#@\n9[\0E2','#@\n9[\0E2','\"J4+T^\n`KB@8N','',0,'?'),('9}#Ɓ','wp-includes/blocks/query/view.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\n5~K\'|','\rC줢(lܶm݈<텽Z','',0,'?'),('\n%SJP;4lK','wp-content/plugins/wordpress-seo/src/editors/framework/seo/social-data-provider-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/social-data-provider-interface.php',0,'AMu','AMu','	h[YNuLn\0cF@-PH`p.','',0,'?'),('w.(	=','wp-includes/blocks/navigation-link/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GaJQyb',')9vWlXci3ǙCa8/','',0,'?'),(';ځOh','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php',0,'3]BJ;Fʯ','3]BJ;Fʯ','eхe`JRV\n4Ș:{&X','',0,'?'),('B8XD3@Ï','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php',0,'zIQ4\"1','zIQ4\"1','B&?ߑLaJY\0gq.u\'Ȩ','',0,'?'),('I6F','wp-includes/blocks/rss/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7bl\'Unu	Ϧ','JT(1>5lrqL\\{','',0,'?'),('=eaĠC·M','wp-content/plugins/kadence-blocks/dist/blocks-navigation.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-navigation.js',0,'oEJDcnwj','oEJDcnwj','LlǋNܽ~<\rseN\Z!','',0,'?'),('>AB7Sz!e','wp-admin/includes/export.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tJ\nȝWE\\N','ܼ5D\ZE<׍@;izw8R#','',0,'?'),('\rMDenr','wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_700.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_700.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߷Ld*+L>','6[\05ZG34=15qSwiqJO','',0,'?'),('2P&zZ.ۍ','wp-includes/blocks/term-description.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ˣ[\"','uowQRBPN)x?Gg','',0,'?'),('6,/Rڎ2\rW`','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php',0,'T(a~G','T(a~G','ޮCpej\'|\n|?U!:','',0,'?'),('ǫU\rY','wp-content/themes/kadence/template-parts/content/error-404.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/error-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D2|<iSs',';o\re?c|\nпT`-В1mBx','',0,'?'),('PBw_nbyO','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D~)U>r=9-','rb~E\Zt?ʹGS\nG)H','',0,'?'),('7\n2t','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php',0,'Q\'LlEyř1','Q\'LlEyř1','QtMN[o\"<b\\:X4_','',0,'?'),('&pad','wp-content/themes/kadence/inc/meta/react/src/radio-icon.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/radio-icon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZRNUWn','Z072Z/rGc8e','',0,'?'),('|0O+]lU','wp-includes/js/dist/a11y.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kn} O','j /Z{%v3ruy?','',0,'?'),('bP찖&óH(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/ResponseStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/ResponseStream.php',0,'Z%Kd!k;EE','Z%Kd!k;EE','応W[AC5QcJ7','',0,'?'),(',!B`0^[','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9) g9','Mߥ^EGA6X0HVfU','',0,'?'),('\n8^XQ-l','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php',0,'|PHSE\\-R','|PHSE\\-R','kٽ+/2\n Klk\Zv	','',0,'?'),('Xa͟l','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/mobile/wp-appkit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/mobile/wp-appkit.php',0,'ʟw@[V|˔;yW','ʟw@[V|˔;yW','A4?} cpؿ};nFOCPTԇ','',0,'?'),('S?4\Z|y','wp-content/themes/kadence/assets/css/src/_mixins.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƦW--r','[lYeׯ/} ','',0,'?'),('s?Ph#%','wp-content/plugins/wordpress-seo/src/integrations/blocks/structured-data-blocks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/structured-data-blocks.php',0,'iڗaa\\dۀ','iڗaa\\dۀ','O	\"BT\'6|S:o-73S','',0,'?'),(' ~\Z@]','wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-interface.php',0,'4^pS','4^pS','z;Dqn#+N\"l,(DpGʎ','',0,'?'),('&G	iȬG2b','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\nX?E','v\'߈lM1#/\nb],','',0,'?'),(')( \nvXى','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Pressable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Pressable.php',0,'ZК\r,֯%','ZК\r,֯%','\'Id|NlAxwcM%','',0,'?'),('-֢]Mh','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-general-settings-importing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-general-settings-importing-action.php',0,']_;p(^',']_;p(^','Uoga6(@^\"h]+h4','',0,'?'),('1eUMV^','wp-admin/includes/misc.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sǍ8εJH','ň\Z)-@N(n}n','',0,'?'),('F_qCF!o4p','wp-content/plugins/wordfence/views/scanner/scan-starter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-starter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1xh3\\','U~AVkr%Rx$pZ1\"U','',0,'?'),('G\noc$I/g9','wp-content/themes/twentytwentyfour/templates/search.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/search.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b752]D^K,z','X*M}d)ďxiKfvsY?','',0,'?'),('HP֛ٚ ','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/TheEventsCalendar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/TheEventsCalendar.php',0,'wTpmst','wTpmst','`mUˆ\0stwMIGQ','',0,'?'),('N.,͏z1oM3','wp-content/themes/kadence/template-parts/archive-title/breadcrumb.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/breadcrumb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M<VmA=','olU7Ly=5s^XHw','',0,'?'),('N{VN˨4','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/AJAX/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/AJAX/Controller.php',0,'\0n~W|Q$p','\0n~W|Q$p','SfߪҼ\\ғٝK\0uH','',0,'?'),('SMVr|H','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php',0,'>K}n4W>','>K}n4W>','3&WO9-B2>yF화E1Z*e','',0,'?'),('YEvD','wp-content/plugins/wp-rocket/inc/front/dns-prefetch.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/front/dns-prefetch.php',0,'\\qy\"F','\\qy\"F','.1\Z(B\"\nC4:xB^','',0,'?'),('_i]6;','wp-content/plugins/kadence-pro/dist/woocommerce-addons/cart-notice-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/cart-notice-options.php',0,'PJyc߽#Oe','PJyc߽#Oe','Ҿ/*.>sI\ZQM8','',0,'?'),('hNzL3~Ԑ','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-pricing-insurance/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-pricing-insurance/index-mobile-https.html',0,'jQ툚 >','jQ툚 >','r+$0V}yl,\"1f_`y','',0,'?'),('wPUfUǳJw','wp-content/plugins/kadence-pro/dist/elements/kadence-pro-sticky.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/kadence-pro-sticky.min.js',0,'y97H) 5','y97H) 5','g)!gңzr0GWbE\n','',0,'?'),('WBTpԩC5','wp-content/themes/twentytwentyfour/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1[;9M\rKA',';cvտR/MvU==^c3SHiƣLb','',0,'?'),('?neTP','wp-content/plugins/wordpress-seo/src/introductions/domain/invalid-user-id-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/domain/invalid-user-id-exception.php',0,'_=\\`[','_=\\`[','0cYp)9|&^R\r	+-+H','',0,'?'),('y0s?','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-category-permalink-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-category-permalink-watcher.php',0,'ˡ[8','ˡ[8','mon&z!C`Be8RA`','',0,'?'),('FճD~֫Cʽ','wp-includes/css/dist/edit-post/classic.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/classic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LUȸ(Gנ\\D','먜\"D8Ɂä*c8I>g8H','',0,'?'),('\0>#z(','wp-includes/bookmark.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hGx<7,jH','Q4>@8P_l\Z/?#UX','',0,'?'),('G+ZTEΉf','wp-content/themes/kadence/inc/customizer/options/post-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/post-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lӥLJr\Z;u2u0X',':s͉%7<5PQ.','',0,'?'),('}','wp-admin/media-upload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/media-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\nx\rO2P	','j+]-HOgĩ>\"O,','',0,'?'),('+;\'@GDz','wp-content/plugins/wordpress-seo/src/helpers/curl-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/curl-helper.php',0,'8ᇚcPOE\'','8ᇚcPOE\'','RZS#\n2)AT\'p;','',0,'?'),('!ZP}lI','wp-content/plugins/wp-rocket/views/settings/fields/select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/select.php',0,'HõKz(4','HõKz(4','YMJoiPN/iTUL;&','',0,'?'),('<1Z\\sb','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/instagram.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/instagram.php',0,'ˈGSlk`','ˈGSlk`','Ǳ٘~-LN\rc5Xm\0G3,','',0,'?'),('\rPҺ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Attribute/SubscribedService.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Attribute/SubscribedService.php',0,'ߛ`՚cvo98','ߛ`՚cvo98','oP2uAe~nC̓z','',0,'?'),('@\'yq','wp-includes/blocks/query-pagination/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z~NYǈ','aWru.	y\'a3|&Ч','',0,'?'),(';)YM\nQ_/','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/serializer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/serializer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p~J`J','2M&5ĉÜc.$a@Owum','',0,'?'),('_	/|0r+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+aJ4ć,c\0','	M|lrGro','',0,'?'),('kV72+','wp-includes/blocks/heading/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!<fK/l7','H3YF@&\'s+k}/','',0,'?'),('䨣FwX','wp-includes/Requests/src/Exception/Http/Status431.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status431.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?M--k\\Ѥ','J]e&Ɇ%49 S3JCػ\04쳫 ','',0,'?'),('u6g*$!68','wp-content/plugins/wordpress-seo/src/actions/alert-dismissal-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/alert-dismissal-action.php',0,'H7j9','H7j9','lvstxnD\\M[9b','',0,'?'),('dOJ~','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_HybridStore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_HybridStore.php',0,'Hb>궽<','Hb>궽<','$iV:|%9\\I9','',0,'?'),('\r( Ur۰Q','wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/abstract-kb-csv-batch-exporter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/abstract-kb-csv-batch-exporter.php',0,'VJڭ4	*','VJڭ4	*','fA-cUxcT.6*N\"','',0,'?'),('J#﫹#!L\Z','wp-content/plugins/wordpress-seo/src/presenters/admin/notice-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/notice-presenter.php',0,'yt','yt','մK?T%w5\"٣~>4>','',0,'?'),('JH6KFp~','wp-includes/blocks/social-link/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h|H?feI','=JL!<\0f/7p^W','',0,'?'),('Pw0h9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y2İ\rm}%','3].BCBeʢS( ?Z{','',0,'?'),('T@`QA#','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpEncoder.php',0,'V9M0z=or','V9M0z=or','W}ߍfJf=\n\r^I`!0\'	','',0,'?'),('0p!s&7W߻U','wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yt/x','2s&[TML|YR}mlZr','',0,'?'),(':i\r;Zg*5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php',0,'LX.w(d','LX.w(d','Hhl~Dʪ9\0^0CCz*','',0,'?'),(';j|:1/','wp-admin/site-health-info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/site-health-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\'&y_!>','Ω>ՏˡwiWN僸)XaH(f','',0,'?'),('B yw+|t','wp-includes/class-wp-http-requests-response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-requests-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f;h%+','߈ÏS#4{2_ʰbHTl','',0,'?'),('C\"?v','wp-content/plugins/wordpress-seo/packages/js/images/elementor-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/elementor-logo.svg',0,'\rc)e','\rc)e','2,㹂Gt8xqi%F','',0,'?'),('J&_#3Sq','wp-admin/images/spinner-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','12^#8','#˒=$c6	B46','',0,'?'),('V+@0pɏhi','wp-includes/rest-api/class-wp-rest-response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/class-wp-rest-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{3i3X%X>vx','b\'(un\' \0+ۿr','',0,'?'),('WɘRA\Z','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hz=׬VKd','JVBSksO	Y|D\'nٟdcP','',0,'?'),('X:\"0kG=C','wp-content/plugins/wordpress-seo/src/conditionals/traits/admin-conditional-trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/traits/admin-conditional-trait.php',0,'acP9','acP9','? 0?F}CBh^p]Hyru','',0,'?'),('Z)_w\'$X','wp-includes/class-wp-block-parser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UPze;ӈ3','sw]ˢz}W*E<5ZC ','',0,'?'),('^Sx_?uGD','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hd9<Cˤbl','K.Boࣸvb%S~1K','',0,'?'),('b~5aI@)*','wp-includes/class-wp-site.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!N~M(ߡ=','+ğ)AdjrlC(Ih뾩^\n~ ^','',0,'?'),('c0G8e','wp-content/plugins/wp-rocket/inc/3rd-party/3rd-party.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/3rd-party.php',0,'Ȏ)jv','Ȏ)jv','kJd)Vxbj2bQl4eM','',0,'?'),('f{O@$L','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-frontend.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-frontend.php',0,'.ͷG9@','.ͷG9@','*:ýN}ǭ#làbr/Vl','',0,'?'),('fG<@៝N-','wp-admin/includes/class-wp-privacy-requests-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-privacy-requests-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wVX<N:ڼ@','tZ9Jx`>B)','',0,'?'),('fK\n;v','wp-content/plugins/wp-rocket/inc/Engine/Common/Context/ContextInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Context/ContextInterface.php',0,'@yA\\IbB','@yA\\IbB','2H@fLT$ ^FSWKR.9','',0,'?'),('iW	\Z','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-svgloader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-svgloader.php',0,'ڀSm?邶','ڀSm?邶','c:\\Î5Y˛~XZpƒ#','',0,'?'),('qWkᓁu','wp-content/plugins/kadence-pro/dist/elements/kadence-pro-element-post-admin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/kadence-pro-element-post-admin.min.js',0,';5	g[',';5	g[','k,֣}\ns\\+J3gB','',0,'?'),('x9p2wB','wp-includes/ms-network.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5~,|:䑺`]','(Vβؿ=ղ\Z_y','',0,'?'),('z}@Ilo&VeG','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/AbstractMultipartPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/AbstractMultipartPart.php',0,'i%c\r9@=dU','i%c\r9@=dU','fzż?8dgQM@㑻&[,ݡ\r','',0,'?'),('콴)IS','wp-includes/Requests/src/Exception/Http/Status418.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status418.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pwu5`4','2en2Τ}a&\0&Ҡ#[%','',0,'?'),('9ZqWIa','wp-content/plugins/wp-rocket/inc/ThirdParty/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/ServiceProvider.php',0,'uW9^e9~~','uW9^e9~~','B(MŨ\0t6Ƶ\0Ψy)^i','',0,'?'),('\\:ڈ)g,\\','wp-includes/images/smilies/icon_twisted.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_twisted.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lv[?+*8;','VHhK\np;.&/E','',0,'?'),('+z*@','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#rcnoi<c','/(qq|T=a;,zcbg','',0,'?'),('\nTخ?tjCގ#','wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeExpired/PurgeExpiredCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeExpired/PurgeExpiredCache.php',0,'t53\ZF2^yy~','t53\ZF2^yy~','2)߹Mpꢭ\"qEH_B\\B','',0,'?'),('!ES7x','wp-content/wflogs/rules.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/rules.php',0,'7,jQiCw','7,jQiCw','ZvF \'\"yVJ\\Ya#K	E','',0,'?'),('bCo','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/DigestPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/DigestPart.php',0,'㟂c\".lx','㟂c\".lx','F)fȒܖSmp>pNc#u','',0,'?'),('t^czbK4','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-basic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-basic.php',0,'-I8\']\0Rf','-I8\']\0Rf','k҉r;L iu9%rUcv','',0,'?'),('3vU\Z3P^O ','wp-admin/css/widgets-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T,Z6','Ƃd[}ݖw/jBd\r%`Y3D','',0,'?'),('DyG','wp-content/themes/kadence/assets/css/zoom-recipe-card.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/zoom-recipe-card.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W졋,','.FduJ^&Ygu.Sjs%P\',','',0,'?'),('6I߯Zx&\rX','wp-content/plugins/wordpress-seo/packages/js/images/star-rating-half.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/star-rating-half.svg',0,'fl!a]','fl!a]','(,*,13>Ԣ*?3=h4S8','',0,'?'),('L Ufu<','wp-admin/images/icons32-vs.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/icons32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',P*{>vUf','?UzP\\@`8g;\rE','',0,'?'),('YxQ','wp-content/plugins/wordpress-seo/src/integrations/front-end/wp-robots-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/wp-robots-integration.php',0,'/fHynsJ3\'','/fHynsJ3\'','xz/E4\ZPsIk:3]/','',0,'?'),('-Ă4\rҥ~o','wp-content/plugins/wp-rocket/inc/Engine/License/views/upgrade-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/upgrade-section.php',0,'6_mp0\\L','6_mp0\\L','3DAP49?AMVPLՕ','',0,'?'),('7BhF\r','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Session.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1]8_L|4c','\\R`ծەļJ\"','',0,'?'),('-BU^e','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php',0,'ƽ>#[@84','ƽ>#[@84','*]e`ƔOT@1SExeG%','',0,'?'),('ɥ4C:ݬ\"i','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢Dɫ7','L*=^؞Xſj$7\"','',0,'?'),('nBb8\\a~u','wp-content/themes/kadence/inc/customizer/options/footer-top-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-top-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BP~$4&dd','2K;|ٱRTKGy','',0,'?'),('=~fCӸ;ˠ','wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-4-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-4-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\\Z!707','\\rĆ	R:_O9xrc<υv','',0,'?'),('vdEI|I','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i3s&a\Zw','M8JgA\r`cY5~>,Ea%og','',0,'?'),('۳61ÂO3','wp-content/plugins/wp-rocket/inc/Engine/Debug/Resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Debug/Resolver.php',0,'ׅ\"Ǘ+[Z','ׅ\"Ǘ+[Z','=+hj{=6Ե@[u','',0,'?'),('#QVI+E','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/index-mobile-https.html',0,'аRp\\l0]u','аRp\\l0]u','lT]e>UfHMF-BB','',0,'?'),('[X(SSJ','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-schema-updater.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-schema-updater.php',0,'LJ	O&j˃=h','LJ	O&j˃=h','\0 \\bEw;	qylcB@3','',0,'?'),('ZQ+xr0','wp-includes/blocks/media-text/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FH}s(','ǁGǺ\Z}	','',0,'?'),('\" 6A7^H','wp-includes/blocks/cover/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Y/oC7','Jm{Ŀkh?EQZC)M2ۥ','',0,'?'),('$~6goނKdC^s','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/DataPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/DataPart.php',0,'Q{f@~','Q{f@~','݁Iҍz1QBȾ\n6QD|  qFh','',0,'?'),(':=%M۵','wp-includes/template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w؟\0\n8','l\'	\n< T:/U1OBCIwb','',0,'?'),('<39P̵','wp-content/plugins/kadence-blocks/dist/blocks-posts.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-posts.asset.php',0,'4*MW@','4*MW@','[Q2jIbR8?s`KU','',0,'?'),('I{?r]7','wp-admin/images/resize-rtl.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/resize-rtl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nC%YfvF.z','@St-]z\'+k2{j,QN~)	>','',0,'?'),(']q!U','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l&nFȐf4o','OtՑ2^&1i~g\"r6','',0,'?'),('` ƢXv{;','wp-includes/js/dist/edit-post.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','65\r,yg.%','LMgBOs$&f~n7','',0,'?'),('b93->mp','wp-content/plugins/wp-rocket/assets/js/lazyload-scripts.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-scripts.min.js',0,'L[&l\\20d','L[&l\\20d','OPwi(ˇw|%/}߼.','',0,'?'),('id^,4@=	9','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php',0,'kjJ7r_a','kjJ7r_a','\nŘEs럣;vU:r','',0,'?'),('~c*c{i','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9 	TD$FgiEn','S]S(nZ\0ʲ','',0,'?'),('eMy*Ҟ','wp-includes/js/backbone.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+/1]}&f\0','^U#2y޶v%^\'2.W','',0,'?'),('3.\Z=k_8','wp-content/plugins/wordpress-seo/src/exceptions/oauth/authentication-failed-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/oauth/authentication-failed-exception.php',0,';Jplb7',';Jplb7','g1T4BP#ll.cLE','',0,'?'),('@k&XItǜ','wp-includes/class-wp-block-styles-registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-styles-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Ihm:t2','Ȣj_GD^OB7\Z(*s6','',0,'?'),('#dl|MSRə','wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-cache-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-cache-data.php',0,'rY-','rY-','S	{o5Vz-','',0,'?'),('B+y\0xa$','wp-includes/blocks/table/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Ү-uYBryZ','񐉬uŚk1htCoխ(','',0,'?'),('U.8 C)f','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/Extractor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/Extractor.php',0,'CH	f\n4','CH	f\n4','sl?jy˄kq7(	','',0,'?'),('pAz1w','wp-includes/blocks/navigation/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\nFo:!','!.תJc!ƪhJNg','',0,'?'),('KkfgT#V','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','erx|2c','.C@2Pc֜^n\n\'-v[~','',0,'?'),('z1F6W.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Core.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Core.php',0,'PI{#[O/?lx','PI{#[O/?lx','=D=:K{mLz\"-l4!=','',0,'?'),('n\n\0܁-i','wp-content/plugins/wordfence/images/blocking.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/blocking.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'-Hf<1','A5Y9\0OtqЖL\\}a&','',0,'?'),('=JJ{BΤ!\r','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php',0,'~?Xf3yNk','~?Xf3yNk','(\"\'?cFz6.>/S1x~','',0,'?'),('@5^e#%','wp-content/plugins/wp-rocket/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/InstalledVersions.php',0,'-Y$R\0','-Y$R\0','NRí2Hh&HX:b]d̳2O','',0,'?'),('gwd9','wp-content/plugins/kadence-blocks-pro/includes/kbp-active-campaign-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/kbp-active-campaign-controller.php',0,'zC7`w0U1','zC7`w0U1','Ֆ7JM/()jf+ޝ;x[{','',0,'?'),('N%c)҉c','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1sN:;I','g:jpBDbRorf?U','',0,'?'),('g[z\0ή','wp-content/plugins/wordfence/modules/login-security/views/page/settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݤ)e&vW4',']Z*W!OeHv8al|\r30','',0,'?'),('c02[z۔.','wp-content/themes/kadence/assets/css/src/woo/_form.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_form.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k	@`f','7 l!v)@+bLqQ~/','',0,'?'),('TK)/!\"\r','wp-content/themes/kadence/inc/customizer/js/generate-google-font-variants.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/js/generate-google-font-variants.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^/>\rŁLw;9','8_ĜCJ@ssEߒevz&','',0,'?'),('Ta~a$','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/DefaultValueArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/DefaultValueArgument.php',0,'g	~}%','g	~}%','[@VCR!ΐLdI8T/\"','',0,'?'),('\\-\\ftKDs','wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UTeV9l1[M','^1jU+r*uAu&1','',0,'?'),('򯽱MX@)','wp-content/themes/kadence/inc/customizer/react/src/social/item-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/social/item-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`21At+斧/M',']\n3̵cB?fnT]\nDBؗ','',0,'?'),('(}h!\\','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/utils.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'bukސEQj','GPknl}I]\0\0pUnHt','',0,'?'),('Km)&c79!a','wp-content/plugins/wordpress-seo/lib/migrations/column.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/column.php',0,'``_^>뻪Ӽ?','``_^>뻪Ӽ?','?>bJ@qGz~ӄua','',0,'?'),(']q*5*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypeGuesserInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypeGuesserInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\'\nn`=PZ',':h\0;am\\&ڦCfo;>','',0,'?'),('1\nN3M1í','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/App.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/App.php',0,'aJ-s/߬','aJ-s/߬','pKh0ҝ&dǲ]W{m','',0,'?'),('[q|O)0<','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-failed-notification-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-failed-notification-presenter.php',0,'MLMt#7','MLMt#7','E)ia.U+jҿAǲ4vQvxRb','',0,'?'),('G+A,^vz\0','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/varnish-http-purge.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/varnish-http-purge.php',0,'gg@^;C=','gg@^;C=','Z(*CmE-b[RA \nwcƈ','',0,'?'),('  g%!','wp-includes/blocks/site-logo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gx6$o0','P]T~ 2=kw^źFc','',0,'?'),(' &?FZiEOd','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields.php',0,'lq,}+CQz','lq,}+CQz','3\nu!szvE6a0K','',0,'?'),('.xQ}t\np','wp-includes/rest-api/endpoints/class-wp-rest-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+$@3f+','AdF:qfO,!ѓ&D6C΁I,','',0,'?'),('7*\"{\nK<','wp-admin/includes/ms-deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f}?{GjeGi','egv\Zx!74F\nD','',0,'?'),(':-#ZE','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/JoinQueryBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/JoinQueryBuilder.php',0,'$q8~Sc\"','$q8~Sc\"','tI^eD^8x2rqs5wc','',0,'?'),('?8ZN','wp-includes/ID3/module.tag.lyrics3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.tag.lyrics3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0kE.Кa#',' ,w>M?%9,Hbץ*\'','',0,'?'),('ByQhn','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-slider-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-slider-init.min.js',0,'m萓oNH>','m萓oNH>','V\r=7st*ǧP~=	)!g','',0,'?'),('H@Eƙǵ=Ss!','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php',0,'UJMw\":U,','UJMw\":U,','ͳ,!9\'K9zZ@ޗpQw','',0,'?'),('TNkW=2V$','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͤ6leA\\Jl/UP','^!Dz~I/^{JK','',0,'?'),('X*VL	_','wp-includes/css/dist/block-library/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sR\nh','XG}fi\rfsHUYLI','',0,'?'),('_ 6TNG?','wp-includes/blocks/search/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GP!.P+','lvlMS!؍r\0As3Ud^0~','',0,'?'),('`o.QS`','wp-includes/blocks/image/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1(!}7@s','DJ	-Zu*%֢\noy)³,','',0,'?'),('jI<꟟iU','wp-includes/category-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/category-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7l:ؤ=).X','G;`9\Z\"~jzS$ؕ','',0,'?'),('pA?@X','wp-content/plugins/wp-rocket/inc/domain-mapping.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/domain-mapping.php',0,'bԑmôhr7i6','bԑmôhr7i6',')c毉\Z;xR\nbdNYݱ@','',0,'?'),('F)-:́','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/App.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/App.php',0,'?mWd6&i','?mWd6&i','6|qD^\Zs7e-R:XuXVP\Z','',0,'?'),('~w4ȥP','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aBks\rD!p','8iʦ^e$&!ngy3|{','',0,'?'),('\\o&*V(','wp-content/plugins/kadence-blocks/dist/blocks-infobox.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-infobox.asset.php',0,'*#-\"]i?LX','*#-\"]i?LX','A(|_+{?r5J\rυ%(Q5\"','',0,'?'),('&}?\Zs`','wp-includes/js/wp-sanitize.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-sanitize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{I>_@\"','I0L\0\r\'}g`z _(%','',0,'?'),('\'eF?','wp-content/themes/kadence/template-parts/content/entry_tags.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ﴳF朲Co','$(A\\꿁&C4.Q!x8G\r','',0,'?'),('Q̥؈\0','wp-content/plugins/duplicate-post/src/handlers/handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4k%O0Y','1,Es`]aaԺZ2\r','',0,'?'),('QWsA7d\n','wp-admin/css/site-icon-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-icon-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"*3Y}h9','U%U]7$0Moͧ4aLyι','',0,'?'),('nJ-25W','wp-includes/blocks/rss/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ׯću','!	L(L\'=	ޓ\rgȀj=t','',0,'?'),('e\\1tƋ<	','wp-content/plugins/wordfence/lib/wfUpdateCheck.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jV+KI~0\n','7&.ηDӛ]e','',0,'?'),('GGa\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*M]YnM$^ù\"','ϐNoKtQV\r3-y-','',0,'?'),(' }:~(','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z0c5z1','yNv<\n(D\\%y	Q','',0,'?'),('Z|075o','wp-includes/sodium_compat/src/Core32/Int32.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','siQ$gFr','M=cS~[\r<)ǖ3O{xھ\0w','',0,'?'),('B]nȄ87g','wp-includes/images/smilies/icon_rolleyes.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_rolleyes.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yuu 	2','\\	ueT\rvj!ҳ7R','',0,'?'),('_ Uh6,p~','wp-content/plugins/wordpress-seo/src/presenters/meta-author-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/meta-author-presenter.php',0,')\n1p\"#',')\n1p\"#','<lETlbjք篏K]Y','',0,'?'),('t;','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeEncrypter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeEncrypter.php',0,'y/BPۖM','y/BPۖM','˸KkDu}c\n\nzT%k+j','',0,'?'),('4Rfy#','wp-content/plugins/kadence-pro/dist/dark-mode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode.php',0,'w[{=','w[{=','W+ŻMo{j;jO۶Tb','',0,'?'),('mlG@G5:','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_TimezoneHelper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_TimezoneHelper.php',0,'VY<S{l1','VY<S{l1','GLd5uP=Hz}Gݍn#d֎?KЈE','',0,'?'),('fR/1< PC','wp-includes/js/dist/shortcode.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eyk01pd5','!VQsc.cMö>S[k','',0,'?'),('@\"[>XFo','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/duplicate-post-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/duplicate-post-integration.php',0,'G҅96^ar','G҅96^ar',',&+Z:;X)i2rA;','',0,'?'),('kzT','wp-content/plugins/wordpress-seo/js/dist/wincher-dashboard-widget.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/wincher-dashboard-widget.js',0,'o`} ^ltE','o`} ^ltE','J9=~:v	RRLR\'}$݃\"','',0,'?'),('VZ8=vc','wp-includes/blocks/freeform/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Я\0\"\ZvO>b','tCIλ鯼[\'G}t\n#','',0,'?'),('ڸPֺb','wp-includes/blocks/social-link/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' !vw)PX\'é','Ȋbh		f pCP~','',0,'?'),('-3Zw@.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php',0,'4B','4B','\Z:vK?<mlnd\rK9؎','',0,'?'),('ᨢR]K|z','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php',0,'%||EW|U\rIfa쎗L','%||EW|U\rIfa쎗L','s)LM\Z(Fu؟8Y+x','',0,'?'),('	y\'s~P\'e','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/admin-global.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q!\0𭀠\'','W4$a\'x-Kμ#Z','',0,'?'),('WF(}y=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php',0,'o3hl,bo#','o3hl,bo#','w_?U(#ߢ73n}','',0,'?'),('`!_\rj&\Z*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Loader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.]\']5','EDP	o{uӵ\0+','',0,'?'),('Kȁ;$z','wp-includes/js/dist/notices.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/notices.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jŌh2<\rPt\n','_xҍ{\\h7H{=','',0,'?'),('9f ZN','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lYZiਆ3\02[','(A#F~+FghS.b','',0,'?'),('=TO7\r7{','wp-content/plugins/wordpress-seo/packages/js/images/icon-arrow-down.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/icon-arrow-down.svg',0,'- D','- D','7ݰq͊CLwI㎘|Y','',0,'?'),('?{!r*BH','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LEIϐ\0wU','blt,!EupVD4x\'','',0,'?'),('CvܥFv+','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/tumblr.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/tumblr.php',0,'|k`)s\rSd<','|k`)s\rSd<','J\nAlC\Z鎋ԲqO:lW','',0,'?'),('MjAMO\"If','wp-includes/SimplePie/Net/IPv6.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r FE,h','pt[bmM_Iz\"[j/O','',0,'?'),('V{@{\"h','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/Handlers/NullHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/Handlers/NullHandler.php',0,'W]zneǎv\"','W]zneǎv\"','؈=ƃ6e\"#xd;vR\\_','',0,'?'),('XqNM\r\\ZZ>','wp-includes/images/media/interactive.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/interactive.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E3aH[$^','KM4g@MwU޺','',0,'?'),('kIKV[	5','wp-includes/sodium_compat/namespaced/Core/Ed25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v>#!n(','DFUu|v/]2x_ERL2QlP93s	15','',0,'?'),('s.V!Xtãs.','wp-content/plugins/wordpress-seo/src/helpers/capability-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/capability-helper.php',0,'̖0iV҇','̖0iV҇','&%˴tE;Vs%+2IjZ','',0,'?'),('w\ZdϢ\ruD\"','wp-includes/IXR/class-IXR-request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%p.<Sǡz1Ϣ','Q*k_}2>Tq<_S:Qh','',0,'?'),('vr@{c{','wp-includes/blocks/social-link/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' !vw)PX\'é','Ȋbh		f pCP~','',0,'?'),('(Z@5z\n<','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php',0,'ץ=L4gE8','ץ=L4gE8','ӡm	@lh&6?M0sD\0BP6j','',0,'?'),('4fGAZ%','wp-includes/class-wp-styles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@U)4öA%','?DGjU>\0w/Ga\00#oOC','',0,'?'),('q FT','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Kܢ*u8nެb','U$ƙI\'y;|\0>\Zt͸C3','',0,'?'),(' __`5q','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSOptimizeContext.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSOptimizeContext.php',0,'ő]AcL','ő]AcL','=VUْ.z1	%<KQ%7ڤ','',0,'?'),('/\Z)y\r','wp-includes/blocks/html/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԓ,e[2^.','xLmR~ e竚şzAEyz0','',0,'?'),('%#W#','wp-content/plugins/kadence-blocks-pro/dist/blocks-repeatertemplate.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-repeatertemplate.js',0,'jf̠=\n\"G&D','jf̠=\n\"G&D','p\Z](/T8n{2Jӎ\\͉>','',0,'?'),('?P+G/','wp-content/plugins/kadence-blocks-pro/dist/blocks-splitcontent.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-splitcontent.asset.php',0,'Dc\Z\0;:','Dc\Z\0;:',':?%CϺz%JҶ-Z\r>=(','',0,'?'),('=UC*8|M}n','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V؉f	','-\ZjQ5EzEZqOajC','',0,'?'),('}tvDc','wp-content/plugins/wp-rocket/inc/admin/options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/options.php',0,'J#1gTZ$1','J#1gTZ$1','[0|<ywu\0X\n18','',0,'?'),('¼c5','wp-content/plugins/wordpress-seo/src/surfaces/meta-surface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/meta-surface.php',0,'\nNpw^B','\nNpw^B','2VpIP5i,,x$jj','',0,'?'),('$xM1>_8P\0','wp-includes/js/swfupload/swfupload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfupload/swfupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#9>&YRg','ݙRYY-ҕ&qW1(K','',0,'?'),('وP4]\n','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/LogProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/LogProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ܽ3g','. Zc1ff>-IRw{k?7c','',0,'?'),('FDYG֜fP','wp-content/plugins/kadence-blocks-pro/dist/gallery-styles.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/gallery-styles.js',0,'.Z)5T^IR','.Z)5T^IR','AMI92-^dݫJb	[,4X','',0,'?'),('35no~.','wp-includes/blocks/archives/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Kݑ։','9j鹠٠4Sqò_\\`','',0,'?'),('߫P%D','wp-includes/class-wp-dependencies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߕV\\>pSԎ','goDӴpܙ.4<7ſT','',0,'?'),(')F\\8h','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ʄsƀZ','K:|X,)Q׳d8 3','',0,'?'),('8}yͦ􆛁$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap.php',0,':8u',':8u','\ZTMF$\"f','',0,'?'),('^ܹ_+7AeC','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/index.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','._ \0nlx6;Yr','݋m-#-oaqϐLl{\Z','',0,'?'),('Qs|cL؜VH)','wp-admin/includes/class-walker-nav-menu-checklist.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-walker-nav-menu-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\\v\0hf8~a','H\rhM`/450V>5UB*','',0,'?'),('/8&Dg|#','wp-includes/js/dist/viewport.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/viewport.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#L5S4M','BRbW_OƋ4BuF!','',0,'?'),('\"Dv','wp-content/plugins/shortpixel-image-optimiser/shortpixel-plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/shortpixel-plugin.php',0,'R?W*ΔZk','R?W*ΔZk','yV(X	q_%o+|6~','',0,'?'),(':&բw2QK','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Divi.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Divi.php',0,'Vɤ(R%','Vɤ(R%',')MHl½5Y|\Z莻#\09V=2','',0,'?'),(' xk&Dx','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/site-analysis.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/site-analysis.php',0,'r)ZVB','r)ZVB','熿)̔wlvBޚAp4gUy','',0,'?'),('!nN``P','wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature-interface.php',0,'jyQ ]*e_Iᐉv&','jyQ ]*e_Iᐉv&',']$eA/лN04z','',0,'?'),(')JR)uX%','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php',0,'t`ARO','t`ARO',',bvx(	Q4{rV\rD','',0,'?'),('.Kh3X]@','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/buckhead-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/buckhead-georgia/index-mobile-https.html',0,'^Ti-%f\r','^Ti-%f\r','igm@\'LXƕ`;=*|VGw|','',0,'?'),('2^s','wp-content/plugins/kadence-pro/dist/infinite-scroll/src/infinite-scroll.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/src/infinite-scroll.js',0,'q{?h9b@MR','q{?h9b@MR',':	co=YAk43ҿ/!','',0,'?'),('<ou!ѸP ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5؀\0 Eq\Zv','8߃gԄ#:DEkbdW0','',0,'?'),('<͐noz#?:','wp-includes/blocks/widget-group.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/widget-group.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fi5y@6\Z9U','-~(I\Zrj,`rvv&\\','',0,'?'),('=c:gvTZe','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nK˓ćnJ\r','tY7sMS{٢C]Q\rŷ\r\"','',0,'?'),('?&,we<\Z','wp-content/plugins/wordpress-seo/src/conditionals/feature-flag-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/feature-flag-conditional.php',0,'eG.m(PZ','eG.m(PZ','W<˝׻dqܬ\'.HGMS','',0,'?'),('Oxرc5(','wp-includes/css/dist/block-library/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F,','\n̲vf[5{Gу%/{L-cp@{%T','',0,'?'),('PB\"PuL[c','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Yͪ$M/bxE9','[zI[7Ò&=Mcf)Ը','',0,'?'),('TتVen\\Z/','wp-content/themes/kadence/assets/css/src/elementor-admin.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/elementor-admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y#pte=','m.}4&/t#`Ymo','',0,'?'),('Uzcp','wp-includes/blocks/separator/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߗ\n}C1wIB4','tCeBpLk\nkreK:I','',0,'?'),('Vs;Wvpux','wp-content/themes/kadence/assets/images/icons/credit-cards/maestro.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/maestro.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z}Ԇ,Y?k<','	t3831>Y#vB=','',0,'?'),('XX\"f','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s̞,VbVoT\'lQ','.Zխϐ-<or>FQq','',0,'?'),('[*H߹Ƃ','wp-includes/Requests/src/Cookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0:|]F#L','V]aZlB}\"b:D878','',0,'?'),('g01{#(','wp-content/plugins/kadence-blocks/includes/resources/Uplink/Uplink_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Uplink/Uplink_Provider.php',0,'m++Dnfdo','m++Dnfdo','؆E-/,9:?.\rBf2','',0,'?'),('n97I.Oҝ޿','wp-includes/js/heartbeat.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/heartbeat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xx8',' q9e}->','',0,'?'),('r&I1.VjiK|','wp-content/plugins/kadence-starter-templates/assets/images/fonts/gilda.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/gilda.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k_ 1[Wfu','x!M','',0,'?'),('yIyОډ','wp-content/themes/twentytwentyfour/templates/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZCs=','ZVLOmenw96q!c~w\"ҳw','',0,'?'),('|BlIHҼOSƱ','wp-includes/js/mediaelement/mediaelement-migrate.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<C_hz3<7',',b#0!aOVc,ؕSԏIл%p)','',0,'?'),('|NHeQ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php',0,'j(=','j(=','9ѱn^8TLo{	}fHJwY?','',0,'?'),('~1U6','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-telephone-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-telephone-input-block.php',0,'v鋹ս7mc','v鋹ս7mc','xH	{xQ^$\"͊s\Zr׫9','',0,'?'),('ب&G)k{','wp-includes/sodium_compat/namespaced/Core/HChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hP','Kd%.RAOFjo-','',0,'?'),('g{2Es','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/AccessDeniedException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/AccessDeniedException.php',0,'X:W}#','X:W}#','+)MO{(~/%*','',0,'?'),('@LR4y?','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php',0,'sB7[\rx2\"뎆','sB7[\rx2\"뎆','Kʫt~No3/ݥSQLkH,1O','',0,'?'),('R\\p','wp-includes/blocks/comment-template/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':=BW','	`gu F$`m=3cc%K','',0,'?'),('y:vϿĝ','wp-content/themes/kadence/inc/components/learndash/course_list_template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/learndash/course_list_template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#nv	@3`_(C','P,b-+5J','',0,'?'),('Dbyxnz','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/AccessDeniedException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/AccessDeniedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ld}jL{Su','8Zbws_p}<s+SZb','',0,'?'),('[6dcHa ','wp-includes/blocks/latest-posts/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v<Cč=cﻘ','\Z% a~>lBb7','',0,'?'),('\\֯B!aV','wp-includes/blocks/comment-content/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hajWm={','\n\0k` ?prE_=E\\','',0,'?'),('/PxSt1','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreInterface.php',0,'H=WY6ϤX','H=WY6ϤX','<ORH~:蜺.{e9A','',0,'?'),('h+B','wp-includes/js/tw-sack.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tw-sack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xh+t\r\r/A','\\mN톬3oE\0Z)yB','',0,'?'),('F\"vh$Lb','wp-includes/js/imgareaselect/border-anim-v.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/border-anim-v.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' z!<7*','>d:j1<!46g','',0,'?'),('s1r!eH','wp-content/themes/kadence/inc/customizer/react/src/background/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sct5T','Upэ\rD*\"vg/̷Bl','',0,'?'),('͓*I6DY','wp-content/plugins/wordpress-seo/images/support-team.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/support-team.svg',0,'4_RxD','4_RxD','L4v&a\'2eveؿt:A`','',0,'?'),('˩6f/6YjI\0W','wp-content/plugins/wordfence/modules/login-security/views/settings/options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/settings/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fq+fw\0','̦bF׮C~u;m}PaM2,0S,','',0,'?'),('B\'K5','wp-content/themes/twentytwentyfour/patterns/posts-1-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-1-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͡*r\'X`dL','yG?^{+Y\'1)G$','',0,'?'),('BkSk\0j','wp-content/themes/kadence/inc/customizer/css/kadence-customizer.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/kadence-customizer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';me1m','?Q9Efʊv8,,2!ҿ\"j$\n','',0,'?'),('f	l K','wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-integration-active-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-integration-active-conditional.php',0,')C%}PnܠI',')C%}PnܠI','#OYAmʑis.6L)_|2?+f','',0,'?'),('\r-{h|N','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\05;nlIg+@','&   {V4;YMn%^\"O','',0,'?'),('@#n\Z~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/JsonException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/JsonException.php',0,'@}J>O','@}J>O','ea5(MwoF.Wv.B','',0,'?'),('c<[','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7קE0IqX','mO⩱XX\0E,Z*y*z7;','',0,'?'),('	M\nd8k,','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Meta.php',0,'^8-@!\n\\}','^8-@!\n\\}','Πq%nR$}_','',0,'?'),('MAH\0[d_!','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('yc0Og)ρMf','wp-admin/network/site-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','abcS%[','XDvX5҄:,̪zj','',0,'?'),('U]R)Ym','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nj09','\ZҨ2#s:Р\n		vØ+l','',0,'?'),('@fYB9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_wide.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_wide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ectν:$','Aś]Ug\Zq62{1y/ ¿','',0,'?'),('5Ǵ.ऱ','wp-content/plugins/wordpress-seo/admin/pages/redirects.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/redirects.php',0,'1|\\njy','1|\\njy','W\"V	17]޴זDr','',0,'?'),('tǱ%F','wp-content/plugins/wordfence/lib/wfNotification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfNotification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ǎ V2(dhVD','SaYgj+| JM8','',0,'?'),('\nkc\rQj','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Each.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Each.php',0,';I|wF;',';I|wF;','/DhcEHTe\\Q|*i)+','',0,'?'),('\r7JbU?rϴ','wp-includes/Requests/src/Exception/Http/Status410.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status410.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iL))7ff}','BRX?	6E,n`\\c','',0,'?'),(';@!c*T','wp-content/plugins/kadence-blocks/dist/helpers.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/helpers.js',0,'ѐ5%A?)ѓ','ѐ5%A?)ѓ','v;:OI|!dtk3kW(P5|Ya','',0,'?'),('0]Va#Td','wp-content/plugins/wp-rocket/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_psr4.php',0,'R*8N$^','R*8N$^','\Z:Gٕ\Z\"tgWL~','',0,'?'),('1ϣI','wp-content/plugins/wordfence/lib/wfImportExportController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfImportExportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+>','dlы۹`J#|i{','',0,'?'),('<|~E.Y^!]','wp-admin/js/widgets/media-audio-widget.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-audio-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ntw|茇^\r<K','d^2?PF~>ݾm','',0,'?'),('?\n5H?','wp-admin/css/customize-controls.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e0Ys5MW','3?1k<1ti#鋐Z7LqODE\',nV','',0,'?'),('@$n#zcÉ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/TransportResponseTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/TransportResponseTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XcAd?sB',';P]Kba','',0,'?'),('Eu sd(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Dotenv.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Dotenv.php',0,'<yju4ϊ)','<yju4ϊ)','7UlEza[?\nV]ͫ','',0,'?'),('Gdd́`w','wp-includes/assets/script-loader-react-refresh-runtime.min.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-react-refresh-runtime.min.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0!j1M/>?','V<#Y&=z;I0Nlz','',0,'?'),('Nbա𞙗$','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Filters/Needs_Update_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Filters/Needs_Update_FilterIterator.php',0,'Oݖ$UΞ','Oݖ$UΞ','9\ZP	|vO(?^G%\rGT','',0,'?'),('Pf7\"|','wp-content/plugins/duplicate-post/readme.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/readme.txt',0,'WcUܦu','WcUܦu','X`#˵\nI>>n2m+L:cvo','',0,'?'),('UDĞ;(Ǩl','wp-content/plugins/wordpress-seo/inc/class-wpseo-content-images.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-content-images.php',0,'v1+*Z|:','v1+*Z|:','±2S%PCpKys̞Z;','',0,'?'),('VmPLb3.G>','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yg`UzU=','<tzhZ.CM%Y^)$J','',0,'?'),('XT(sǦ9','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cSDi܃?lA','VcbK2%i8W\'-B&@\"@','',0,'?'),('j`͔z^/I','wp-content/themes/kadence/assets/css/src/author-box.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/author-box.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`\Z~\rDM31Ȏ','\Z=KK}칓AYq','',0,'?'),('rtp0HrS','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php',0,'O^t⽉\niTb','O^t⽉\niTb','>nj&f{a{?GgO','',0,'?'),('wB~~BP8','wp-includes/blocks/post-date/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3٦>L\'','?ahƖov5nh','',0,'?'),('vUGU`;	+y','wp-content/plugins/wordpress-seo/src/presenters/admin/woocommerce-beta-editor-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/woocommerce-beta-editor-presenter.php',0,'_HPw\n,]R','_HPw\n,]R','o|-\nWi`qsxpOEX','',0,'?'),('juGCtO','wp-admin/css/colors/coffee/colors-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\",~1WU','ώ{HTM^@Ѩ\\Xr?Ւ','',0,'?'),('c4)^VlZRT','wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/QueueInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/QueueInterface.php',0,'1v54&C','1v54&C','\"5ڶfxX^DOcy+AZ1','',0,'?'),('̯z3Ҩ^U/','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ResponseController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ResponseController.php',0,'5E=-lL','5E=-lL','M5\rcyXR5M3','',0,'?'),('l.H|S{','wp-includes/js/jquery/ui/effect-transfer.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-transfer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d.ɏJ˞Kh<d\nX','T4&zlkc}','',0,'?'),('asOʻ','wp-content/plugins/wordpress-seo/src/integrations/feature-flag-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/feature-flag-integration.php',0,'xR\\-','xR\\-','#?t\"_	I:\0\na[\"','',0,'?'),('AICĭ','wp-content/plugins/wp-rocket/inc/Engine/License/API/PricingClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/API/PricingClient.php',0,'>v=LKj3I}','>v=LKj3I}','[/R߫g/4~!4M','',0,'?'),('ISU`uTF','wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l{bOs_a>','mn5ߐ֞βgJ\\3','',0,'?'),('Bm0\nm3','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php',0,'f@WK[:#','f@WK[:#','3[$֦HQJf=Qz/Kw','',0,'?'),('S%ќ\"r!','wp-includes/blocks/list/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޱzl$L','8bc,lŨ%|M	Xk}','',0,'?'),('E#n3`A','wp-content/plugins/wp-rocket/inc/deprecated/3.4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.4.php',0,'Ey1͚','Ey1͚','>V[1ȹ(~cORE\'j','',0,'?'),('anV=Ty X','wp-includes/SimplePie/Copyright.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Copyright.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k>ԪQ','i%ܴE^g2z,@QV','',0,'?'),(';~?+Iu','wp-content/themes/kadence/inc/customizer/options/transparent-header-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/transparent-header-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iq{)9.}w˸','zqPXЂ	),no6VxFiq?<J','',0,'?'),('$b	o&8','wp-includes/blocks/button/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M]&gIKG','z`\\[/LWGܢ	','',0,'?'),('&$\'=w','wp-content/plugins/wordpress-seo/js/dist/introductions.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/introductions.js',0,'p7nll1jg','p7nll1jg','?g#DZs]O*}x','',0,'?'),('9s\\pX)H','wp-content/plugins/wordpress-seo/src/routes/abstract-indexation-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/abstract-indexation-route.php',0,'/D0_VQm>t','/D0_VQm>t',' 7&­]kp&c7','',0,'?'),('CV%i','wp-includes/block-supports/border.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/border.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aGoM\\','\ZoJ(F\"c[-9乹\"W\rb\Z','',0,'?'),('C_9','wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','77gVD7','\\ssuKG[5;U2 _oWY','',0,'?'),('Wtc\"xۃ','wp-content/themes/kadence/inc/customizer/css/kadence-customizer.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/kadence-customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GzV.|̻N#',',IZ\"|G:tpl@b','',0,'?'),(']ԭ7ebcvqQں','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php',0,'}=]]9','}=]]9','r&7OKʹ3mDN}+)S\rk>','',0,'?'),('^6zC:p8o;Q','wp-content/plugins/wp-rocket/inc/classes/event-management/subscriber-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/event-management/subscriber-interface.php',0,'d6		r!^','d6		r!^','-/x*%.\'rf1x`6:','',0,'?'),('} yTZHcDJ','wp-admin/js/custom-background.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/custom-background.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|+TGTt\0','rB~<W59[;]ޓ5SD','',0,'?'),('ZK*%','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',0,'* *))]','* *))]','F	-T]MN\0HSƮcϯG\0','',0,'?'),('<gIk/q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php',0,'_RQ.','_RQ.','׽2skNGޥPqvE\'^','',0,'?'),('_q8gVH$','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/index-mobile-https.html',0,'+-=\\O_)','+-=\\O_)',';턣|iIáT\Zɘǹi7Qptg!','',0,'?'),('{0l(Ʋu9,wSu','wp-includes/js/media-audiovideo.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-audiovideo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǁR_\"7-\ZŠЧ@','d8J_XC^U\r 2.\\/QX','',0,'?'),('slc!.3','wp-content/plugins/kadence-pro/dist/header-addons/templates/toggle-widget.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/toggle-widget.php',0,'<cWM.Hd','<cWM.Hd','e	0;qagǫ?^;%\n\\','',0,'?'),(' pϵ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php72/Php72.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php72/Php72.php',0,'9햻GFu','9햻GFu','oCժ)m1BS?#X +l','',0,'?'),('T!uJ|,','wp-content/themes/kadence/inc/dashboard/react/src/customizer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŌHR','ΈBk8Vj%iXR`bk','',0,'?'),('+T:8IM%:','wp-content/plugins/kadence-starter-templates/inc/class-import-export-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-export-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D$g\\*}yҫ','`o}=_mS~eMSf','',0,'?'),('CNPJY1a','wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-VariableFont_wght.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-VariableFont_wght.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\ZAH\re','pJ.<6LӝDcP紆0Pn','',0,'?'),('İ8\"<$-','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php',0,'0\Z','0\Z','tEt\0fReETϛ WaDߩ','',0,'?'),(')!)6>}74','wp-includes/css/dist/block-library/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F^X>','\'S3CJtDh-\\93;\\J+!','',0,'?'),('hZsp%\\j','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Php80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Php80.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xOɚ\rgK','ųnЬ;}*K7GF)u{','',0,'?'),('g\0}^ҡ:ݝ','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/jigoshop.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/jigoshop.php',0,'EޗN\r/a#w','EޗN\r/a#w','j(k_\\՝sADOC<&p@нc^xn','',0,'?'),('	6ĵ!:.','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/more-storage-providers.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/more-storage-providers.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӄx8H<))','6ܠLJa{M@*O*','',0,'?'),('i.1#e>\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/ExceptionInterface.php',0,'ƹebpgJ^K ','ƹebpgJ^K ','497=}x]-YSW','',0,'?'),('LVY*','wp-includes/js/plupload/moxie.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/moxie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hjb(','xT Z$ \Z\nJC؋(<','',0,'?'),('Wۯ]GY\r\\','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mfW\"','=MvbyI`:6C/X9AGU]','',0,'?'),('[OƬh/\0>Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeaderItem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeaderItem.php',0,'-2Q#z_e[p','-2Q#z_e[p','L\'?OqV<c~3DeZՓ','',0,'?'),('y6ښp@_P8','wp-content/plugins/wp-rocket/inc/Engine/Admin/DomainChange/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/DomainChange/Subscriber.php',0,'^!Uiu[zB','^!Uiu[zB','ضd\nU2ѫ?qK{-g','',0,'?'),('6\Z+\'','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/ArrayArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/ArrayArgument.php',0,'H,֐С53','H,֐С53','QrZM2AߌE,^<N\n%\0$','',0,'?'),(' A$ۤfCN37','wp-includes/query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E1 abz0S%','Pf]kZtl`ÄW5','',0,'?'),('(הWh@=a','wp-includes/images/smilies/icon_mad.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_mad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V!@c0S','d[O:Ǉjl}q','',0,'?'),(')X,mjT','wp-includes/blocks/post-content/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J)ej','<wc%dU.^qsFky','',0,'?'),('*Gct}`n','wp-content/themes/twentytwentyfour/patterns/page-portfolio-overview.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-portfolio-overview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'rϫ3m^','$Jl\Zs,0Eh<ڜ','',0,'?'),('-q8Cp','wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/ServiceProvider.php',0,'gb2s(p','gb2s(p','q-ǻXS+ˣl`\ry~[','',0,'?'),('70,		M','wp-includes/sodium_compat/namespaced/Core/Poly1305.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qy?;8V\n','\0-]뮳XEt)`1C}Mr2/','',0,'?'),(';*\04S;#Bw','wp-content/plugins/wordpress-seo/lib/orm.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/orm.php',0,'$7R%iS','$7R%iS','dYϏϚEʣD] ','',0,'?'),('C,ڦR1A	X','wp-includes/blocks/latest-posts/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ODy$ @g&<','oZa&^D7*,<AQ','',0,'?'),('EH!h<y','wp-includes/blocks/site-title/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@{Rb\0۔','͸F!jGvhO5d','',0,'?'),('JWC<Xɜ','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/default.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/default.php',0,';a9\Z\0^kpN',';a9\Z\0^kpN','W,\\܆Bwcj|\\:3dyؖ','',0,'?'),('U$z<7K5','wp-content/plugins/kadence-starter-templates/inc/class-author-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-author-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d_QN0ĭV','[|_NC6~9G.(%)iY\'','',0,'?'),('W;$XKVf','wp-content/plugins/wp-rocket/assets/js/lcp-beacon.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lcp-beacon.js',0,')_yu;ݙA(',')_yu;ݙA(',')Uti) ̥\01','',0,'?'),('^YMG4iarOaR','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php',0,')d$,\"',')d$,\"','}\"Ƌ<Ra%u;ĽL','',0,'?'),('a|WP)g','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/InvalidVersionRequirementMessage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/InvalidVersionRequirementMessage.php',0,'ƢEe\0N\\','ƢEe\0N\\',']pd0\0nsj>i])A2˵(','',0,'?'),('g\Z\\\r`=m','wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']#%Z	Ѧ	','P;X]IRV^4Ƣ\n&h˱w','',0,'?'),('iBj]','wp-includes/sodium_compat/namespaced/Crypto.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G8J+	z','>8\'XiUbGн,<T`64Ѝ','',0,'?'),('r\n\0/+ڈ','wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Rows/CacheRow.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Rows/CacheRow.php',0,'-(_YG<59u9','-(_YG<59u9',':5&<!9ՆIl','',0,'?'),('sx}U.[b\0','wp-content/plugins/kadence-starter-templates/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\"0\Z{_5','c+TnCQݐg3/','',0,'?'),('vόY9','wp-includes/ID3/getid3.lib.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/getid3.lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e]`Te,-(T','+ǏY5S,jGh1DX̞*','',0,'?'),('{RƱ','wp-content/plugins/kadence-blocks/includes/header/class-kadence-header-rest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/header/class-kadence-header-rest.php',0,'h6uq	csl','h6uq	csl','Fy}_09,N+\Z,Fdmx^P)WDc7','',0,'?'),('XHov','wp-admin/css/common-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î(wӤf','Dse\r]y`>JTNW~;','',0,'?'),('!NDw`[','wp-includes/js/jquery/ui/dialog.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/dialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ʊy+ԝRg ]\'','^FJKɹ^	D0:\\(','',0,'?'),('Xp~0D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Woe~oB2_;','5qSrL]OXsq+l<ɒ','',0,'?'),('ìJD.v','wp-content/plugins/kadence-blocks/dist/blocks-navigation-link.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-navigation-link.js',0,'[\"i&C$5A','[\"i&C$5A','_>Ω	Ȓ]Gw!r[6SC]ߌU','',0,'?'),('֗]NRS{qv?','wp-admin/css/wp-admin-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/wp-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',*i[p]<','r5SE?29/)_PJvVhR','',0,'?'),('ަh\\%\Z\\','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/StreamedResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/StreamedResponse.php',0,'\Zoba&P2','\Zoba&P2','$\0qt4^x-9gWDD/\nѱ','',0,'?'),('sǀl@J	','wp-content/plugins/duplicate-post/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fFi*f><','Mנkiy̨\'S\nV|TĴ','',0,'?'),('d6 %/5','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Some.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Some.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zjw/T','%fYM5=W]{o`M!','',0,'?'),('\Z,zҐU','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-B.9\\}PN!','žtT\nEtBz9','',0,'?'),('дH-)','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/Headers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/Headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`POq\"	','{Wc9j|zE28','',0,'?'),('wH^jH','wp-content/plugins/wp-rocket/views/settings/fields/text.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/text.php',0,':K0ipw',':K0ipw','\'_p/,=vBi4gyV-','',0,'?'),('O܎$8Je','wp-content/plugins/wordfence/models/scanner/wfScanner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/scanner/wfScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\"\Z*T0؟','9v\r^JMMcGŗ','',0,'?'),('DOު)','wp-content/themes/kadence/template-parts/header/navigation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gccLTZ','_]!\0p:/2K\\CO8Rh','',0,'?'),('*v<TCUXJn','wp-includes/blocks/column/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/column/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']I,agV0','yDsL\'x7=Vsrw','',0,'?'),('\07m','wp-content/themes/twentytwentyfour/assets/images/angular-roof.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/angular-roof.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','% &ٟAYj]','*nam!ӣ\"˶f','',0,'?'),('Ѯp+GsV+','wp-content/plugins/kadence-blocks/includes/icons-array.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/icons-array.php',0,'#\'44>\'','#\'44>\'','Xϛ^.?Z̼-obӫ(','',0,'?'),('V܂0\0U`5C>','wp-includes/css/dist/components/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/components/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')z,XyUix}F','d;#E%2a`,=;\'|B,uJ&/','',0,'?'),('\nzOt','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(NދOqm\r]c\\','(DP*cQ{Na:\"LSњZ','',0,'?'),('\r$	m2>','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php',0,'n3s<؆N','n3s<؆N','pUl3:Zݡ/C\"FMAq]4\"yD','',0,'?'),('%b `3Q','wp-content/themes/kadence/inc/customizer/react/src/common/range.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/range.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O̓m9j','Ҧjgo?4OԙDrPans_d','',0,'?'),('=D','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/keyword-analysis-disable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/keyword-analysis-disable.php',0,'a\rpP r~','a\rpP r~','Q<;Y^w\nj\rCN\Z24t4','',0,'?'),('$6ɤ[','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/MediaLibraryConverter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/MediaLibraryConverter.php',0,',$uwK',',$uwK','\"OU-B.$6¶SO\0\nt3rq N','',0,'?'),('$Ǉ?\"yf','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php',0,'i纚`','i纚`','yR6~D7u@]lmV%g','',0,'?'),('\Z R[\'>','wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\\c7yxгl','~qV*\'1]3^m','',0,'?'),('$jX])D:','wp-load.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\\`UzC!p}}}O','jCv:\Zis܅m9\rPvF','',0,'?'),('.<kbV\\_VS','wp-content/plugins/kadence-starter-templates/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&j\\3Qٖ','1Os}2l\r޻&߬EY8V','',0,'?'),('2\\17Հwi{','wp-includes/js/dist/vendor/wp-polyfill.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P0аhd','NaX7\Zr)͕JeG|ܼH','',0,'?'),('7iE(D?','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-schedules-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-schedules-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tkGf%r','C +\ZI텴E\n\'pa<A	?','',0,'?'),('@Ĕl!$F\Z~','wp-includes/blocks/code/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\JNPT-7]','</lU0*ߥW$VvC]4','',0,'?'),('H)jHj','wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ˊtru\'','#_\n:8aDؠr٪2/ߘ','',0,'?'),('J{yyub<$@','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r)dD\'[R','N\"M7F+\02z,X;Zz','',0,'?'),('L.Qɛڕ2','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{6X(','A{$im_hxLe','',0,'?'),('Mp	','wp-content/themes/kadence/assets/css/src/woo/_layout.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_layout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')9|zN1V<','d	>֑\'/ty)','',0,'?'),('Nsf#@Q;;{̻','wp-includes/blocks/query-pagination-numbers/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P,#0O%<8|','qniȅ\nфo3Q۾-NP3NH','',0,'?'),('Q\"Bz]8Ov\n','wp-content/plugins/wp-rocket/assets/img/warning.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/warning.svg',0,'zbi3f+r','zbi3f+r','T\r+NSܝ3vtE^,ʉHxkjԡ.','',0,'?'),('[$_ VB@','wp-includes/Requests/src/Cookie/Jar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Cookie/Jar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cn[LM(','\n$S`\'@#GT+w','',0,'?'),('cO-+oe','wp-includes/blocks/block/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uZ`ن^^^6,','`TuCdJm','',0,'?'),('j%Mɍp)Z','wp-admin/images/generic.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/generic.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'[#98!','{uK[g͆Ex{:߼lͨG','',0,'?'),('n@Gn/\0a<i','wp-content/plugins/wordpress-seo/admin/menu/class-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-menu.php',0,'nSSp]SM','nSSp]SM',' 7rjwczyrY','',0,'?'),('~\r+T\r7;8B}','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-custom.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-custom.js',0,'mŤhֺ7\rO','mŤhֺ7\rO','r}hwqmCc a','',0,'?'),('Wu6!B=','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xk3$ok<\'',')/QҘ˴KP[lc','',0,'?'),('|j48KH,','wp-content/plugins/wordpress-seo/src/integrations/third-party/elementor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/elementor.php',0,'dqxz\0n`8.` /','dqxz\0n`8.` /','}Vb7y%mI|Cyn','',0,'?'),('ev/:;\Z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\0DiQI4˦8','0 9I16羕Pp1Y<G֨','',0,'?'),('=6u^}]¸','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/title-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/title-data-provider.php',0,'\r=	m5FnfcwK','\r=	m5FnfcwK','Q0\rj4.>p1hCcz;','',0,'?'),('ˊѡdn!	Q8','wp-content/themes/kadence/assets/images/placeholder.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/placeholder.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9^xiw\0H','*G԰?ox2L䧎?k0YA','',0,'?'),('RKQ5v-	','wp-includes/css/dist/edit-post/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\ZӤ\'@\n?]*','şx]e>:0M5cݺ:h','',0,'?'),('.sa','wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-simple-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-simple-init.min.js',0,'=|UNSֶؘ:-','=|UNSֶؘ:-','x:ci\'	lay|c_','',0,'?'),('q뻣D(j','wp-includes/blocks/list/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޱzl$L','8bc,lŨ%|M	Xk}','',0,'?'),(';(Xp`ҙpݷ','wp-includes/js/plupload/handlers.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p)kiv','s\Z:d6Qh[ p	]','',0,'?'),('ަ9R]K8l[?','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php',0,'Su΅0\n2$','Su΅0\n2$','?@éMu0:\00dm*','',0,'?'),('⮘ Fw\0','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kEmi[tRa','Xj/+M@Dpeϫů/-pQ0Vɂ','',0,'?'),('ywmR<OR\0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CHANGELOG.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӣ\0eYuXal4t<','YObI^JؠZL\0&Uٓ}','',0,'?'),('bMTT\'q;q8','wp-content/plugins/kadence-pro/dist/header-addons/header-search-bar-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-search-bar-options.php',0,'bΝ* (Q@Z','bΝ* (Q@Z','4Z^3kXUOR6FR&\'R3','',0,'?'),('+QA*pf|','wp-content/plugins/shortpixel-image-optimiser/class/Model/AccessModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AccessModel.php',0,'\\F|G(Ӧ','\\F|G(Ӧ','د\'WҚ4\nyh?4ܯ','',0,'?'),('6?\"Qحx','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/MediaLibraryThumbnailModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/MediaLibraryThumbnailModel.php',0,'^@t1_\\	ߢC','^@t1_\\	ߢC','3,Xr;P+r戽gBBk','',0,'?'),('\ZGub|e0wt','wp-includes/Requests/src/Exception/Http/Status501.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status501.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jNf','DNifqJ?3+B','',0,'?'),('t0ga/','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~-x\'	','{ڋNo#X+Xe\'_>\Z','',0,'?'),('\nqoqZVyX9','wp-admin/includes/menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7pF|`tb','g3]<*p3\0\n\'16','',0,'?'),('(E,=7	Io%','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php',0,'\0i%IϠm&x','\0i%IϠm&x','s.e,	m@\"}搧ъ.','',0,'?'),('	,v.(@','wp-content/themes/kadence/assets/js/product-cls.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/product-cls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~_[a_','$G\"L;)^<vlHeDj:y>f','',0,'?'),('Z{g}f-0\n','wp-content/plugins/wordpress-seo/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_classmap.php',0,'?@~ٿ9','?@~ٿ9','q!c&}530)L~ر@.','',0,'?'),('Z{_3X\0R','wp-content/plugins/wordpress-seo/src/presenters/schema-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/schema-presenter.php',0,'l{SoH\r{\'8','l{SoH\r{\'8','9s\ZĐΆ9g\'`ΐ-1)w!','',0,'?'),('\"V7^1?','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-singlebtn-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-singlebtn-block.php',0,'\0}yVc','\0}yVc','=DIsyd%q%u.2[\Z','',0,'?'),('&McݝE\\DKt','wp-content/plugins/wordfence/lib/sodium_compat_fast.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/sodium_compat_fast.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<{޼\n]qY','$/HpV8C.zb`C','',0,'?'),('3S~Vs?','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y3]3`:|','iEX:\'(uquO2]t','',0,'?'),('Cߊ	>?','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q+QV==p','/5k9f?;_VrD','',0,'?'),('Z֤o,','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Loader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Loader.php',0,'o\'Hllvj','o\'Hllvj','B)]5T5ycjіIaA\"Bk','',0,'?'),('}ޚ\n6~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php',0,'ƎF;6','ƎF;6','1;2#X)oJ̷Fe4cQ|','',0,'?'),('~[],*{VDMN','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#RpJ8l','-?\"c^HqcQ׈s@5','',0,'?'),('ET,ZT J\Z','wp-content/themes/kadence/template-parts/title/info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|/5*5E̱','.>[0<·8TxU','',0,'?'),('|ʜ.94d','wp-content/themes/kadence/template-parts/content/entry_loop_title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȓEA7','\\usSKa+}	duk5$Eu','',0,'?'),('Ư	\'CԻګ\Z','wp-includes/images/admin-bar-sprite.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/admin-bar-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S:W^','rN!`VOcKviՀ{Fn\Zle','',0,'?'),('4#հ}','wp-content/plugins/wordfence/modules/login-security/views/manage/code.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_29,HK','\0Ø>$Y^!L晚ez5G_E','',0,'?'),('vQm6\0','wp-content/plugins/kadence-pro/dist/infinite-scroll/infinite-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/infinite-options.php',0,'p}ϐlH','p}ϐlH','{GP\'$ i}k','',0,'?'),('~R+D','wp-content/plugins/kadence-pro/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/InstalledVersions.php',0,'&j\\3Qٖ','&j\\3Qٖ','1Os}2l\r޻&߬EY8V','',0,'?'),('l`b=','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-date-archive-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-date-archive-watcher.php',0,'|T36q[|̸','|T36q[|̸','\\ӾWZ+r0Uk@e9t','',0,'?'),('퓧u.惍@','wp-content/plugins/wp-rocket/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/ClassLoader.php',0,'+fq(4Ȯ','+fq(4Ȯ','k(\r(Njj\'̣6./\'','',0,'?'),('>\0 z\Z','wp-includes/blocks/navigation/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lV]&םg	','c^͢`kУOƶ+#aj','',0,'?'),('\"Z0\0ؿeԦp','wp-admin/css/admin-menu.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/admin-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_=sWNp0R[U','bqF3/ԙ!t.Kp}','',0,'?'),('\"7t `T3','wp-content/plugins/wp-rocket/inc/Engine/Optimization/IEConditionalSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/IEConditionalSubscriber.php',0,'5C\0=;m㱱1','5C\0=;m㱱1',')\\TΎzC/I]kW','',0,'?'),('\"8Y74O<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','diBDJD5O','NaiB\rAO]@P','',0,'?'),('x8[!>X','wp-admin/includes/class-wp-users-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9&gwul:','K.l?;?VkoG	9/t`Rxx','',0,'?'),('6<RJJ','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php',0,'#ٍ74','#ٍ74','SP\0T\"q1ϸ\0\0J','',0,'?'),('7.4<܏}','wp-content/plugins/wordpress-seo/packages/js/images/edd-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/edd-logo.svg',0,'\'T_','\'T_','PiOޓR{z\"\n2Ed+ey!5','',0,'?'),('Q׹{\"R','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Facades/wordpress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Facades/wordpress.php',0,'D~yVڷp{','D~yVڷp{','6xI~Ci;ۖ$9A4qr','',0,'?'),('v?)+`','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~B\0TCtn<P@','5lnMʜ3\r4{ʞ','',0,'?'),('xkuw7\\d','wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeActionsSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeActionsSubscriber.php',0,'	(ЅnJ]_','	(ЅnJ]_','$Ɠ)(A','',0,'?'),('oe$`D8!','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S#i(.[\n','\0?ٔByPh\n@:/o','',0,'?'),('e|}WX)t','wp-content/plugins/kadence-starter-templates/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{0,Q6n','`sN.-ډGDT-\nt','',0,'?'),('SzʀU\n','wp-content/plugins/wordpress-seo/admin/formatter/interface-metabox-formatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/formatter/interface-metabox-formatter.php',0,'!\Z؍o','!\Z؍o','U/yI^:?Rp$Rs1G','',0,'?'),('e|0]أ=V','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Telemetry/Telemetry_Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Telemetry/Telemetry_Subscriber.php',0,'qDpD[','qDpD[','_Zw0Xr-U/i@U0[r!','',0,'?'),('ue{X1','wp-includes/sodium_compat/src/Core32/Poly1305/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DM\"E4bќB\0','\"CYW6A\Zp7\r ','',0,'?'),('#6~	A^R!','wp-admin/images/contribute-main.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/contribute-main.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UVƦ2\0','9H;!-V$zd{mU%Y','',0,'?'),('\ZyAaL{ר','wp-includes/css/dist/commands/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/commands/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƧeK ','i(NO6Q\ZQ	W{v#','',0,'?'),('\'uDS6G','wp-content/themes/kadence/inc/customizer/options/post-archive-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/post-archive-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gb:b2Q%','ż7ֈ$ek,8\ZL>δ:*\rd','',0,'?'),('-ř<Fq7;#','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Downloader_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Downloader_Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','览ο)+Mn','V\0<ΜvN˚coDh-','',0,'?'),('.nq:i6ol','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Downloader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Downloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Шm','<ƍbͬ	KbH,2ه)\r(w','',0,'?'),('/0)\Z','wp-content/plugins/wordfence/views/scanner/issue-database.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S>ZG','\n#Pw3Id}͇%JjU+','',0,'?'),('4\'kkjH\0A','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/ServerSentEvent.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/ServerSentEvent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ZՠU3',')wGx,Lt#[waU?}a','',0,'?'),('8׸}:K_','wp-content/plugins/wordpress-seo/src/presentations/indexable-search-result-page-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-search-result-page-presentation.php',0,'.l{72Րl','.l{72Րl','4+*/S+!b䢈d7','',0,'?'),('@qG-$|','wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_wV-^+_9>','os/}$	_x\0u>','',0,'?'),('CAO^納%hE','wp-content/plugins/kadence-starter-templates/inc/class-plugin-check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-plugin-check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uyݺ*t!-',']()O\nanS2:$GJh{','',0,'?'),('G\"M~jޠY','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/adbario/php-dot-notation/src/Dot.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/adbario/php-dot-notation/src/Dot.php',0,'3{Tk°Ϳ\"\r','3{Tk°Ϳ\"\r','낃+(q3w@$ݣI<}\\#\\','',0,'?'),('H6f]V','wp-content/plugins/wordpress-seo/src/editors/framework/readability-analysis.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/readability-analysis.php',0,'<A{W(Ձts','<A{W(Ձts','#,ᅱsٽR\\l*-','',0,'?'),('SKK2iɈ','wp-includes/comment.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~0@7݀}<N','ojޝ[81N1XWԇ','',0,'?'),('Wp88ċL7','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/AuthFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/AuthFactoryInterface.php',0,'3\'̫SI\"','3\'̫SI\"','붤GybVgo','',0,'?'),('cC;V4cSW','wp-content/plugins/duplicate-post/src/watchers/watchers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/watchers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','srqX;*','ijގ\'<dK3@gb@j]-\"','',0,'?'),('ic7}Eث','wp-content/plugins/kadence-starter-templates/vendor/bin/stellar-uplink','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/bin/stellar-uplink',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(/ɛDQ(mW','.(I`[{UHAö\'(Y','',0,'?'),('nVw	?c','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-countup-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-countup-block.php',0,'#bҢd2U	,','#bҢd2U	,','MeL6vYgF2+sK\Ze','',0,'?'),('x_,[5','wp-content/plugins/wordfence/images/sort_asc_disabled.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǐ#a]2','[8lYckl	u#KVn','',0,'?'),('ygzaU\"	XKG','wp-includes/js/hoverIntent.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/hoverIntent.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$a','yf`D&LI9@q=AL','',0,'?'),('G&rZ݌>','wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J#.GYb\r\0/','1u~Բ\0}L\'? &44Fi','',0,'?'),('g-FAp`','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_zero.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_zero.php',0,'Ic&%?.','Ic&%?.','AG}`poeg>Qc#u','',0,'?'),('ӯfF^','wp-content/plugins/shortpixel-image-optimiser/class/Model/File/DirectoryOtherMediaModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/File/DirectoryOtherMediaModel.php',0,'jCOv,X','jCOv,X','&^˴	\"cHpGKL=0l','',0,'?'),('\0.TI9','wp-content/plugins/wordpress-seo/src/config/migrations/20201216141134_ExpandPrimaryTermIDColumnLengths.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20201216141134_ExpandPrimaryTermIDColumnLengths.php',0,'N|_0\0','N|_0\0','Q0ՠy\"I;\n/j?6^@','',0,'?'),('c+7i','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s`+hx	\Z&=','4}Kn.voi 9·Z%','',0,'?'),('vRz@7g*T','wp-includes/blocks/navigation/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V7wB20a','qbf߅BN6ՄUI;Iou\\AJR','',0,'?'),('}NeАA@','wp-content/plugins/wordpress-seo/admin/class-admin-asset-dev-server-location.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-dev-server-location.php',0,'z%4 !GSEk','z%4 !GSEk','/OAo8?ANfYK\r-!','',0,'?'),('ǲN͟S\'h,','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rxs ','נ\0ԩwHhD\Z6!g	Lx','',0,'?'),('O֝=[z\Z&','wp-content/themes/kadence/template-parts/content/single.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\|%R^ypF',' \0ve4$J#å&ple?\'5A','',0,'?'),('NTZto\r%F','wp-content/plugins/wordfence/views/scanner/options-group-general.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tLGa\0oҠbY','26ln\r\" c:ƅzvJ1ܶ','',0,'?'),('(ړSm','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/StorageException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/StorageException.php',0,'3_M&$8','3_M&$8','GA]RGki-ssKr9:@c+.','',0,'?'),('C(˄%','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php',0,'	ƅ#iB\03','	ƅ#iB\03','Mo-A7Fɴ>>Ph','',0,'?'),('RpB@LJ','wp-includes/blocks/archives/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4?	UEw','̴2I3QS*\"@L$	\"V?','',0,'?'),('wT','wp-includes/blocks/button/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}+/V(x¯d','YJy{\rn*qʫT-','',0,'?'),('w7\"EQ\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php',0,'4U\"3Kg?','4U\"3Kg?',';VGhz/~>W[-8;','',0,'?'),('9\r\rK|\r2','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericProvider.php',0,'W|1K(Hod4','W|1K(Hod4','ǦH\rH\'\n\'2~<IuFK`','',0,'?'),('TEaMYZ4CDi','wp-includes/fonts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!MaKװh1','Bƹ@,pqz]@)DuB[\\','',0,'?'),('J_r+\\o','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/JsonResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/JsonResponse.php',0,'֓Ν|%','֓Ν|%','8?#У|d\\:2W2B','',0,'?'),('Q%*K','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/wincher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/wincher.php',0,'xo<\rEܯ\ZXd','xo<\rEܯ\ZXd','a+\"#$ӵgSzi','',0,'?'),('!ȧRVD:','wp-content/themes/kadence/inc/customizer/react/src/range/range-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/range/range-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%#\r6>D?\\t','sM%|%=N._5%U$','',0,'?'),('/ɘ]^W\\q','wp-includes/css/wp-embed-template.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-embed-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1w%1OK+',',\0en6\"ļT/F8\rA','',0,'?'),('@4ΥYp','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php',0,'>>Ƒ\Z','>>Ƒ\Z','NkX	s2\"sg:uԠZ5擃N','',0,'?'),('D󮋜;RhT','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%4@䑞','c0Ay:[Ӻ>[\\޻','',0,'?'),('E=zCK;o','wp-content/plugins/kadence-pro/dist/dark-mode/footer-dark-mode-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/footer-dark-mode-options.php',0,'\0>b','\0>b','B	lb!VRY{=<','',0,'?'),('\\5	G-|u','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcher.php',0,'Ԥ<ěT^','Ԥ<ěT^','	iE:_j{R1cTx7Aq','',0,'?'),('^(Р','wp-content/wp-rocket-config/atlantagynecomastia.com.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wp-rocket-config/atlantagynecomastia.com.php',0,'w0HF .\"(','w0HF .\"(',' ъ8jJt!ͤ3/','',0,'?'),('^{\Zgl!','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G?\04\rԮ	&z','qU5!=ިGY[ʱ#1k~','',0,'?'),('`j/a	v','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KohanaInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KohanaInstaller.php',0,'tg@v,A8','tg@v,A8','qu5$).9\\$S)P	','',0,'?'),('mzPÝ;q\\4','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y3]3`:|','iEX:\'(uquO2]t','',0,'?'),('v{LJlōYz`(','wp-includes/js/thickbox/thickbox.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/thickbox/thickbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7PRn,(f','MߍV_^ol\'\0qYL̘)','',0,'?'),('zg*ߜ㎶_','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php',0,'XY\r/','XY\r/','a+	NBb+f.e','',0,'?'),('izi)7+O','wp-content/plugins/wordpress-seo/src/presenters/meta-description-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/meta-description-presenter.php',0,'6ECprHs','6ECprHs','F	,qKԬ.eE','',0,'?'),('hceL4 ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`c','I҇BΠ螁U՟{sq:','',0,'?'),('WTJ2U','wp-content/themes/kadence/inc/components/estatik/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/estatik/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(h;C^Ct}0','٥955D5ZIN8? f8','',0,'?'),(' P]^\rU','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-time-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-time-input-block.php',0,'q6T-l:','q6T-l:','-Ӄh\"ձxO<U=dy;','',0,'?'),('^	\"uZS ','wp-includes/blocks/comment-edit-link/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-edit-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nܰE\Z V','E	0XO3Sy{\rYڙ\'!,+ƃ','',0,'?'),('gm+,Ӂ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php',0,'5ulY!sW','5ulY!sW','V\Z_-F#DRQBlgwb\nh\0w5','',0,'?'),('=Z>yKN]C','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreBuilder.php',0,'f֠И/*d?','f֠И/*d?','$zI-?E	Cϙ:\rf','',0,'?'),('(NL;	','wp-includes/js/dist/api-fetch.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/api-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' pqٟb','1zf6\0NYNc\'kX3a[pJ','',0,'?'),('aJqe?X','wp-content/plugins/wp-rocket/inc/classes/subscriber/Tools/class-detect-missing-tags-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/Tools/class-detect-missing-tags-subscriber.php',0,'NĥIM','NĥIM','8r5}(aм4*i(','',0,'?'),('ģ\r |wĕ}','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/TheSEOFramework.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/TheSEOFramework.php',0,'@=O&N:&','@=O&N:&','^n4<~~j5M\Z*V','',0,'?'),('Q˜h#*r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/VanillaInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/VanillaInstaller.php',0,'Ӌ556B}','Ӌ556B}','wVoVJ	wi	85+n\0','',0,'?'),('[GA=O','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-users.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\nz*!|&','*lЅ\'ؒQjs5xLXU~M;I','',0,'?'),('FZ\nQCE','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RetryMiddleware.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RetryMiddleware.php',0,';bz3L3',';bz3L3','њQ`wd>OoJ\'NӁ>w,','',0,'?'),('1-Q$^','wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','բ	\"\\\n','v[-NYQVLVgn8b','',0,'?'),('\rms\0@=[','wp-includes/blocks/text-columns/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wMg5E_\"ۚ6-','ݴ3\0v\"EWPtTTu,`','',0,'?'),('Wѡ4ڋo(','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php',0,'S?	e?B','S?	e?B',' ˈ2r/$V@-WȬ!P~','',0,'?'),('֬+I7^','wp-includes/blocks/file/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\Z#8ъ','d3uQuHB	i!ve〈(','',0,'?'),('tZ}ؓS','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/Busting/BustingFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/Busting/BustingFactory.php',0,'c4E*@}','c4E*@}','s<t\reh(2UL]Tgj','',0,'?'),('RpxOU\"','wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-tab.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-tab.php',0,'L-\Z0vf\n','L-\Z0vf\n','+&h-ʚjFpR$ɩ	1#t','',0,'?'),('\ZQy}|}-','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/ServiceProvider.php',0,'34!*J','34!*J','&?ΎTSdkWŋ~7n','',0,'?'),('XVטO|8}','wp-includes/theme.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\\Qr;','|ƽAJ\rau\\hJzVv_\'','',0,'?'),(' m<-\'8Y','wp-includes/css/dist/preferences/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/preferences/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ܛIƐ','qe9-/Ap%!E','',0,'?'),('-@P-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̀ŷF>#]','>7B^\0¾_¨|%6EgU-','',0,'?'),('0\"G\Z=hV4','wp-includes/blocks/separator/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EȪh','אZȽn_6{Nn;FM>un\"','',0,'?'),('5LA;\\髦P','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/NotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/NotFoundException.php',0,'઴/z#ʁ-','઴/z#ʁ-',';*7FGtDhr	EG&Y3','',0,'?'),('BH*mzN83','wp-admin/css/edit-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/edit-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cz#h0%','jPQt\00(4zVKۧt','',0,'?'),('JN=h','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php',0,'p1\nci','p1\nci','j+_\Z#/ЪstʕN\\N','',0,'?'),('L1+oEgfg','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php',0,'^ִ5D\0zT','^ִ5D\0zT','V@XX.34','',0,'?'),('V}Pm/|I*','wp-includes/js/customize-loader.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`6!҃z','G?~D,(F]IbNEpcv:z','',0,'?'),('[1+~L!<v','wp-content/plugins/kadence-blocks/includes/templates/entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry.php',0,'(({QD,','(({QD,','<֖Y-!~9cLqY̦=Dx','',0,'?'),('l_\0]|	p','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/TransportException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/TransportException.php',0,'eM/<T2','eM/<T2','Z4yDuRlukaE0FZ','',0,'?'),('lt:{0+79C','wp-includes/sodium_compat/src/Core/HSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hx+07`}','@qzjI \0DaW6n{y','',0,'?'),('.v8-rJŕqQ','wp-includes/js/wp-auth-check.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-auth-check.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2YTxw','EID(10i|V:^s\ZXǂ\\9kOG','',0,'?'),('z>N}!^x','wp-includes/l10n/class-wp-translation-file-php.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translation-file-php.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɖx+YTM','g)rǡWKX,IpLQׯ','',0,'?'),('O9XKHo','wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php',0,'?Me&','?Me&',',I\n*6Rf U','',0,'?'),('\'Y?,mmk.','wp-content/plugins/wordpress-seo/src/initializers/plugin-headers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/plugin-headers.php',0,'=sTBT','=sTBT','(	yӠ%c]5Űw\"Ps','',0,'?'),('6UѦu','wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z	OU\0.Z','ȪRyw!<5??\ZnPY5s','',0,'?'),('7E#wŧj','wp-admin/includes/image-edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/image-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M~V5gI','vt؀ҾHi^l_9','',0,'?'),('UՉB','wp-includes/Requests/src/Exception/Http/Status415.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status415.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ne\Z^Ffm','*حҟ|9/_<1?+V','',0,'?'),('ѵn]28?~A','wp-content/plugins/wordfence/js/wfi18n.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfi18n.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i&XDEp/N','GU	*kP,:?+}xHb5#','',0,'?'),('bq/Fk','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7¤\rFg','nV\'VV)F|*ᑝ2Nz','',0,'?'),('}w9BN;@','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/placeholder.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/placeholder.svg',0,'L~4.(','L~4.(','\\[whl-X#`','',0,'?'),('͎y|p+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ms=lu\"%','/bu!@	ĿGd_^;98','',0,'?'),('=N}	Xy','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/InvalidArgumentException.php',0,'0TY&d_hQ]','0TY&d_hQ]','gdfiCǚ','',0,'?'),('hٰ<3$','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/FormattableHandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/FormattableHandlerInterface.php',0,'P`Ezs','P`Ezs','I=8ib`21{6c','',0,'?'),('HNf5+','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BTb\rԁI+*t','_J.V~|0\0^ϛw4','',0,'?'),('ʠlW?k}rT','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64Encoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64Encoder.php',0,'fzDi\',c?','fzDi\',c?','h9cu2F\Z<&ӟq9Q','',0,'?'),('o_I1','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Join.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Join.php',0,'۩2\Z#O^','۩2\Z#O^','hn;{dr֣=E\'\"Z/֟O','',0,'?'),('v|-','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!<]r','p[L7F|˖ZBR','',0,'?'),('iMuj楝','wp-includes/Requests/src/Exception/Http/Status306.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status306.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Hk{O;,<`S{~','Muy%hחHlcA','',0,'?'),(',cY6ߏ)','wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/Subscriber.php',0,'c߅S!#|]','c߅S!#|]','Kg߇?ƫ_9&\ZB','',0,'?'),(';qk','wp-content/plugins/kadence-blocks-pro/dist/blocks-imageoverlay.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-imageoverlay.asset.php',0,'b𼸾3nлk','b𼸾3nлk','>U!M{ʫO9X9r\'fd','',0,'?'),('!HUN&\"z','wp-admin/css/widgets.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1z|> ӕZT','2?-O{tMSnOCPHRNW','',0,'?'),('&?R2	XP..\"6F','wp-content/plugins/wordpress-seo/src/loggers/logger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/loggers/logger.php',0,')	kVb]8F',')	kVb]8F','{ k#1 I&F','',0,'?'),('*5ujp','wp-content/plugins/wordpress-seo/src/conditionals/wp-robots-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wp-robots-conditional.php',0,'1\"i)%l\r\"]','1\"i)%l\r\"]','Z{ \ZiURE\\','',0,'?'),('5YTM','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php',0,'Zy\Z+\r','Zy\Z+\r','u\\WԀ	^UQ7AP:\n`','',0,'?'),(':Va8\na?m+3Vi','wp-content/plugins/wp-rocket/views/cache/advanced-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/cache/advanced-cache.php',0,']߆\\;',']߆\\;','\' \\20Jdο4ݞ)Jл)','',0,'?'),('F߇#ata','wp-includes/block-patterns/query-small-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-small-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f@Iva=9uQ','ͷ%w@3#FZqt`so','',0,'?'),('H\n_Bn\0}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/ServerException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/ServerException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1K)c','o\\\Z왋S7R]ZU','',0,'?'),('L~iS?vC>@y','wp-includes/blocks/latest-comments/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\rVFv:','.h}B\rcKBR+k+%IAj','',0,'?'),('S7zǫW~2','wp-includes/blocks/site-tagline/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9s+2c1\\%\0{','ZkR⨈\Z5pm\\nz','',0,'?'),('T3D~CTD`','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap80.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gPz}6','<<aVvgi$j) ls','',0,'?'),('T٧r\0','wp-content/plugins/wordpress-seo/admin/class-schema-person-upgrade-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-schema-person-upgrade-notification.php',0,'hwu$y\nT([','hwu$y\nT([','cze[	<*sdAf\'9R*(','',0,'?'),('U4Nb<#_','wp-includes/blocks/video/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']C-͗d^f',';nA5dSwDPGH/U،oU˕','',0,'?'),('Y=/q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Test/TestCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Test/TestCase.php',0,'ck$\'','ck$\'','bJ\'sλGV/	Avn&t	','',0,'?'),('^>1PiP=','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','stCrha:x.e׿','L\Z󭌡J$i!]k^','',0,'?'),('atUq^!0ƣl','wp-includes/post-formats.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^<O,b3e~','Pg>aξP+ϲ\Z%G%@AN','',0,'?'),('g!5߿','wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager.php',0,'6U>yVTq\n','6U>yVTq\n','.mR]oޓA}X','',0,'?'),('k_L/n/','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+a|Pɪ','`CvgQl<rȮ)[','',0,'?'),('kzߣboR','wp-admin/post-new.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/post-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\n(ḑ{z','TѶLc4OoFdd','',0,'?'),('u\n&fmqC','wp-content/plugins/wordpress-seo/src/builders/indexable-date-archive-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-date-archive-builder.php',0,'QjDm(O','QjDm(O',' 7F@NlsKJ','',0,'?'),('vO#JN+쁁','wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$2J','/#?TiOLyvuTKɤ\\ػ','',0,'?'),('x^͇c+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ServerExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ServerExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Mhx','dI6rfУ(\"mIC|!<:q{u','',0,'?'),('|vP0fhT','wp-includes/js/dist/block-directory.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-directory.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^;7_˰U','<Q\'~,IvaaS?p','',0,'?'),('X\';yfF','wp-content/plugins/wordfence/lib/wfFileUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfFileUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1}o!8|O\'','jcORox&#A\\!ǌР,2̖r','',0,'?'),('IC&D8ZI','wp-content/plugins/wp-rocket/inc/Engine/License/Upgrade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/Upgrade.php',0,'\Z)CJ6(~','\Z)CJ6(~','dufpxB9^yK.0','',0,'?'),('@{J5䷴X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,:)؋\"QqY','\"Ooۈ<oES-MO÷YN!','',0,'?'),('W:.S-7K','wp-content/themes/kadence/assets/js/shop-spinner.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/shop-spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<{d3Ƿk','CGMx .@k ү|K럪m','',0,'?'),('ɂd-(L','wp-content/plugins/duplicate-post/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`byP:\n','􆷕nԜ@04','',0,'?'),('L6	׳','wp-includes/ID3/module.audio.ac3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.ac3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Y\Zk0aM','b^#¨(t^rߘz9F','',0,'?'),('_sP8R','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Jetpack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Jetpack.php',0,'cA.S','cA.S','*{iD7dX^m%*.˨','',0,'?'),('\0?n^,}','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/nginx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/nginx.php',0,'w;-*A','w;-*A','?bzhQ:Э^}~','',0,'?'),('Ohd[wx','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׿\"y 6','[6\Z.\'Rlx UW]!Io','',0,'?'),('TV\\','wp-admin/import.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\0Z\'0o',' UI#f_\\\nS3<2YZm8u','',0,'?'),('ͫ5>]t','wp-content/plugins/wordpress-seo/src/models/indexable-extension.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/indexable-extension.php',0,'[|\0$31l0','[|\0$31l0','Q<.0]Zk:޸:/m','',0,'?'),('rF}|.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php',0,'w\0\"Q<I4½','w\0\"Q<I4½','w\0X8K4&hFaXLd','',0,'?'),('s_','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php',0,'6p_O\Z8\Zn','6p_O\Z8\Zn','dO{^(xb$u1R{ţˀ`','',0,'?'),('=IZ1=|\Z\"','wp-content/themes/kadence/assets/css/src/_pagination.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_pagination.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƭKGU','-_,X\',,]K1®npTt','',0,'?'),('ܵ[Ҳm%6S8:D','wp-includes/images/toggle-arrow.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/toggle-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·a;d*','[b\Z;]f0s|:%','',0,'?'),('߃=|^86W','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/media-files.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/media-files.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǟe`\npY','P2{lx] T(\\DI','',0,'?'),('kAEZV','wp-content/plugins/kadence-pro/build/dashboard.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/dashboard.asset.php',0,'uCzp_hr%','uCzp_hr%','8}xAv\"?<o]rG.!V*d!','',0,'?'),('yMz6E','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-measure.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-measure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E1hQҕ>M*','yP\"D+O]\'%;`<H9r[','',0,'?'),('$Oqyܹ','wp-includes/blocks/audio/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٍ','\r>3;-so\n{sUwN\0!','',0,'?'),('!ެ߳p','wp-includes/images/crystal/default.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A>)*/!-','n$_u	$Q3E׏r|Jm','',0,'?'),('>he)F?c','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/OverflowHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/OverflowHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KIDd/ŠwN/G','nB6qoW!zLCo8;H͇~hc<','',0,'?'),('k\\','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Pressidium.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Pressidium.php',0,'\n|_\\z','\n|_\\z','\'hQ4&3v;ŝ@ga','',0,'?'),('I	2RNjY','wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c+9O˚d/R\n','>s$/C yv','',0,'?'),('&MXWO','wp-includes/error-protection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/error-protection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@GX=\">7Ś',',끭@cZ/_,<Җk','',0,'?'),('\ZJ0>Vfŝ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WHMCSInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WHMCSInstaller.php',0,'\"Z)_^ph','\"Z)_^ph',',dů(rvqh$C+ږ6aOD܃','',0,'?'),('5Y\'ڀ`ѫ','wp-content/plugins/wordpress-seo/src/conditionals/admin/post-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/post-conditional.php',0,'s6`8U-','s6`8U-','pqb,D.:s1ȥ','',0,'?'),('?B$8z}yi','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y,7\0_','u1Lw$UB;r\n)','',0,'?'),('PIUxfJ%q','wp-includes/blocks/footnotes/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڌ\ZZSI-','PINΙZtr\'ׂ=,]-','',0,'?'),('R-	ʑͭAaD','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D=\'6[h#3','|b/]İp0PP0_Gpq]uhU#','',0,'?'),('W\"R-k~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php',0,'нI+CE','нI+CE','i4z]w0~ǐWc2\'','',0,'?'),('YҍY-ҥo\Z%','wp-content/plugins/wp-rocket/assets/js/wpr-cpcss-heartbeat.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-cpcss-heartbeat.js',0,',?_a78',',?_a78','X-V^A ry$7*lhz}} ','',0,'?'),('\\Дhc','wp-includes/blocks/page-list/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ent<4\0eJ','4숐7oD74:J[','',0,'?'),('a<dQ8','wp-content/plugins/wordpress-seo/admin/class-bulk-editor-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-bulk-editor-list-table.php',0,')MmӉ1z',')MmӉ1z','BWg/~ņݨ&Oco<','',0,'?'),('huDrZKPd','wp-content/plugins/wp-rocket/assets/js/wpr-admin.js.min.map','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.js.min.map',0,'v]Xo=ދ','v]Xo=ދ','__.+7YA2{ǝ΁','',0,'?'),('k#4]R~C+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PŋbfCT!Ud','\ZY5\nxFbۘVG{Ew','',0,'?'),('o4f?$','wp-content/plugins/wordpress-seo/src/conditionals/admin/posts-overview-or-ajax-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/posts-overview-or-ajax-conditional.php',0,'ָDU~C8','ָDU~C8','fY{FY&c;k+<{	','',0,'?'),('r$wʒ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/FileNameSanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/FileNameSanitizer.php',0,'*Td\rYx.','*Td\rYx.',',w>\rG٫y#_gֈ3gātѳ','',0,'?'),('u1HM:E7/{','wp-admin/includes/class-wp-site-health.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\\6mi&','ٷ.!97.Z<I˕JLH+|2','',0,'?'),('.h:3','wp-content/plugins/wordpress-seo/js/dist/react-select.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/react-select.js',0,'K]|I}4HX','K]|I}4HX','tQN+pfc+Z','',0,'?'),('V^J.r[','wp-content/themes/kadence/template-parts/header/popup-toggle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/popup-toggle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4}IYC`/`(','\n]aFKw~ÓsG-Vڧe','',0,'?'),('ZԬ=!Ri=7h','wp-includes/js/dist/vendor/wp-polyfill-object-fit.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w$1)x5)L{p','ǈv㡴y\"0Mp@RTඒK','',0,'?'),('6ya51R*\'|','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatter.php',0,'sK>pϺވ','sK>pϺވ',';c{R:.):R:|˺','',0,'?'),('+ڬ|(\'2','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php',0,'i\Z~/%','i\Z~/%','#\n>&l}4OGZ&:VqɔF','',0,'?'),('cjPt!','wp-content/themes/kadence/inc/customizer/react/src/measure/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/measure/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Ģ/\rǻ\0tS','f)\\j?Ylޅs`%5s','',0,'?'),('p4kcQ(0h','wp-includes/blocks/avatar/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D||PyXG','~_8x~5K<A{ؚe ','',0,'?'),('NYc6q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseInterface.php',0,'7.@Wۭ','7.@Wۭ','p@׼AT^?ʧ<gN:t{','',0,'?'),('IڣBOAB	','wp-content/plugins/wp-rocket/inc/Engine/Deactivation/DeactivationInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Deactivation/DeactivationInterface.php',0,'U:>7k25US#0|','U:>7k25US#0|','i\r);.{F(i	V<֝Nd','',0,'?'),('<fF1h','wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories-post-edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories-post-edit.php',0,'fldN`Gr(%d','fldN`Gr(%d','t9v0%+|Qq\ZMfYTF','',0,'?'),('ǀ3<&YĆ','wp-includes/class-wp-roles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zb)KU3m\n','{anD\Zb80~x\n[wߢp','',0,'?'),('Ǻp ZY','wp-content/plugins/kadence-pro/dist/header-addons/header-divider3-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-divider3-options.php',0,'{Cb+~','{Cb+~','\nE7̧[pX\r_NE%4R#U','',0,'?'),('f0ͭ~)','wp-includes/fonts/dashicons.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z_rY+ʂ;','yU]f8tlL.','',0,'?'),('АU#zl','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','djY/k!Y`','34Ή;[_jа9AQI(','',0,'?'),('?Q-ĻM͐','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advanced-form-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advanced-form-block.php',0,'bVǼJzU,','bVǼJzU,','m(!Mz[\" y{ja\0q\\','',0,'?'),('527R\'W','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/google-drive-storage.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/google-drive-storage.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׶oQwvͧ','+HqnOyT;(T+~7fl\'1','',0,'?'),('MO,s\r','wp-includes/class-wp-http-encoding.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Myy`DJj4$ڈ','~?r2߭PɅ[	\nY9fK','',0,'?'),('-v`o','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php',0,'l3ezȮ','l3ezȮ','E-a-1C4+PtxNs^_','',0,'?'),('#<\0E\r','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V3$aVu$','_Kt4%DIL5R頬\0','',0,'?'),('̈́>ϊq?\0IX','wp-content/themes/kadence/assets/css/editor/zoom-recipe-editor-styles.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/editor/zoom-recipe-editor-styles.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a(IRp>֢	K','rf,S	ˋPHHz:','',0,'?'),('&qM@Et','wp-content/plugins/shortpixel-image-optimiser/res/js/shift-select.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shift-select.js',0,'WIZsw\n','WIZsw\n','GI3IE1WfQTD?wo*','',0,'?'),('AV6','wp-content/themes/kadence/inc/customizer/react/src/icon-controls.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/icon-controls.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mWw!)b<i','>sji7K˿Pe5~h:r','',0,'?'),('I<l	QΒo','wp-content/themes/kadence/inc/customizer/options/footer-widget1-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget1-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<{{)io','!ɢ=6Yhg\'|*b=٧J,;|','',0,'?'),('zJ/B&C%','wp-includes/blocks/post-featured-image/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DJ/=9K/z','H3M<$2Nr>8.\"','',0,'?'),('\ZƆɻF.2T$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php',0,'Idm \\','Idm \\','\"AƑ4]}\\\0ɞnuI\nPH','',0,'?'),('#ynہ彐[hr\\U','wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3]>^#;Y','O·]V-n.','',0,'?'),('5;T]\0','wp-includes/blocks/post-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PSVz@k','̎TSd?9\"kN\0\'','',0,'?'),('6|;;8Q4k','wp-admin/install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!xZ|Wp(|Q','50PI=0f<!HKu豈?c','',0,'?'),('7XU\'','wp-content/plugins/duplicate-post/src/watchers/copied-post-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/copied-post-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z>\\T.\\^D','Z9q*,DN6,`B*E','',0,'?'),('9eEbݾl3','wp-includes/js/wp-lists.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-lists.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V1+ޫ7oT','%jhAk\"q2QWixFxY$','',0,'?'),('BIEC#s','wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/Subscriber.php',0,'o`w\'?$','o`w\'?$','cWhDY\'tTYoNv$S(','',0,'?'),('V*\\kD{u[:','wp-content/themes/kadence/offline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/offline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8y@y\0+(','G뺗6hNP*rI!%(\0','',0,'?'),('s4/rJ\n^P2$M~','wp-content/themes/kadence/inc/customizer/options/footer-widget4-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget4-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2n\ng1#C4','_)Vbft+FY8[]Ҟ','',0,'?'),('s6Z$ӾyD(','wp-includes/blocks/group/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=>*f[','ϩzJ&O{|K^֤0.1t','',0,'?'),('z9	`d3\0Iay','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mgQ~[#\\b','PMT1;B`','',0,'?'),('}q8q0:','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php',0,'s\\K3\'#','s\\K3\'#','U^\0>Ã|Bk_\'8\n$b\0|','',0,'?'),('I%dvD۽\07','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php',0,'u\Zx/.n','u\Zx/.n','yȓ-꠆НxE\nB_1','',0,'?'),('\Z5o#R\'/l','wp-includes/fonts/dashicons.eot','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\Z>w@R-/Y','B\nZ\Z_pn͂Q?/\r3s})','',0,'?'),('yAK^','wp-content/plugins/kadence-starter-templates/assets/css/main.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/main.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(hzI','-%{M|YBR}ȹ D0̀G{','',0,'?'),('k	\"2N\0|1','wp-content/plugins/kadence-pro/build/customizer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/customizer.js',0,'GҌŰ','GҌŰ',':!T,oeu;U0{>: ','',0,'?'),(':M\\{G','wp-content/plugins/kadence-starter-templates/assets/images/fonts/antic.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/antic.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q`ڠ:Mx','g\rF\0@\\wQ ëAz\07Km','',0,'?'),('~}+FOFK','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/DeferJS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/DeferJS.php',0,'K\Z#YCZw','K\Z#YCZw','6}7?`sNs#t5+%xs','',0,'?'),('$26Q\n[I','wp-content/themes/kadence/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_lD!','g.M+\r$K#hqtIfɈ H','',0,'?'),('֑	{$','wp-content/themes/kadence/assets/images/icons/credit-cards/discover.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/discover.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QBXpU?z','ZKN<_\rh3ݧFՊŕD','',0,'?'),('E?Юᾠ','wp-includes/js/media-views.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĭϿR%q.>}','2 Pgo(ok9^\rh׏\r','',0,'?'),(' vbu)','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Y@_x','ް\Z^3ɟvU.a\r]fhI(sA','',0,'?'),('\"n#Q','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' AeGDGq','Ijj1r#IpL^Q','',0,'?'),('\0k瀺j	r','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Exception/ContainerException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Exception/ContainerException.php',0,'\Z\\E.','\Z\\E.','rtjGYZ\0RbSZDpw^','',0,'?'),('R:^e+x2c','wp-includes/PHPMailer/SMTP.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/PHPMailer/SMTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SQ<3m]u','\'_\n*6ÂvLO','',0,'?'),('Y\Zx[k2d','wp-content/plugins/wordpress-seo/src/conditionals/third-party/w3-total-cache-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/w3-total-cache-conditional.php',0,'X҂_HSkHh','X҂_HSkHh',']c!Payc`΍)GQb\'A\r','',0,'?'),('שDEi_','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-already-installed-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-already-installed-exception.php',0,'`GvE0s','`GvE0s','R묥&F^\n~=G1_2','',0,'?'),('WD$7w3S','wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-activated-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-activated-conditional.php',0,'ը.&D','ը.&D','\0{\ZY$\"7%z9㟧l!','',0,'?'),('@} VՋ2','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-custom-svg-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-custom-svg-controller.php',0,'g<ɼr~1\n	e','g<ɼr~1\n	e','IyņxZo.~5\\frW','',0,'?'),('=?;~7SQ\Z','wp-includes/blocks/comment-author-name.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-author-name.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IpYh$Ow1P','	%{\Z\rƺA?mxl0c>','',0,'?'),('2q%pVi','wp-content/plugins/wp-rocket/inc/Engine/Preload/Fonts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Fonts.php',0,'ӟQ)3M\\xyk$g','ӟQ)3M\\xyk$g',')!r 5v.oG;!s9$','',0,'?'),('Cg}|E','wp-admin/js/word-count.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/word-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xgU0V','0twTz+of/\rh','',0,'?'),('uEz#d','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MultipartStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MultipartStream.php',0,'ىٝ!l.','ىٝ!l.',':NI+Qo2J\\>Uk&p','',0,'?'),('	vO.|ߤҵ','wp-includes/js/tinymce/license.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ox:`','Y#wOg^\'b:^	=跨|','',0,'?'),('׾i5z>Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php',0,'W\"#EY{M','W\"#EY{M','[`m_Ivw)qQM','',0,'?'),('L<Q(_g ','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ResettableContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ResettableContainerInterface.php',0,'e).7:4]7]\"J','e).7:4]7]\"J','NqbGx<B\'\n}Z','',0,'?'),('(O)Xn','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UI-#e2V?}','Ec׎j4-Ԍh^2OݱS','',0,'?'),('pjk<','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/ExtensionFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/ExtensionFileException.php',0,'p:~(vUG','p:~(vUG','>A:-ҟqw\Zl9)<V7%3','',0,'?'),(':崞tǓ	̅O','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-dynamic-content-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-dynamic-content-controller.php',0,'&F78','&F78','bZl_	*q7.[QuD\0','',0,'?'),('>ܢӰ\Z1=C','wp-content/plugins/wordpress-seo/src/presenters/canonical-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/canonical-presenter.php',0,'MV_,ov','MV_,ov','\"fKCѪv<4 ιT&i','',0,'?'),('CQ%@	Ja ','wp-includes/blocks/archives/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','՜VHZf','4!\0}!;9ol_l4fLVl','',0,'?'),('LߨϤ(R','wp-admin/css/code-editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/code-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gqis픋-','~:\"`he&@*A','',0,'?'),('jHE45wn','wp-content/plugins/wordpress-seo/src/generators/open-graph-locale-generator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/open-graph-locale-generator.php',0,'B+9','B+9','7YmRtYVWJn%','',0,'?'),('})kǘ\nC\0.','wp-content/themes/kadence/inc/customizer/options/search-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/search-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ןnTBsWKӾ','ev\ZE;7DF3c\"<+ԑ)7U','',0,'?'),('5Wk^.','wp-content/plugins/wordpress-seo/js/dist/admin-global.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/admin-global.js',0,'xXF4T$h$]','xXF4T$h$]','~TЙ$/6G-\0HƆ\0⦟fz46\'','',0,'?'),('lhmfsa\Z','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ProviderRedirectTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ProviderRedirectTrait.php',0,'\"R,^c\rdnV','\"R,^c\rdnV','_?\0z~AA2Q,Z','',0,'?'),('1^*','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ClientExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ClientExceptionInterface.php',0,'6\"mތ','6\"mތ','YrJFg*L:F-a$C24AQ','',0,'?'),('&vd!k','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/Grapheme.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/Grapheme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FLM׫Z~ Zà$','?ٕ!_..`^.V$>;\'h_','',0,'?'),(')ȫh\'Do','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Presenters/WPMessagePresenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Presenters/WPMessagePresenter.php',0,'lSccӗR>','lSccӗR>','rh\"o\\^ﮄf<,a}_0B','',0,'?'),('pKb\0!(','wp-includes/css/dist/block-directory/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-directory/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CJZxeN','u;˭sfob)3','',0,'?'),('&','wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';¯^Q\'','gn\rLaPE7|vRXi','',0,'?'),('(lX','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Data_Providers/Null_Data_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Data_Providers/Null_Data_Provider.php',0,'~[4fC)h+','~[4fC)h+','luSJ[yIorR\\q]_<','',0,'?'),('&شȶ;','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Filesystem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Filesystem.php',0,'\Z6RQ7\'3a','\Z6RQ7\'3a','P(SپoJ<s\0R!uAִ6','',0,'?'),('\07\n','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/slider/meta-slider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/slider/meta-slider.php',0,'ƍ\nsbp#1','ƍ\nsbp#1','&cɕleZ`N>IH3/','',0,'?'),('+JmVr22','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-submit-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-submit-block.php',0,'M./JHݮ?','M./JHݮ?','hE$g{er)h\0\"tp)ܩ','',0,'?'),('T1Г','wp-content/plugins/wordpress-seo/src/integrations/admin/link-count-columns-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/link-count-columns-integration.php',0,'du44J(','du44J(','P6sYc:N;`DSw','',0,'?'),('n','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-jetpack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-jetpack.php',0,']~]rMͪ(vu',']~]rMͪ(vu','YzЖ4/h^DϚ ؞@&','',0,'?'),('#~9~EI','wp-content/plugins/wp-rocket/assets/img/icon-user-cache.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/icon-user-cache.svg',0,'	MGܰ[','	MGܰ[','p0%TBmh.KgF	K;>','',0,'?'),('e\rRTo','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Subscriber.php',0,'Z|{','Z|{','^8%yEC`9[;pA\0)','',0,'?'),('G+Sdx','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/BasicMessage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/BasicMessage.php',0,'kS!EUJ','kS!EUJ','BWT}7STpZl,QR*E\"A','',0,'?'),('v/9iB5g','wp-content/plugins/wordpress-seo/src/user-meta/domain/custom-meta-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/domain/custom-meta-interface.php',0,'<(ͨğ_	','<(ͨğ_	','cZIO\\zNLF@b̅B','',0,'?'),('F+`U;\0','wp-content/plugins/wp-rocket/inc/deprecated/subscriber/admin/Optimization/class-minify-html-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/subscriber/admin/Optimization/class-minify-html-subscriber.php',0,'JR&Ym','JR&Ym',']c2twm^,\0 }','',0,'?'),('|~','wp-includes/sodium_compat/src/Core32/Salsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6):','H0Lї?㞹.1MIe٣','',0,'?'),('I%BI~rmab','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/RequestExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/RequestExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՅڕIRs','~R>l,\'Hf','',0,'?'),('?uq?\'E6','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/index-mobile-https.html',0,'\"!Z>','\"!Z>','\"~̔0$ታhMi+Mbe;A','',0,'?'),('/et[~\0u','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php',0,'BG̟XLk\0','BG̟XLk\0','{罟[F4W%O6\nqHƸ]','',0,'?'),('b|e~','wp-admin/css/customize-widgets.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hͺ/ME߾_؀C2','?ε^d{)iҲ߼U;,=5AT','',0,'?'),('alV?f\Zё','wp-includes/IXR/class-IXR-server.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d߹$c9','\0{MU\rN.)-`wH','',0,'?'),('\0hKf\0','wp-content/plugins/wordfence/images/forward_enabled.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/forward_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\0/3e4e','0Q7018ު9-z9ؽqSrĒP','',0,'?'),('H06','wp-admin/images/browser.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/browser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\b$F','&$ĉ9~_SH_̓%L\'&','',0,'?'),('8(\ZjZ]}','wp-includes/js/jquery/ui/effect-pulsate.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-pulsate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ީ2}\'YԈH\0','KDڊfDb$*\ZwupB','',0,'?'),('j\"=c','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageMeta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageMeta.php',0,'2@soۈi2U','2@soۈi2U','@;-i_v4@ݪ7@=BMF','',0,'?'),('kמˊ\'&_','wp-content/plugins/wordpress-seo/admin/class-yoast-columns.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-columns.php',0,'4Ď-&','4Ď-&','K) Dbx\0d\080=x E','',0,'?'),('oXڼ=׋','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Info.php',0,'=D\'Wj*<3C','=D\'Wj*<3C','qDec7Ox@.xk`V(','',0,'?'),(' ;P637PUF','wp-includes/blocks/comment-content/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tfg}ȅAP','2Ш!H`a]Uq\Z[}','',0,'?'),('!dMC5W\r${','wp-content/plugins/kadence-starter-templates/kadence-starter-templates.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/kadence-starter-templates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q2v6ͼ','&;M\\YlxLڙ=v{7H$O','',0,'?'),('!D)q$i\\3m','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Template.php',0,'F\\}b\\m','F\\}b\\m','!ƭOQRnsw\"HפY8','',0,'?'),('$WiqTe','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ResettableInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ResettableInterface.php',0,'w@m','w@m',',s$½$6gPrT>\03\"','',0,'?'),(')H@蹢v^g','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.g{Ck:T>','LRzl\\\'#2^ϯْlg_iL}','',0,'?'),(',~ZO{\"wp','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/Formatters/ColoredLineFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/Formatters/ColoredLineFormatter.php',0,'zHG+.x՘D','zHG+.x՘D','o˸(;	$D\Z;ZmS>ML','',0,'?'),('/}w/R','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatableInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatableInterface.php',0,'Nk;7|8','Nk;7|8','1\"`9\"RY!;dCda\r/','',0,'?'),('@E	 ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/resources/js/scripts.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/resources/js/scripts.js',0,';:)y2KJ',';:)y2KJ','w~+_Z)9\'r[T3i','',0,'?'),('LX\'c.Dd','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\0;dtz^n_Q','Q7REX\05CA<F4]rK*0','',0,'?'),('OL)1#=ސK','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php',0,'yy	(Z߽\rj`','yy	(Z߽\rj`','Ufo\\Xnr#>mV\0#k\r','',0,'?'),('P٦>X4[^/Lc3','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php',0,'b}	^a','b}	^a','~z^IpjKۍnFO\0߻J','',0,'?'),('US\rBc>\r','wp-includes/blocks/latest-comments/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ow]Sp?O','2֞>ܠ si1B^\rIP6w','',0,'?'),('XRev OU','wp-includes/blocks/quote/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j!s\0','-w_@P%,6QrUӅ','',0,'?'),('Xg5(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7I 1FGuj^',' ûͥJOmO:ϙlW5','',0,'?'),('Y=U.ۧ','wp-content/themes/kadence/inc/customizer/options/header-search-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-search-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\EoŝyN','w*\Z-rqlw5@!NXJ_','',0,'?'),('\\fE\noGT','wp-content/plugins/wordpress-seo/src/helpers/indexable-to-postmeta-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/indexable-to-postmeta-helper.php',0,'1h\'9vbn;','1h\'9vbn;','kK/ᐺtS/\rY4rЮ	?','',0,'?'),('gdзnX','wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z\0A ݩ','rA9|o8;h{UmK@O+qSzz','',0,'?'),('pt_ Y7LKt','wp-admin/css/deprecated-media-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/deprecated-media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sr\rIsL','Uِ1mݨ:0ܒ>','',0,'?'),('][\r','wp-content/plugins/wordpress-seo/src/config/migrations/20191011111109_WpYoastIndexableHierarchy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20191011111109_WpYoastIndexableHierarchy.php',0,'|1|m(','|1|m(','f~;Ɣ ^@L@4Sz^ўO4','',0,'?'),('l?]ZjKY','wp-content/plugins/wordpress-seo/src/presenters/open-graph/locale-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/locale-presenter.php',0,'ZzbI2S8w%z9','ZzbI2S8w%z9','71-QV@6[oYFUK!RY','',0,'?'),('ͺWʹ','wp-content/plugins/wordfence/js/wfdashboard.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfdashboard.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԽP`{i','=Pzr!?w\Z/d!LӪ1!','',0,'?'),('5\nHIY','wp-content/plugins/wp-rocket/inc/ThirdParty/SubscriberFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/SubscriberFactoryInterface.php',0,'-e^`o','-e^`o','[(* ]X;kl6EO','',0,'?'),('W=\'','wp-content/plugins/kadence-blocks/includes/resources/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Container.php',0,'ޗRGkp\Z\"Tm','ޗRGkp\Z\"Tm','xL3]d-BF\0Ɨ&\0','',0,'?'),('TDFK1','wp-admin/css/media.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\'we\0\r\r<','Dfbzn-ym*6xA?`','',0,'?'),('N.c	]`','wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php',0,'ꍺ<٩SHQO','ꍺ<٩SHQO','&4DքP\"w?\r2q','',0,'?'),('{ڸE','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/autoptimize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/autoptimize.php',0,'\'A{k湂-\"','\'A{k湂-\"','6XmY/#Ä[ wVw','',0,'?'),('.O(','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php',0,']T\nWlH8',']T\nWlH8',' 342,}rWJS!ХD?1Z','',0,'?'),('ZmQya}','wp-content/plugins/kadence-blocks/includes/class-local-gfonts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-local-gfonts.php',0,'kQr','kQr','<ï)x貫9-;\\AX','',0,'?'),('ïh]tuEO<','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_static.php',0,'7+~&^Dj','7+~&^Dj','J#iқRwqxI+XyWB','',0,'?'),('Β5??[n}dn','wp-content/plugins/kadence-blocks-pro/includes/blocks/form-convertkit-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/form-convertkit-rest-api.php',0,'Fd0pԇP\n','Fd0pԇP\n','CKʣ\\ORb{0-㷂.','',0,'?'),('/GΞӶ[ǜC','wp-admin/js/gallery.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':kvT\'nd','y=]\Zs]jp̛ׅ6bva','',0,'?'),('{޻e<@','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-comparer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-comparer.php',0,'xN (','xN (','W-\r(&F,\"\\ F\0EMm','',0,'?'),('[/9}`:wP','license.txt','/home/nginx/domains/atlantagynecomastia.com/public/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oѬ','m*c*֐%>_|ya\rvy%_x','',0,'?'),('vK:ZF','wp-includes/blocks/site-tagline/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r38ߟ','ŲuΑu- xmoC\0/#','',0,'?'),('!$\Z-`{>','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/editor.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=|#kh*gK}','t}BD~]M؈[En?<n|\Z','',0,'?'),('7%̬&','wp-includes/css/dist/block-library/common.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G0X7F','kU\'\"-M*uFF','',0,'?'),('en\'LBvj\r','wp-content/plugins/wordpress-seo/src/integrations/third-party/bbpress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/bbpress.php',0,'Q7$PvK(7m','Q7$PvK(7m','z)yJVg{ٱxC\"vFndPX','',0,'?'),('\0.}fwA','wp-includes/date.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϿNae\\E','CRH<fT|Ϫ/\"Φh$','',0,'?'),('GO,,穟','wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Z%8|e-B','ebvTK-{	<P)#','',0,'?'),('\r%A}* V','wp-content/plugins/wordpress-seo/src/helpers/schema/replace-vars-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/replace-vars-helper.php',0,'wtC-o5','wtC-o5','<7>ʘOykyMA&]','',0,'?'),('*,TR۪*V','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/DefaultValueInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/DefaultValueInterface.php',0,'rp<R\0\\u.ӱ','rp<R\0\\u.ӱ','LɔɉLSf!\nJ\\_ ','',0,'?'),('=&#z@<:','wp-content/plugins/duplicate-post/src/ui/admin-bar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')K/\"$1\'s','Mob,+6ir|','',0,'?'),('?TEbV+#闓HC','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/LogicException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/LogicException.php',0,'%.v!{9','%.v!{9','>-q;v3RјuAIr,8^','',0,'?'),('Bg$FZ{\"F','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload-files.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload-files.php',0,'taaPj,jD','taaPj,jD','2\'TG)$zWyc~\n','',0,'?'),('P0kWZK','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9_\0!','W\0^9ACv|!ȶq;$EnOE','',0,'?'),('V.z7{vd','wp-content/themes/kadence/assets/js/src/admin-activate.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/admin-activate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oyS=','~oDG/_%Qy}BQ1,Q','',0,'?'),('[QH\"pS1Ȫc','wp-admin/images/arrows-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Q}ydb#6',',c˿\Zi(~)\'8[A/Ix','',0,'?'),('\\l/S	ʨz','wp-includes/blocks/template-part/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ddlOB','<E\"bk,@Q ¶3I#/\"','',0,'?'),('f{Y>\'*>EѼk@L','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BitrixInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BitrixInstaller.php',0,'i-','i-','@YBwvezZ]>`4.V','',0,'?'),('nI1*dPb','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PageBuilder/Elementor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PageBuilder/Elementor.php',0,'2q4d^\\','2q4d^\\','4\Zm\0!d0c8)!\nD=NYC','',0,'?'),('o}u','wp-content/plugins/duplicate-post/src/permissions-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/permissions-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0$*AMv','}3Tmqg{RYℷNRY','',0,'?'),('x++\rP','wp-includes/blocks/footnotes/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f`)_','D邴]=呔2Uh{HE8A_','',0,'?'),('`DcpG','wp-content/themes/kadence/assets/images/fonts/antic.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/antic.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q`ڠ:Mx','g\rF\0@\\wQ ëAz\07Km','',0,'?'),('ֶXD,9\n','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/Subscriber.php',0,'L,G1V;','L,G1V;','w#{Kj8chgN\0\\i{','',0,'?'),('[ixTq~Wve','wp-admin/network/plugin-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8@_vaє͓N|j','<	gKKԆ{ȑnVỦ\n2','',0,'?'),('F~yc7v-','wp-includes/js/customize-preview-nav-menus.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ims[x','UT&ڬVaXǍ&a','',0,'?'),('Ue.559uff','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/FileResolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/FileResolver.php',0,'\Zf.M6{','\Zf.M6{','T|^)=ov}I-ۯ\ZskG','',0,'?'),('J<:\\ao-o','wp-content/themes/twentytwentyfour/styles/onyx.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/onyx.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-gHS21\Z9',':vtUޘluܗIz\"Ct ','',0,'?'),(')-$o/Ѻ','wp-content/themes/kadence/inc/meta/react/build/meta-controls.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/build/meta-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\42zLL','ͥZW4+ֺEÆAܶ_j','',0,'?'),('~-@KӞI','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Controller.php',0,'YT\\>f	>{1.','YT\\>f	>{1.',':os}I.<M\r','',0,'?'),(']g|%Foo','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php',0,'^712f*V|o','^712f*V|o','3|$i?f$RKA`b6','',0,'?'),('ȕoy^z','wp-includes/blocks/image/view.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/view.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"z_&![','s}l68yau4}QK0s#','',0,'?'),('h**镂F','wp-content/themes/twentytwentyfour/patterns/template-home-business.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-home-business.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\r\ZYb',':DG4Tנ7=R)19A','',0,'?'),('䑖w7:\'h*','wp-includes/js/dist/vendor/lodash.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/lodash.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C`]1~','׳[p:	zKQWwt}HI(	','',0,'?'),('i%o)#\\','wp-includes/blocks/image/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r.1\'#Yi','n 5_5dLvp\nv/܉','',0,'?'),('n2wկ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{q7J50+','H\rzHcnGySKSmnjq','',0,'?'),('WЛ~L+c','wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NVUuKv','כA <H\'K9/~ E~','',0,'?'),('2:','wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b4\'&','ۼ4P\'hNa>E5ఛ','',0,'?'),('KPjl','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/IOExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/IOExceptionInterface.php',0,'K3cHv8','K3cHv8','+%so;}\riWd\rW@xԓ6','',0,'?'),('M}n\"4jdR','wp-includes/blocks/post-template/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ÃNʅ\nN;,k0f','	CJ-j\"XUZuޟȱ','',0,'?'),('@_gU9','wp-includes/Requests/src/Auth/Basic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Auth/Basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wY{ӓ1}`o','o,،bD\'&<؟	e]\'=\n','',0,'?'),('}<[9j6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\r2Ĝ&_<','(,Q6\0exq&\09Kb*','',0,'?'),('Rxa','wp-content/plugins/wp-rocket/inc/classes/Buffer/class-tests.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/Buffer/class-tests.php',0,'eH`啪|)e','eH`啪|)e','6`΃RY}smP[N($YjQ','',0,'?'),('/9@۸)@@Ot','wp-content/plugins/kadence-starter-templates/assets/images/masks/blob1.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/blob1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$gTеj5MN','b7[n.5n-Y;i*~S/fXX.\0U','',0,'?'),(',|#Xi0','wp-content/plugins/kadence-blocks/includes/assets/js/magnific.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/magnific.min.js',0,';]i4җ/',';]i4җ/','S\"JӖӟKЙ`_Pձ','',0,'?'),('\Z-x7(A4','wp-includes/js/swfupload/license.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[`^-oQWz',':)6a\"3r\rP\rN4yJַUq','',0,'?'),('\"ǉ͘F;,','wp-content/plugins/wordpress-seo/src/integrations/watchers/option-titles-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/option-titles-watcher.php',0,'0ĦoF','0ĦoF','e:UBUt7_Fb/TvoV','',0,'?'),(',:3չC@~','wp-content/plugins/wordfence/modules/login-security/classes/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aabvr','C\'r9@Kކtw#@k','',0,'?'),('1W;cN\"u','wp-includes/pomo/streams.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aAm@4q#T','mCؙ~{ҁ@F}˗nɨ','',0,'?'),('AјH8K','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64ContentEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64ContentEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','էmgĞ=^15','YQGp&Lhے;}','',0,'?'),('JBGT;,lT','wp-includes/images/smilies/icon_exclaim.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_exclaim.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\\>5\0rsg','LɵHA(xʓ2EP%	##5','',0,'?'),('MW2c?Tqr','wp-content/plugins/wp-rocket/assets/js/preload-links.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/preload-links.min.js',0,'YH(l։:G0b\"','YH(l։:G0b\"','RF/*Y<\r{ղNՕ5t','',0,'?'),('V^3m6._P','wp-includes/customize/class-wp-customize-background-image-setting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-background-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#挷[^7,','lxE&35̅Nj!%Ƹv','',0,'?'),('h=r?|%\nw','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php',0,'uiD.\Z','uiD.\Z','\\F^k!\r;-]oҬ	)MlF','',0,'?'),('q2trۗ,]s*r','wp-includes/blocks/audio/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HF[^','4K^<%_ױUbPTOΔT)!','',0,'?'),('yD	S','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Success.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Success.php',0,'ֻI])bRI','ֻI])bRI','0ދ\"ֲ0^HٛF4','',0,'?'),('w	YRfqN=','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!?@Zt،@','Ѐ58י7pTT?%\0','',0,'?'),('c[L`+w','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7I(HgЙ','G)kg`I(@|dR8$U!','',0,'?'),('HPrĚ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Success.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\f/eAjX˸','9	ep(5~Ρ˅ev#e)','',0,'?'),('l@4~Ζy3','wp-content/plugins/wordpress-seo/src/editors/framework/previously-used-keyphrase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/previously-used-keyphrase.php',0,'ab	>/~F]','ab	>/~F]','m1;_525tNFṞ㘌','',0,'?'),('7M3$','wp-includes/images/smilies/icon_question.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_question.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[-\0\'WF','7b|6#9/?x~[%t','',0,'?'),('qAbѝ-H[','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php',0,'(]xJg)|z ','(]xJg)|z ','|9gs)- +p\\sn','',0,'?'),('2@kw>K2','wp-includes/feed-atom.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-atom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:0wʏ','>gH:׎L3?w=','',0,'?'),('H\0ۙhC','wp-admin/css/colors/ectoplasm/colors.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6aIH%','װB*rc5TtNZw','',0,'?'),('wtH-s\0n','wp-includes/js/wplink.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wplink.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!{TWV','@e{F o`+5pQ\'+eC','',0,'?'),('S㶋1((,','wp-content/plugins/shortpixel-image-optimiser/class/Model/ApiKeyModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/ApiKeyModel.php',0,'~v[Dx','~v[Dx','~]\";0?o#6SI{8','',0,'?'),('=֬H@-i','wp-includes/css/admin-bar-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#PD]A','4A2z\n@/[h','',0,'?'),('p6ɨZL','wp-includes/blocks/widget-group/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/widget-group/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xsyGKݮ9\"','5/\nAz\'ppsihc\"s<','',0,'?'),('(BA!','wp-includes/theme-templates.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-templates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ig~tw','H]l)RkZśe[~Rs렃','',0,'?'),('Y\\f','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce-seo.php',0,'?6XaD`','?6XaD`','Ujtcq|PΤ7\ZMv\\{XsV','',0,'?'),('-\'fߕ?X:4\r!','wp-includes/blocks/table/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?!A҉','5A@ȥBC*h/`ؒ','',0,'?'),('hLJHX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jc)ReYl7','.`iW	t1}styɪ!K','',0,'?'),('^\'q0','wp-links-opml.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-links-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rW5t,}\"׫','RysxL95\"CZ̜95 ;','',0,'?'),('8Y<_wa','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-addon-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-addon-data.php',0,'sC,=F`','sC,=F`','tʒkv\n,f#f(P\\','',0,'?'),('+`J\Z׉)','wp-content/plugins/kadence-pro/dist/woocommerce-addons/templates/archive-product.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/templates/archive-product.php',0,'QR`2E}]','QR`2E}]',']vC:H]6.\\(ob?hV.C}o','',0,'?'),('=Tgg^.z}','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Contracts/Field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Contracts/Field.php',0,'a)e֛2','a)e֛2','\0䢌`1Yy1j:L#3wWtaߤ]l?','',0,'?'),('nd-=л6ah$A','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/ServiceProvider.php',0,'`Ր\"qla\0pD9','`Ր\"qla\0pD9','u:PI0`DKkȶ}wǜV>r','',0,'?'),('#Q{ؗ<[','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/MockHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/MockHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{VLP','Fщ\\ULn4&F=2X(','',0,'?'),('%nTߒ	^gXΰ','wp-admin/js/inline-edit-post.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/inline-edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>	Ҝ?D','}=7%G4󓺉Kr>','',0,'?'),('3aDwPq','wp-admin/includes/class-theme-upgrader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԋC6W-VW','=ѓI^Υ/1nMW*Z1j','',0,'?'),('6ZUb2:','wp-includes/js/dist/style-engine.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/style-engine.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mْz-f','|1e~rߣ}5Btb\n*v','',0,'?'),('6uQ[6̜l','wp-content/plugins/wordpress-seo/src/wrappers/wp-rewrite-wrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/wrappers/wp-rewrite-wrapper.php',0,'9dI;r~~U','9dI;r~~U','$sU%;|^[	y8','',0,'?'),('U\'5Jc߲zӣ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ValidationException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ValidationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&xfpM','M<Ĕ%\Zxfׄ}v)_!=+*','',0,'?'),('gVSfRx','wp-content/plugins/wordpress-seo/js/dist/analysis-worker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/analysis-worker.js',0,'ؙM?+u','ؙM?+u','TMǮr(#Bc<_Zloə','',0,'?'),('m`5\n+7','wp-includes/blocks/search/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}qeSE/','ޙx..~TMf*9W#ʮ0','',0,'?'),('zU)퇵rx','wp-content/plugins/wordpress-seo/admin/class-yoast-notifications.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-notifications.php',0,'$5m;Ρ','$5m;Ρ','>sxcMٓҠޡmzAn','',0,'?'),('#|}<;k','wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-facebook-sdk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-facebook-sdk.php',0,'b~=7a~ ?','b~=7a~ ?','4<Pa9sG3E','',0,'?'),('CZfqŗ','wp-content/plugins/wp-rocket/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_real.php',0,'CI (:','CI (:','W+\"cI>FiB\'vWRH^.z','',0,'?'),('X1Lw^','wp-content/plugins/wordpress-seo/src/presenters/title-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/title-presenter.php',0,'Z |eO~Mі','Z |eO~Mі','kE˓I~-I\r[U@ezg','',0,'?'),('T\nũJ+w%','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php',0,'<#LѼ{ҭ%&','<#LѼ{ҭ%&','\'˂ݎ-+y̱GʿAo)4$&','',0,'?'),('n&n!崬','wp-admin/css/site-icon.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-icon.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tPrD','UM?n\'\np^\r*\"','',0,'?'),('}).^آ܂玩','wp-content/themes/kadence/inc/customizer/options/header-main-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-main-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vg\r]𣤈+','c+b_>^_f#/<j','',0,'?'),('­{e','wp-includes/blocks/comments-title/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bB}\n[~Gr۰','蚪}FV{pm3(','',0,'?'),('Yh 	','wp-content/plugins/wordpress-seo/src/helpers/user-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/user-helper.php',0,';6U.K',';6U.K','đ-\0xB1C+DOɭ%H?3','',0,'?'),('|\'$q','wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IP(KȲq','%W[$u>ߐ[','',0,'?'),('-}\nܒHQ}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+w%Zufv','y?\"ˀϜWD֘@]','',0,'?'),('B\nښ-6|_(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/PhpToken.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/PhpToken.php',0,'PMԉ1','PMԉ1','ToqFR^ϫ&y#C,s:','',0,'?'),('{{8B%@\0x','wp-includes/blocks/post-featured-image/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DJ/=9K/z','H3M<$2Nr>8.\"','',0,'?'),('EX|T','wp-includes/blocks/media-text/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zc?~hiI&g$','~t-Fz\ZGp0M۰ڎ:/@','',0,'?'),('rqtvҰM','wp-includes/Requests/src/Proxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZLpyc','\\WĘ:%W|i!wVm-V','',0,'?'),('͙aJyL','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/Ctype.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/Ctype.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Znɖ9o','B\n!u}UOͻ#jpf','',0,'?'),('ιqL\rM','wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-dismiss-notifications.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-dismiss-notifications.php',0,'G\\rj83','G\\rj83','A(kn_8N$:\'6ʝ','',0,'?'),('f=~(%|~','wp-content/plugins/wp-rocket/inc/ThirdParty/NullSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/NullSubscriber.php',0,'g/q䁃c','g/q䁃c','\0;߽a}1+8!(ֹٞ3kWEƥ','',0,'?'),('p#CM+Q@','wp-content/themes/kadence/inc/components/microdata/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/microdata/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"x}E@0','H\0\0HxbcF,1{im!','',0,'?'),('iVv ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9D}1!','!!XKQ\ZkV[DE+r ','',0,'?'),('xlf<T\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Error.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Error.php',0,'nnyp2ז-','nnyp2ז-','%07>(%GJgN_gqC2}','',0,'?'),(']jl\'/x5','wp-includes/js/wp-sanitize.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-sanitize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':kEt6Q','yΦV }ɛqK>ۈP6*C\ns}','',0,'?'),('W{\\,Yu','wp-includes/js/jquery/ui/effect-explode.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-explode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CJxqO','+!W@y\0R{)iv\nSz3;','',0,'?'),('71}\n','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','12+;FнNM','w\"*5U T@nyȳ^au\'','',0,'?'),('2.|,I`ӌxt','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/NullLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/NullLogger.php',0,'ѸsѓTR.','ѸsѓTR.','g.cʡ%c&B8RL@Jm/v','',0,'?'),('vzG٧g','wp-includes/html-api/class-wp-html-open-elements.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-open-elements.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-j8G','|\Zpt96-;R\0;Q\r','',0,'?'),('\nr\'AZ}!d','wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-fields.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-fields.php',0,');Ia{Ƭ',');Ia{Ƭ','zIQZpR:Z֡imBػ\r00','',0,'?'),('/)⭏ʎc9$,','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php',0,'JAsE6Z','JAsE6Z',':vu>F\n5-5[k].','',0,'?'),('2X69G3\Z+}A6','wp-content/plugins/wordfence/views/waf/option-whitelist.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/option-whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','. #v}','i$h}wsX2c','',0,'?'),('5\rk','wp-admin/js/color-picker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_;\Z5','\nmm^G&%\0SKmY2p#','',0,'?'),('8P5aĨ	','wp-includes/images/smilies/icon_wink.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_wink.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e?2i','(V{VBko(`ZV	6','',0,'?'),(':GI<G	r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpClientTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpClientTrait.php',0,'6\r!','6\r!','`,EPl\Z1Jן^|t','',0,'?'),('BPfna','wp-content/plugins/wordpress-seo/src/helpers/short-link-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/short-link-helper.php',0,'n<o\r>c²','n<o\r>c²',']+-Orl;(y:zeR','',0,'?'),('HƷɭ/','wp-content/plugins/wordfence/css/wf-colorbox.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-colorbox.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PX)p!N8j','ot0\rP2NiKu','',0,'?'),('Q4/?D~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/Fixtures/web/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/Fixtures/web/index.php',0,';LأICw<ƿ',';LأICw<ƿ',' =oa<ѷzyi15*oi','',0,'?'),('t\0\ZXs7','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ΐފd4S	',':1sW	D0+a.+*','',0,'?'),('xk4=Z+E!','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/LiteralArgumentInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/LiteralArgumentInterface.php',0,'rh_ҏ*r','rh_ҏ*r','4au\Z7#aYT\r:dW','',0,'?'),('	<#>Zu','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Savvii.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Savvii.php',0,'`EG8I]s','`EG8I]s','aǹeK!P^0*+lYD@','',0,'?'),('y85æb','wp-admin/css/colors/sunrise/colors.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#E*4.ȪH','z/P^?ۘ%_oQxw|cu3','',0,'?'),('{NfŘvM7','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Last_Send/Last_Send.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Last_Send/Last_Send.php',0,'Ϣ1b]','Ϣ1b]','o=ڭ8N-e bɗIhoEs','',0,'?'),('uHGZ^ꐿw','wp-includes/html-api/class-wp-html-token.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*uB4	À','K,ˬ\rTTn(-w\0','',0,'?'),('	wê','wp-includes/Requests/src/Exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y','ZOO]U@,j@mX-k','',0,'?'),('d^jfBVk','wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php',0,':l|x׌Fs',':l|x׌Fs','/6@\Z?^Ñ!?\'Cc|ܙO$','',0,'?'),('wtz	','wp-includes/blocks/term-description/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Ƽ]_k4','}?ʁ,k:6gA]]3Os\n$WzU3!','',0,'?'),('F9}nb<','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php',0,'=B1a,\r	-','=B1a,\r	-','.\nc?\r8ۯ\\rMl+V؏֥d','',0,'?'),('7d$Эh','wp-content/themes/twentytwentyfour/patterns/cta-pricing.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-pricing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W^xOWo','Ph>µ2KAuu\Z-1]','',0,'?'),(')6)ۗH}','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Versions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Versions.php',0,'[&ĩ%,ڥx','[&ĩ%,ڥx','\n\\)gIlӫ_,a*`-r+I','',0,'?'),('V]) m\\kV#ɩ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MetadataBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MetadataBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\"&Q&V-\\','S,96zKa.&3?\Z#)st','',0,'?'),('N^JW','wp-content/plugins/wordpress-seo/src/models/seo-links.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/seo-links.php',0,'4לs&+؋rn','4לs&+؋rn','n3$C0w\".d\\ܔVʋ+h1PG/','',0,'?'),('t#)对; ','wp-content/themes/kadence/assets/images/fonts/montserrat.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/montserrat.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yM@	bU','\Z2p$aATK\Z{','',0,'?'),('َZ>{H]','wp-content/plugins/wordfence/css/main.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/main.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*8ZM]2','fO͍mD3MjHhyUn\Zo{','',0,'?'),('A<sM','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Schedule_Deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Schedule_Deprecated.php',0,'fȞLA#(t','fȞLA#(t','mbK[2:e<-LdNUd]w','',0,'?'),('wpmTc','wp-includes/blocks/page-list-item.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list-item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m0ejo`i','-DJ@o\ZfAg\'N8O\Z`(','',0,'?'),('a@Z&`y','wp-content/themes/kadence/inc/customizer/react/src/range/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/range/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G_0d-_','\Za/A #M:ƒS*pBD):}','',0,'?'),('֩r^ȦXh','wp-content/plugins/kadence-blocks-pro/kadence-blocks-pro.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-blocks-pro.php',0,'8$hU8`u','8$hU8`u','Ʈ6y{@vy]|o]*U','',0,'?'),('<)\"vY4','wp-includes/blocks/verse/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v<_55ڬQ785','+.D[7 U=aI-H\0w','',0,'?'),('PQE|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Պ<FԀ~','0cb!<=/a92os','',0,'?'),('/ǽhub]','wp-content/plugins/wp-rocket/views/settings/sections/fields-container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/sections/fields-container.php',0,'5׍9\'ˣ-3p','5׍9\'ˣ-3p','o 1MH*a</vl\nb=','',0,'?'),('U$\\*1^S','wp-includes/js/jquery/ui/effect-clip.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-clip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4*ȵMY+','٨G(䳴HHwo`ph?','',0,'?'),('p/ҢlD\0`(','wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-single-folder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-single-folder.php',0,'q#9-<A=cu','q#9-<A=cu','OTI\r%^ԄF3_ڮ=','',0,'?'),('PJt1z','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!EP]ǡ;','<\0\rIB=\"P8D\"L~I[','',0,'?'),('_ \0*O','wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2k Fm=Pu8','^<\ZC/aas|Vs:','',0,'?'),('B3\rqelL','wp-includes/blocks/query-no-results.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-no-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\\hRyZgR','ᜤaCR!i^)L81Adb4D%e','',0,'?'),('P\Z/l%','wp-includes/js/jquery/jquery.hotkeys.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jhIQLZA$UnH','TfRMS9ºMDRRN','',0,'?'),('\0 k~U5T','wp-includes/widgets/class-wp-widget-text.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ndGּk','8Oh+DЮe:$ $b`.!','',0,'?'),('\n%f[!aErtgi','wp-includes/images/media/video.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uhq','DBUMiOb,e=W{','',0,'?'),('\nCmQUܓq','wp-content/plugins/wordpress-seo/src/builders/indexable-social-image-trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-social-image-trait.php',0,'.:','.:','.jiK!rm2#i3NeS	J','',0,'?'),('a~4;W;n','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Path.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Path.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_l*&','\"rI7OD<>6','',0,'?'),('(\\~^E!','wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ServiceProvider.php',0,'SjeF]#','SjeF]#',')HrDdn6OњWN9S@Q','',0,'?'),('Ӡ_Q?#','wp-content/plugins/wordfence/images/logos/shield-response.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-response.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\nو1:/(d%܅','\ZjtYaW=x![4H!|','',0,'?'),('}<B\"G,0','wp-content/themes/kadence/assets/css/src/polylang.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/polylang.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&G~p}wS=','\r0Vp5\\U1ae','',0,'?'),('χy2ř','wp-content/plugins/wordpress-seo/js/dist/languages/pl.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/pl.js',0,'(`h0mNnū','(`h0mNnū','%9y$ڬPjhoVjP) m','',0,'?'),('&S짿o$0n','wp-includes/author-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/author-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eo\ro','i\n4SG\ZH3IxKݩ','',0,'?'),('?8RmТE7h<','wp-includes/blocks/buttons/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\u*52F','ۨ\rWd A! OIRkD*','',0,'?'),('B{Ak|\n3','wp-content/plugins/kadence-pro/dist/woocommerce-addons/hooks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/hooks.php',0,'+uv\Zȏ*~','+uv\Zȏ*~','؂\ZR=u5\ZmϜ$y {:','',0,'?'),('G|$p֠+(','wp-admin/js/tags-box.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags-box.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g4ieڠY,׃','u,tsn`b$DrFRSrґ^\"','',0,'?'),('Qԁ27uL','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','13y1','	}N	<vBS%s\\S','',0,'?'),('RBpmZ;','wp-includes/css/dist/block-editor/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a%lQ\nxNzRSO','H371,V?Bno!F̉B#̫hL','',0,'?'),('UAQ,Uq','wp-includes/blocks/pullquote/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-=/$-[','	\"{=560yHaE17pǸ','',0,'?'),('_Ε3VI\nZ','wp-content/plugins/kadence-blocks/dist/blocks-spacer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-spacer.js',0,'^nSQh}w','^nSQh}w','ж;;?g;t7B','',0,'?'),('r)FScSI2C','wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_1_optim.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_1_optim.svg',0,'ÆtVO+mF','ÆtVO+mF',')-nd\\GoQ	3݁}2','',0,'?'),('ojyV','wp-content/plugins/wordfence/lib/menu_tools.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ˋRC[A','^<EQa eM~|','',0,'?'),('Cas]n/','wp-includes/css/dist/block-library/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zɰ`p̚','3.f̞j\0m߷}\Z;dE ','',0,'?'),('{L\Zn','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php',0,'GIfYA,','GIfYA,','pys|>NǖobhK','',0,'?'),('Ѻ\"P5^U\Zi','wp-admin/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7jR\nX','C?cwpo4mz \nX','',0,'?'),('a(W/O17Q!\n','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-print.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-print.php',0,'WzUd$[#?','WzUd$[#?','! &3נrO!r&\\','',0,'?'),('\ZfJ[O!&N\'','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_DateTime.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_DateTime.php',0,'2	(ڧF+m','2	(ڧF+m','(;7wm\\6yuC:Z~{3?fc','',0,'?'),('k@4/-rD','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php',0,'\'D_D\"6F','\'D_D\"6F','%ػ(LSq8]!-Uaq\nzt ','',0,'?'),('mz4LK','wp-admin/images/xit.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?`pR,_p','A\0|=fJS<|','',0,'?'),('8D,<jg','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h,g`czҹp','4Pg{>pL}@:zߚ/f','',0,'?'),('wFȶ# ','wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ej-=\n','WOT6W[ܺ\r$xC^','',0,'?'),('ZQ0cLQK','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!|xC>߂','8\Z8m6RXiӃnXL{zz','',0,'?'),('AG,<','wp-includes/js/jquery/ui/effect-fade.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-fade.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vMlE_&','w/2-*_PsQOi{a@','',0,'?'),('tb`s]\'','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/AbstractProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/AbstractProvider.php',0,'ޛeZ	@','ޛeZ	@','ڨ,UQ;V]b][+6','',0,'?'),(':\Z`gI >P)','wp-includes/assets/script-loader-react-refresh-entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-react-refresh-entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p:Pp`','nƿ	UC։:e/<','',0,'?'),('C+-(1)y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Psr18Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Psr18Client.php',0,'[}{QS.','[}{QS.','R)w6`;t7^DͷB}','',0,'?'),('ʾolvUK,','wp-content/plugins/wp-rocket/inc/deprecated/deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/deprecated.php',0,'YF6ku@','YF6ku@','Zg:_ڟmu\r`zE6f','',0,'?'),('b0㏥','wp-content/plugins/kadence-blocks-pro/dist/blocks-modal.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-modal.asset.php',0,'a0so{@(O	^','a0so{@(O	^','UPyit(`a;M\ngkܷ8	','',0,'?'),('.n.Kw','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-rest-api.php',0,'Tf倷7G	bZ','Tf倷7G	bZ','(*2Z^G`Hg.Ҹ1!J!','',0,'?'),('t͕TX','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x9} ','3PlG!;>ꕱSR^y','',0,'?'),('ݐjxӟvFP\n','wp-includes/Requests/src/Exception/Http/Status305.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eQ6)',',<e/r$}S','',0,'?'),('\r-9IK','wp-content/plugins/duplicate-post/gpl-2.0.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/gpl-2.0.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4MiHjJBc','\0v1sN>cID٦I0-','',0,'?'),('of$΄','wp-includes/Requests/src/Exception/Http.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l8ZZ͏','ЀnWa*!c!EφŅ>','',0,'?'),('f`}Vg\0ʓr','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_zero.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_zero.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ic&%?.','AG}`poeg>Qc#u','',0,'?'),('I֫Zyf+6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/ExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/vm&I','9.mZJ9^i?\n','',0,'?'),('_	j\n,?Ay','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/decatur-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/decatur-georgia/index-mobile-https.html',0,'cXok!+J','cXok!+J','ioc50̓।SCNIpпb','',0,'?'),('/tj\r?#','wp-includes/blocks/site-title/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WVپ[C#1E','TOIA3FKed8/R>%g','',0,'?'),('հ	̋ȲS','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(`]Vţ[^3','Fܑ t=Y+Yҁe۾Kb6W','',0,'?'),('\Z_&Зp$p','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PPIInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PPIInstaller.php',0,'G\\rM-r\"%p','G\\rM-r\"%p','|Z1~?G	H}Bˡ\0xHw','',0,'?'),('uJ]\"2/FS','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/UnionOperator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/UnionOperator.php',0,'@8i;/!','@8i;/!','\0:0R^Z,HRL\nLX1l','',0,'?'),(' n$q^qf','wp-includes/images/smilies/icon_lol.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_lol.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@s\\e|sˎD0','Ya^F_8ت23%j','',0,'?'),('&Hw\\d]\\','wp-content/plugins/kadence-pro/includes/uplink/Helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/uplink/Helper.php',0,'Мx\0','Мx\0','W<h4,OT%T\rꍷ{ʹ\r','',0,'?'),('\'^DIG1!','wp-includes/ms-site.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NE+c68','$d܊)הRO]a(`rn','',0,'?'),('(Ϲز','wp-includes/blocks/video/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yNML','yQKÛJZ	{ v22F','',0,'?'),('*Tu\r~m','wp-admin/css/colors/ocean/colors.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r>9b@','޹iaF0(`|h&6=/','',0,'?'),('.NVZJwc','wp-content/plugins/kadence-starter-templates/wxr-importer/Importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/Importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`c()M-]%','\".?6C<\ZNkH]p|P(l','',0,'?'),('1l< t~LUw','wp-includes/class-wp-locale.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5&BE	','E0V\0\ZT#pt|IA','',0,'?'),('9L[Sr&2','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-frontend.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-frontend.php',0,'j=췜7}tb','j=췜7}tb','i#B^脰p+=!:0ݞk','',0,'?'),('9x!:̧Z','wp-content/plugins/kadence-pro/dist/dark-mode/learndash-focus-header-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/learndash-focus-header-options.php',0,'5EoЬd','5EoЬd','j8tFxcqJ`d+_yB[o','',0,'?'),(': ŮYm?i','wp-content/plugins/kadence-pro/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/autoload.php',0,'P\rEC\r','P\rEC\r','K\\vkG\\q%\"]l','',0,'?'),('Bځ(j]V','wp-content/plugins/wp-rocket/inc/Engine/Preload/Cron/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Cron/Subscriber.php',0,'1e	a%{$','1e	a%{$','nYS12ivX|j%Io8<','',0,'?'),('E-j1j\rE','wp-includes/registration-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/registration-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q<۾\Z7Mv','Kd_MF XX.,\'T\\66','',0,'?'),('H^GyECvԝ.','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/CRUD.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/CRUD.php',0,';A	ӯidq',';A	ӯidq','Ob=~0T\\\07Z	:\rH͵pk','',0,'?'),('HztQ೼j','wp-content/plugins/wordpress-seo/js/dist/faq-block.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/faq-block.js',0,'D7a/g4','D7a/g4','}K6כ,{>V\'aV\0hJK','',0,'?'),('Ke|w2TەkR','wp-content/plugins/kadence-starter-templates/inc/class-import-depicter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-depicter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':r;\Z3W^','2dnr^\ZR:\")rmDD','',0,'?'),('Luw?q9','wp-content/plugins/wordpress-seo/js/dist/bulk-editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/bulk-editor.js',0,'f٠|\'Zu(','f٠|\'Zu(','d\\t\"roE=G*ՙ]xO','',0,'?'),('TR6f͠~','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PageBuilder/BeaverBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PageBuilder/BeaverBuilder.php',0,'Řx\\\'MjhG','Řx\\\'MjhG','!L	C]I23q}','',0,'?'),('W`Ԝ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/ValueError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/ValueError.php',0,'84)vsW[','84)vsW[','7i$NV <\rv*Ty','',0,'?'),('X!#q_cj','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/ServiceProvider.php',0,'29ѓl%w۾\ZU','29ѓl%w۾\ZU','ϰ=Iu<^di%B\0ӫ}|','',0,'?'),(']oMseJ4','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oh5\rxܖN','6y\Zuυ;	0~rs1J9XJ','',0,'?'),('f rp(p$','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pbD@pG+','*DZ>Bg&YY4(</','',0,'?'),('t//;','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/PreloadUrl.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/PreloadUrl.php',0,'Jzr]f','Jzr]f','_rQطAD%B\r6\Z#af','',0,'?'),('Nl0<+ox','wp-content/plugins/wordpress-seo/src/generated/assets/plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generated/assets/plugin.php',0,'wo/0Ldr','wo/0Ldr','L֑Pt\" Оڷ/@','',0,'?'),('<xB','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SPZ~>#','1\n i#B\0ِolEK','',0,'?'),('hhQ.','wp-content/themes/kadence/inc/customizer/react/src/builder-controls.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/builder-controls.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%d,׏P5	','I^U_X\\NU$K\\?9','',0,'?'),('\0tDr','wp-content/themes/kadence/bbpress/form-topic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-topic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F^dU5@X!Q','E~P#H.n}1 C\r','',0,'?'),('e-RȉL:','wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qznz',',rPQ\"q2`C3&\ZˀgZ^6','',0,'?'),('L21','wp-content/themes/kadence/inc/template-functions/header-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/header-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\"N+іQGa','C.;>S,/8hgt\0Hb\r','',0,'?'),('zIèVȔU*4','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/Converter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/Converter.php',0,'D|;gCCZS','D|;gCCZS','8q B٪f.aꗁ@e','',0,'?'),('nn29W','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-query-children-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-query-children-block.php',0,'pM\\$L֘vl	','pM\\$L֘vl	','O&3LrW?S0$A]EVcT','',0,'?'),('2h6͒\r~','wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Q\',\093','|\"`!CelUt|#oH$','',0,'?'),('wyt)Q','wp-content/plugins/wp-rocket/views/cpcss/metabox/generate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/cpcss/metabox/generate.php',0,'FB q','FB q','?ڞX\"Q#JeQ4f58','',0,'?'),('X*^ϺR8','wp-includes/css/dist/block-editor/default-editor-styles-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rDH2&A','^v4-vx\"ݥ\nDԾ`n','',0,'?'),('##Ցn\ndA\\e','wp-includes/blocks/latest-comments/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^^%Ron','^ՏIH )Ma','',0,'?'),('Ѩr֎wX*j%G2','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DefaultLists/APIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DefaultLists/APIClient.php',0,'X\"&/1j,','X\"&/1j,','HW/;)Yۢi|k&zF','',0,'?'),('p?E^@\'PE','wp-admin/edit-comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	WF\rB;','s\"|ڰy,o?daME\nJQ5/','',0,'?'),('U\\aE','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wͱr0؅=','?E%+w\r^֗.$i$[W','',0,'?'),('	Z4c\'','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHeaderSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHeaderSame.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0(','PHONoXt{%au˙R*C9,','',0,'?'),('! dxO\r<','wp-content/plugins/wordpress-seo/src/routes/workouts-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/workouts-route.php',0,'Н(%;a(','Н(%;a(',' \r\0h	^&iQp9\n','',0,'?'),('Mw:','wp-content/themes/kadence/inc/customizer/react/src/row-layout/row-layout-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/row-layout/row-layout-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\')5Z0Y$R','\rtsSHdlw%w}t<[f','',0,'?'),('B!vݡɶ','wp-content/plugins/wordfence/views/onboarding/banner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']byc~Kw','\ZTDi.qsն B`-pnN','',0,'?'),('\'&oSw6(','wp-content/plugins/wordpress-seo/src/builders/indexable-home-page-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-home-page-builder.php',0,'@+Sփe9','@+Sփe9','NO8M>4$T8}T^d','',0,'?'),('2s|wz','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AbstractGrant.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AbstractGrant.php',0,'N?oKl','N?oKl','Qܪ@-a<|ߛ&','',0,'?'),('4Zs.]*','wp-includes/blocks/table/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Ү-uYBryZ','񐉬uŚk1htCoխ(','',0,'?'),('6D*F\n\0i','wp-content/plugins/wordpress-seo/src/config/wincher-client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/wincher-client.php',0,'jHCLa7\0','jHCLa7\0','qzȞ.\\Zzn4[b|sAF','',0,'?'),('9V#}X<\n[R','wp-includes/blocks/template-part/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ddlOB','<E\"bk,@Q ¶3I#/\"','',0,'?'),('<(*A]O','wp-admin/css/colors/ocean/colors-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bs2@!R&*','n&+b|lV!^F6','',0,'?'),('>İDm[9tw','wp-content/themes/kadence/template-parts/header/mobile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fqN*P7t','\\@4ҎxtmYR)$\"NhKH-t','',0,'?'),('CX1{T_d','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php',0,'\\cE7dAp(\n(q','\\cE7dAp(\n(q','LX>J{:~T\r:YK?','',0,'?'),('Dd.P˴{-yog','wp-content/plugins/wordfence/views/common/status-warning.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-warning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kRf,Jk','f!\rWe=?KjP&*y|','',0,'?'),('H&م`hlVf','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/ContentEncoderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/ContentEncoderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4e;|Y2Q*','}독A.U/qy&jY','',0,'?'),('I|K9({sX','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_scanner_credentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','. I\05AD<','ʅ<;Ҩ&I֘^dD(eX;;{','',0,'?'),('a[I#OIF','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\Z\Z4w>IKWR6','\'8\nzr?Pg<*M{eγ','',0,'?'),('bvEH΄','wp-includes/js/wp-lists.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-lists.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ר@(U','U3K0{;;i\Z$&I_n[U','',0,'?'),('hS:`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N+C#+|fZ]','kn\Zy&_[Igl(g\'^G','',0,'?'),('i0eJؗ7Ȳuv','wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature.php',0,'Z݇&.Ns','Z݇&.Ns','ހ>\\Z0\ZqrwA%͎','',0,'?'),('s삸˻v\"*','wp-content/plugins/duplicate-post/src/handlers/link-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/link-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\'R	hX[%F\"','\\}l^8aڷ{wx(','',0,'?'),('zg(drL\Z\0!e','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php',0,'4̑)1^st~-','4̑)1^st~-','FBc]1q<#NfL>#z','',0,'?'),('D!~3-7','wp-includes/blocks/avatar/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl}EG\0~<Y>','W8\01WSac)#\n77N','',0,'?'),('S2]','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/Headers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/Headers.php',0,'K\'dɑЀtba9}!','K\'dɑЀtba9}!','B[u׏U\0{CpuAͦ','',0,'?'),('d\'s83 xc','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h|q/^VM',';ޅџ\riwq9a!6V\Z^o0ˬ\n','',0,'?'),('iGj#)','wp-content/plugins/wordpress-seo/src/generated/container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generated/container.php',0,'DGv]a6d','DGv]a6d','VFҬ}uiP-[1a','',0,'?'),('vL4Q-u','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ef#`P~7n','-mznNFE\0ѭ\\vqsL?Z\Z','',0,'?'),('&N,6P','wp-admin/images/icons32-vs-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/icons32-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*04G4F	&Zi}\"','.a}hw6WEʭ(3Jӭ9E','',0,'?'),('v#qȃ','wp-includes/sodium_compat/src/Core32/ChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EOxٕX2떭؃','xaJN!e\"\"Nq}AMC1){j','',0,'?'),('Uԅl)%gN','wp-includes/class-wp-script-modules.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-script-modules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','اXƥaVf','4C\noqXg8sQY\'zJ29Y5','',0,'?'),('W31Ngפ','wp-includes/js/dist/vendor/react.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/react.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԓ\"N]og','Ş$Eđ+Z0?P3','',0,'?'),('QԶ~U~&','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MessageConverter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MessageConverter.php',0,'is>qƦ','is>qƦ',']1kUgJS	~f@58ᬄp','',0,'?'),('?9#m&M3r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/AdapterRepository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/AdapterRepository.php',0,'):$haio','):$haio','\Zft(\0m\Z\nGC0','',0,'?'),('xIyfGv','wp-content/plugins/wordpress-seo/packages/js/images/Yoast_SEO_Icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/Yoast_SEO_Icon.svg',0,'XmhGGU','XmhGGU','}SFiQc_F\"MDK\rɡa','',0,'?'),('x[e>M','wp-admin/includes/edit-tag-messages.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/edit-tag-messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.jA8rUq','?uZv*32;h$,\rME~','',0,'?'),('@\'vY!ѵ','wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h)Ol$]s[2_',',vT?cD}KO.x\r79','',0,'?'),('*^dvȥLḿ','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/edd-software-licencing.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/edd-software-licencing.php',0,';|v]+3',';|v]+3','(H\"{8\\\ZE=PҾP','',0,'?'),('\0N\'\'#k','wp-content/themes/kadence/template-parts/header/social.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƮbĻ4SJJ/\'','09G^HTXp?Ϻo8t','',0,'?'),('vĀc/Ń̝','wp-content/plugins/kadence-blocks-pro/dist/blocks-slider.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-slider.js',0,'ŐQ8͓w','ŐQ8͓w','KNnib1-c#(ۜ','',0,'?'),('<s8>+','wp-content/uploads/seedprod-help-docs/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/seedprod-help-docs/index.html',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('85\'ޤy','wp-content/plugins/kadence-blocks/includes/assets/js/typed.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/typed.min.js',0,'Gd\0>','Gd\0>','|\Z\'ݯ\\?Ѝy\rq]@,foQ','',0,'?'),(';oOuT}@T','wp-content/plugins/wordpress-seo/src/integrations/alerts/abstract-dismissable-alert.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/abstract-dismissable-alert.php',0,'-uJfOh','-uJfOh',' A$y[-dBu\\	^=7Z@J','',0,'?'),('OJfbG*','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\'SX','-ft^4Q 8ġ^td	?M','',0,'?'),('f=*bOs','wp-includes/style-engine/class-wp-style-engine-css-rule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine-css-rule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C`ÆBU[ZU','F]ȌW,Je[IffĒt','',0,'?'),('g[*yHT:(}','wp-content/plugins/kadence-pro/dist/header-addons/header-quaternary-navigation-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-quaternary-navigation-options.php',0,'y\01B~3ѻ2','y\01B~3ѻ2','76V8_U`*Cp<6','',0,'?'),('qhBc92','wp-admin/network/site-themes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏODvur#9','R2@:3W]gK@2N','',0,'?'),('x{:Q%\\_˰8','wp-content/plugins/wordpress-seo/src/integrations/admin/indexables-exclude-taxonomy-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/indexables-exclude-taxonomy-integration.php',0,'.Ig\Zq)J@','.Ig\Zq)J@','8[kGA/N9n趕\"6\'T','',0,'?'),('Ƞ>|qs#cx','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php',0,'}\ZQwA;\0C','}\ZQwA;\0C','\rq5df2lѩ*Z\\Mĩ','',0,'?'),('iA$7S2{V=','wp-content/themes/twentytwentyfour/patterns/text-title-left-image-right.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-title-left-image-right.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ܣZ^;z3M','xyV%q(5cI{	-@O','',0,'?'),('!v;g\njF','wp-content/plugins/shortpixel-image-optimiser/class/BuildAutoLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/BuildAutoLoader.php',0,'kc[x-E([X','kc[x-E([X','MK|K=KY4^\rv,.4ݖ','',0,'?'),('Rϧz8De\0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i \0xfC6.D','\'yURsϙUj}jmh','',0,'?'),('n1.ÓutlX','wp-admin/css/colors/modern/colors.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-+f8\0','OR{zJLQMpfw&','',0,'?'),('`%{+','wp-content/plugins/wordfence/images/icons/error128.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/error128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':%7!.','{h\0,]zkV{җ6nG\nxs9','',0,'?'),('v\\Q-','wp-includes/js/tinymce/plugins/hr/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	%>);','؃FS[k&f 6+b>','',0,'?'),('ä28j','wp-content/plugins/wordpress-seo/src/presenters/debug/marker-close-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/debug/marker-close-presenter.php',0,'vXO#','vXO#','7|)h%8E3q%0','',0,'?'),('th	,Gx\"M','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h!عÙk?=ӈ','+MBWEJ1\0g_WF,|','',0,'?'),('ԔQmkewn','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/AddressEncoderException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/AddressEncoderException.php',0,'/}<	<X','/}<	<X','v=b5 6P&Y||;Ɂ','',0,'?'),('Ū֍E','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wpseo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wpseo.php',0,'ʓ^Sh|{#=','ʓ^Sh|{#=','	5A`S40-Q^9pͬ','',0,'?'),('9XU7z','wp-content/plugins/wordfence/models/page/wfPage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/page/wfPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tbo i%HXwXv','ƅ1h/jw<U\\kq%s|W6','',0,'?'),('іqSGKy(','wp-includes/kses.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>%n9F','\Z17^!-d2ܝ۽`c\Z','',0,'?'),('}B[^cQ\n;w','wp-content/plugins/wordpress-seo/inc/wpseo-functions-deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/wpseo-functions-deprecated.php',0,'҅:j)ȨAB','҅:j)ȨAB','w\'lOiS7l68K9s7n7\0+;+','',0,'?'),('~nK$^R','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-login-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-login-action.php',0,'G&JVa;|u','G&JVa;|u','NE^NaI\0?(>C	#&','',0,'?'),('yb	)m-','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Usage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Usage.php',0,'wWR3B','wWR3B','UKPv8bJ˙\'C','',0,'?'),('FP˷&','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php',0,'R߯fYqSmx','R߯fYqSmx','b;eB9xc֎=ocQ','',0,'?'),(':魩*/m¸','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-type-archive-indexation-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-type-archive-indexation-action.php',0,'ǒ(\'\0>q','ǒ(\'\0>q','>?nM	{W?l*e_d','',0,'?'),('Ü`VVeO','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ServerBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ServerBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h{%p','\Zg\"$ Y[MR)hKp?','',0,'?'),('\Z:Ph~2:','wp-content/plugins/wordfence/css/license/free.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/free.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cMos|v','z5񣫍ҤZu|*vs,\0BA9','',0,'?'),('S[MMn','wp-content/plugins/kadence-pro/dist/dark-mode/templates/mobile-dark-mode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/templates/mobile-dark-mode.php',0,'P\\ssav$2,','P\\ssav$2,','{hF>TZ|a,k\"=S','',0,'?'),('\Zu3Izs)+','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',0,'#9	vx@F','#9	vx@F','z]WD=.)J>ؐkD`h@vФH=','',0,'?'),('9lן? rq','wp-includes/class-wp-user-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-user-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u=O798d','OhJ,\r\rșjG<Dշ&8','',0,'?'),('%?)','wp-content/plugins/wordfence/views/common/section-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!z̥','+ASџbH濳$V+N΂','',0,'?'),('%m4OWCgR','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/ContainerAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/ContainerAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ΡC3yEH7C$','O8| + ur:svv-','',0,'?'),('DS3.įy};','wp-admin/images/browser-rtl.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/browser-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\"ӠA\Z%̝','+啧0pƜJMk qwXب','',0,'?'),('HCCw','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-php-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-php-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d^&q*(,#<O','\ny$j4s%Qr/0̓I]\"6','',0,'?'),('N\'xf/,/','wp-content/plugins/wp-rocket/inc/Engine/License/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/ServiceProvider.php',0,'P3-;+S~9','P3-;+S~9','5b ̞nMiҲYQ(Zd','',0,'?'),('UP\\,eG.+b','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-t@\"G\Z^*','ݡC\0#>ܐ=gz$J\Zy','',0,'?'),('V[i_L','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/RequestFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/RequestFactoryInterface.php',0,'Q.\0ġ7/','Q.\0ġ7/','ہ|֛9u Us/Fݒ?n	L','',0,'?'),('[RO@#','wp-content/plugins/duplicate-post/src/ui/post-states.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/post-states.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y\'zẒ޽i',')g\"L\ZQ7jx/ac\"{h','',0,'?'),('[Hn[P.~FU|','wp-includes/nav-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','``1A28q ','=\nCy8NP \\łif+','',0,'?'),('j\\Ħ<yp','wp-includes/widgets/class-wp-widget-custom-html.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-custom-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	.4,B| _','B\\7hGjDB{%nȊ}mW%)','',0,'?'),('osRf^','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l4*#e','\'V&CY|Ț~J`','',0,'?'),('t.!ht%h','wp-includes/blocks/video/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k\"D)@+6','uHyU:QaػogF_5p]K','',0,'?'),('Z\Zxcyd\'','wp-admin/js/language-chooser.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/language-chooser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U>p4Jl5=','9\rXLdC5@UK&>̓l#','',0,'?'),('C9\n\0.:9^','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php',0,'7E)bH\0%','7E)bH\0%','#-?qg\r\\Sph~\"e\"','',0,'?'),('2sk','wp-includes/blocks/categories/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	8 MkR=\n','ؗ0oTO|6W','',0,'?'),('6BbM','wp-content/plugins/wordpress-seo/inc/sitemaps/class-author-sitemap-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-author-sitemap-provider.php',0,'9#-,','9#-,','?$nH_\\UE?ǦE|','',0,'?'),('\"N\'L	n','wp-content/themes/kadence/inc/dashboard/react/src/sidebar.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/sidebar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c]l+_sWl','y\'=C7q`9\\mub+]G','',0,'?'),('LC3v-n{','wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cTG8`;','2S`J!N,}.ɧs0? #x','',0,'?'),(':x=}','wp-includes/js/jquery/ui/mouse.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/mouse.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ġ3mZ\rd','A7tg?.:qg-0߇\r','',0,'?'),('9K=\rb','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php',0,',2GGEC',',2GGEC','lLVe9eȗWP(Co+8','',0,'?'),('Ha+̰I','wp-content/plugins/wordfence/waf/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WIBַ:WHP','FvK6`H+6f!&HZUO','',0,'?'),('OIY\\{=H','wp-includes/robots-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/robots-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӎ|Ylm+6V','X6hq@!`+\rx!	Еī>','',0,'?'),('1~%JT]','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','--\n>8ɺ',')!&ܘ;qb	/şѹ','',0,'?'),('Tn3<[ 5','wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':+kj`|w','r_A/Ƅ#\"Yܻ6G','',0,'?'),('y&aA7]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%B\ng2;','D,AJlOSpe؇&','',0,'?'),('&X30ሯ','wp-content/plugins/kadence-pro/build/classic-meta.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/classic-meta.asset.php',0,'^bǹL4\r','^bǹL4\r','!*\Zɏ*@07y,(xoSzv','',0,'?'),('|Cxa]','wp-content/themes/kadence/assets/css/src/_custom-properties.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_custom-properties.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	cZ	G}ˠ!=','/rlJ[}?!0-8i<=)P','',0,'?'),('e[g<Nf[','wp-content/themes/kadence/inc/customizer/css/rtl-kadence-customizer.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/rtl-kadence-customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CAn}t','zy\"+a6AYkt','',0,'?'),('m~fҾw','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument/RewindableGenerator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument/RewindableGenerator.php',0,'DKR쟙۹6','DKR쟙۹6','r:\'	\"S\05gSƢ\"@Nwփ','',0,'?'),('ƞׅ\ZXX]YF','wp-includes/js/codemirror/htmlhint.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/htmlhint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2|џGMtP5','\0U[\0M\'mCռ55k`5ё','',0,'?'),('	b97L','wp-content/plugins/wp-rocket/inc/Engine/Preload/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/ServiceProvider.php',0,'^ըYZیME','^ըYZیME','p<}ڞ@W	\Z%:,g/X\0?','',0,'?'),('HY/,Fv','wp-includes/blocks/query-title/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9-mCl-h','i)!nle#aniqla\nOX','',0,'?'),('zQn1j','wp-content/plugins/wordpress-seo/src/wrappers/wp-remote-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/wrappers/wp-remote-handler.php',0,'08NPw,S','08NPw,S','-e99;3)vuu!','',0,'?'),(' a\"KwTbc1S','wp-admin/css/revisions.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/revisions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',_֟(kK0','4j.yJo/qwNtY\r','',0,'?'),(',-&`$T','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-single-icon-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-single-icon-block.php',0,'RO\ZٴH\'','RO\ZٴH\'','RWݕ/WD)#pyK3Kb\'','',0,'?'),('-[ip\\^]','wp-includes/widgets/class-wp-widget-tag-cloud.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','il¹+XZܚ','p^B&ROގD\0','',0,'?'),('0&Y','wp-content/plugins/wordfence/vendor/composer/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('4ge>ߝ','wp-admin/images/list-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/list-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hջIS2ig','JpS_X#UB-z,','',0,'?'),(';fJ1˘+C','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\n+ծ.jqAZ','\0I36ěnj7jk:','',0,'?'),('=BȐ5[H','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CheckExcludedTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CheckExcludedTrait.php',0,'%?4Ӯl','%?4Ӯl','I\\˭R[K\Z{*','',0,'?'),('OOwTM\rY!d','wp-includes/js/mediaelement/mediaelement.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ii:ρa0','F;(Dԥ$Tc#Vd\0K','',0,'?'),(']ǿ|IC','wp-includes/js/dist/keycodes.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/keycodes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؈ʏO:g','tqChK(ò+މ9','',0,'?'),('fkjNUei4=%','wp-admin/js/tags.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0}0RMT ','VkKCoό8TAyn@Z\0','',0,'?'),('v+t㺧y\r7','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/EliasisInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/EliasisInstaller.php',0,'a9&Juqm{$S','a9&Juqm{$S','4r_fbE-K6v[A,9r','',0,'?'),('wkڳHQ','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/APIKeyFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/APIKeyFactory.php',0,'Nc~N\">*vjD١(','Nc~N\">*vjD١(','p֌3$;إj\0ѨјS','',0,'?'),('xY4(RMj2}5}','wp-content/plugins/wordpress-seo/js/dist/externals-components.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals-components.js',0,'\Z|1ݑef\r','\Z|1ݑef\r','lݼB%^#Dg','',0,'?'),('y%Ǻ~ne\"V','wp-admin/css/list-tables-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/list-tables-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d~reFY','	_wr9ȏ=Pi!$\rJ}`s\rL','',0,'?'),('ynW]ĳRmr','wp-admin/js/site-icon.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/site-icon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$}e\0uWO','rrxjFR$ˣ4&L','',0,'?'),('OsۻWl\rQ\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ServerBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ServerBag.php',0,':׽34',':׽34','JdEHu(7/\ZQb$\"X','',0,'?'),('݋Hޢ1','wp-content/plugins/duplicate-post/options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&O֢*KbG_','J\ZԎ7|rU:Ѱїl;','',0,'?'),('ey1q','wp-content/plugins/wordfence/js/admin.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/admin.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǞZI g_',', $B~\nMК6]11[TLHp','',0,'?'),('L[TzE@E','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ExpressionRequestMatcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ExpressionRequestMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dco]]{','_!bD$j[\Z{','',0,'?'),('`y.L>','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/LastChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/LastChunk.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^˱\Zf','ʒ6<)^bjUQ]','',0,'?'),('/-TǻT<S','wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ݏ\\%Dkwj',']TS.{aMl\0','',0,'?'),('.\"T H/]m','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q?(3)','/@B1aE7\rT2n`','',0,'?'),('\'*6$b/H','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-publisher-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-publisher-presenter.php',0,'4AxT\"','4AxT\"','n*!Lv}̅99R?y5[t8T','',0,'?'),('JԿ+p','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/ServiceProvider.php',0,'4u^\Zdʴ','4u^\Zdʴ','E\\(\"pXG72\rys4@i','',0,'?'),('@ûJ`adnw','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Controller/Filesystem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Controller/Filesystem.php',0,'5R:\0ՋK','5R:\0ՋK','UWX Im>coX<Q\0bp7H2{ff','',0,'?'),('*0+j&{Ew','wp-includes/css/dist/block-editor/content.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&<pmakʹB','#˗`6waSմ8iS3','',0,'?'),('?Gү]\'(z','wp-content/cache/wp-rocket/atlantagynecomastia.com/what-is-gyno/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/what-is-gyno/index-mobile-https.html',0,'\"dxdтPgv#$','\"dxdтPgv#$','*)2JK5~*<ΎA0BA','',0,'?'),('rN(M\\','wp-includes/blocks/post-title/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}kRp$Ŷ','.µ&;i`?t\rI3ϓL&<','',0,'?'),('	rac(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageDownloader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageDownloader.php',0,'d[pDc>Y','d[pDc>Y','(:uqHϋN,FOM7,ydP','',0,'?'),('p@wNj','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Us	','ilw\n^E|\" S沄Bi','',0,'?'),('\"^0?','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-contact.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-contact.php',0,'F*mQ\Z','F*mQ\Z','֢{!\r07uMVE	`kgՔ','',0,'?'),('#ɾa\'P','wp-content/themes/kadence/languages/ru_RU.po','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EvÑ!-e','\njBn`^9Le3a','',0,'?'),('-Jc2	w@Zd','wp-content/plugins/shortpixel-image-optimiser/res/js/sp-file-tree.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/sp-file-tree.min.js',0,'#J_9HPt\"bZ','#J_9HPt\"bZ','[7HpN\")\"9\\k&+1','',0,'?'),('1o%qA','wp-admin/js/inline-edit-post.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/inline-edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ұߠ','vEe|2KyXTgs.,','',0,'?'),('<ku5ߌ=¹p','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/updater.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/updater.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ebԵ=gs','.h\"bM9N2s؀Q*G','',0,'?'),('RR\Z\Z1)Y-','wp-content/themes/kadence/package.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dx)J9%','±,y7Dמ\rU1ǂL3FO<b','',0,'?'),('TL ߈,]զm','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8	:{We','6{w^GkΫ25b\r񓫄','',0,'?'),('U\\L3.lV?t','wp-content/plugins/wordpress-seo/src/helpers/home-url-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/home-url-helper.php',0,'WĄFz֍','WĄFz֍','hTWNBZG򮀔vRfy\ZeA','',0,'?'),(']mwPW$LV\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/ParserInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/ParserInterface.php',0,'cO?VmJ00yq','cO?VmJ00yq','% [DW0.O(B%SsS','',0,'?'),('j*bwńʧQ','wp-content/themes/kadence/assets/images/fonts/worksans.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/worksans.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N?JXN7','h2$qEpiw82<9F^;ڟr4	','',0,'?'),('y\0m[;ʓ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/FuelInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/FuelInstaller.php',0,'m6,a{+2','m6,a{+2','c!<>\'_U#e&:ps|[','',0,'?'),('zh9ꈦXp+','wp-content/plugins/wordfence/views/scanner/no-issues.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/no-issues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xt-|Fe','_?7c:_@EJs[','',0,'?'),('~1ETL\r\'X','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/RuleFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/RuleFormatter.php',0,'S)[8a','S)[8a','1?)_Xb\n632R','',0,'?'),('X/NA5g','wp-content/plugins/kadence-blocks-pro/dist/form-analytics.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/form-analytics.asset.php',0,'HjT44S|9','HjT44S|9','XkEcq8\\SI_~\nw\rQ','',0,'?'),('6c@','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap80.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','atK','[Y,??l173SY\rt~.j)<M\'','',0,'?'),('wDan>]=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberTrait.php',0,'ђ\"=?\'Xtz7','ђ\"=?\'Xtz7',':YD{ZZ]HEdݴaQ','',0,'?'),('\rIBn5N','wp-content/cache/wp-rocket/atlantagynecomastia.com/causes-of-gynecomastia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/causes-of-gynecomastia/index-https.html',0,'ni4@','ni4@','?yŎf\"S	q) H\Z?vbPklfk','',0,'?'),('0n(jǅ@I\Z{','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Actions/EnableBigSqlSelects.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Actions/EnableBigSqlSelects.php',0,'iNe]E\0lZ;s','iNe]E\0lZ;s',',N͂En緓TtE\"ާhZT','',0,'?'),('ҕտJb8.','wp-content/plugins/wordpress-seo/src/config/migrations/20200617122511_CreateSEOLinksTable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200617122511_CreateSEOLinksTable.php',0,'muɂ','muɂ','5ֱ\Z*!#~$}&\\OFQm','',0,'?'),('ESc+#)','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uNmSC{','P~{p}x{82hXx','',0,'?'),('	Yj1.','wp-content/plugins/wordpress-seo/src/promotions/domain/abstract-promotion.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/abstract-promotion.php',0,'D7\0U`,*f','D7\0U`,*f','ꧫ2Zr^lwHA{ʂ','',0,'?'),('+[|p;','wp-admin/images/contribute-no-code.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/contribute-no-code.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X?LlR\'1','lCQ,\\#[+*le2','',0,'?'),('[`a(L\rs','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php',0,'a`_8vbܔ','a`_8vbܔ',';,\Z%nxL̐ri,H6','',0,'?'),('ƊRNd<=zJF','wp-content/plugins/kadence-pro/dist/header-addons/header-button2-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-button2-options.php',0,'?*K','?*K','m߀cBMs\'\n]\'Fv','',0,'?'),('ˋAFwD4B\0','wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lg٢7[','lÐHj\"votaR?','',0,'?'),('F{A','wp-content/plugins/wordfence/lib/sysinfo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/sysinfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㠆/ڳE','MGt\r=Ѽ)#Iz9=`Q{k','',0,'?'),('~aDeFG','wp-content/plugins/wordpress-seo/admin/metabox/class-abstract-sectioned-metabox-tab.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-abstract-sectioned-metabox-tab.php',0,'TG}','TG}','}ui<M$ʫjF\n|KG2}\"','',0,'?'),('1UFkF3fY','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php',0,'d_ڹy\\','d_ڹy\\','[?XTw袩>hFY\r','',0,'?'),('EQ?	(','wp-includes/class-oembed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yҿ~KH<f','? An6&z\'`,j]mv','',0,'?'),('[NPuxp','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/ServiceSessionFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/ServiceSessionFactory.php',0,':HA1>,>?',':HA1>,>?','LLC}Cf\\y.a^$Ƙy^NfD+','',0,'?'),('.݁BxKY','wp-includes/ms-default-filters.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r\0R','YK<	1AOAUhPC','',0,'?'),('	?1+\'`Ɵ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php',0,'\\\nNC=','\\\nNC=','H	Q.\r4\\&R\\6ҰHM','',0,'?'),('.Fg%>','wp-content/plugins/wordpress-seo/js/dist/reindex-links.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/reindex-links.js',0,'W*bk','W*bk','(¾<8C:xAU8Ja\0ߙ','',0,'?'),('F	}Bevkr.V','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Managers/AbstractManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Managers/AbstractManager.php',0,'nm{\nN\';','nm{\nN\';','tfy\r(iX-nTC肐$e','',0,'?'),('z_	t\\arg','wp-includes/blocks/comments-pagination-numbers/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cPudeOޕūo','6iOɭwXGV95-IZ','',0,'?'),('6~e{\".w','wp-includes/widgets/class-wp-widget-recent-comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-recent-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<F`','ԃOh	8qp=F[r','',0,'?'),('\Z˩W\\b','wp-content/plugins/wp-rocket/inc/deprecated/3.10.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.10.php',0,'Q<\"ԂDLS','Q<\"ԂDLS','U\0gQQ>ibo)~I=1O','',0,'?'),(' +e^oIx\'','wp-content/plugins/shortpixel-image-optimiser/class/Controller/FrontController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/FrontController.php',0,'(Cp3.B.$&','(Cp3.B.$&','&0#iQj2xè<GW\"ᔬT','',0,'?'),('#	<?\'1c]e	','wp-content/themes/kadence/assets/js/src/lightbox-init.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/lightbox-init.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VNȍÑf','qe_;M&e_j4','',0,'?'),('*O-Lτ\r[u','wp-admin/css/about-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/about-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!EXI^SŊ','9{:dWEL\"=n(玲\nR>','',0,'?'),('??n_2gj','wp-includes/js/wp-util.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-util.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѱ~t\r(1M','@\"L;jߖ;2Lgr\nZ2C?','',0,'?'),('C215lNRWR_','wp-content/themes/kadence/inc/customizer/options/footer-widget5-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget5-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\0EY\'HMr1','zj[\'WU[3Oر\nEo\\','',0,'?'),('CEK_Ay[ж','wp-includes/blocks/site-title/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k]T-k','@vTZÈWpR$za','',0,'?'),('N\nȖ`~mp','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wiAj','juMR^sp 5YUHVP\ZIj','',0,'?'),('Yg$zH.Y','wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','嚚Oׅ.(\r\"\Z\0Z','΂:ǲ=k:E7[eV%b3r\Z','',0,'?'),('k4DωN','wp-content/themes/twentytwentyfour/patterns/page-about-business.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-about-business.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5vJGu4','Ё^t*\n	˂A4lot&}','',0,'?'),('p8W4kc>8','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/AggregateException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/AggregateException.php',0,'F9p9NC','F9p9NC','4ZhI{]+WRf(mۦW','',0,'?'),('u\Z ׀+>','wp-includes/blocks/image/view.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*rY&l_M8','rlI5@DC7H		P','',0,'?'),('xOfT\0lBI','wp-content/plugins/wp-rocket/inc/Engine/CDN/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/ServiceProvider.php',0,'&<.O\0','&<.O\0',',@kֹ9	2(@Vϊ','',0,'?'),('x9WλO','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-captcha-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-captcha-settings.php',0,'=\0W4z],H\nf','=\0W4z],H\nf','e}g?XI<e׳P}','',0,'?'),('{#(?5%','wp-content/themes/twentytwentyfour/templates/page.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':߅;n3/','EDO\"y{O҄!clςB','',0,'?'),('OƸ)[u˓u','wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z` Z<\0*3','J#LӬB)\r&Akij@8cqn','',0,'?'),('2P\\Kョhh','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/fulton-county-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/fulton-county-georgia/index-https.html',0,' RxmE',' RxmE','kK\04*fj\nil','',0,'?'),('u`M','wp-content/themes/kadence/template-parts/title/breadcrumb.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/breadcrumb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b1a\'\"B\ZU','Oq*e\'{I@2vܵ76\r','',0,'?'),('DNGcf8u','wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-check.php',0,'i	7_ՈH','i	7_ՈH','l4h@taNN?tc]','',0,'?'),('uΎ#Xêhz','wp-content/themes/kadence/inc/customizer/options/my-account-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/my-account-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŵ~<+F,[	','Gks>ofH\\X&zοJLe:\\','',0,'?'),('I*`*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-k17\\Pĭ','Lc!\rwpak?.Kat:','',0,'?'),('v[r t','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionAggregate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionAggregate.php',0,'RUU6?s','RUU6?s','!-8:սmn:I2\'4zY','',0,'?'),('Y.+RCQp','wp-content/themes/kadence/assets/images/fonts/proza.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/proza.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	,M0Ocz','fǼz8JWM޹\r\n!PV㟝','',0,'?'),(';dAo+d(','wp-includes/blocks/quote/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','η=<`','OKys.S\rReAd5NJ','',0,'?'),('Oi-\0Cs\r','wp-content/plugins/kadence-blocks/includes/resources/Traits/Rest/Image_Trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Traits/Rest/Image_Trait.php',0,'Bl_RSo@.','Bl_RSo@.','$6Tb ېf2׌bWx0','',0,'?'),('mӟa','wp-includes/blocks/post-featured-image/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/4+vYbb','RKx4k*D\0K;oYg<','',0,'?'),('ºbR.[ z!}','wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-section-pro.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-section-pro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zq!}A?','\Z+_6Reǳ\"NH\\KN','',0,'?'),('(	n)?n','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~aj~cN,n','\\Jy_i=`|_Fq~FW%\\A`','',0,'?'),('laA੤','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/MixedPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/MixedPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b8pɪS','x.	(M\\̜\r:=N<j.','',0,'?'),('EeArи','wp-content/plugins/wordpress-seo/src/conditionals/yoast-admin-and-dashboard-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/yoast-admin-and-dashboard-conditional.php',0,'oDE(3&dh','oDE(3&dh','_[|!@=>XԓX!F.s','',0,'?'),('\nRbxg','wp-includes/css/dist/block-library/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&]kQz/VPR','	4Maxqx̐|+cY>','',0,'?'),('@0-~$]9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\"Q	.<v/9','_S 1,Tz{J^n','',0,'?'),('Y\0)\r/j)Ar','wp-includes/customize/class-wp-customize-filter-setting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-filter-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M`f\0iu','\0<\nj:YFdw	','',0,'?'),('cY	JBH','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareInterface.php',0,'(BߛH	}0','(BߛH	}0','w0l?','',0,'?'),('؉iIqt#]4','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-integration.php',0,'c¦y<:G','c¦y<:G','rRJͪM[Ut%Yx','',0,'?'),('2i6z%+','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/NetworkExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/NetworkExceptionInterface.php',0,'wdqK@F\"','wdqK@F\"','v_-u 0*\rVfq\0e1/','',0,'?'),('Ph`|/:W\0','wp-includes/blocks/columns/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','++F3\rn','!ã;hZDay^ZtU췸5','',0,'?'),('4;TrlAj','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"I','Ql$GIXDRrū~$S','',0,'?'),('$n1U\\x(','wp-includes/blocks/missing/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/missing/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hw:9 5w^','{˹R\\\ZThcTTʱq>L8*','',0,'?'),('\"=*2o\Z׾','wp-content/themes/kadence/inc/components/comments/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/comments/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N/\ZYZ	O\ru','(\'Q</7:KW_ao','',0,'?'),('$_Xla','wp-includes/js/jquery/ui/sortable.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/sortable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l%~ւ\'ᒒ$`p','| c!ykס,_n}4T','',0,'?'),('&2FfhR-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/HttplugPromise.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/HttplugPromise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PoE5m6','=YF@1}qݶՌwj','',0,'?'),('.oڻጎ;','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Slugger/SluggerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Slugger/SluggerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`A	rYȸ1','H~\ryo00_8$)','',0,'?'),('1[qso-O#','wp-content/plugins/wordpress-seo/src/config/migrations/20200507054848_DeleteDuplicateIndexables.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200507054848_DeleteDuplicateIndexables.php',0,'y#.{)','y#.{)','\n;	nC<\\y)bAϥކ','',0,'?'),('=ٍa@ڪ2\Z','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoTmpDirFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoTmpDirFileException.php',0,'=N<,^','=N<,^','CY7(ĐExmCYPRe','',0,'?'),('POQf-&','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Buffer/Optimization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Buffer/Optimization.php',0,'f/^M0','f/^M0','`}P	\\֍E#d','',0,'?'),('R;lzO8m<3Nie','wp-admin/user/freedoms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`U }\n','οzB+q5VlKlkZ/|','',0,'?'),('afh=FT:6','wp-admin/includes/class-ftp-sockets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-ftp-sockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zc78\rjjؒ','Q,0\rNQJYmʼ0A','',0,'?'),('ik[!gW}vȵ','wp-includes/blocks/image/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(jnȔ(Ew',';5y0r`fϋ4B~7:!T*\r\n','',0,'?'),('uh0뱂%J0','wp-content/plugins/wp-rocket/inc/Engine/Optimization/UrlTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/UrlTrait.php',0,'kJdC\n>>u','kJdC\n>>u','ɼˇJ4=`','',0,'?'),('~oU\'bͰJ\'QR[','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-social.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m8\'ܦF','rw b[ּ*w0o @ya','',0,'?'),(',9~؅','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"?cǵ3ϕ[i','A]eAP\'|m`OM<','',0,'?'),(';~ӷR>','wp-includes/class.wp-scripts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7 #Kh+','ruڶbW87fG]k\0f5','',0,'?'),('nvpe}','wp-admin/js/customize-controls.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\0}S!&p\rPh2','٤*=iK-Kt9ao\"|Q0','',0,'?'),('(6y_E.Q','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':QFf|#,V','4Dv\"̛yB `P{f','',0,'?'),('Ga','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpContentEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpContentEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㮊罵F\r[','WaCJc:	^A&|	\Z','',0,'?'),('̱.JL6','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-tooltip.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-tooltip.js',0,'SD#(E','SD#(E','^&83$=rոvZ1mrZ{','',0,'?'),(';޾7͟Ńa:(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php',0,'?~ z','?~ z','TxL5(}HyJcre','',0,'?'),('ǽ\Z\rm%Q1+I1','wp-content/themes/twentytwentyfour/assets/fonts/inter/LICENSE.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/inter/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\\u`','x`R#GEd[qȟh\nxs','',0,'?'),('&#\Zy','wp-content/plugins/wordpress-seo/src/integrations/cleanup-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/cleanup-integration.php',0,'^FY!RA','^FY!RA','PGӵѷ6n$zƶsK#','',0,'?'),('DTǡ#\"1?','wp-includes/blocks/cover/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+8KOy3q','A<C\0xyL\rX\"/`Dov','',0,'?'),('$Ft_cw^58','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/HttpClientTestCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/HttpClientTestCase.php',0,'#=~CԞT','#=~CԞT','Ha({-\\2p6\0\r','',0,'?'),('.re','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/LegacyNotice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/LegacyNotice.php',0,'rvl݂ܝ~','rvl݂ܝ~',']ۻIZ>f<x#a3}#N\'','',0,'?'),('PZ27Mn','wp-includes/blocks/rss/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7bl\'Unu	Ϧ','JT(1>5lrqL\\{','',0,'?'),('Qf+y{','wp-content/plugins/kadence-blocks/dist/blocks-testimonials.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-testimonials.js',0,'A}fR̘pO(','A}fR̘pO(','N9So؅\'3^%*g%','',0,'?'),('*h^','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'crϙDq5\'G~','H.#\nDu9uq<fA	eV1','',0,'?'),('bxڪBF','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jcyX\"I\rI',' dD<t	)15eEL','',0,'?'),('ޓQnxW%','wp-content/plugins/kadence-blocks-pro/includes/blocks/product-carousel-categories-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/product-carousel-categories-rest-api.php',0,'ѣ\\qiZx','ѣ\\qiZx','UE*	6THוtoZME\\_=','',0,'?'),(':)!k}','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php',0,'6]/Cpp0','6]/Cpp0','@A\rT(P/;=','',0,'?'),('B\\u}L,','wp-includes/css/dist/block-directory/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-directory/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EKcK',')F7\n@΅OW|!MmOB>','',0,'?'),('@bAp_=','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-header-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-header-block.php',0,'Z2><j\\d~G0\'','Z2><j\\d~G0\'','3z];Y]]6ٹN\0.K','',0,'?'),('zd?0\nB','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/WPMeteor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/WPMeteor.php',0,'`\ZEŽL5\r÷j','`\ZEŽL5\r÷j','\'&C+fR!J>#	jVz','',0,'?'),('5=漻qdծɈ¥','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',0,':o43ӔH',':o43ӔH','m?e9~u:z&nU;`]tm,','',0,'?'),('\r. ,\Z/Q','wp-content/plugins/kadence-blocks/includes/navigation/class-kadence-navigation-rest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/navigation/class-kadence-navigation-rest.php',0,'=;)\0s)E	','=;)\0s)E	','	SD\":1IӛΦ9>','',0,'?'),('	Ʒ31Q;S','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/FileStore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/FileStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','פdܡTT','^쇀<H-\0Uϫ*NbHh','',0,'?'),('WN۷8G_Ȣp','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/ActionScheduler_DBStoreMigrator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/ActionScheduler_DBStoreMigrator.php',0,'(NL@Ҹl','(NL@Ҹl','ysC7M¨U(s**n4Q\\Z~','',0,'?'),(' G','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[}@m΋\0&','U4İ,[\\7;\0n4c	Wܯa','',0,'?'),('\"QOOPb','wp-includes/blocks/group/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3jCOѺ}`xݰ','GCf0S\"hsp4YuR\Z$xqO','',0,'?'),('#:SkU{','wp-content/plugins/wordfence/modules/login-security/classes/model/view.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*:?l]u','2P탚=w=7Ar\nfQ~,B','',0,'?'),('(|nsARF+','wp-includes/js/crop/marqueeHoriz.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/crop/marqueeHoriz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̮;Lo\n','|Se|./QYW}(','',0,'?'),('0,M_)','wp-includes/blocks/comment-content/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tfg}ȅAP','2Ш!H`a]Uq\Z[}','',0,'?'),(':n;,NA&>D','wp-content/themes/kadence/inc/customizer/react/src/color-link/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/color-link/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.uvust x-','Pҵ_;rBCc߼ȂnBvʣQ1L','',0,'?'),('@1s2F~V','wp-content/themes/kadence/template-parts/archive-title/title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<ۿ','H4%\rcT?7!uӥ1BXu','',0,'?'),('DBAʐʬZK','wp-content/plugins/shortpixel-image-optimiser/class/external/spai.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/spai.php',0,'җ\Z\'>okX','җ\Z\'>okX','dTeAWY	oA{o','',0,'?'),('Ijs9<B\r~%','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-hidden-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-hidden-input-block.php',0,'o4RXt#ܬU>','o4RXt#ܬU>','!#>OHEOFnQ9*CG','',0,'?'),('P% ݢI`|','wp-content/themes/twentytwentyfour/patterns/cta-services-image-left.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-services-image-left.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸pWf\0','8O\rpFsT(c]','',0,'?'),('U\\^#%䬤^y}','wp-content/plugins/wordfence/js/date.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/date.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jPER_c','B=0dƩ\"BtUc^1>q&','',0,'?'),('[\'/;','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܆)C/կ ٝ','1\'CAUu3iffDtl~','',0,'?'),('\\5\n(baR','wp-content/plugins/kadence-pro/dist/header-addons/templates/html2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/html2.php',0,'\nFy#52Z','\nFy#52Z','έNGm;ERa\"+Ɣ9^J[','',0,'?'),('c:Qk2	 6','wp-includes/blocks/columns/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=<^\\k!H',',4#ZTUF&g		R-^JO','',0,'?'),('djx-܌','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_wcSystemStatus.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_wcSystemStatus.php',0,'w{E9Ҿ~X','w{E9Ҿ~X',',C>*; n5','',0,'?'),('g$[1: P6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~S=|\"TFB','rH,zSr!rKٌC\\','',0,'?'),('iE^1Ey\Z','wp-content/plugins/kadence-pro/dist/header-addons/header-widget-area-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-widget-area-options.php',0,'q.7i3','q.7i3','?Vy?u\Z%!`IL᭖\0','',0,'?'),('z6t\0Px','wp-content/themes/kadence/assets/fonts/star.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/fonts/star.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F.~!=qޫ&e','r-uF̼hRa.$;','',0,'?'),('hRTZ%OHL','wp-content/plugins/wp-rocket/inc/deprecated/3.5.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.5.php',0,'zE','zE','a2f?lkxndzѼZ J','',0,'?'),('E6q5Ipyp','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHasHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHasHeader.php',0,'?I7;c\n\\}6Ro','?I7;c\n\\}6Ro','~iQRJt~+Lۇ','',0,'?'),('E4N*Ö','wp-content/plugins/wordfence/css/wf-font-awesome.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-font-awesome.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'MًV:','997dIOu-%enԻ1I','',0,'?'),(':[&b[hY','wp-includes/images/smilies/icon_razz.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_razz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9[wDAMA',';P1]fUE;`Qڮ\neZ\0@4aA','',0,'?'),('|\'ȑS$','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\01g6hҾܛ','_YE0\Z;\n4P5\0(rN','',0,'?'),('|$|Wjt','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Render.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Render.php',0,'3YH>u\"','3YH>u\"','DWǫt68wJ*{!̧{/\'','',0,'?'),('9׵&8','wp-content/themes/kadence/inc/customizer/react/src/border/border-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/border/border-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bxRF-#[pp','sA{bweiu|:Cݛ ','',0,'?'),('®GM\r','wp-content/themes/kadence/inc/components/templating_component_interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/templating_component_interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t^B\0ԓij','e]涜ntxc\rz:ۯL','',0,'?'),('x2_.~$)','wp-includes/js/dist/core-data.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/core-data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','srKi','8{A*5!6rշZrt','',0,'?'),('aEX;','wp-content/plugins/kadence-blocks-pro/includes/vendor/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/vendor/Container.php',0,'^Œ6y w','^Œ6y w','c\"s3ߺD0m͵m','',0,'?'),('$tզ}	T','wp-includes/blocks/code/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hhw>C','#0ckSvܾlnlJ7','',0,'?'),('Ὀ5f?hk','wp-includes/widgets/class-wp-widget-media-audio.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',{H-]meZy','3PU{gnҮ䰊\nz	\"ܼ','',0,'?'),('!BKPKM\\','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ErrorHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ErrorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hX6)cnNZ','ľ}:Ц\0pn@`)JV|Nn','',0,'?'),('*<I0[','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBagInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBagInterface.php',0,'Vil','Vil','/BdŌ#9{Pq$E\Zyqp/','',0,'?'),('JQrzA	XW','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/Definition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/Definition.php',0,'Qͨݜ^\'{','Qͨݜ^\'{','ffD1.F~\0߸2!i^','',0,'?'),('8`9?BbБ','wp-includes/js/jquery/ui/effect-puff.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-puff.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TF\nbՏ','?K1Pzr[a0ͷLO','',0,'?'),('\n /Y','wp-includes/js/dist/data-controls.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/data-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TK\'P~}638','	vf3+U?CN:tXw','',0,'?'),('=0QgT?u>','wp-content/themes/kadence/assets/js/lightbox-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/lightbox-init.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ꀚ\"1d','MC,a<zDҬ\"n{E','',0,'?'),('}VI','wp-includes/blocks/cover.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|dDჍK+S','}cyB;D@4{c^','',0,'?'),('$-I֔a','wp-content/plugins/wordpress-seo/src/conditionals/check-required-version-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/check-required-version-conditional.php',0,'pݨBL\"8*=L','pݨBL\"8*=L','4ꎰ`ihoǸ4%i','',0,'?'),('+F4\nq\"]','wp-includes/blocks/table/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^q%mZ,1','WO)j)Ag3$0$[m','',0,'?'),('2v\'{1\0','wp-content/plugins/wordpress-seo/src/integrations/admin/background-indexing-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/background-indexing-integration.php',0,'X','X','t 9ǑyF]{Qnշ/qh','',0,'?'),('O%F`f]#','wp-content/plugins/shortpixel-image-optimiser/class/Model/EnvironmentModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/EnvironmentModel.php',0,'.Ro%u\'|:@k','.Ro%u\'|:@k','xtGiWeD?=K^??','',0,'?'),('`Vu\Zt','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php',0,'6K\r\n','6K\r\n','=p]%޲fNQ3*Iϳۏ!','',0,'?'),('cd!oM0<','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/add-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/add-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DPn^P','bht|~*U\"lw2	','',0,'?'),('c̎$\n\'@\r','wp-admin/setup-config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/setup-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q[:`lE8','aa\0{Ξ\\=ndvRJI4PG','',0,'?'),('k3j8y','wp-content/plugins/wordpress-seo/src/helpers/permalink-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/permalink-helper.php',0,'bK =f{Д','bK =f{Д','`Իi	c\'ԭ5RKMOe','',0,'?'),('m֙7,}ov','wp-includes/css/dist/block-library/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VvA7az','s;{T$wb1ЍQ5hU','',0,'?'),('n3T@7ܧ','wp-content/plugins/wordpress-seo/images/succes_marieke_bubble_optm.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/succes_marieke_bubble_optm.svg',0,'l*M1T[\n:Z|','l*M1T[\n:Z|',' }L25g(\\-fĒ5ۭKU','',0,'?'),('rv\rOz^Bao[','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-slide-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-slide-block.php',0,'81\nM:߃UF8','81\nM:߃UF8','oo+b.HbGл2Ŷ','',0,'?'),('uKJG','wp-content/plugins/duplicate-post/src/post-duplicator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/post-duplicator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zoBo','4jݏk@(5xX7VIw|V','',0,'?'),('|3e\0HAq9q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Telemetry/Telemetry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Telemetry/Telemetry.php',0,'p:c\\5','p:c\\5','%⏓Dͮ X{Cwf`1L','',0,'?'),('vIUv\"','wp-content/plugins/kadence-starter-templates/assets/images/fonts/libre.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/libre.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0wu`h~5V','|י\"{6fC\0]n','',0,'?'),('3ft\'','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-lottie-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-lottie-block.php',0,'NS׬G?','NS׬G?','/tMW>4eI*','',0,'?'),('+jL\0v`*^Ҹ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FormSizeFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FormSizeFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O@\0Iz\\ ','ZSZԮT^6M7;\n','',0,'?'),('b]oVnUy','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+aY`Us','#js/gE uP1;=9','',0,'?'),('0ZG\'&j','wp-content/plugins/wordpress-seo/src/services/importing/importable-detector-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/importable-detector-service.php',0,'#޵\'XI\0UUzs','#޵\'XI\0UUzs','s\"jl?Q6w\rON','',0,'?'),('VtS-','wp-content/plugins/wordfence/views/scanner/issue-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xJZ','*ҟb\\kpBS3*','',0,'?'),('ee)3	ۺ','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Optimization/QueryString/Remove.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Optimization/QueryString/Remove.php',0,'5$Y\'#iO','5$Y\'#iO','-}>l4v⵼h@ƵAV','',0,'?'),('()>v+D','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/SuspiciousOperationException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/SuspiciousOperationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{IBf@','0f?/N	=qg7ֿmiGa<','',0,'?'),('J1MF<','wp-admin/js/tags-box.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags-box.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BUGX	+','ˠ3\0Zg[wu|H&R6','',0,'?'),('Z','wp-content/plugins/kadence-starter-templates/assets/css/src/starter-import-export.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/src/starter-import-export.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P2pH-52|','\r\\{S6\Z,Oٯ\"FL:ii2','',0,'?'),('BW>pq','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-frequently-asked-questions/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-frequently-asked-questions/index-mobile-https.html',0,';\'Rvzi',';\'Rvzi','ǫ-R}`OԺ	ˁv:PW','',0,'?'),('ug靣}V9an','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/IOException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/IOException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4[[8|','>\0?jQ0j\n͕ΪP%}V','',0,'?'),('e2#^G','wp-includes/blocks/heading.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hu\Zt\ZK#>\0{','<8)JY$V2%rI&{=','',0,'?'),('0_4p','wp-content/plugins/duplicate-post/src/ui/asset-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/asset-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2+x2','E!GZ9]mQ.5q13B1','',0,'?'),('ę)sm[j\n&','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']V9?C}','q7-Uw!\"bv~?&})A*\\','',0,'?'),('Ǭ7!]Ƒ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/ClientException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/ClientException.php',0,'k|@:(-}	','k|@:(-}	','2/I!$muy- vQ','',0,'?'),('c-,Rqee\\','wp-includes/blocks/group/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\	ʝ=fZ9U','\ri$y+h?j魾\Zb3sJ)','',0,'?'),('?ڟE$PF','wp-includes/pomo/translations.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gh8','K7c=՛ձŔ','',0,'?'),('hY)W\'v\'','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueueInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueueInterface.php',0,'/صp\\(','/صp\\(','\'؏ݫ[[uGjS.zNBz5h(','',0,'?'),('է\n\'yј','wp-content/plugins/wordpress-seo/src/integrations/admin/health-check-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/health-check-integration.php',0,'-8gze7z','-8gze7z','.,I+\'_>S!9$\Z\\','',0,'?'),('ںjz[\0','wp-content/plugins/kadence-blocks-pro/dist/blocks-productcarousel.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-productcarousel.asset.php',0,'b9h	','b9h	','H\r6L@.@@\'\rܖv⯺D','',0,'?'),('v*D2','wp-content/plugins/wordpress-seo/src/editors/domain/seo/seo-plugin-data-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/seo-plugin-data-interface.php',0,'e-4)hyj@m瓁','e-4)hyj@m瓁',',یF.1P|_͛x7qǶGI','',0,'?'),(':^	6T4','wp-content/plugins/wordpress-seo/src/repositories/primary-term-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/primary-term-repository.php',0,'ﺪrY3\'/','ﺪrY3\'/','\'qK3\"6֌UH#3','',0,'?'),(')J\rCW','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php',0,'tgLHfJz','tgLHfJz','ő1Nd^.Tg%Ȝ	LLc$','',0,'?'),('U.Tna-	톬','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php',0,'\"ۏ	3uL$\Z<','\"ۏ	3uL$\Z<','Qgu5\Z-|yR\Z$%V63^B{','',0,'?'),('8jc}','wp-includes/blocks/rss/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Tn9ƚ','ރ`2̲&A+e	F¸','',0,'?'),('hx*(&kO','wp-content/plugins/wordfence/views/blocking/country-block-map.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/country-block-map.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uyGF,{Xz','%Ԝ5;x^)G(o','',0,'?'),('\'Kzf','wp-includes/customize/class-wp-customize-header-image-setting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-header-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$,V9cRd6','dVn*m![IdǺam','',0,'?'),('5#\"8%`}','wp-content/wflogs/template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/template.php',0,'lCdb.˴v','lCdb.˴v','Z][WP},7*q\nƑ','',0,'?'),('\0+R|k8^','wp-content/plugins/duplicate-post/src/admin/options-form-generator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/options-form-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\\h=lYz','&vZ`R)N逄r','',0,'?'),('Hc1ް=','wp-content/plugins/wordpress-seo/admin/views/tool-file-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tool-file-editor.php',0,'ݴ@+Vz','ݴ@+Vz','v\\i~:Q <4/tA>D?o','',0,'?'),('#?Gc	¯l1e','wp-includes/class-wp-theme.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4M2Rsvz-ÆtҦ','ƲbAOIȬ+;J,|4','',0,'?'),(')Ϊ@)bX[N','wp-content/plugins/wordpress-seo/src/config/wincher-pkce-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/wincher-pkce-provider.php',0,'o8g_9(l\0,','o8g_9(l\0,','Hep&~NZVl(6Q.s','',0,'?'),('0gˎ ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/AbstractString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/AbstractString.php',0,'+M#O7\'7','+M#O7\'7','ܰc<Ct-Jh[I!x$','',0,'?'),('4`(WHc2Y','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Normalizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Normalizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sk~g!i','\r}Kۻ⨪vU(a','',0,'?'),('<dwէšhj','wp-content/themes/kadence/assets/css/src/footer.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/footer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ߦTQYEu','EhGAMFH\na9CpDpGb7','',0,'?'),('@VTL\'~i','wp-content/plugins/wordpress-seo/admin/class-yoast-form.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-form.php',0,'>N1;شCa?/j','>N1;شCa?/j','휜z?4\Z??dݸ\n!V2`','',0,'?'),('HPw%8','wp-includes/images/smilies/icon_sad.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_sad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IxoTMzD-','b5yh9}oWInn','',0,'?'),('I]Sf]','wp-content/plugins/wordpress-seo/src/services/indexables/indexable-version-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/indexables/indexable-version-manager.php',0,'MquV֢_hN','MquV֢_hN','D\n݆j6d5<Lˤqݕ}mN','',0,'?'),('Q49LzJ','wp-content/plugins/wordfence/lib/wfUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sPadIY\\','q_kAM!\n܍\ne0R3sB','',0,'?'),('XX*!2~','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ӻ1A,t/','~\"t\\,4w¡-~Mq','',0,'?'),('[nG{\'q:','wp-includes/ms-deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AQ/&}W#BI','<WVD\0M:sK4-a&Kʎ','',0,'?'),('\\h RX<C','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߅w@LOR','EFjrč;s΀.f:ϤF','',0,'?'),('\\#`ae','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php',0,'Tb4N','Tb4N','CN6siV;ߵ00B+Xv6,','',0,'?'),('c6~6̐','wp-includes/blocks/button/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"\'mz\'1/c)','Di22[5iC_J','',0,'?'),('hI0J2[o	','wp-content/plugins/wordpress-seo/js/dist/import.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/import.js',0,'$<-Ek(\n}','$<-Ek(\n}','J 6n!9rqda/[','',0,'?'),('{8/Raf','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-grades-stages/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-grades-stages/index-mobile-https.html',0,'5֧ЭSҳWe','5֧ЭSҳWe',':Afv\'ʌ~؜w|DGZ','',0,'?'),('|kKu˅/','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php',0,'IBonq܄','IBonq܄','XZ n?Lv7wx.SC','',0,'?'),('ʊnZ','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-image-parser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-image-parser.php',0,'%.El̕ک(','%.El̕ک(',';|Jw#G<&\0덉;&j','',0,'?'),('\Z78-\\~','wp-includes/css/dist/edit-post/classic-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/classic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q[\rg\nTd','W#`c($aVRA','',0,'?'),('lv\"(','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php',0,'h`Dni^%\Z','h`Dni^%\Z','JypG)4V.MUW֕3Դ','',0,'?'),('-\"h','wp-content/plugins/wordpress-seo/src/models/seo-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/seo-meta.php',0,'-Znkxtn','-Znkxtn','nbz`Io,eL\'\"2p','',0,'?'),('3_[#g`','wp-includes/css/dist/block-library/reset-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/reset-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z8`ةe_=o','N!ǴOv\ZsZT','',0,'?'),('Jח_yzx6O','wp-admin/network/privacy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0>H\r5:6','*]X8%KқR	Qf;\ne\r6\\','',0,'?'),('Ȁ~_qIS','wp-admin/js/password-strength-meter.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z3r;]<|','1y吥!}}3ɻ}}te\nt','',0,'?'),('\\D >F,','wp-admin/menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wzmhͼSUߙ','|dMDbK=m|Wf(_','',0,'?'),('laމL','wp-includes/css/dist/edit-site/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-site/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','űVȧ','<JFF<5ʢY7ܺ)\"7l.','',0,'?'),('on}tf$','wp-content/themes/twentytwentyfour/assets/images/museum.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/museum.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+r~S豌s^','WR%L}6^EC!','',0,'?'),('Uhxٛ6:[ѲԀ','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']𵱉t.,','=\r\nY:u+ôj߅y','',0,'?'),('&z7<i','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Contracts/Sanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Contracts/Sanitizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5yq\Zƺ;X\n','0M,j^pj_`|Qae)[a','',0,'?'),('c^fy]P','wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-html-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-html-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f&&j<anش','>b|38 8syϿd,','',0,'?'),('ڈctݝx&t݉','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php',0,'&YiR!:RzeZO?','&YiR!:RzeZO?','X7á0U<h]w`B','',0,'?'),('	\")\"0Io','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zq\Zsq776','CDa$=f[Q4JW7l).=%','',0,'?'),('re}/D>','wp-content/plugins/wordpress-seo/src/helpers/open-graph/image-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/open-graph/image-helper.php',0,'gA%g.ڦδ{Jz','gA%g.ڦδ{Jz','\0=s{tXˀ١\\[=A','',0,'?'),('Z%JyJ','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/AvifNotice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/AvifNotice.php',0,'e4fy)ԓ?h','e4fy)ԓ?h','8N\"#`,ͨ01lu','',0,'?'),(';k1SS!ʅ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php',0,'R5[ƒ?_c$Xz5','R5[ƒ?_c$Xz5','(3hhqwʖcW\"y\01L#','',0,'?'),('ꔕTs\r%LJM','wp-includes/blocks/spacer/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rzP#R\r$-','ލ!]L13q+#u}N!\"oh\0x~','',0,'?'),('&Ż(','wp-admin/js/widgets/custom-html-widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/custom-html-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K	kc\'','r=,kM:DyKF~sS|ğZ','',0,'?'),('M?M hp~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/Grapheme.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/Grapheme.php',0,'FLM׫Z~ Zà$','FLM׫Z~ Zà$','?ٕ!_..`^.V$>;\'h_','',0,'?'),('z5ze]O(&j-','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php',0,'ɥU\'[Y׾ܢ','ɥU\'[Y׾ܢ','8@J9|pe	s\'\neiM:o','',0,'?'),('T ѿ','wp-content/themes/kadence/inc/customizer/options/learndash-groups-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-groups-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9	`Luj','<\\z;%I:5ys3gΕaF~[','',0,'?'),('߇^xȟ<v','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Date.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Date.php',0,'m.&W*ӽ\r','m.&W*ӽ\r','i>3-\\6:tM,A=٧','',0,'?'),('PJ	r','wp-content/plugins/kadence-pro/dist/header-addons/templates/widget1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/widget1.php',0,'amO\ry','amO\ry','n,W\r+P60&=5[E	+','',0,'?'),('~+qX\"`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zZBWmB˯','Ȅ!++8,vF+3	','',0,'?'),('\ndת5MSUP','wp-content/plugins/wordpress-seo/src/content-type-visibility/user-interface/content-type-visibility-dismiss-new-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/content-type-visibility/user-interface/content-type-visibility-dismiss-new-route.php',0,'bW:5.dGg','bW:5.dGg','M2:R꽆	\\UWG8ؼ.h2oa','',0,'?'),('H(7','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Cloudflare.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Cloudflare.php',0,'dG7s','dG7s','5r\\J%6}~s]$2ދX','',0,'?'),('0\'2','wp-includes/js/dist/interactivity-router.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity-router.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L,1ӯx	}','6wc쑐?XߵD>\"|?FH<','',0,'?'),(')1','wp-content/plugins/wordpress-seo/admin/class-admin-utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-utils.php',0,'euk2','euk2','[хw\ZmF&lIHl9','',0,'?'),('?K]k0','wp-content/plugins/kadence-pro/build/classic-meta.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/classic-meta.js',0,'MqMwT.U','MqMwT.U','@`0jxIfZITE\"\n$LH\\','',0,'?'),('!8hd>hl','wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oڏ36\r\"5','ab@/xV&2b{x_G\0K','',0,'?'),('60)H2','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',0,'Ԙz@uߔ,މ','Ԙz@uߔ,މ','qs.1;~_(Fi,rC][+؋','',0,'?'),('U$2J','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Str.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Str.php',0,'oORB%Z','oORB%Z','ZJCѩfpf#dũ','',0,'?'),('j\Z;\re','wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{餺3kڒ','FVKYw3yC5m4Ebh~@v','',0,'?'),('nuƽt','wp-content/plugins/shortpixel-image-optimiser/class/external/image-galleries.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/image-galleries.php',0,'hSF\\)','hSF\\)','Nj[êc\r8w#]y\"Țeș{','',0,'?'),('njܙhr.l\0','wp-content/plugins/wordpress-seo/js/dist/admin-modules.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/admin-modules.js',0,'EƓSd!H\\s	e','EƓSd!H\\s	e','&>#,1[Ⴚ\"1xfuSZk','',0,'?'),('wK,Xڀ]Kt=	S','wp-content/plugins/kadence-starter-templates/languages/kadence-starter-templates.pot','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/languages/kadence-starter-templates.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':_pi`WlkZ','Q8>Up\0j\rȱR!%','',0,'?'),('ҼP','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_YearField.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_YearField.php',0,'4DfpTx','4DfpTx','N@7)(60&^','',0,'?'),('BKF:t{j','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/CHANGELOG.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l̈́yDҶl멿g','>fN\n|`Qjjx]\n}','',0,'?'),(';&	4N|_l','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Autoptimize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Autoptimize.php',0,'%FY/i','%FY/i','%m?FbXH%-,\r$[s','',0,'?'),('=CѠ*TX4','wp-admin/css/colors/_variables.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\"t=m:Ū','~d8{Zuy4f^1\Z*KF\'?','',0,'?'),('\'i3','wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-tool-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-tool-integration.php',0,'wՐY.q1h','wՐY.q1h','}VurdAwَzD{L^','',0,'?'),('<օ/IDoY','wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Handler.php',0,'0z;','0z;','klnSi}n9l.(','',0,'?'),('ڷtgZgE','wp-includes/class-wp-http-response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*T/l,I\0$','Ң.gLkJ#/ZF]m','',0,'?'),('9f7lR>P','wp-includes/blocks/comments/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z~JK9Hv\'^','{Uiͷf$¯37Qk;]O','',0,'?'),('jTctQ#','wp-includes/blocks/navigation/view.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TY=s','t*(̡>URM/e','',0,'?'),(' It13&','wp-admin/js/nav-menu.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/nav-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Qh%|s','|+7vʱ*XlK	̽8M+;','',0,'?'),('Epy MY','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kt-modal-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kt-modal-init.min.js',0,'hD(Ke.','hD(Ke.','U,[F˶Ѻ	\n@pdeh/XJY','',0,'?'),('&\0Жj5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ImageCMSInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',0,'*4nVYnGk','*4nVYnGk','u_/\ni^)]GEY|yڳkd','',0,'?'),('+ud\\<P9','wp-content/themes/kadence/template-parts/footer/footer-navigation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\n\'sOѭq','T(Pͩ1Rb@A*97I ','',0,'?'),('	Tz_G','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',0,'K\ZOHyW6=','K\ZOHyW6=','!ki@ϖ\ZcZ-O{T_\0Hk','',0,'?'),('3TdO	k&','wp-content/plugins/kadence-pro/dist/dark-mode/header-dark-mode-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/header-dark-mode-options.php',0,'KB','KB','lg̎N_\0|','',0,'?'),('dwD0Ve','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/EightBitContentEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/EightBitContentEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.9\\H##\0</Fi%','VpM9B3H{dq3vŧ pP','',0,'?'),('Glݠ_','wp-includes/js/dist/date.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/date.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':k3I;8@','z}BU(N+gQ/','',0,'?'),('J-狁\\\"ץ&','wp-includes/sodium_compat/src/Core/Util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&RЄsuT-&3B','Dy)?3>\'9\'qu|D7+C','',0,'?'),('+\\(b٥','wp-content/themes/kadence/inc/customizer/react/src/social/icons.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/social/icons.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kf2G9rͺ@','-%QkP½ah<Щ1','',0,'?'),(';?2S\0p','wp-admin/customize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֢|Q2n','D5MTj.|&pk\0I[','',0,'?'),('?f)O۫iX','wp-content/plugins/kadence-pro/dist/header-addons/templates/navigation-3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/navigation-3.php',0,')}wk\0\n\"~',')}wk\0\n\"~','c3A)\"D\n	','',0,'?'),('BHsH','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/BulkViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/BulkViewController.php',0,'n9(cQ','n9(cQ','ihL<1)ګo2ѹ%/','',0,'?'),('Gam,ܿ','wp-content/plugins/wp-rocket/inc/Engine/Common/Clock/ClockInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Clock/ClockInterface.php',0,'Vؿ8oH+b','Vؿ8oH+b','ǉ.xAя2D^9R','',0,'?'),('R}P\rqX','wp-content/plugins/wp-rocket/inc/Engine/Optimization/CacheDynamicResource.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/CacheDynamicResource.php',0,'Cwbv	e','Cwbv	e','~)|z!;\Z<dTe<','',0,'?'),('VR\r?ޕ|E','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0#L&J sx','\'ύ?)4A\"ź~XcES','',0,'?'),('X@%1Ci','wp-content/plugins/wordfence/images/lightbox-controls.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]a\\$','Ǘh?S):i@h.Xg','',0,'?'),(']IZiw;8','wp-content/plugins/wp-rocket/inc/Engine/Preload/Admin/Settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Admin/Settings.php',0,'[KrL|/m','[KrL|/m','B \n q^\Zj_[DC9Jm*','',0,'?'),('].1\rPXL','wp-admin/includes/update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n3{;q4C\0','\\ɦHza_Q\'D硁9ѵFɒY','',0,'?'),('f(96yaN|2','wp-content/plugins/wordfence/waf/pomo/translations.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ā\\cg',' ϞO)3JFN,xrB\0\'','',0,'?'),('g>y(k-[','wp-content/plugins/kadence-blocks/dist/blocks-lottie.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-lottie.js',0,'87>xjC','87>xjC','㧒z5uF~O6JF[y~鱎','',0,'?'),('hW*\\AsB','wp-content/themes/kadence/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&zκU[N޹yѺ','WL7Z/!YdM=)\0','',0,'?'),('n$5rF9(QM','wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.min.js.map','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.min.js.map',0,'bAgC_','bAgC_','Z9q+,c=@\Z1k\0?5','',0,'?'),('nBw	6\'O\n','wp-content/plugins/kadence-blocks-pro/includes/assets/js/aos.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/aos.min.js',0,'\"˜󹿶X','\"˜󹿶X',' >;joLpӞ^_@%݉','',0,'?'),('rY\0S(z|','wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g8EQmvOuTO','59TQ>|_BdÏ','',0,'?'),('s8\'ɀ\Z%Cx','wp-includes/blocks/archives/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yir7մVd','OWF4Yҷ請%\Z#C!EnO}','',0,'?'),('u${ܨv','wp-includes/blocks/latest-comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9_G|6%','TrQN4VJ:\07ՐzNa\r','',0,'?'),('~KɁwwfC','wp-admin/js/widgets/media-gallery-widget.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-gallery-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{c/I<','y\\RTܠUtmY(㻱̿','',0,'?'),('h[Fsxz','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/metabox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/metabox.php',0,'aWEN~z؇','aWEN~z؇','U886!픆,¥\r+.ˈ ','',0,'?'),('\r[\0EuJ','wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ͱȪ\\$\\\Z1','Ou89.8Wy\"c','',0,'?'),('4y3%k ','wp-admin/js/widgets/media-image-widget.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-image-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';k#?cQ7(e','o{\rrh5Fww	LeFz]','',0,'?'),('| ','wp-includes/js/masonry.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';?&TJexH','$!|=#fcjc:TQ0b,ʉ','',0,'?'),('lUDTZla','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZR)nDjTH','\0Қ{k;AfF5א6[d9','',0,'?'),('W\rT輠9','wp-content/plugins/all-in-one-wp-migration/readme.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/readme.txt',0,'H~1DW끔','H~1DW끔','x=z֚\ZؾxW%\rאY','',0,'?'),('M{֢J[#F','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/StreamableInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/StreamableInterface.php',0,'&$*RmlCP*Z','&$*RmlCP*Z','-u\"ZHiU2m6b','',0,'?'),('}9ǰ=e','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԄC#ZwV','y]Y_)Q[yP=l\ZoO){GB','',0,'?'),('Θr(Ł ','wp-admin/js/auth-app.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/auth-app.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#LPS[f','F@H8݇7an#{j','',0,'?'),('v{Cҧ4I','wp-content/plugins/wordfence/lib/wfViewResult.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfViewResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z\"J3Zw','me=HoDOT\0v','',0,'?'),('\0뀄	;t/-','wp-includes/blocks/file/view.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W4jZ6','rj4eV)@N\nFş5\n','',0,'?'),('?wǓ8','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php',0,'\"\r7O=\n3&m','\"\r7O=\n3&m','5Y@f}V{Bt.f))H','',0,'?'),('GIa','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Subscriber.php',0,'+?NP\r;X7','+?NP\r;X7','MEWMñDAA\0D*Ybap','',0,'?'),(' (v8 J','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php',0,'R❶Eά+$','R❶Eά+$','.{LAb\\4ȾɼWK1','',0,'?'),('p$^dZ','wp-admin/network/plugin-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%(Fv\0~F','ڙs-s~uYeTF4! *','',0,'?'),('\\/nմ?-','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWPInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWPInterface.php',0,'ԢKH\Z_ڡp','ԢKH\Z_ڡp','ۄbHLUCH[|\\dzf\n?5','',0,'?'),('[Kb28','wp-includes/pomo/po.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4@9yG8',':ډLڃaOw={KG','',0,'?'),('4ih=g7','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-reports.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-reports.php',0,'o\\Y\0s*٣','o\\Y\0s*٣','W5:M|SK\")$ٴ-Y','',0,'?'),('0[}uk','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/StreamWrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/StreamWrapper.php',0,',ɷtR\"',',ɷtR\"','!B ^vST,\n0+p','',0,'?'),('	TknS','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidFileException.php',0,')Z.]U5&\\9/',')Z.]U5&\\9/','SG-3%1νu6XV','',0,'?'),('	\0z}\n[R','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/DkimSigner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/DkimSigner.php',0,'}%R\ZB8^P','}%R\ZB8^P','Fd?:BNj\'4\n','',0,'?'),('\niϳQ=','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؕ$sδ','nVIqH`fRWÓd','',0,'?'),('JHl\"GL','wp-includes/css/dist/block-library/reset-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/reset-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L害rcH;ˇ','==uX4\\y0$Zj856:','',0,'?'),('XJp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TQxj','1YTЈqW6݋h	','',0,'?'),('9[E:Ѷq	A','wp-includes/blocks/calendar/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\Z\"P{ў\"-','`Gn$iC2{7$lIxW','',0,'?'),('\"i\'6)','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/LogicException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/LogicException.php',0,'JmM\ZHpQ','JmM\ZHpQ','\r5MH7P,%|T!B<','',0,'?'),('#\nɰЂ','wp-includes/blocks/query-title/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']l¥ˀ3','d\"Q٥[Rf?а-[1#xr,md\r_','',0,'?'),('#=|ԞoL*-y','wp-content/plugins/userway-accessibility-widget/includes/controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','],??RV3','dRLRz\0n9C+Jz|>zwۥN=k}Cm','',0,'?'),('4i`.3','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/CombineV2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/CombineV2.php',0,'wR͔}>','wR͔}>','.Hmbd#x~.','',0,'?'),('J랿h#:!^`=','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager.php',0,'\rv,%fn2T','\rv,%fn2T','ᒠ#0q*n\\\\!́\'A%!.k','',0,'?'),('Sq`M','wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B\nyNx{','EzB4/pŘ\r۞.B3','',0,'?'),(']_\Z?ʤwHo','wp-includes/blocks/avatar/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Rd-u','7oWݹP*\0ӛ^Ũt','',0,'?'),(']E|$Ϣ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n38ߦL','<V:eԠXt+','',0,'?'),('ecZ,9','wp-content/plugins/kadence-blocks/includes/assets/js/kb-tiny-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-tiny-init.min.js',0,'cx{r5WK','cx{r5WK','G@j\ngl\'jw$ksH{','',0,'?'),('kx)u]#','wp-content/plugins/wordpress-seo/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/installed.php',0,'xhZq4^!óP','xhZq4^!óP','SU5:R-#е4J	Z&qb','',0,'?'),('n֢\rV5,','wp-includes/widgets/class-wp-widget-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j+(,^b(','PL+witZdkZ{XV`t','',0,'?'),('ol>x~I ','wp-admin/network/about.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~(4G','j/}Ӆ\0ES̤\\Hg#Z._','',0,'?'),('y1ӵ#Ăĸ','wp-content/plugins/kadence-blocks/includes/assets/js/kt-init-parallax.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-init-parallax.min.js',0,'cPq','cPq','Ih\\XG <C]c#`!-','',0,'?'),('{ϲ\"f~A?z]','wp-includes/Requests/src/Iri.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Iri.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jeQd2','̣ѳj쭢&wF򝢂 j5JX','',0,'?'),('n} >MS9','wp-content/plugins/kadence-blocks-pro/dist/blocks-query-pagination.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-query-pagination.asset.php',0,':;}Ue]Pl.',':;}Ue]Pl.','ƋwrFHi%B71TD\Z','',0,'?'),('0jlSK','wp-includes/post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y|QZ#6','V[||YRtgm3t','',0,'?'),('ސqic=','wp-includes/class-wp-simplepie-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-simplepie-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6D}\n','BH_${f\nBfFfup)p\0j','',0,'?'),('7{xu@:%','wp-includes/js/dist/interactivity-router.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity-router.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Oz6','1.+;e&IF@ЄH(\0?#^','',0,'?'),('ڧ94~7z','wp-content/plugins/wordpress-seo/src/deprecated/frontend/frontend.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/frontend/frontend.php',0,'!:ԋLf\Zu','!:ԋLf\Zu','!$\09B}ti9NK5%J','',0,'?'),('ǔ؅ \nK','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>^@(d5','Ɗ7}䘮Z&sW$.','',0,'?'),('kaT','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-encryption.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-encryption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҡ\0:0\n{\n%R','lay\\xe-!\r=-OLZ2','',0,'?'),('sՌQ7o','wp-content/plugins/wordfence/views/common/status-detail.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-detail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Ufxy99g4','EFj՗&\nE&J՟gWk.T/','',0,'?'),('_Q|]`\Z','wp-includes/blocks/table/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MW\n)GkC','8>*D#\'*-v/˞>Q/Oc','',0,'?'),('zz_E','wp-content/plugins/wp-rocket/inc/compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/compat.php',0,'=x4w','=x4w','k$ñ`I[[=9\Zh/d','',0,'?'),('«-j=uN\\q\'','wp-admin/css/farbtastic.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/farbtastic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8)}{Ch2U','|ALMbxd8XjX.^\n\Z','',0,'?'),('\0$ō','wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-settings.php',0,'d$Qr̬ F','d$Qr̬ F','- ٤j5YY5@0','',0,'?'),('ҰJ?\n$z','wp-content/plugins/wordpress-seo/src/helpers/taxonomy-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/taxonomy-helper.php',0,'\"eTCٗasB','\"eTCٗasB','dӵB[\"CGP@W*=','',0,'?'),('kD?.iZnQ','wp-content/themes/kadence/tribe/events/v2/default-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tribe/events/v2/default-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bt߶\0;%2','^BF\"@E\rb:?/1X,-.','',0,'?'),('h3+0i>','wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamichtml.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamichtml.js',0,'*\r+=fms','*\r+=fms','6xBX?ٲ\0k','',0,'?'),('ugkDEK','wp-includes/blocks/query-pagination-numbers/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';D}WRq>]$','x=f\0_ꊔ\ZmLqbJ','',0,'?'),('qHQ','wp-content/plugins/kadence-blocks/includes/assets/js/kb-glight-video-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-glight-video-init.min.js',0,'=iL+','=iL+','Tw2Qj1h%hp53','',0,'?'),('RA*z`','wp-content/themes/kadence/inc/customizer/react/src/boxshadow/boxshadow-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/boxshadow/boxshadow-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qd1\ZZJ+','2+jv\\_SX%`-=','',0,'?'),('ᗏ3-4','wp-admin/css/colors/midnight/colors-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kRQh\nav','b_J41w\\S _f','',0,'?'),('bJSa-','wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D>T;;ۜ','72lWR!Rvd\Z(Hr','',0,'?'),('A8t2K)zH7','wp-includes/css/dist/commands/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/commands/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mѷ;4','	/i\\:e4QOWv%F','',0,'?'),('	K|	JdA','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\T\'14E[2','[ʎnJi\rp','',0,'?'),('\rv1Mq|','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e5?VCO\'','n^nh|GЕjEބ,=','',0,'?'),('\"ڕK[@G9','wp-admin/includes/class-wp-theme-install-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-theme-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"HvS{','Z_K6`,DLM\'\0M\0oۢP','',0,'?'),('#u0c}','wp-includes/js/dist/i18n.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/i18n.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tï]7E','j=o Y_\".GZ	','',0,'?'),('$QsPR3}/','wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sU4櫋4[t','_jAC5OylDU!\0','',0,'?'),('3!9=6ݡ','wp-admin/images/resize-rtl-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/resize-rtl-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MMH!YA','2mo{|ny˃4(φ=','',0,'?'),('IooԆ5nuѭH','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0?4\'+̶L)$','Y	ORٴ@M=xMK\Z.','',0,'?'),('QYp0QȊ-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n38ߦL','<V:eԠXt+','',0,'?'),('SGѴV\r','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriComparator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriComparator.php',0,'i4W -X;','i4W -X;','ԙP\\<?͇8KU2͌x~bv];i','',0,'?'),('^2^T:mJ:','wp-content/plugins/wordfence/lib/IPTrafList.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/IPTrafList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`PդueVm','ϴCrAXͽ(Ҏ\Z#?=߲o<','',0,'?'),('b0݀>j\"G','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$2J','/#?TiOLyvuTKɤ\\ػ','',0,'?'),('я7\r\'x','wp-content/themes/twentytwentyfour/patterns/template-archive-blogging.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-archive-blogging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o(XVM^@\'',']2MGt[s~Ms!(BhV4','',0,'?'),('hܼ!\Zo','wp-content/themes/twentytwentyfour/assets/css/button-outline.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/css/button-outline.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڱڱDG]','Z\0ʜ{\Z:~C\'£wbHCB','',0,'?'),('7_U&8w','wp-content/plugins/wordfence/css/phpinfo.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/phpinfo.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Q!0w/蓴','a@|I\r=\Z^εd)[W','',0,'?'),('\"ֳݸB=@S','wp-content/plugins/wordpress-seo/src/integrations/front-end/feed-improvements.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/feed-improvements.php',0,'QK	|\">','QK	|\">','$4̌(\0qߪ=1/4>\\X@73','',0,'?'),('pB0\n G','wp-content/themes/kadence/assets/css/tribe-events.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/tribe-events.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(A01)yCu&,',':&,G57J0Yl.@(0r,xb\r','',0,'?'),('oV:NNg','wp-includes/Requests/src/Exception/Http/Status428.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status428.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/qxI圪P','<\Z4!n*\\U','',0,'?'),('[1Z','wp-content/plugins/duplicate-post/compat/jetpack-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/compat/jetpack-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cxщ','O+SMA0햀B$nA6','',0,'?'),('5;|HMZX','wp-content/plugins/duplicate-post/src/ui/row-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/row-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@I69,rs(','SyFMA~\rTh	','',0,'?'),('+tǷ5Hås','wp-content/plugins/wp-rocket/inc/Engine/WPRocketUninstall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/WPRocketUninstall.php',0,'o6U;6q','o6U;6q','m_^Ae}ჁD}K;U','',0,'?'),('Yb(ӿ\rH','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypesInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypesInterface.php',0,'vxz2','vxz2','|MּwotM\nupۦ󓬳:l','',0,'?'),('+X܊V̸7','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6o1R-','U)Q$`\Zؐg_L*#U','',0,'?'),('uj`T','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LazyOpenStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LazyOpenStream.php',0,'oy	WT/#','oy	WT/#','!6.8~+sMQvK\r5S;\'fSRb','',0,'?'),('t-;6v','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MicroweberInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MicroweberInstaller.php',0,'88t?92	','88t?92	','9lKW7DWv^fdg{','',0,'?'),('ǌnnv\nhQ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AkauntingInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AkauntingInstaller.php',0,'Z}ø,','Z}ø,','ݢQ4\nt+.c<bsB','',0,'?'),('bɕ륧j-9','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/screen.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/screen.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1;FtA,',')ylQj}\rS[r1s_I','',0,'?'),('sC<:<A','wp-includes/sodium_compat/src/Core/SecretStream/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Z{5o','<s6\0,	RauhXc','',0,'?'),(':l ˳OD','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-ajax.php',0,'S3M6w','S3M6w','Np<2Cx3_x,hp	_q','',0,'?'),('P5}2$C=','wp-content/plugins/kadence-blocks-pro/dist/blocks-portfoliogrid.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-portfoliogrid.asset.php',0,'ް`;wA}?','ް`;wA}?','\n=SS(ϬaߜƆ.Chm/&]g','',0,'?'),('=\\\r','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l=P$؆5','H	gvllI(x','',0,'?'),('1K+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.1l\'(/3d','~I@}MhA/OWB4\"}i\0','',0,'?'),('$PJV','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SqsHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SqsHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ndq[,','6.aev;O9o97<','',0,'?'),('QԴTR!<','wp-includes/html-api/class-wp-html-text-replacement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-text-replacement.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܮ(<]npY',' \".G0YYM(Hk1~Gif','',0,'?'),('o\'hZ|','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-media.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-media.js',0,'KSw>Y!s# ','KSw>Y!s# ','DB @b>\0K(Bĝ','',0,'?'),(')[\"JH|jk$','wp-admin/js/customize-widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','38g%ځԧ ','U⨁>/oҘM\"T`2','',0,'?'),('*멣,d;~','wp-content/themes/kadence/inc/customizer/react/src/check-icon/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/check-icon/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','beY]@ep','$>kM}N(Qr&x_]R,','',0,'?'),('-`U.J}]nI','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PuppetInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PuppetInstaller.php',0,'?N/l*ğ','?N/l*ğ','~;<t.>úQ^\ZJ+ޥe,','',0,'?'),('1nHJ85\'n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ZikulaInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ZikulaInstaller.php',0,'\0QqY4ֱD','\0QqY4ֱD','Y-X\Z1XX\0YB','',0,'?'),('?FϸAR1','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pԏd0lN&7+','^s\n@G,ږ\n;|3P	nԔ/\rzA\"\nd','',0,'?'),('JTV0DoTA［@','wp-admin/options-discussion.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-discussion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_͔ne@','8*n9]EÄ2&䐛7&[/','',0,'?'),('ds[[	hֵR','wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Collection.php',0,'jǹ}t$#E','jǹ}t$#E','q?o\'^˜FS;`1Xɨv+TZ\n','',0,'?'),('uD^	mu','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/LoggerInterfaceTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',0,'ò|hu','ò|hu','Y}wsˇD\".&|:\0=fJ','',0,'?'),('-p拏Q+3Zv','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nLwzMCv','5M&,oolFye[','',0,'?'),('S8MC>','wp-includes/js/dist/block-serialization-default-parser.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-serialization-default-parser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wjvu.4','2%zuo:\n\'A\\eTU5l','',0,'?'),('\nGoZ','wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.js',0,'46`','46`','BRwܴۗ*>6{&','',0,'?'),('ȓZb#5','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Contracts/Storage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Contracts/Storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qg\r\0\Z^',',6SzЬq3+735!/ %','',0,'?'),('6>4','wp-content/plugins/wordpress-seo/js/dist/externals/jed.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/jed.js',0,'asr։#e:0e','asr։#e:0e','U6|>P\\s2Q#','',0,'?'),('8\Z1\nȉ=\n{','wp-content/plugins/wordpress-seo/src/helpers/open-graph/values-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/open-graph/values-helper.php',0,'#?&|\Zt','#?&|\Zt','![D҉ܞY]O#*`V','',0,'?'),('}F)H{b0ǟɇ','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_WPCommentCleaner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_WPCommentCleaner.php',0,'\'׈Rt(uwAtU|','\'׈Rt(uwAtU|','Iw	\r;,*[U{KNNu5\'g\r','',0,'?'),('ַI.C6t<','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vp Y6C4','2\'̙cIHS¾evpߡ\0W','',0,'?'),('ٖ|;','wp-content/plugins/wordpress-seo/src/services/health-check/myyoast-api-request-factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/myyoast-api-request-factory.php',0,'P?Ĵ=\"=','P?Ĵ=\"=','j_yT[^֤yUv%\n~','',0,'?'),('ShS%Tz','wp-includes/js/mediaelement/wp-mediaelement.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-mediaelement.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%/NqORg+\\','F}\Z\nvn`Z!TWs','',0,'?'),('\ZgDL','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UriInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UriInterface.php',0,'Qvm','Qvm','uU}mB^	9HM@q3޻','',0,'?'),('Zh;wElWT','wp-content/plugins/wp-rocket/inc/Engine/Admin/API/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/API/Subscriber.php',0,'/Zlm\"Lѷg?','/Zlm\"Lѷg?','͕r<63 tó','',0,'?'),('\'MSs{W{','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Cron/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Cron/Controller.php',0,',y-|U9',',y-|U9','c,ԴWy_h`/ /','',0,'?'),('\rۜTiES','wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-promotion-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-promotion-notification.php',0,'#fo<SI}','#fo<SI}','a[Y]*n:AZP)6d`','',0,'?'),('\"ܒnzD','wp-includes/SimplePie/Caption.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܊yuD\r£','\'W1Q5[ۋ)\r8۝5:?*)K','',0,'?'),('@_=B','wp-content/themes/kadence/template-parts/header/button.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&צMBHbc','9p7iK`W7η$j4','',0,'?'),('ˋ_o!\'ur','wp-content/plugins/wordfence/views/common/page-tabbar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/page-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qVdЌX@qș','SتAӤ@5|~?KBK9U','',0,'?'),(';\n7ړ4t>J','wp-includes/blocks/post-date/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=aV','C`bH&2*6Թ(]3\\nڶ}','',0,'?'),('Z\nuoK T;e','wp-admin/images/list.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*ӳS','\\wT[=baCk;c','',0,'?'),('䏂VܤcQ\'3','wp-includes/blocks/comment-reply-link/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-reply-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!TݖF.	B','ˀ-e\'iZC[KLWnAҮ6','',0,'?'),('Vs(tf','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo-v4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo-v4.php',0,'mJK߭{','mJK߭{','5Nwf~ZoӈS3QO7%','',0,'?'),('llxL,7WN','wp-content/plugins/wordfence/views/common/modal-prompt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0J.H[|E3$d','\Zz%;onm&','',0,'?'),('Z8kx','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php',0,'I\"ͱ	','I\"ͱ	','nAImq٬}ު愅','',0,'?'),('D-j<?DW_','wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/ConverterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/ConverterInterface.php',0,'XF8sA','XF8sA','$\Z6>>v̈A8qF:GG','',0,'?'),('\0\\TU?&)','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/FormDataPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/FormDataPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S@V#','VM&zNKtR{0pA','',0,'?'),('\0Qb¨2\rg ','wp-content/plugins/kadence-starter-templates/assets/export/src/starter-import-export.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/export/src/starter-import-export.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M:','z*\'aq͍a^0aI','',0,'?'),('4)tkl#<U','wp-includes/block-patterns/query-grid-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-grid-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/0K\0FOKM','Q^D拜dt5TG)ˊh`e ','',0,'?'),('Uy/*%;','wp-admin/includes/update-core.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/U#~vͣeJ&','OMUFt4nLxT{q,%@','',0,'?'),('\rEU̈́','wp-includes/images/wpspin-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/wpspin-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{%-E;|','u)JA92$N8\'F','',0,'?'),('WP旃^qy','wp-content/plugins/wordfence/lib/menu_firewall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!%r\'NP-XϼA','`\n\\-j-dZ{%pjA','',0,'?'),(')򍿽zu','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-nav2-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-nav2-options.php',0,'M(\"Wx\0LZU','M(\"Wx\0LZU','`%)\\Oi%1','',0,'?'),('=&׀5$','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Exception/NotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Exception/NotFoundException.php',0,'\rZ#:+o\r<&R','\rZ#:+o\r<&R','`d(,	QlΏh YKM!w\0/Qק[y','',0,'?'),('Hfz-Ov#\r','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-offload-s3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-offload-s3.php',0,'>w%WyxMm','>w%WyxMm','Z7zF3K\"\"KQ֦.','',0,'?'),('Ix_W^8H','wp-content/plugins/wordpress-seo/js/dist/elementor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/elementor.js',0,'\Z?|g\"ڌ*@','\Z?|g\"ڌ*@','&_rHXbeóR	겕','',0,'?'),('L-ic&va','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/UpgraderStatus.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/UpgraderStatus.php',0,'1UdTlP&a','1UdTlP&a','\n+`oW$zxm*]qmͩLS8','',0,'?'),('NR,J*̦G$i','wp-content/plugins/wordpress-seo/admin/class-option-tabs-formatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-option-tabs-formatter.php',0,'bkދm,)!p','bkދm,)!p','2Ko[k|ZVT|c','',0,'?'),('V>L1ҕc0','wp-content/plugins/wordpress-seo/js/dist/edit-page.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/edit-page.js',0,'h<S]ix','h<S]ix','M8%A(DZ$','',0,'?'),('b1qpfi','wp-content/plugins/kadence-pro/dist/header-addons/templates/widget2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/widget2.php',0,'oۢBдsX1.','oۢBдsX1.','~=59&_Xyㄧ\'~6j#','',0,'?'),('h/͔jC\0n','wp-admin/includes/class-plugin-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƤtG@U','O|GJP{Cb<2j','',0,'?'),('s)N	z@%\nL','wp-content/plugins/wp-rocket/views/settings/partials/getting-started.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/partials/getting-started.php',0,'hC	%','hC	%','Peԗ0G2w9Jv/ 1 ','',0,'?'),('t\ZX+6-J','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-check-icon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-check-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a3\rN+O̗+','5g\"]Z02:A[3,9xf~@T','',0,'?'),('xW2euvL','wp-includes/customize/class-wp-customize-background-image-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-background-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1SDM{KC(1','M\nK6e@zMd׽Z%d	Xҁ','',0,'?'),('|rp\'A','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php',0,'\nL9ɓ3\'\r.','\nL9ɓ3\'\r.','I	#եbJMkitA?(ceMW','',0,'?'),('6?^o#','wp-includes/sodium_compat/namespaced/Core/SipHash.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-er^!~','`RlԥLz?iāACH󞮣Pyn','',0,'?'),('R	(,	!)Z','wp-content/plugins/wordfence/waf/pomo/mo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D6~.S[','\\\'_FuC)CR\"(COYW!)','',0,'?'),('G,F-\no.','wp-content/plugins/wordpress-seo/src/values/robots/user-agent-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/robots/user-agent-list.php',0,'sXoU\nK,BV','sXoU\nK,BV','y!!Scͫ\Z@lPh^t,Pb','',0,'?'),('!|M*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Twq⥝%','LPH,:\nFLW6x##k;A','',0,'?'),('&@pɗ','wp-includes/js/dist/wordcount.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/wordcount.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?guE:;<H','.#~y8Fֆ','',0,'?'),('{Z$\'Q','wp-content/plugins/wordfence/lib/wfScanMonitor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanMonitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{B蟑bh6a\\F','rBVd:*WU2n/','',0,'?'),('ΦHc^)','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'{=ͺ','R_fW{*3ݔ	\"/','',0,'?'),('\0دfm7#','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o3hl,bo#','w_?U(#ߢ73n}','',0,'?'),('hSĿQR','wp-content/plugins/wordpress-seo/admin/import/class-import-plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/class-import-plugin.php',0,',$omocg]N(',',$omocg]N(','\n}fXĜb<Eo.[<v61_^','',0,'?'),('ݠA\"PV','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j<[L.;','4Ԟ~7碲fO[F!چ.>u4','',0,'?'),('spe','wp-admin/includes/class-wp-ms-sites-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-ms-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⿪M6k\r','V_;,>	Z\n]twü	','',0,'?'),('}<}rрwH<','wp-content/plugins/wordfence/js/knockout-3.5.1.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/knockout-3.5.1.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(aUHw˲IO','&$z;o,4ca','',0,'?'),('@Pwy3Ks','wp-includes/blocks/site-tagline/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r38ߟ','ŲuΑu- xmoC\0/#','',0,'?'),('	ӭgȱ!nP','wp-includes/IXR/class-IXR-client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aJ}!W','Yw1v.G3edÄy`LR	]','',0,'?'),('z!,3','wp-content/themes/kadence/inc/customizer/react/src/switch/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/switch/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g,PׄխJ','ENW)xvuxL.Yj	','',0,'?'),('ʜ\\\"z@*>\Z','wp-includes/blocks/site-tagline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2oH\"ϵ8zw ','h9DP\"ϑhff%','',0,'?'),('Zz}Y|','wp-content/plugins/wp-rocket/inc/Engine/Debug/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Debug/ServiceProvider.php',0,'>\r2HL4','>\r2HL4','M\"g?Z4B;l bSާC`','',0,'?'),('\ni_a*>dnP','wp-includes/blocks/post-excerpt/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͐/-\0I]T~ ','a&jf#\Z-CxWOnpj','',0,'?'),('\rTX [','wp-includes/php-compat/readonly.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/php-compat/readonly.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sga,','$S\nC+b,bTrQS9>','',0,'?'),('-18;T/X]','wp-admin/ms-sites.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f3&S7F76',',$yn)RHgh{$U','',0,'?'),(':0Q)O=+','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Jevelin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Jevelin.php',0,'H-jgj?;','H-jgj?;','/pP `{n]1\rSqj~\Z3','',0,'?'),('D}U#:','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Uri.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Uri.php',0,'gT^8MbH(P	\r','gT^8MbH(P	\r','<Y7%>DȐw֞1\\8','',0,'?'),('IY	v1BI\'','wp-content/plugins/wordpress-seo/admin/class-yoast-plugin-conflict.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-plugin-conflict.php',0,'\n9NNrk@_','\n9NNrk@_','[tJn@\Z!`Mi!%oD@,','',0,'?'),('f5','wp-content/plugins/wordpress-seo/src/conditionals/admin/yoast-admin-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/yoast-admin-conditional.php',0,'Sp!si0','Sp!si0',' :N2  f6,oQ	','',0,'?'),('j<MDd4m','wp-admin/includes/ms-admin-filters.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/ms-admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʊ_\\h\ZE','5GF[PrT\'xOQ1ANHdw\\','',0,'?'),('p81C','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';nq{\r6A','O^+d|<?A\r:?$','',0,'?'),('vN\ZBW','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-single-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-single-actions.php',0,'.:-9=HQ','.:-9=HQ','heg>TѺZ+\ndYO','',0,'?'),('ׇÌ!a\"&','wp-content/plugins/wordpress-seo/src/editors/application/seo/post-seo-information-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/seo/post-seo-information-repository.php',0,'ɠaS*%0{[','ɠaS*%0{[','X7Z9qz8t~Iwynsc','',0,'?'),('Y&mw2','wp-content/plugins/kadence-starter-templates/inc/resources/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']U,MX1','މC9dy;Ѐ_8H','',0,'?'),('=ceiٍ+','wp-content/plugins/wordpress-seo/src/config/migrations/20201216124002_ExpandIndexableIDColumnLengths.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20201216124002_ExpandIndexableIDColumnLengths.php',0,',=|p<~*i',',=|p<~*i','1	ۍCԧ\\ũsژߟT{G> u','',0,'?'),('Ρ~ߓ:eo','wp-content/plugins/wordfence/images/icons/tick128.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/tick128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ğch4\"','V}X e~G[C峆5','',0,'?'),('ώzkksk-\0F','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-rankmath.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-rankmath.php',0,'EP;أR__3lSb\Z','EP;أR__3lSb\Z',';oy\\`\nT(An׋\0p}gTھ','',0,'?'),('р͉+j`_','wp-content/themes/twentytwentyfour/patterns/gallery-project-layout.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-project-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ŕa<Kz=w','Rv*37FB$]˰]','',0,'?'),('\\8M4','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/PartialFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/PartialFileException.php',0,'nbjYyJѣx','nbjYyJѣx','lV23KCHQu','',0,'?'),('Λ\\Lp','wp-includes/blocks/comment-content/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dASbkYhH','	\0]Q&<GѬlB;Kfݐb+)r','',0,'?'),('(觨:pR/','wp-includes/class-walker-nav-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M=Ԫ+Jb[','34y[\"5%߾R݄5}','',0,'?'),('掸.\"<','wp-content/themes/twentytwentyfour/patterns/posts-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͝g}pT^','ۡ(rN<aw;ƾ\0	B/k','',0,'?'),('0[\\6','wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-dismissable-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-dismissable-notice.php',0,'ڕM]qn','ڕM]qn','%\'%#%BzPM)e`mtl)G','',0,'?'),(':<S)dG','wp-content/themes/kadence/inc/customizer/options/header-button-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-button-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4<n.-j[ڎH','|SN^s	B?|$%','',0,'?'),('(5aHyo,X','wp-includes/js/jquery/ui/tabs.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/tabs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@}݃OS','JGT(\'O&7ge','',0,'?'),('}pu1\"\n','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SetCookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SetCookie.php',0,'(%q>DSlh','(%q>DSlh',']:WHnC1 bmv@l','',0,'?'),('s	ؤ','wp-includes/class-wp-http.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z$N{iCu!\"U :','3t9{b\\ɽ(0oZ#\ra','',0,'?'),('ztOķ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php',0,'ܬY4_	Zg','ܬY4_	Zg','\"lA:E(m Sh3','',0,'?'),('/7ñcxpg','wp-content/plugins/wordfence/views/onboarding/fresh-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/fresh-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?-VfO,`0',':!:iD7Bisw4>=Yn_','',0,'?'),('ڥ^i$&','wp-content/plugins/wordfence/lib/wfCredentialsController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCredentialsController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{t[﹫mOT,n','΍dcU@>S6','',0,'?'),(' W݉?B)R','wp-content/themes/kadence/assets/css/src/kadence-splide.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/kadence-splide.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A9ǚM׬QE?','\'\Z6ٻPe:g\"ʫJ','',0,'?'),('$FH6AD	<b','wp-content/plugins/kadence-blocks-pro/includes/helper-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/helper-functions.php',0,'kH]H}','kH]H}','UWxh*@՘\"xOu13]','',0,'?'),('$͓bHn,\0-','wp-includes/images/smilies/icon_confused.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_confused.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/#	Ӣww$x꾓Y','U0\\LXfXƦG\0T$a5UB','',0,'?'),('%	uV+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PtQ!z{0;_','9x]@XnL3R','',0,'?'),('&\Zx2Ss;!f','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/bootstrap.php',0,'mGIv&<N','mGIv&<N','5[!eL^9Qλ$x','',0,'?'),('-췓9ExZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XwTgA}\n','kcQxe˳`=n6X5ydz5u]WB\'','',0,'?'),('58T5-','wp-content/plugins/wordpress-seo/src/helpers/require-file-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/require-file-helper.php',0,'nz2M4','nz2M4','.k=@[9WP+|8','',0,'?'),('7K!(t4b','wp-content/plugins/wordpress-seo/src/builders/indexable-author-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-author-builder.php',0,'Uz0{2X','Uz0{2X',',6qP9ksb}ĳ8','',0,'?'),('NZNDN>Y	','wp-includes/js/dist/components.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/components.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\'\\ĥR6as','`*&qy;I̱@;oX\r','',0,'?'),('O舳ː5H','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#n̂1mq','muB7ky=.@bNKm','',0,'?'),('QHS{9+l','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-divider2-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-divider2-options.php',0,'1PTFjjLW','1PTFjjLW','l]cE\'Ͼ:w	@P,,b1','',0,'?'),('SG.6pjE','wp-includes/js/dist/private-apis.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/private-apis.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ck4s\0hQ','0I7P043a\\*ܐ1\0','',0,'?'),('_H\Z/<Q;(','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/item-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/item-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K0-5|','%{Ð61R$Kxx`m^R~0>','',0,'?'),('hp(aپ>au','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-block.php',0,'Лڸhevrm','Лڸhevrm','\\(lQoX?uzCƧtY?','',0,'?'),('j{إɥ	h','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php',0,'h0/*\"z','h0/*\"z',';2\' c&V,\rXțL@','',0,'?'),('l\'őؘ','wp-content/plugins/wp-rocket/inc/deprecated/3.15.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.15.php',0,'D*uTg','D*uTg','Cˀ>ѣWMΤDY5@Ƥv9','',0,'?'),('r\'oi]','wp-content/plugins/wp-rocket/assets/js/cpcss-removal.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/cpcss-removal.min.js',0,'((igKJ','((igKJ','^&y|@7/LzHO B6TN','',0,'?'),('rTU̉x','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_RecurringSchedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_RecurringSchedule.php',0,'NU\ru/m(Rd','NU\ru/m(Rd','sy|)\'CB؛efO8mIl\nowa|>','',0,'?'),('s$lAF-^','wp-includes/blocks/group/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\	ʝ=fZ9U','\ri$y+h?j魾\Zb3sJ)','',0,'?'),('y^sB\Z8','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ErrorController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ErrorController.php',0,'HK~qF_\0Ug','HK~qF_\0Ug','K`R>d 0gw?Ɲ&;AP','',0,'?'),('{4.##','wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"VWK޺T40~v','#tOpR]@j|','',0,'?'),('ܰ_~h	sc','wp-includes/blocks/spacer/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','64g1)b','SWli\"k0ML[T','',0,'?'),('pƍIQ!Ԣd','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/NoPrivateNetworkHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/NoPrivateNetworkHttpClient.php',0,'k\\2_)@(T5%','k\\2_)@(T5%','8ܿD!ttJZ2r3ygOp\\\n','',0,'?'),('c1;!oe','wp-includes/blocks/post-author/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rųΰg','܇i)0N+[!Ճ`','',0,'?'),('W-IR9/D','wp-content/plugins/kadence-blocks-pro/dist/blocks-slide.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-slide.js',0,'S\ZZ@4[K','S\ZZ@4[K','v Hۺx}\ny#!f','',0,'?'),(')\\=qNY','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php',0,'eK\nd3L-<','eK\nd3L-<','nثdR`|\ntV@nBӽ{({','',0,'?'),(' TZ-[Ƙ','wp-content/plugins/kadence-blocks/dist/blocks-testimonial.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-testimonial.asset.php',0,'6{06RsR','6{06RsR','m	rb\\(ؙgP  (GI3','',0,'?'),('pBr\0U	BR','wp-includes/blocks/require-dynamic-blocks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/require-dynamic-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>!uG\n<bξ',':}\rʂ}wMCF34o1y!V=/','',0,'?'),('yH\0GN	2\'','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/WordPress_Importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/WordPress_Importer.php',0,'G6]{45','G6]{45','_Z\r/N)i;MjgAn]nI','',0,'?'),('4ȳ^{~>|','wp-content/plugins/all-in-one-wp-migration/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3R^:P<U','\Z*OP|,adXxA(^ɘ\Z','',0,'?'),('ѩHEW֏Vbb','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php',0,'&z)=s\\޺','&z)=s\\޺','g/lC󘫸&9!','',0,'?'),('v\'j@-*','wp-includes/widgets/class-wp-widget-media-gallery.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WfLZdR.<','oz=nҖ׏J!=) +','',0,'?'),('~w	rHy','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','((}akQ(\\','9ϻ䙖rneZ?d8u','',0,'?'),('wN}BH5 =Yf','wp-content/plugins/kadence-blocks/includes/assets/js/kb-masonry-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-masonry-init.min.js',0,',0~>%*',',0~>%*','atcb\nQ\\拵mv.*6o~X4ܑV','',0,'?'),('Ӡx@A','wp-content/plugins/wordpress-seo/src/wordpress/wrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/wordpress/wrapper.php',0,'ka6%4sd4','ka6%4sd4','sBHf	Q`k0Enj','',0,'?'),('X-Of','wp-includes/blocks/nextpage/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ei@FF\Z','-!`,#ál៳DTD	v8=Y5F','',0,'?'),('݆|_#','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php',0,'k5ܿ2\'|9ǟx','k5ܿ2\'|9ǟx','VfWK~īPWæ8b\\Q\0','',0,'?'),('=V\"','wp-content/themes/kadence/template-parts/title/excerpt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\r:sFͣ','^\Z[=x	a@ϸo+E{:\n','',0,'?'),('\n]Eg7Oqb','wp-includes/sitemaps/class-wp-sitemaps-registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S$\nX\'(','a:!XA2Y[n\ne,ASI$.','',0,'?'),('njP+','wp-admin/includes/class-custom-image-header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-custom-image-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\\c`!d','\Z:Aq+*\\5H_9 .I','',0,'?'),('M^X6y?Q','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/WhereClause.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/WhereClause.php',0,'Z(Ny`ó','Z(Ny`ó','LOtlؼώ;M}*tƳAE(9','',0,'?'),('\ZBi/6','wp-includes/js/jquery/ui/effect-clip.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-clip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\"_V_','neT%~4Gf#ￋ+','',0,'?'),('$%\'a˭','wp-content/plugins/wordpress-seo/src/repositories/indexable-hierarchy-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/indexable-hierarchy-repository.php',0,'\Z}tLOߊ','\Z}tLOߊ','yV-rBJC):5P{U\n','',0,'?'),('.R*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';z3\0','aH)ݞ6.4sϤЗjI','',0,'?'),('0~7bEcgm','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(װ9ht59','y)VVXˬY<:klY	\n','',0,'?'),('2]iM5>0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c`y]\"jo_','G5@ǖwM04O,~j{0k','',0,'?'),('8u7h@jx\"5','wp-includes/class-wp-block-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ĳߔ\0*','IoDf6|&L	P\"`+^','',0,'?'),('A^w','wp-content/themes/kadence/template-parts/header/search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_kR\nAѦQ}','>rcn\nu&kÒ','',0,'?'),('LyE{f','wp-includes/css/dashicons.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dashicons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֍kUо3','|389&ΚG\"#\0̠;eR','',0,'?'),('OXK΀]3r','wp-content/themes/kadence/template-parts/content/entry_thumbnail.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_thumbnail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j[XK,1%','e	BN0LyX	u8\\','',0,'?'),('gbf\r\Zъ','wp-includes/blocks/rss/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	_u:|W./','-\no|z#_0]\\u-Rb?','',0,'?'),('j14n#fL','wp-includes/l10n/class-wp-translation-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translation-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h-ӊ','KT9v+\r>& q:geq4','',0,'?'),('kULǡ$','wp-admin/ms-users.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³u~]*Cu\0','es}k_q}~G[5Qu!','',0,'?'),('rn`	m$\0V','wp-includes/blocks/media-text/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h:=~C!<','R)xdwǚ)NIk\"eն|','',0,'?'),('xNĭԼ\rNF','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MauticInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MauticInstaller.php',0,'[ʘ1#qF','[ʘ1#qF','-~aI-֗qwxbcDE|','',0,'?'),('g!ٺ!*','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-server-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-server-data.php',0,'6sE6z[','6sE6z[','\0첲Zz/TmW)F״','',0,'?'),('=-Xԍn{]pf','wp-includes/js/wp-embed-template.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-embed-template.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f%W^my4$',')Ar\rt@jY','',0,'?'),('wei!<sy\n','wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h8FK3Eqs','0TEVa~\'55h4o՞{Mɱ\'','',0,'?'),('_a1g<','wp-content/plugins/kadence-blocks/includes/assets/js/glightbox.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/glightbox.min.js',0,'\ZeT4oET7','\ZeT4oET7','-nql(}>d.\'\nYIu!','',0,'?'),('۝w6Uu%','wp-includes/js/dist/vendor/wp-polyfill-element-closest.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۧ^aʭV','s6m]:3HPѺ0\Z','',0,'?'),('\\JRَnx','wp-includes/blocks/navigation/view.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$QGp','-\nȚsbkbxjf','',0,'?'),('fSuBͥ?^yO','wp-admin/css/themes.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؋¶sl=j','mue02vl*x\\A	','',0,'?'),('9ڞR','wp-content/themes/kadence/inc/components/localization/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/localization/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^l-S','Ȕ|{<ݥnh!P8.:k','',0,'?'),('&9-Z','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/shutdown.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/shutdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0E9c=\'	\0','xٵ;Pi|:\r\riHäa','',0,'?'),('{^WC','wp-admin/css/colors/ocean/colors-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fگ\n','VnfXl2\0ٍOe\"a֘t','',0,'?'),('\0.6\Zxgd','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ִ5D\0zT','V@XX.34','',0,'?'),('-]\r~(#','wp-content/plugins/wordpress-seo/admin/class-admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin.php',0,'~B1\\	V/Vқ','~B1\\	V/Vқ','O!Ie_#.2!&ꅝLH\'5Z','',0,'?'),('ÇJVW]I','wp-includes/blocks/table/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U*N.y^Ϗs','Z>t>7^ҙ_ͧhvk','',0,'?'),('mu:B(]','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php',0,']]i!BkP',']]i!BkP',':pp4n\ZflsW1\'0','',0,'?'),('KMW','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/color-picker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';HƭM)Ot','NY\\fR\\5I+=eu','',0,'?'),(']hjV<','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/WPFileNameSanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/WPFileNameSanitizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')<1+t\neh%`','z`,ƶ=Hm~8)mW@vw g\"|','',0,'?'),('4T-\"QX','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php',0,')mDRHNE\\',')mDRHNE\\','4İH+LGwāL<ҹ','',0,'?'),('i6̰S','wp-content/plugins/wordpress-seo/src/conditionals/open-graph-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/open-graph-conditional.php',0,'^$ڼ]e׏\nS+^','^$ڼ]e׏\nS+^','EHh>{#q?{\ZSvDAWB','',0,'?'),('fօ#<W','wp-content/themes/twentytwentyfour/parts/post-meta.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/parts/post-meta.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kt*J,','eQ*+ʝ~KJTE3>ZE','',0,'?'),('ޟfXi*','wp-content/themes/kadence/inc/customizer/react/src/typography/typography-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/typography/typography-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','foF5-7','aE^l&~W	U/ssoW','',0,'?'),('Nڼ!Q+~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/ResponseAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/ResponseAdapter.php',0,'d\\eG','d\\eG','+ffc\rpLB|˯$tb','',0,'?'),('$[tCŤIw','wp-includes/sodium_compat/src/Core/Curve25519/Fe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QtzQ\"','}؟Zl(y0Ũz7{d6Ynrh\\','',0,'?'),('KB\nDM','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fX\'71gR߶','\0H\\0UFAD~W4+L$','',0,'?'),('m5u1}','wp-includes/css/dist/block-library/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j+L;@ư7we.','-۷\'V|M`{}OD`-Jq;Z ','',0,'?'),('ᗲ?)','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php',0,'(?<XQVn$','(?<XQVn$','*a0W\'udؚNlkph3K?x','',0,'?'),('&B5VAUU,','wp-includes/class-wp-http-cookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^zW\n%X6R?z','xgmgEv|	r\"@_q','',0,'?'),('%J{aTx2','wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block.php',0,'a6byÝݐ','a6byÝݐ','\n$\n^U#|}XE	','',0,'?'),('1Abȱ8EN','wp-includes/blocks/group/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';uH@\"c','\ZˈZ⟍(UM~ϑhYS]C','',0,'?'),('_f;waځ','wp-includes/js/tinymce/skins/wordpress/images/gallery.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_PwPU4','<W~ض+hN91_3ws','',0,'?'),('l* SNlo','wp-content/plugins/wordfence/js/jquery.qrcode.min.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery.qrcode.min.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԹXp`me<','wP\0pzuYDSz(WߥP3$S','',0,'?'),('seTrha5>/','wp-content/plugins/wp-rocket/assets/img/heartbeat-hover.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/heartbeat-hover.svg',0,'33ƿUiVIV','33ƿUiVIV','7Z9x=ɾv1H&)g','',0,'?'),('sΜq=','wp-content/themes/kadence/inc/customizer/options/general-social-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-social-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6tnȓ:','*o|滬;L$a]n`ZSAe;','',0,'?'),('u<ex@ֈ>','wp-includes/js/underscore.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/underscore.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W ENVk','eq)j\r2w-%v','',0,'?'),('w4{4T7','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/presslabs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/presslabs.php',0,'(>\"#)Z','(>\"#)Z','q\"oǜC2m*͸D4Lcj?~^?z','',0,'?'),('q?%rp07q','wp-admin/css/colors/coffee/colors-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ih9dbɐ0','|I[1^Ϸ{-O;3`tn&s','',0,'?'),('ݯ%.]R΀','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-account.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-account.php',0,'ViH8߫4yRY','ViH8߫4yRY','RqSX=<^_?S湘1]0z','',0,'?'),('C	#aS[','wp-includes/sodium_compat/lib/stream-xchacha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/stream-xchacha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^=$T','/~U]Nn<!\"Fm7*\0r','',0,'?'),('t:Z\0','wp-content/plugins/wordpress-seo/admin/import/class-import-detector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/class-import-detector.php',0,'`wcʈ','`wcʈ',',KIA2k1%uШg~+dJR-','',0,'?'),(':bCmkI<i','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailTextBodyContains.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailTextBodyContains.php',0,'ŒcDo@S','ŒcDo@S','렿uwA\"P< F\0;2P(','',0,'?'),('oY,ٝ)(','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php',0,'\']P9R.Թ','\']P9R.Թ','X,8r&GkF OIvn.','',0,'?'),('\rK3[%6R0','wp-content/plugins/kadence-starter-templates/assets/css/starter-templates.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/starter-templates.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pLb\'*',':\\*iAE,:D:Yq','',0,'?'),('͎\\1чڄ','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/IncompatiblePluginsLists/DataManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/IncompatiblePluginsLists/DataManager.php',0,'pDvZ՝_s','pDvZ՝_s','b)#6:pƂ }	\rpElkf%','',0,'?'),('zvo:B%','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ih%u-C\0','\"Y¤&6HU^\'$=_;>','',0,'?'),('xЙ)DC<','wp-includes/js/customize-models.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'~G~Ԟ','h3XVxpTOSSfb\rE捵','',0,'?'),('	h16\"S','wp-includes/blocks/comments-pagination/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',S\"\rW\0no','\0Wl3ls>ҏӽD^*','',0,'?'),('~U\"&','wp-includes/images/wpicons-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/wpicons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nVo$Of~7',']کA=ђ%q%aMBUp','',0,'?'),('t~*ֆ','wp-includes/blocks/page-list/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(MB_','l[)%=g\Z\ZFtW','',0,'?'),('\r՟)z','wp-includes/blocks/footnotes/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0bk.3Ի۴','S(:`+ %ǴXfE','',0,'?'),('W2DG7V','wp-admin/css/common-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n4fd\Zc\';MF','0˴^H˄m?. \rvaأjt','',0,'?'),('M~\nT|','wp-includes/js/mediaelement/wp-mediaelement.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-mediaelement.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ꕂvEK?\r~_','!?[_r=&\n-%!y\r','',0,'?'),('>[ٚKNP','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Libraries/Unserialize/Unserialize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Libraries/Unserialize/Unserialize.php',0,'ˇ]\nf\\i!','ˇ]\nf\\i!','IG8yʈ7Yބ','',0,'?'),('H◪6\\w','wp-content/themes/kadence/assets/css/global.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/global.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A˺\"U~\01','jຖ -\n!:1T-16(CA|A','',0,'?'),('M?w~XQ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Kg]8)','.\Z8JחL3\rnvu>_','',0,'?'),('U~2kt','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/JoinClause.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/JoinClause.php',0,'è17!<Cx','è17!<Cx','!r{[^`/F\rh','',0,'?'),('Vb(ktW\"6(;ƴ','wp-admin/includes/class-wp-media-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-media-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y6u11ex','a\\C1zI#2Hp^գ*','',0,'?'),('gr$굕Y܏','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php',0,'e_kɅN','e_kɅN','\nA+),=)N#/ZThc=W߅.','',0,'?'),('iȜ1\08','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S;h8^gR','mfʬSXT8A-g','',0,'?'),('m~62]','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/File.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/File.php',0,'NRie`','NRie`','aK$֣v\rTlC\n.Uy7','',0,'?'),('tfF	r{܇_Ix','wp-includes/SimplePie/Parser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ج8\rʝY ','ўKf\'?=Onư^','',0,'?'),('x$M:~ҊO9B','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öJζy0 C','=h\ZțAo8+춋~','',0,'?'),('|]D\Z.E','wp-content/plugins/wordfence/views/scanner/scan-progress-element.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-progress-element.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dꫯy5pc','0(5D=UԔ~ڈI\")7h','',0,'?'),('sŋ:Va&t~\\','wp-content/plugins/wp-rocket/inc/Engine/Heartbeat/HeartbeatSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Heartbeat/HeartbeatSubscriber.php',0,'w1\Z[R','w1\Z[R','X {Giox6[G~A!','',0,'?'),('N-q\0','wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-import.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-import.php',0,'\r)oF','\r)oF','T%buI|\\/+7^f\\RIۄ','',0,'?'),('1waȫZ$Px','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php',0,'Jt&9P','Jt&9P','T^0l87TcE ','',0,'?'),('c*d!','wp-content/plugins/wordpress-seo/src/deprecated/src/config/wordproof-translations.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/config/wordproof-translations.php',0,']umy',']umy','B,6!AL?}T0Gz\r','',0,'?'),('VD(a\\%3J','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0^o-#W+','U>&jG܉H	˱ގ)Lҫ','',0,'?'),('A4/̇QF','wp-content/plugins/wp-rocket/inc/deprecated/3.2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.2.php',0,'Sfx,(Ѿq','Sfx,(Ѿq','zjIY	=>Y:)V','',0,'?'),('vTC','wp-content/plugins/wordfence/lib/wfVersionSupport.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfVersionSupport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fnr\r-Z&5g','E\neٓglb\"H9G','',0,'?'),('UwB$<','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/HTML.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/HTML.php',0,'-z8îR','-z8îR','y\\©EԵ7fzV֪|rt\"Nv(rYm','',0,'?'),('ѓd*רV','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_IntervalSchedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_IntervalSchedule.php',0,'dB7;6ZU2','dB7;6ZU2','ѵ8EN$J0G!I~&;(tk\Z\":Y','',0,'?'),('aƔ\0a\'\\?','wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','01P_mrw)\Z','K$̪սRe	8Oy_Yoazj ','',0,'?'),('v+kN','wp-content/plugins/wordpress-seo/src/conditionals/front-end-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/front-end-conditional.php',0,'\0xȭi3c','\0xȭi3c','AQOlbfJ','',0,'?'),('A:w4\Z','wp-content/themes/kadence/inc/customizer/react/src/text/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/text/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f08mI0','&Kdr+KiCwG%4g>','',0,'?'),('ߢ(npJJ#','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php',0,'tJtR~i','tJtR~i','\ZMqAEF܏.KOα~xb','',0,'?'),('߲;0','wp-includes/feed-rss2-comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-rss2-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GHݭv','.?U%OΙx!-','',0,'?'),('Vw#_\ZR*','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j<[L.;','4Ԟ~7碲fO[F!چ.>u4','',0,'?'),('!-LHv)n#','wp-includes/https-detection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/https-detection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nb>ҬhFZe\Zp{','CXd5[6vZR}Y','',0,'?'),('%o50DS&^','wp-content/plugins/duplicate-post/compat/wpml-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/compat/wpml-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';9t9Q ','<t8hsO#Aߗ}','',0,'?'),('-Kfw\0D-','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/NextgenNotice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/NextgenNotice.php',0,'kfxƴxz','kfxƴxz','-v	Ic6\0E/.%ψMd N','',0,'?'),('<g=C״qD','wp-includes/customize/class-wp-customize-themes-panel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-themes-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q&Wt?}ǽD+&','C:.:#<A2V','',0,'?'),('A:F*r-ˡ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/IdnAddressEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/IdnAddressEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.<j]K>','i-Ug\ZVTxEV@.(','',0,'?'),('F#x[s1 	','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpClientState.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpClientState.php',0,'etL]	-','etL]	-','i0B2]hG<^`jS1U','',0,'?'),('PC<	vnR8','wp-content/plugins/wordfence/images/tools.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/tools.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@cI','Y=RB)	~ܖݟr','',0,'?'),('T܀1[','wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>K0D]	F','G1Ir.@p}Lc>.BB&.','',0,'?'),(']#	^!zšB','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpCommentLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpCommentLogger.php',0,'{ X','{ X','0Tv]\"T&Qհ5','',0,'?'),('^\\А\Zn','wp-content/themes/kadence/inc/customizer/options/page-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/page-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.t\nFgU:','fLgLhGЪyJD#k6{2','',0,'?'),('aGL=Xn','wp-content/plugins/wp-rocket/inc/Engine/Optimization/AssetsLocalCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/AssetsLocalCache.php',0,'z\n?lQK7K','z\n?lQK7K','Vtygg>MG\0\"I=\rr\"','',0,'?'),('e4г$1l','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/athens-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/athens-georgia/index-https.html',0,'cmzO\r2}sT	x','cmzO\r2}sT	x','fi(5Jm~(J4}Kfz','',0,'?'),('l6!ig=','wp-content/plugins/wordpress-seo/src/editors/framework/keyphrase-analysis.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/keyphrase-analysis.php',0,'{Wh\'F/j','{Wh\'F/j','-B^Tw]-5+L9ZWz2-','',0,'?'),('tпjZK7 ]','wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_2_optim.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_2_optim.svg',0,'rr!9{A','rr!9{A','kA|ԯ<v	!A7\\jKKذ','',0,'?'),('v>8\'T6X','wp-includes/js/jquery/ui/progressbar.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/progressbar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n١[	\"','([flEQ8q\ryھ<y','',0,'?'),(',M;v','wp-content/plugins/wordfence/views/dashboard/options-group-import.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JuK.5?g','4mdDX<\"y1U8$p','',0,'?'),('3T.^ƙ<','wp-mail.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Ѕ@*Jewqz\"cT','V^[<VMX9[Q0	8l','',0,'?'),(')g{','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php',0,'$;=Buf-','$;=Buf-',':zwnpFN[9dG','',0,'?'),('lށcsxR+','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Reader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Reader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0>Ftuf[]#~','VQgTV**jP\"$^','',0,'?'),('\'@S D','wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U?q>@p','\0{aq(w!Iz}+lx/I09|1%','',0,'?'),('!vӄf=_q_','wp-content/plugins/wp-rocket/inc/Logger/HTMLFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/HTMLFormatter.php',0,'?`i-6','?`i-6','mI[8C^3hd%N$','',0,'?'),('\09Xse!M','wp-content/plugins/wordpress-seo/src/presenters/twitter/card-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/card-presenter.php',0,'i{3ZWT','i{3ZWT','߬uB4!bUg+BwܲI=ãF','',0,'?'),('*b-+BHW','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php',0,'RgXGո','RgXGո','L3Em=]w#0)ǀҋ%.L','',0,'?'),('=G+z','wp-content/plugins/wp-rocket/inc/Engine/Common/Context/AbstractContext.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Context/AbstractContext.php',0,'S=v}lN\"','S=v}lN\"','ux9Е_!>Sj2nђMɢhy','',0,'?'),('\0$	ke','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/JS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/JS.php',0,'T9\Z!yV]','T9\Z!yV]','&Ѭ^nKM_','',0,'?'),('Ɉ{&jR','wp-content/plugins/all-in-one-wp-migration/lib/view/reset/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/reset/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a4TVH','~t[]>}<hF=.2[%8y','',0,'?'),('KOȖ93|<','wp-admin/maint/repair.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/maint/repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\?D>%jD','Ւd!ӢHrƄ=/]v|Hp','',0,'?'),('H/.D`:C','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/Yoast.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/Yoast.php',0,')Xu\'Ky!',')Xu\'Ky!','(ƽ>QYS\Z)Τ ai','',0,'?'),('ߪ6e?u','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-theme-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-theme-data.php',0,'RĮxHQ%','RĮxHQ%','#z&ڲ8w{L**T\Z2Xpz','',0,'?'),('M{xJH','wp-includes/blocks/pullquote/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i}}OaX`','5h3D	!У^Iun+/_u','',0,'?'),('d_:5P','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H[5կ,8','a2CȾHxYlj','',0,'?'),('I.$U0]\'S_','wp-admin/includes/widgets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OIt;',']]\Z&˾Qfcy:dO','',0,'?'),('tb6thFfB','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-postgrid-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-postgrid-block.php',0,'P3m)N#=C','P3m)N#=C','>}1\\>mn{@G`؄+E','',0,'?'),('ꑉ}OaTTN.','wp-includes/blocks/search/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\\&ڢ1]GZW','TUf1d޻jQ;Y\"3M\Zr','',0,'?'),('nYQw1`.Y','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAttachmentCount.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAttachmentCount.php',0,'XP5jgd','XP5jgd','來{m Fo03T_q','',0,'?'),('+DFܿTZ[H7','wp-admin/images/post-formats-vs.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/post-formats-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SlH\\','etw|W{xy%K:QE7','',0,'?'),('YUWSs8','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/NoticesSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/NoticesSubscriber.php',0,'Ij/GL8/E','Ij/GL8/E','A,\ZLfx8Zex3a (:','',0,'?'),('\Z[M[\r','wp-includes/blocks/columns/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´`boFIK','dף!x`J&ͽ{','',0,'?'),('/ؽx/*c^yI','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/svg-scanner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/svg-scanner.php',0,'TZu<B','TZu<B','R~sf\\-6Pe⁽\\','',0,'?'),('<3v&F','wp-content/plugins/wordfence/views/scanner/scan-failed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-failed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\\fD|2u','3C&i8ʍ9MgoApzo@','',0,'?'),('>Xq9>*7','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/CannotWriteFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/CannotWriteFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\Z`{ºLgh\Z','\Z,S1_e[Dn=m@L;','',0,'?'),('>O\'𰩥','wp-content/plugins/wordpress-seo/js/dist/languages/es.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/es.js',0,'MCշK㊍x	','MCշK㊍x	','\'dWpf_׌[ ,?','',0,'?'),('A?]\\8PMTl','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ǰ{8}zl','jG~.\'G*\'S3t~ӆ','',0,'?'),('Ch]ٲ','wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Cache_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Cache_Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|x# u','L\n\'ooH7\rf׺?(߀m<CV','',0,'?'),('GV\\z#!;','wp-includes/js/media-audiovideo.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-audiovideo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v|3 /N','\'DnQ<~2[x8]UKUA','',0,'?'),('Ms;\',-E','wp-admin/css/dashboard-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/dashboard-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9vl~u','*]?FU:}9Juy','',0,'?'),('Or#TG!','wp-includes/js/swfobject.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',I}pe~2q','?Lw.4MՒFJ>fI鴆','',0,'?'),('`F»qu','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E|EK<vBgB;','ۅ8~?_	<c12?Qp','',0,'?'),('d׻&y\n֎','wp-content/plugins/wp-rocket/inc/Engine/Plugin/RenewalNotice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/RenewalNotice.php',0,'ٺ|:c·XQ','ٺ|:c·XQ','gW>y%V{imlB_9Mx','',0,'?'),('l&*&','wp-includes/SimplePie/Content/Type/Sniffer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JVPt>%N\0','\nS/̼#@%,ul$tT','',0,'?'),('piQ^luJ','wp-content/plugins/wordpress-seo/admin/class-plugin-availability.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-plugin-availability.php',0,'1uOHs3k1','1uOHs3k1','#HyU\rIR=㈬U','',0,'?'),('$(g(P/','wp-admin/css/wp-admin-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/wp-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GQ5\'EYo0}_','0|TFO 	..>CEj','',0,'?'),('F\rȒi','wp-content/plugins/shortpixel-image-optimiser/res/js/sp-file-tree.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/sp-file-tree.js',0,'\Z\\4K!m}+','\Z\\4K!m}+','`)mQ0:|p9*e&','',0,'?'),('5At߂m0iz','wp-admin/css/themes-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/themes-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AGݏD)K1\'','\\.q0	[#F.UteП','',0,'?'),('![2vt','wp-content/plugins/kadence-pro/dist/woocommerce-addons/pro-woocommerce.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/pro-woocommerce.min.js',0,'qgP.\'~gAO','qgP.\'~gAO','YLj(M+u>9?Lſ6V)\r','',0,'?'),('yxx4* ','wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j7 7=`8','ztXxuV\0','',0,'?'),('HСYVhZ','wp-includes/block-supports/duotone.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/duotone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gdC3۫H@','ٺ+!`kg8Nfml\'6','',0,'?'),('FIl','wp-content/plugins/wp-rocket/views/plugins/update-renewal-expired-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/plugins/update-renewal-expired-notice.php',0,'TlwԘs3','TlwԘs3','BO묀>0H\'A!','',0,'?'),('qKUj','wp-includes/SimplePie/Category.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{[ ZVG4&','<JHvi	b4l~eFmj','',0,'?'),('ȇK','wp-content/plugins/wp-rocket/views/settings/fields/categorized_multiselect.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/categorized_multiselect.php',0,'?vEwo|ad`','?vEwo|ad`','Hj(%||϶:x0<<','',0,'?'),('l=I6(','wp-content/themes/kadence/assets/css/editor/editor-styles.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/editor/editor-styles.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','৑&ϫЪ','\"W	XOa(Z)t>L','',0,'?'),('Ԫ]9F56Ǐ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/ExceptionInterface.php',0,'SuPVdm','SuPVdm',')sHׇ5h*W)_2oDw=ػ','',0,'?'),('3cvN\"@','wp-content/plugins/wordpress-seo/src/generators/schema/breadcrumb.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/breadcrumb.php',0,'`y9:\\?','`y9:\\?',':IvT@Ə\ng\0W3XC','',0,'?'),('xƆxQ4Z\0','wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint-statistics.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint-statistics.php',0,'4\0_\\n4]','4\0_\\n4]','8JȭL?qLzȿK)d}','',0,'?'),('-Z:E:','wp-admin/js/image-edit.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/image-edit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K`{','aSI˘W}<I|t7W2j','',0,'?'),('7伽T\"Ie','wp-content/plugins/kadence-blocks-pro/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/InstalledVersions.php',0,'-Y$R\0','-Y$R\0','NRí2Hh&HX:b]d̳2O','',0,'?'),('6ԴGD^\0H','wp-content/themes/kadence/bbpress/form-search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H鑱ʽOpi	','簝Ƃ#{KԚ:_O_R]#','',0,'?'),('\0ED\\@܍`','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Providable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Providable.php',0,'Gr4B;M+n@','Gr4B;M+n@','$Uo ,,,aSCi','',0,'?'),('?$GH:z\\','wp-content/plugins/shortpixel-image-optimiser/class/Helper/UiHelper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Helper/UiHelper.php',0,'fp1<6:bsy','fp1<6:bsy','}lDc{Ҹ}S<#GɎgS','',0,'?'),('kë','wp-content/themes/kadence/assets/images/getting-started-video.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/getting-started-video.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' qAxd`6S@$+9','yJ嗎pv<N/4.\"o','',0,'?'),('\\;SC4w','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i(p-Aw','\nh9ai^\Zno~\n','',0,'?'),('|jX|fb','wp-admin/css/login.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/login.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B*]%Za','+j(S@+}3B01<fUTB','',0,'?'),('$We@jj','wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-query.php',0,'fnII>n.1K','fnII>n.1K','~ӹV=|o7d_\0\"aבq<','',0,'?'),('$8}<B)_	[','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UploadedFileFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UploadedFileFactoryInterface.php',0,'#v9ؘ`oC[','#v9ؘ`oC[','<\nhx\\af͕4\nҦLf','',0,'?'),('%WRuw','wp-includes/blocks/comments-pagination/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\ZH\'Q','scEp9otHܛ{6sU','',0,'?'),('%$rOl /','wp-content/plugins/kadence-starter-templates/assets/images/masks/dog-solid.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/dog-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xoI','u%^iA=,ۛ|m&~oI\r','',0,'?'),('&K̚\ZTg\\)','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/MimeHeaderEncoderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/MimeHeaderEncoderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UliRE8c','Ӏ.r$fT&6:','',0,'?'),('=v\"!1p','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-cache-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-cache-data.php',0,'T֤N68ȪZ.0','T֤N68ȪZ.0','dVŷN=>SڣjUM','',0,'?'),('Dgx[j1aZ.','wp-content/cache/wp-rocket/atlantagynecomastia.com/before-after-results/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/before-after-results/index-mobile-https.html',0,'Upt%ֲ;;m','Upt%ֲ;;m','XH4yC敁ŧA\Z$8%SZԐzG','',0,'?'),('Ioz0>','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/HttpFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/HttpFactory.php',0,'#4FA39>','#4FA39>','8 r]]XPߡ!:Q\"Eƈ','',0,'?'),('MRlBFu','wp-includes/option.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ץT;am*Lc','~JPi>GUN_Kq8Xw܅Z_','',0,'?'),('cY#4w4ii~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php',0,'l9}!V','l9}!V','%\"cǐFKmMUg.qlʀ\']K/o','',0,'?'),('c5@\"','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\r]','Q?vY:\\8ktU<8_0Cc','',0,'?'),('e7	^Mt(\r','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/LogLevel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/LogLevel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J0Y2HZ','͈KoZc _d','',0,'?'),('he-BJ_v','wp-includes/blocks/search/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pW\n瘁Ӈ','E*i	ųh1NK[','',0,'?'),('jeL=\Zs4k+','wp-content/plugins/wordpress-seo/js/dist/editor-modules.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/editor-modules.js',0,'&*ܝ!B9Q$&','&*ܝ!B9Q$&','	\Z|L$@釅SI:C>','',0,'?'),('mvyayT\"','wp-content/plugins/wordfence/lib/wfInvalidPathException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfInvalidPathException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jôٶ','G!U6Hk9J0Odv!','',0,'?'),('r\\jA$','wp-includes/js/customize-base.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-base.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Pe.,*䤊y','n>)wîɮ>4nw','',0,'?'),('{rp7>]','wp-includes/blocks/post-comments-form.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n݈,aCHfǷ','ɃrŐtE\r.:G-Q8W6	G=%fd','',0,'?'),('篝%\nSy','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{SW\\0i[)jT','(41e/zz=7k','',0,'?'),('犏`bI\"v4N','wp-includes/blocks/cover/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#)3\\','$PEutmcYf(6槱PQiXe','',0,'?'),('<:','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/StorageException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/StorageException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wB8~Ie\n','ر;KEA[\'>B]^4H\"','',0,'?'),('\"Sέ`t@','wp-admin/network/plugins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\n.oƱ2bw','Agp/m,&Rqf9ey$=','',0,'?'),('\\.1-:','wp-admin/options-media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}.6G8u6','x0sNWA<\Zx( ','',0,'?'),('ΝH**.ځS','wp-admin/includes/bookmark.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\nKa@%G,','(\"L8Ewm.','',0,'?'),('i4GX	\\','wp-content/themes/kadence/inc/customizer/options/learndash-essays-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-essays-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':C.m^lc','y4<yXs7\0	0E?#SE','',0,'?'),('8p>ĉ+(','wp-includes/blocks/template-part/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ne*YBVsʇ2',']ge$ζ^*&HL~ɣs','',0,'?'),(')?_(','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/constants.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/constants.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$y6ωmm?#y*','5]:A1\\Ez`An6','',0,'?'),(']y}8','wp-content/plugins/wordpress-seo/images/news_plugin_assistant.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/news_plugin_assistant.svg',0,'>1J/G}@','>1J/G}@','/_Juu9ךI [?a0Y','',0,'?'),('^.0i8J','wp-includes/Requests/src/Response.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','䍎C!B8YR','޺%Œ0+(v)*n=D','',0,'?'),('dxeBݙϟ5','wp-includes/IXR/class-IXR-clientmulticall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-clientmulticall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hqglt','ғ\'bOE&ƧW0h	o\\`Y','',0,'?'),('o\"\'\Zs','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php',0,'s$.bm\"u)L','s$.bm\"u)L','_#\\+LfB4p_U','',0,'?'),('Ul1ȕDbmg','wp-includes/css/buttons-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/buttons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&~!KKB.','ٙ*1dA(\n}MKJκ2N7','',0,'?'),('h	i8.','wp-includes/blocks/post-comments-form/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','КN{\r','EFJ9xB)\n`!y|2cbF','',0,'?'),(',Cu`e_','wp-content/themes/kadence/inc/customizer/options/general-performance-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-performance-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٠zճy,7;','PIPTǠעO⻟d,S\no','',0,'?'),('\nfv81-I','wp-includes/SimplePie/Exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','逗zqŔ/','_peNO/*mvȿn6*zon','',0,'?'),('Զ#i\n[\0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E9x(','	_x\nEMY`zسR0p@','',0,'?'),(')яsRmU','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-validate-data-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-validate-data-action.php',0,'(4FRu','(4FRu','yH\'D]\\le?of%8kKC7','',0,'?'),(';22cPrAP1G|','wp-content/plugins/wp-rocket/inc/Engine/License/views/promo-banner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/promo-banner.php',0,'6;C`Ҙ>L','6;C`Ҙ>L','<Sxþ)Q[X!5C','',0,'?'),('H!TK\r%\rS','wp-content/plugins/wp-rocket/inc/Engine/Preload/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Admin/Subscriber.php',0,'\"Ph_c`','\"Ph_c`','5+e)oA,b$K=(','',0,'?'),('NK:OW|W_','wp-content/plugins/kadence-starter-templates/inc/class-import-export-option.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-export-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A̸i>T4^<*','Ty47;CNŗJ8=ٺ{','',0,'?'),('OQl+B%\r%','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-reviews/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-reviews/index-https.html',0,'6@VO<~.','6@VO<~.','أľM7Bo Oo*f%A_N:/P','',0,'?'),('O2[','wp-content/themes/kadence/assets/css/sidebar.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/sidebar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sR&9܎EH-P','@ww;N\\0R>bFīx','',0,'?'),('[C>C/','wp-content/plugins/kadence-blocks/dist/blocks-iconlist.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-iconlist.asset.php',0,'Tp~B^0D','Tp~B^0D','c%8H\\\"Η<,alqh۶','',0,'?'),('``\'l`=X(','wp-content/plugins/wordfence/views/options/option-select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J*E%v	Na!Uw','M#3a@xhs\r5qBN٣X#','',0,'?'),('i\'.t)','wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-count.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-count.php',0,'30C\Z\\jM','30C\Z\\jM','y0oixd-n0cH\"Jyw','',0,'?'),('jj$ad\'','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^C\Zíd?h','Srj\" U$ẅA$\Z','',0,'?'),('yёcj!\\\'','wp-includes/class-wp-block-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ݷeB9{','ͱTqSI4S1p4^$_J(x&\nA','',0,'?'),('{be女zn','wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.js',0,',\ZWHfp2hs',',\ZWHfp2hs','z%JWEBrnE#-Emz','',0,'?'),('2D[\"*\"(','wp-includes/js/jquery/ui/effect-size.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-size.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','os%|lR9$\'','êg]8RW\ZC@=','',0,'?'),('V{ؚ','wp-content/plugins/kadence-pro/dist/header-addons/hooks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/hooks.php',0,'SK\0:(ID`','SK\0:(ID`',';D{.ኽD\"|\0}dQ','',0,'?'),('hJD㰗G n','wp-content/plugins/wordfence/lib/wfCentralAPI.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCentralAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]3_Èؠߌ','2f^~@CscOעYE','',0,'?'),('\\0O\'w[l/^$','wp-includes/blocks/gallery/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\\f`h','	\\CD^aqL̷ZJuo;X','',0,'?'),('ZQ4\\(܇','wp-admin/network/admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϯ\r&Z3r\"',':%;KiW@>U;#>','',0,'?'),(')H@~0<','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/UploadedFile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/UploadedFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[fZ[Æ','C_η+Wa!<k~R)','',0,'?'),(',68F:[','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Frontend/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Frontend/Controller.php',0,'!>b}\0N{','!>b}\0N{','Hk>\Z>(9j̓>A]]:','',0,'?'),('u0S','wp-content/plugins/all-in-one-wp-migration/storage/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/storage/index.html',0,'A-pޜ\r͈V','A-pޜ\r͈V','=+O²2E[VOD','',0,'?'),('/d\nԣO},','wp-content/plugins/wordpress-seo/src/actions/configuration/first-time-configuration-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/configuration/first-time-configuration-action.php',0,'vq%\\fd','vq%\\fd','n>Tquv\nsEٗ;[1x','',0,'?'),('^w-R5ӉF','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/PhpToken.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/PhpToken.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PMԉ1','ToqFR^ϫ&y#C,s:','',0,'?'),('jp.	P','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/ProcessableHandlerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/ProcessableHandlerInterface.php',0,'Zaܱ','Zaܱ','H-H!wRKW	|#CΦZ޻0','',0,'?'),('U?,\"','wp-content/plugins/wp-rocket/inc/classes/class-abstract-render.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/class-abstract-render.php',0,'s\'EbzxE@\n','s\'EbzxE@\n','3kqYY^{;ۊm\r,W','',0,'?'),('Ԣ	B_','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RoundcubeInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',0,'#&M`*$\n','#&M`*$\n','+\"4EW\rÁ[/\Z<jL','',0,'?'),('ň|vi0F','wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!9M@w','n 0˧{J:pmT_#_','',0,'?'),('ɶz^ͅB','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MessageTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MessageTrait.php',0,'Y\rr渶5F#\'','Y\rr渶5F#\'','cr[ÌA}wh͵F-','',0,'?'),('E`{ZU','wp-content/plugins/wp-rocket/inc/functions/posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/posts.php',0,'Z0dxpd3','Z0dxpd3','@\0&)=vB̀2oAf.G','',0,'?'),('cif\n3L7d','wp-content/plugins/wordpress-seo/src/helpers/social-profiles-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/social-profiles-helper.php',0,'h e5!ldlf','h e5!ldlf','st3\'.!z0浣sO','',0,'?'),('pyG;\r`','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?oɰw1Z,.','&r&Ps$(\Zy	5Y7X','',0,'?'),(')һ^y','wp-content/plugins/kadence-blocks/includes/assets/js/kb-form.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-form.min.js',0,'4y1l#łic','4y1l#łic','鮟Zt2m`Ӝoj8\Zڸ7','',0,'?'),('+dEvnG','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Row.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Row.php',0,'M@gQ&Q7','M@gQ&Q7','ni6zuY#\"G)d}.','',0,'?'),('/؊!N>\n','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f<_2S^IZ','iݯ8{iq!dՍAz','',0,'?'),('ˊos>|T5','wp-content/plugins/kadence-blocks-pro/dist/blocks-videopopup.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-videopopup.js',0,'X:˟Hs4e!l','X:˟Hs4e!l','n5?=aNbg\nk9pyq','',0,'?'),('KmMoч','wp-content/plugins/wordpress-seo/src/integrations/front-end-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end-integration.php',0,'2V&Dp\0N','2V&Dp\0N','tTݨaCh*\0Tp|Py0\ZY','',0,'?'),('xjdӬV}','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/UserFrostingInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',0,'bw #o','bw #o','HQ2\\S^Iptla','',0,'?'),('Fz#K\"','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/TraceableHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/TraceableHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pׇ]k|x3','}2D3ruPŘZfTm1~r','',0,'?'),('\Zl3Ȋ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PUՒJLm8`v','ӛvQk\nl]`Ε۷+}kO','',0,'?'),('$ARm~O ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php',0,'etd&}g$S','etd&}g$S','H*lhz!#ѫ%G׿>\n{','',0,'?'),(')o\"\'e','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MajimaInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MajimaInstaller.php',0,'cnUՊ?vA','cnUՊ?vA','H	XW6Zx8O}r޻ O','',0,'?'),('<hiѭ3*	Fq','wp-includes/blocks/button/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ʾh[`<0Ͻ','Fp(@6InKfxEii&{','',0,'?'),('J|6}P,\rٛ','wp-admin/css/colors/_admin.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/_admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa*Pa |үvT','aUQwѯ \r׹r.9}','',0,'?'),('NgشsEZ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php',0,'(#\ZatB3\'','(#\ZatB3\'','}p\\>`+#v<-9yȭǲR','',0,'?'),('O~ZA86}','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/OptionProviderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/OptionProviderInterface.php',0,'[@h+65JN','[@h+65JN','hVFJls+\0<F./*wL','',0,'?'),('Y,Ԩ_:','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z>:zz5Z','txZ!`*\r֗u','',0,'?'),('ahzd.:','wp-content/plugins/wordpress-seo/src/integrations/exclude-attachment-post-type.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/exclude-attachment-post-type.php',0,'wwk(\"&\09','wwk(\"&\09','nQ5I3ӺYyRiۍ0Gjs','',0,'?'),('d`#)?ϳ0(w','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' oY-)EHd','l,8ETCeylaS;)\'\"d`z','',0,'?'),('j1=d/;','wp-content/plugins/wordpress-seo/src/services/health-check/health-check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/health-check.php',0,'Qׂ/x\Z:','Qׂ/x\Z:','֠4P!H-p0)Rdp=F','',0,'?'),('x>ڄ]=ͦpI','wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob2.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob2.svg',0,'bVK\"6X9<(C','bVK\"6X9<(C','N	 ZWYl{/EKq','',0,'?'),('}N\\9\\','wp-content/plugins/wordfence/modules/login-security/classes/utility/number.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/number.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',2PEm','뇻9(TP#g\nQ k','',0,'?'),('=Uq(mB.BЧ','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-replacevar-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-replacevar-service.php',0,'ua9ee','ua9ee','rp]	#]7W*;EmCd','',0,'?'),('VZblͯ','wp-includes/blocks/archives/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4?	UEw','̴2I3QS*\"@L$	\"V?','',0,'?'),('x`f,5ef2','wp-admin/js/site-health.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/site-health.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Ƃ}6 a$yђ','pha/g8h>?Flz̕8hE','',0,'?'),('d]&3N=','wp-content/plugins/wordfence/images/logos/shield-white.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dX#pRðJ','LO\'(EqHl@)O','',0,'?'),('[:q','wp-admin/includes/class-wp-plugins-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-plugins-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r[JNO','?Qc\'8~L-!\'d[cuA','',0,'?'),('POf;/','wp-includes/SimplePie/Decode/HTML/Entities.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jыp&yU','WP*P=Nϻ;\Zi82_ ','',0,'?'),('cg#׆m`','wp-content/plugins/wordpress-seo/src/conditionals/third-party/polylang-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/polylang-conditional.php',0,'b\0sx<mΫjz8','b\0sx<mΫjz8','1ZX%fpNۘ[cC,','',0,'?'),('gڭ*]I','wp-content/themes/twentytwentyfour/patterns/page-home-portfolio-gallery.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`U\'H2)','\01`K=~V1\r&4\'0~Y&?0','',0,'?'),('Ŵ5R0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/EventSourceException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/EventSourceException.php',0,')nb{^ۿ',')nb{^ۿ','WnTwe5;Հa{\0','',0,'?'),('=>*?=<','wp-content/plugins/wp-rocket/views/settings/sections/clean-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/sections/clean-section.php',0,'-\'3,8!A9{','-\'3,8!A9{','S&nT!w%\'ѰuXPZ#','',0,'?'),('Z(|Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QUp~ocÊ4Nt','Lnl2@ΐ>hi,uJYH\\L,B','',0,'?'),('\\ Iѻ,','wp-includes/class-simplepie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-simplepie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qeT3d塭','|-4#o~m[z?vV','',0,'?'),('ڙy2D\na93','wp-includes/block-supports/layout.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɔfF]','+-.2[-cfl','',0,'?'),('\r4,hC','wp-content/plugins/wp-rocket/views/settings/page-sections/preload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/preload.php',0,'jǟ/O˯','jǟ/O˯','V\rQhl]ᫍ=Z<n','',0,'?'),('\\]^Tꥊ','wp-includes/js/dist/vendor/wp-polyfill-url.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-url.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ř=NT\\{','hǣqٵKt\r4DSgd0Z','',0,'?'),(' bBgHdqT{','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӭ\nqx \0\\*I}r','!<<RvDvu.dd8','',0,'?'),(' \Zy5ry\"Ns','wp-content/plugins/wordpress-seo/js/dist/externals/analysis.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/analysis.js',0,'Lx\0E@Lo','Lx\0E@Lo','jޯ~@uxa!N\\mm','',0,'?'),('/&2ѡ\rgDs','wp-includes/http.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i3o =O[7','rV:<Af^vĕ*}=il','',0,'?'),('5قaܨϘ	#bu','wp-includes/js/dist/compose.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/compose.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oǂzh/EZ','GB!!Ǧ\n\'߹$%߼,0Y','',0,'?'),('=#-38','wp-includes/blocks/code/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+v{df$9^','K鏬/ sCS-\0Ujhs5 ','',0,'?'),('>ڤXg\rsu#X','wp-content/plugins/wordpress-seo/admin/views/class-yoast-integration-toggles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/class-yoast-integration-toggles.php',0,'Y܂mH*l','Y܂mH*l','n`ںöhE2e~kZ%CW4V','',0,'?'),('OdOb','wp-content/plugins/kadence-pro/dist/dark-mode/dark-mode-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/dark-mode-options.php',0,'oҀ41','oҀ41',']E\\IU>U:z_	9','',0,'?'),('Q%#m㚜W','wp-content/plugins/wordpress-seo/src/integrations/admin/integrations-page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/integrations-page.php',0,'+9STb','+9STb','cn}	cD2JOmC^]','',0,'?'),('Sߙ\0cƕ`4','wp-includes/blocks/navigation/view.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MzSF8\n','f]>0D9헷~\0(y4k%/','',0,'?'),('V\Z$B]YmM','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php',0,'uȟ xs=Ɯ=','uȟ xs=Ɯ=','qUNhfEQ&H1\'EJj8','',0,'?'),(']iG8g7o','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/Package.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/Package.php',0,'yn \"?a{-S','yn \"?a{-S','ZYj;k^w[&9O	{>p','',0,'?'),('a$yg4/Oc*M','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/StateStore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/StateStore.php',0,'߸eB83&','߸eB83&','K+)݉YgEjW,Ѿ','',0,'?'),('dSp@\\0)q','wp-content/plugins/wordpress-seo/src/routes/route-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/route-interface.php',0,'N䶈Hu,','N䶈Hu,','M\0un~׃XTT,K8U','',0,'?'),('dq.5;','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Exception/MalformedUriException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Exception/MalformedUriException.php',0,'^`c/O','^`c/O','rnMjB/YHET*','',0,'?'),('zIxu%+','wp-content/plugins/wp-rocket/inc/classes/traits/trait-memoize.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/traits/trait-memoize.php',0,'eTBBiuW','eTBBiuW','=즉uGno.\'&:','',0,'?'),('=Ѷ8$','wp-includes/js/dist/vendor/wp-polyfill-node-contains.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-node-contains.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/2;(U','i-;R9s	bl:XJ$K	','',0,'?'),('?0|5uơ','wp-admin/custom-background.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㽫]0m7d','Z5\"=\0Tσqr/0QX^dn6','',0,'?'),('4pj\"z','wp-content/plugins/kadence-starter-templates/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=&Rlu>o%Z','*NKE_YW5Mn es\\h}%)hj','',0,'?'),('<eJ5}j','wp-includes/blocks/site-logo/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\t2(y','rGvt4:.r{98~rpSs6K','',0,'?'),('Ěz7=s9_','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/FileNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/FileNotFoundException.php',0,'>?uu!S','>?uu!S','i6?JU;4夤>','',0,'?'),('qhnJj','wp-admin/css/nav-menus.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӵJ.x.','|E}<\"	tbOM42,Ns','',0,'?'),('<	f%nO','wp-admin/includes/credits.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\"˷\0A,QZ','4%X;Tj1e^}#R!٩','',0,'?'),('ÏuL,&Ǒ\r1','wp-admin/media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\\-cYD','L!Ve48o_5r','',0,'?'),('~dD)','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Database.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Database.php',0,'	@(rLѤ-e','	@(rLѤ-e','!2|@s,_JW\'XbLƷZD3*','',0,'?'),('&;`-^*','wp-content/plugins/userway-accessibility-widget/includes/assets/images/arrow-right.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/assets/images/arrow-right.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1]^v8','B#4ȃ]	HpngB̆\084x','',0,'?'),('χR ek$ f','wp-content/themes/kadence/template-parts/content/entry_related.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_related.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U~, x3]','>BtiY(۵`/\'v̓}','',0,'?'),('[~(܉u','wp-content/themes/kadence/inc/template-functions/archive-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/archive-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ť9F(\"','r\n:ln\r\\LE0S;|ѳpy','',0,'?'),('Ӏ9[M-g','wp-includes/js/dist/hooks.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/hooks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D&\r\'jtb6@','WxÍ:;{Y~ CSBEĠQw','',0,'?'),('l;+SG','wp-includes/blocks/audio/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nT&!6NZ','j#v:=_%$Q','',0,'?'),('Lm','wp-content/plugins/wp-rocket/inc/Engine/Cache/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/ServiceProvider.php',0,'\"ȒUxʓA','\"ȒUxʓA','[zj(srpP4/o-*yʞ','',0,'?'),('{ZV$','wp-includes/blocks/social-links/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_tz\\P','qr7-IpJ׈I!VpѸj','',0,'?'),('+M%]sD00','wp-includes/blocks/freeform/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!dNiklB','mzh+ýLƜl h/Ą\\=','',0,'?'),('G2VDmL>','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/AccessTokenInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/AccessTokenInterface.php',0,'EA<Y;','EA<Y;','ALY.	qڨH(5m&_G','',0,'?'),('xm*0V=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/FileBinaryMimeTypeGuesser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/FileBinaryMimeTypeGuesser.php',0,'|SG~Re!a','|SG~Re!a','qw%2Ҏ%) ٶ\Z\r*LP','',0,'?'),('2Sz','wp-content/themes/kadence/assets/js/src/shop-spinner.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/shop-spinner.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Q;>B,','B\"CF|V[y%~cklq9\n&D','',0,'?'),('\rwb[4҄','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php',0,'Ezr','Ezr','~i6\"|5Q>ΞE_QH|C','',0,'?'),('c	6hjx\r','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_DayOfWeekField.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_DayOfWeekField.php',0,'tl\0e&.d\nfg','tl\0e&.d\nfg','ZfeL\r0KLȊ&','',0,'?'),('Er)aH\\','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Utils.php',0,')[k+~Q\"0',')[k+~Q\"0','U׵6!Z?h+l','',0,'?'),(' )!h$RUvxƺ','wp-content/plugins/wordpress-seo/src/integrations/primary-category.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/primary-category.php',0,'ӳ H ̝Us','ӳ H ̝Us','}ޚ:M)cϝ%NBV!ul{','',0,'?'),('(dwI\0:\rXx1DC','wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v[A.F3D','@ړVC+<!;@89(n=G','',0,'?'),('3,cvk','wp-content/plugins/wordfence/views/onboarding/overlay.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Мs','a:FVW5W<no`','',0,'?'),('7ʏaBKz','wp-includes/blocks/button/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ukcE25\\','$S\n?\rG8_Vay~<','',0,'?'),('AM(c {>;','wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-keyphrases-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-keyphrases-action.php',0,'3I1P*<g-k','3I1P*<g-k','%ʷ_4E<PK>םWOܾ','',0,'?');
INSERT INTO `hyu_wffilemods` VALUES ('AiLKQ3','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/EditMediaViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/EditMediaViewController.php',0,'K@skYju-','K@skYju-','5?^}~	6)r\\wʝeԼw^','',0,'?'),('J\069V/','wp-includes/blocks/site-title/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WVپ[C#1E','TOIA3FKed8/R>%g','',0,'?'),('WM{h(','wp-content/plugins/wordfence/lib/menu_options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UfMBz=sby','81*{*$','',0,'?'),('YENgIA','wp-content/plugins/duplicate-post/vendor/composer/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),(']K{ٯ`{,','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+EYH<YPK=S','ۋ&:^G&B2PC~','',0,'?'),('a@o\'kb','wp-includes/js/jquery/jquery-migrate.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.-$\"g','rӽ.I]B5*֌\nj~ng','',0,'?'),('d]̜y\rMf','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ejxzo\"iI','?jWV\"{sa\Zd','',0,'?'),('mzb^,*jXc','wp-content/themes/kadence/inc/customizer/options/general-image-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-image-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V!t`F|蘗','kXNp4328\'n,rL','',0,'?'),('whI¹>@vJ1','wp-content/plugins/wordpress-seo/src/config/migrations/20190529075038_WpYoastDropIndexableMetaTableIfExists.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20190529075038_WpYoastDropIndexableMetaTableIfExists.php',0,'()ZV','()ZV','[gkLr\nI1uYG#WH,','',0,'?'),('x;_q*`<','wp-includes/blocks/group/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=>*f[','ϩzJ&O{|K^֤0.1t','',0,'?'),('yqZO8','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/FirstChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/FirstChunk.php',0,'-+Jc;W<a','-+Jc;W<a',',(27a@;csA9Bg;PP','',0,'?'),('zF%TɭB','wp-content/plugins/kadence-blocks/dist/blocks-image.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-image.asset.php',0,'>+EVZ*M	˭','>+EVZ*M	˭','3	8.Xr+\rvęKvwqC','',0,'?'),('i/pEt\nl','wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r0mb74$','{hDX^w6Dfc@Q\rf','',0,'?'),('2?!u܆\"','wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I̓C\'a@z','OD=ϾChY!@\'fP%\"&','',0,'?'),('#.酔x','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/UpdateChecker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/UpdateChecker.php',0,'ٳPX$>?\Z','ٳPX$>?\Z','/׬e6[\0(剳? m~','',0,'?'),(')ЫNT','wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-reports.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-reports.php',0,'1|jyB\r','1|jyB\r','(J;y9&ɏļs5f~~rC,[<','',0,'?'),('(|ppIxx','wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-site-health.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-site-health.php',0,'uW6TW	F','uW6TW	F','ͼDFCȭLOz(vpI5Sé#','',0,'?'),('^[Xi	','wp-admin/themes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I[uYYt','#F0:-=\\]57=Tj%Ֆ@','',0,'?'),(':X@\0{*֯','wp-admin/includes/class-language-pack-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-language-pack-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m/Q%@,)l\Z','AVE]{Q!TÍ6e[{.','',0,'?'),('w--2c5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/functions.php',0,'ө*G5','ө*G5','05z_ CYt28S̘','',0,'?'),(',cRzW9','wp-content/plugins/wordpress-seo/src/conditionals/jetpack-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/jetpack-conditional.php',0,'\Z&s\n','\Z&s\n','խIb[GY0̢XvkM','',0,'?'),('4T(\\9\'3)','wp-admin/css/customize-widgets-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+F+Nq.V[','aE-nAe=R=:.CC\\tZ*','',0,'?'),('k{&x\n','wp-includes/class-wp-error.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"*JV+QI5%','Kk4$j1\nUy+}^d4adF','',0,'?'),('K>CWv\r{֦','wp-content/plugins/wp-rocket/inc/classes/admin/class-logs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/admin/class-logs.php',0,'ru)Q+<t','ru)Q+<t','YٓC4ʭ5A]xuQ߻y','',0,'?'),('$o1T2]l','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	d*W1g','+q~;fE_#]IV\\k?lÝϞ','',0,'?'),('A0ff` Kǁ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n+Z/_\Zxuv','u;IVa[~㵭TZ\\^yJj','',0,'?'),('\ZmALf','wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/Beacon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/Beacon.php',0,'hՃd','hՃd','uEe	U[`FM//z','',0,'?'),('VFN	؀#{','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps.php',0,'2@ot\0~r8','2@ot\0~r8','i6aj~v<b@]\rSt','',0,'?'),('\0%3[$x\0.(','wp-admin/images/marker.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/marker.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3*O2/3I2','~T@\\vUI<pKa`T@cca','',0,'?'),('4=','wp-content/plugins/wordfence/images/icons/ajaxScan.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʖѴ~fi','ߩ0ԍѦƻH\n¡;','',0,'?'),('	Em[l<','wp-includes/js/tinymce/plugins/image/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/image/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ZCl­}莐','yTNz+⃆\'%Y','',0,'?'),('caf/MC[','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%p$e10','[\0cfĸ>ݡOw<Ѵ(','',0,'?'),('O~\ZơmqQ-E','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Select.php',0,'\Z*#J]I','\Z*#J]I','(ƙ:+_fȜ]9uUa%2','',0,'?'),('L\Z','wp-includes/blocks/query-pagination/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.+Z\\b^','a:]R3?-owܩ,Ʈcur','',0,'?'),('\'){/5}u#-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Attribute/SubscribedService.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Attribute/SubscribedService.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','] Ӛ\ZCy^*','913|ij}\\[hQv@\n','',0,'?'),('6iZ(qa','wp-content/plugins/wordpress-seo/src/presentations/indexable-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-presentation.php',0,'Bx\n-%@؅','Bx\n-%@؅','Ҧt*Atfk$hR?2#qY','',0,'?'),('9uzrFG*\0]&V','wp-content/plugins/kadence-blocks/includes/helper-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/helper-functions.php',0,'NHU{TB','NHU{TB','L$Xhw\0_)MKi\\k','',0,'?'),('<*ު|(`','wp-content/plugins/wp-rocket/inc/Engine/Common/Database/TableInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Database/TableInterface.php',0,'ʺ 5\rֶۓ+','ʺ 5\rֶۓ+','M/&]9uT;b$','',0,'?'),('EEl!t','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/ExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s휃J>9n','m\\g7wu+)\Zsb!','',0,'?'),('UN)4Dv_cv','wp-content/plugins/kadence-blocks/includes/assets/js/admin-scripts.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/admin-scripts.min.js',0,'	Xve2PH','	Xve2PH','?3Ru$xBuaEǗ%2','',0,'?'),('Xɧ1:A~j','wp-content/themes/kadence/inc/customizer/options/header-top-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-top-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u%.tBX\\s','L5I5Vgu}xkD)ECX.U','',0,'?'),('Ybч%','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php',0,'&\rTܧA7W','&\rTܧA7W','6;*g|n܏	*W\'){L','',0,'?'),('_)BIRXo0ֵl','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-static-home-page-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-static-home-page-watcher.php',0,'V=KVv~ˈ8','V=KVv~ˈ8','&BDQPCn^uv&','',0,'?'),('_i\"_8xTP','wp-content/plugins/kadence-blocks/includes/assets/js/scroll-magic.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/scroll-magic.min.js',0,'o[r%CGP','o[r%CGP','ʬTYLuAȫF\n-LsR#X_','',0,'?'),('bDT]L/','wp-content/themes/kadence/assets/css/givewp.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/givewp.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4%Q1nՆ`','O3J!}guJƄC8FY','',0,'?'),('dLߋ tz]','wp-content/themes/kadence/inc/components/icons/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/icons/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@[s()D','xnοfc0X_o','',0,'?'),('4so(Hhd','wp-includes/fonts/class-wp-font-utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z3u\'_','̋rn,V\"\'ryLn6G','',0,'?'),('Y3@lIspJ2','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/builder-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/builder-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\"4T3&yO','3fÕr\n&)%Q1#WrV','',0,'?'),('m|cOkuD','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap.php',0,'cle?2>Yh','cle?2>Yh','D:αR\0fǥˉ1E1#!','',0,'?'),('\rOE6\r','wp-content/themes/kadence/bbpress/pagination-replies.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/pagination-replies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9$6ϛUt','.otδ^n5.1	7!6rC4l\r','',0,'?'),('y@i߼ujQ','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RegexTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RegexTrait.php',0,'$Kw&','$Kw&','jkbgH#\0uf#G/ّ]^	','',0,'?'),('tqWL','wp-includes/Requests/src/Auth.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bXQzܴOH','*7ۘ7SN^ssf','',0,'?'),('OC?(_4','wp-content/themes/kadence/assets/js/src/navigation.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*v[TH\0T','cTrX\"O≇Zh҃}s~@j','',0,'?'),('#e:G5竎','bigscoots.php','/home/nginx/domains/atlantagynecomastia.com/public/bigscoots.php',0,'gYe8i1je','gYe8i1je','[.p30/%ɴ;Ng','',0,'?'),('gC8BBY','wp-content/plugins/duplicate-post/duplicate_post_yoast_icon-125x125.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/duplicate_post_yoast_icon-125x125.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%b`&:;','Dn$l	|\rDuY]','',0,'?'),('{]\\ֵ	d','wp-admin/css/forms-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/forms-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D_p:/Xb\04h','8{֜+]޽h\n\nxQ9Oȟ7Ab+K','',0,'?'),('~gG','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-posts-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-posts-rest-api.php',0,'9K:[yj\n\0','9K:[yj\n\0',')%L?jizM9	К^qd','',0,'?'),('\nfQ8Wm=R','wp-content/plugins/wordpress-seo/admin/class-bulk-title-editor-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-bulk-title-editor-list-table.php',0,'X)/HpXX恑#','X)/HpXX恑#','4.9L`r.+.\0f㱘','',0,'?'),('XCI%?ː','wp-includes/fonts/class-wp-font-face-resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-face-resolver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QGy}[','hj`O\ZPZ7ʩP3!gnO','',0,'?'),('Tp0]ob[','wp-includes/blocks/post-comments-form/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1{ⱄk_Bv(','k-\n!5<s+LTy3w','',0,'?'),('05,9Pzʬ|b','wp-includes/js/dist/interactivity-router.min.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity-router.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ЋjATc|	ll','pgп]bz%Vt(J\\ֱn','',0,'?'),('ͬޗ?҅H','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z]\ZMV/	',']Ks2j9|!JSע','',0,'?'),('\"RŜ','wp-includes/images/crystal/text.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ѳ#d%[','n10<;\nIp~f⠸z','',0,'?'),('\Z1Fiac-Yo','wp-content/themes/kadence/assets/images/fonts/libre.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/libre.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0wu`h~5V','|י\"{6fC\0]n','',0,'?'),('^g>M*V9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zIQ4\"1','B&?ߑLaJY\0gq.u\'Ȩ','',0,'?'),('6\r\n]','wp-content/plugins/wordpress-seo/images/Yoast_SEO_negative_icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/Yoast_SEO_negative_icon.svg',0,'3xz\rX','3xz\rX','*Ħk-G(a\Ztwތ.','',0,'?'),(';Wiy)487~J','wp-content/themes/kadence/bbpress/form-reply-search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-reply-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>c֜|\'0z','c|T	[cD]3oU\re','',0,'?'),('@+ew/ҽ.mR','wp-content/themes/kadence/bbpress/form-topic-search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-topic-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`鞷z6','|()-	?=ii8D\0Iu','',0,'?'),('ILBЁgF','wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterApiCommonSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterApiCommonSubscriber.php',0,'+f>q03B','+f>q03B','VgRfyQq={-2a)@','',0,'?'),('N<3n9Q','wp-content/themes/twentytwentyfour/patterns/hidden-comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u4Nb{~L۶0','ELŸiXi[ʻI\'','',0,'?'),('YJOΠ*Z','wp-includes/blocks/post-author/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⺏3UM}Zg','QݪIޯkNQZsZ)JYY','',0,'?'),('g7T7&A\'D','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z(z;o|fγV','~3Mzs2ϧ7ۇjD\"rT;qD','',0,'?'),('nFM38R+`','wp-content/themes/kadence/inc/components/rankmath/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/rankmath/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<cv˟eX&','C̮nz6;ȵ]oMR;Ϫ','',0,'?'),('r\rl D','wp-content/plugins/shortpixel-image-optimiser/class/external/nextgen/nextGenViewController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/nextgen/nextGenViewController.php',0,'&	\r(zX\'','&	\r(zX\'','r@.3eBZqϥ`','',0,'?'),('st]H\n','wp-includes/js/dist/edit-site.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-site.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+m#L9L','DZ2r$H)5:.ث	Qdw{v!F','',0,'?'),('v%S[̪Ѿ','wp-includes/ms-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',&KK|j<sD1t','au\r{Q6٧4Qbi\n','',0,'?'),('3%Xp8','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/DateHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/DateHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B8fG\"T8a6','a*H1؉?GvU','',0,'?'),('rsa9SUU','wp-includes/blocks/post-featured-image/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bLsmp縪tM','\"-=[n>=(`&cCi','',0,'?'),('vyLe!','wp-includes/blocks/post-terms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vl\'/d','\0ci0Cbm_IUUF=m]','',0,'?'),('88hlc','wp-content/plugins/wordfence/waf/dummy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/dummy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':<]y6jz0','w-c}:i\\BSq54uHѻ','',0,'?'),('|X%jgu@CJM','wp-includes/js/dist/vendor/react.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/react.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','piVj{!%j,','~:3Ѷ#c3%m`Ƿ','',0,'?'),('y9FSSl','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php',0,'װs^1','װs^1','$ZE~y\rǮyTcnuL','',0,'?'),('ւxRaǜ@','wp-includes/css/dist/editor/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/editor/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n	|^Zdf','BSh\Z>6>I2/Ml@D9h ]~K','',0,'?'),('X\"-{$48sx','wp-admin/css/deprecated-media.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/deprecated-media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n!.JK0K','ƌFE:r˻M6%|	nLD','',0,'?'),('\rZO[΅f','wp-includes/blocks/columns/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´`boFIK','dף!x`J&ͽ{','',0,'?'),('UdMS$l','wp-admin/includes/class-wp-list-table-compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-list-table-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}>\r_D\"CkC','\\;]\"(+/}˚q5NS\'','',0,'?'),('w^wަО','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/DataProvider/DataProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/DataProvider/DataProvider.php',0,'U|&`Od','U|&`Od','\Z1bO #rgEU6\rgj+¾/','',0,'?'),('\rz@_ÐmdM','wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','96f;0','mgc%i\ZnAB@wFz;y`\rN','',0,'?'),('Z1Xu>','wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/SitemapParser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/SitemapParser.php',0,'=㲆e{Cw\n','=㲆e{Cw\n','	В1ҙ)rUi:`1h','',0,'?'),('@GteY\\\'>O','wp-content/plugins/wordfence/lib/wfVersionCheckController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfVersionCheckController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"4a%\nNa','P->Zm;Zmk]pVT>!','',0,'?'),('G|y\\ >r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/LogProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/LogProvider.php',0,'m/\"$cfӒ','m/\"$cfӒ','R $pi\'Y}F&N[ND*','',0,'?'),('G︈gpΊ','wp-includes/blocks/quote/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C#ĊJM','nt2(:h6|	,¦{UD\0I!/2','',0,'?'),('R)Vbe','wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob3.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob3.svg',0,'5\n*X\n]me','5\n*X\n]me','(Wk5:_vA','',0,'?'),('ZWtpNh','wp-admin/css/nav-menus.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qjesvl','PZc^_\"WtN#Phlֳh','',0,'?'),('\\ M*_YYRp|','wp-content/plugins/wordpress-seo/admin/views/tabs/tool/import-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/tool/import-seo.php',0,'<)Xbb','<)Xbb','9n\\5l+LC;1zӮETYQ#]','',0,'?'),('ma#$smxQ','wp-includes/blocks/template-part.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q媀o)\\Cm','k\r\r0Tt)%Ǣ6E¬8Q','',0,'?'),('vv\\Tl}[}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UnexpectedTypeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UnexpectedTypeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<o.Hz˰','y\nm\n$?Owj248','',0,'?'),('{n\\V6ܕ','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ListviewNotice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ListviewNotice.php',0,'Swǯ%','Swǯ%','\Z/\r=,\nhqOc|m-u{\\','',0,'?'),('#;eO\"#[','wp-includes/blocks/shortcode/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VQG4&{::\\','Q0ԩ%δG,o\"j2','',0,'?'),('VL,;j','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/MessagePart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/MessagePart.php',0,'c祔w}d~{xU','c祔w}d~{xU','V\n\Z./\\v̈́CaOc/ǆ','',0,'?'),('pCE6?j','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SyliusInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SyliusInstaller.php',0,'ެvGG,_w_A','ެvGG,_w_A',']Кݸ5zȟXkd\Zʔtlj$b','',0,'?'),('Z Og\nWW2','wp-includes/js/wp-embed-template.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-embed-template.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cj?6fN55H6','Ils&xjzQꢓ','',0,'?'),('ʠaHcq','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/DefinitionContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/DefinitionContainerInterface.php',0,'JB-EԐCH','JB-EԐCH','i+uw\"ِ W\r%6@2A','',0,'?'),('BJ<`','wp-includes/blocks/post-excerpt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hSL.gB:','dǠ#$AY>jc15g=^','',0,'?'),('!h>iq8tn','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0>@UeU','țp˄o<O\nOo{w=S','',0,'?'),('2^f','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php',0,'j<U?Ԕ!d','j<U?Ԕ!d','Dt&{  \0a\Z܂?P\0','',0,'?'),('\\9ѕFw','wp-admin/js/revisions.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LOeznUR','q:\\H-ƒViԍ$','',0,'?'),('.4','wp-content/plugins/wp-rocket/assets/js/wpr-cpcss.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-cpcss.js',0,'5EG),C','5EG),C','eN*<ƔzU 2䪛','',0,'?'),('(G%	','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Admin/Subscriber.php',0,'켏N]NMMx!<','켏N]NMMx!<','za5.}ː1xt','',0,'?'),('ըyLԾR','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/SEOPress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/SEOPress.php',0,'NB%%Ir1=-','NB%%Ir1=-','<2LIIC 2]7	m\\?i]','',0,'?'),('욫ꁘ)*<J','wp-content/plugins/wp-rocket/inc/Engine/CDN/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/Admin/Subscriber.php',0,'rR\ZO}>','rR\ZO}>','Ҍښ%9}l͘Z ͻ^%','',0,'?'),('-omq\0X','wp-includes/class-wp-block-editor-context.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-editor-context.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r~E!b','\'\r=F}LhaIç\Z\"$Δ','',0,'?'),('\0	eq:\\','wp-content/plugins/kadence-blocks/dist/blocks-googlemaps.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-googlemaps.js',0,'f &!B9\n\'3j','f &!B9\n\'3j','*4|VѓAu	#Z<v^^U','',0,'?'),('\"	g4*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/ClientException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/ClientException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5RLm','VƓoVv}:#+(T','',0,'?'),('M3vaBcd','wp-includes/blocks/search/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\\&ڢ1]GZW','TUf1d޻jQ;Y\"3M\Zr','',0,'?'),('VΖH','wp-content/themes/kadence/assets/css/src/learndash.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/learndash.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\-0:hz8v)','Δ©)_wbɛ(?R','',0,'?'),('\n6g!:','wp-content/plugins/kadence-blocks/includes/assets/js/kb-search.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-search.min.js',0,'eۺ#?9<84','eۺ#?9<84','y^AIZR\r\n\raXg&W*','',0,'?'),(':+hy^W','wp-includes/block-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RbHH2jav','Z\'<vͻ:91i1\nx','',0,'?'),('\r6rR@\"$J','wp-content/plugins/kadence-pro/dist/mega-menu/kadence-menu-walker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/kadence-menu-walker.php',0,'BJl#>kZg','BJl#>kZg','U\Z΄<Rٞ\0Ĭ^sm#]b','',0,'?'),('/=+HhE14ʆ','wp-content/plugins/wordfence/views/tours/login-security.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/tours/login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pɖ3Tر#','>㈳ec¯f4s78#G`x0','',0,'?'),('1:9,׮n\"','wp-includes/class-wp-theme-json.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1l_֜NuF=','dx!UAi<k&iA:Mys','',0,'?'),('@)` ~O}ac','wp-includes/blocks/heading/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gj=bIg','BQ6bbDJtА^yYy	','',0,'?'),('@W`|yb','wp-content/plugins/wp-rocket/inc/classes/logger/class-logger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/logger/class-logger.php',0,'+`MI\n','+`MI\n','и#~-\n3\rkJu6$','',0,'?'),('E]47rFj6%3','wp-content/plugins/wordpress-seo/packages/js/images/mastodon-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/mastodon-logo.svg',0,'t\Z{@vE$J~ܕC','t\Z{@vE$J~ܕC','9奥3YQ](\nOK~F,ip','',0,'?'),('YIlTX\nV','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/ContainerInterface.php',0,'pSlX9GE%','pSlX9GE%','0DY2`Nn^Œ(߷l&','',0,'?'),('^ƃ[ڕ$Cv','wp-content/plugins/kadence-blocks/includes/assets/js/kb-table-of-contents.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-table-of-contents.min.js',0,'։R$\rl3gHӊ','։R$\rl3gHӊ','D?Bdیl>\r!`A bE','',0,'?'),('eK0PGٜߌ~','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-noresults-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-noresults-block.php',0,'z\Zʽg~','z\Zʽg~','!\r̈H3CH@s','',0,'?'),('{P4UҢx','wp-content/plugins/wp-rocket/inc/Logger/LoggerAware.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/LoggerAware.php',0,'8nkW\\z1','8nkW\\z1','GlVNȎ}\n|\'','',0,'?'),('N@(3','wp-includes/ID3/module.audio.mp3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.mp3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(~3	Ab',':v8?s\n=)>WƬ','',0,'?'),('B`M5J','wp-content/themes/kadence/inc/customizer/react/src/contact/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/contact/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1<$\n7','ܶB啢i_bu*\0ۣ\'eCɢ','',0,'?'),('h)UG@xv	','wp-admin/edit-tags.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^\n?L','uUc˴$\\H2X\ZĞŝ/','',0,'?'),('XwE','wp-includes/blocks/more/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wA*6vWIa쪴','YM-a`:NOqp\nazJ،\\','',0,'?'),('ghotdЋ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Installer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Installer.php',0,'k/Cg-/','k/Cg-/','F?oPΆ0&W\']:VLoܩ(Y','',0,'?'),('lo},#','readme.33cb03760c9c7cb6f0896aeba26d7c80.html','/home/nginx/domains/atlantagynecomastia.com/public/readme.33cb03760c9c7cb6f0896aeba26d7c80.html',0,']+a6V',']+a6V','y,T](քfOElaG]D','',0,'?'),('$I2','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare/IpUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare/IpUtils.php',0,'BlĖ`@8LD','BlĖ`@8LD','Mc\npD9lnI\"A&k','',0,'?'),(')VO&)>','wp-content/plugins/kadence-blocks-pro/includes/uplink/admin-views/field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/uplink/admin-views/field.php',0,'7$6y)4','7$6y)4','R;s`y5sTL	','',0,'?'),('U\rtnvcld','wp-content/plugins/kadence-starter-templates/assets/images/fonts/cormorant.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/cormorant.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GF\rk8\Z\\','!*|vyﮞ@d#/f(','',0,'?'),('2]hqu:T6EU','wp-content/plugins/wordfence/lib/wfAPI.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ls,TO2N','2|^sn=)M{([sLQ','',0,'?'),('.\0[u','wp-content/plugins/wordpress-seo/packages/js/images/ssp-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/ssp-logo.svg',0,'\\YnhQ*fa','\\YnhQ*fa','Vjyᐰ|ibxu=xO','',0,'?'),('w},Ҙ	','wp-content/plugins/wordpress-seo/packages/js/images/algolia-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/algolia-logo.svg',0,'gU\'$J\r','gU\'$J\r','^+4Fp5?{8W@uy','',0,'?'),('Czv@','wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/ServiceProvider.php',0,'?dK9\"ڌ','?dK9\"ڌ',']]Qk_ԫ_C,o+5}w','',0,'?'),('[B(-j/;I','wp-content/plugins/wordfence/css/license/free-global.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/free-global.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ijgEB7q,','\\R1\"`l 2LLcXeEt	BM|','',0,'?'),('ٜwW$','wp-content/themes/kadence/inc/customizer/react/src/typography/font-pair.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/typography/font-pair.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YuiX,Bh','Q}}/y{4ds#\\~/XI./i','',0,'?'),('	Ieԩ[G_6','wp-includes/js/dist/editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R5e\'n23i','70&d4njGݭI@oቕ+HX','',0,'?'),('\"J\r\nH*Ƽ4','wp-content/themes/kadence/inc/customizer/options/lifter-dashboard-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-dashboard-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>t&[','zj|$mMrO+kZI=9/','',0,'?'),('#AuI.F/','wp-includes/js/wp-pointer.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-pointer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\Z߁@ \r|ɛ[d','OȆm~gƷ^96}>|̭/]','',0,'?'),('+\"|OUd5','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Perfmatters.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Perfmatters.php',0,'Ȱ6mPj%JӍzX','Ȱ6mPj%JӍzX','vEsFŌ^Ѐb]Uƛ\r^\r҂Q}','',0,'?'),('6 zzz(OT/f^E','wp-content/plugins/kadence-blocks-pro/dist/blocks-userinfo.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-userinfo.js',0,'xRq','xRq','GPE[]և.Ա','',0,'?'),('8)p4{a{','wp-content/plugins/wp-rocket/inc/Engine/Admin/ActionSchedulerSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/ActionSchedulerSubscriber.php',0,' \0b',' \0b','\Z;0/J!!V-yQ9','',0,'?'),('<\0$\rփ\'(Ok','wp-content/plugins/wordpress-seo/inc/class-wpseo-installation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-installation.php',0,'IsՅ@D','IsՅ@D','}8h%?||Bi4_\Z`\r7(mNK','',0,'?'),('@,n\\+k','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z~&)j','6$ ?gC2ǅS\07*瘋','',0,'?'),('d\n`n,)5`S','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/Parsedown.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/Parsedown.php',0,'v[ϱQ	þZ','v[ϱQ	þZ','qVy:Y\ZVF+a8\Z5@','',0,'?'),('ls\rnU* BT','wp-content/plugins/wordpress-seo/src/conditionals/attachment-redirections-enabled-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/attachment-redirections-enabled-conditional.php',0,'؆DU','؆DU','\n=Bhf}N+MJHiY)	','',0,'?'),('sME&N\\','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-tab.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|fCIQ*9SBR7','q\0M(2!^SDȚ#^$U','',0,'?'),('vFI2hn','wp-content/plugins/wordfence/readme.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jPǳsL\0ص','8zVg+tX>}z۪;mځ,','',0,'?'),('{1\"^.','wp-includes/class-wp-widget-factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-widget-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2lNV','t)	Ј74A8sked;af','',0,'?'),('\"#i)OY','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$-e)Jeo.','kX8k*T?;3+G','',0,'?'),('uc\ZB+b','wp-content/plugins/kadence-pro/dist/woocommerce-addons/product-archive-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/product-archive-options.php',0,'))\'}ښC9\0','))\'}ښC9\0','k\n=pYgEІZl-$+c','',0,'?'),('sv ','wp-includes/blocks/social-links/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B@2d@',';yYl]jipȈ\0ƴ<Q','',0,'?'),('sIqF','wp-admin/includes/class-theme-installer-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-theme-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v<]Ը_','ﴧI=j\\aB`q\n>','',0,'?'),('=V;N.K','wp-includes/js/wp-list-revisions.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-list-revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PbOPxOrs72','#;w1.B3f_;Pf','',0,'?'),('7FWm!wSZ=','wp-includes/blocks/video/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']C-͗d^f',';nA5dSwDPGH/U،oU˕','',0,'?'),('?}~1wAɐ;b','wp-content/plugins/kadence-blocks-pro/dist/blocks-query.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-query.js',0,'8.Oȉ%X,','8.Oȉ%X,','x[8{\'`\rC;(ւ6','',0,'?'),('\nӛIQED	','wp-includes/class-wp-comment-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-comment-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˢC4`','W=ڗu\0uƟӈ{v$i ?T0!','',0,'?'),('T4oLQrq2','wp-content/plugins/kadence-blocks-pro/tables/KbpFormEventsIndex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/tables/KbpFormEventsIndex.php',0,'[R]f','[R]f','X`z5Bl!M`\\V]','',0,'?'),('cĲ.\Z(','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-plugins.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',SH]ݭq)','N$[`*4mQF쌴\r˰k+!','',0,'?'),('~l<s!Q_','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-textarea-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-textarea-input-block.php',0,']62+cZĔ',']62+cZĔ','o6uK3H!~3	4J','',0,'?'),('&e!D&','wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.min.js',0,'ǵ1L','ǵ1L','Ӧa8~{RyE#N!젵2','',0,'?'),('齶9/e','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageConvertMeta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageConvertMeta.php',0,'|Hߚ(\n4&','|Hߚ(\n4&','Mmk\ZNm~;/5in#	Q','',0,'?'),('Κ,Qagl\Z','wp-includes/class-smtp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.斚aqݓϠ','B)HJڐRps 	+\'8k_','',0,'?'),('>؀yz','wp-content/plugins/kadence-blocks/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/installed.php',0,'\n\n18{W`','\n\n18{W`','S%CF*,$uasE˓պ','',0,'?'),('}Hp+Uڂ','wp-content/themes/twentytwentyfour/patterns/template-single-portfolio.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-single-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rgj','}2EBGr+-y5j6~+֚(','',0,'?'),('L\Z|=c','wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B0oǔ','7/QƐՐwg:?#{sɟ','',0,'?'),('dA#*Źo7','wp-admin/js/customize-controls.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%T\'ZSt	2t','SfZIq(%8\rU\'ڰ?b2;Y','',0,'?'),('_{Ju/{-','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KanboardInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KanboardInstaller.php',0,'ƿ0li_q~','ƿ0li_q~','rb5\Z5q#a2/*j','',0,'?'),('V\ZF\0|','wp-includes/sodium_compat/src/Core32/Poly1305.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@BgEJƽH','i|\\IE_X綈j','',0,'?'),('xOW\r','wp-includes/sodium_compat/src/PHP52/SplFixedArray.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/PHP52/SplFixedArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ئTЬԄc/','TJ),8q@f<Dڛ\rxF','',0,'?'),('\'Kol RS#','wp-content/plugins/kadence-blocks-pro/kadence-classes/kadence-activation/class-kadence-plugin-api-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-classes/kadence-activation/class-kadence-plugin-api-manager.php',0,'6_(n[g{	','6_(n[g{	',')o_2 %着`zU¸7\0\nyhSs','',0,'?'),('5ڜ2l2{','wp-admin/js/widgets/media-video-widget.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-video-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ܥd|QSn','R;Twhm^䜺KLA','',0,'?'),('D!VD+','wp-content/plugins/wordfence/views/scanner/scan-type.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NV	9J','փhbf#ЂOER9H\r','',0,'?'),('EA7޴\rTte','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/CDN/CloudflareFacade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/CDN/CloudflareFacade.php',0,'\n$O7C','\n$O7C','?NU;S=˭2h^aib','',0,'?'),('KeAO\'','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k WFCnē','\'T# cgmуn8_','',0,'?'),('M/<Pߍf.','wp-includes/js/jquery/ui/effect-bounce.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-bounce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>:5Qc$=*','VpI	_D4UBa$znl!','',0,'?'),('VT2ewgߋu8','wp-includes/js/jquery/ui/button.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/button.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o`,v]	 ','la=2ڤbpG#봡`','',0,'?'),('a&Qmg.C@','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2NgD$8','I!)%Zfl`vLLD^J','',0,'?'),('fԖ\"DKGwۢ>','wp-content/plugins/wp-rocket/inc/Engine/Common/Ajax/AjaxHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Ajax/AjaxHandler.php',0,'_~޶ǳGs?pB','_~޶ǳGs?pB','_;EfeD,Ck&T\"','',0,'?'),('hhf\0 ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/TransportResponseTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/TransportResponseTrait.php',0,'%_7L[ꃘޚ\Zc','%_7L[ꃘޚ\Zc','PyL~:$&Q^i&^*','',0,'?'),('j1ŽOBcQ:','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-portfoliogrid-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-portfoliogrid-block.php',0,'[;6Z5PC6','[;6Z5PC6','ʸYR*,XjN%aT','',0,'?'),('z6+PH\rtU','wp-includes/css/dist/block-library/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kׄh	','\"-h Иff\\a[]sw,vR[','',0,'?'),('|wTO','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/ClearCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/ClearCache.php',0,'|v	U+S2k^','|v	U+S2k^',' ~h\r\" ,P5^','',0,'?'),('˥̰MVЗeA','wp-admin/js/widgets/media-video-widget.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-video-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VU6D]C','W_T>)Rp>n}Pmz\0:sc','',0,'?'),('>#$,D','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/ContainerAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/ContainerAdapter.php',0,'i1>ҏ\riu','i1>ҏ\riu','/fχW \nӭ\"M ]-͎<~M','',0,'?'),('n0}e\rn','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\rFf','C`UF1NjtG5Ƙ\0\'\\	fs','',0,'?'),('t(iltY/','wp-includes/css/dist/list-reusable-blocks/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/list-reusable-blocks/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0SMqrW	V',')\\QH(+&՞g}/sߺnGh','',0,'?'),('Τe;y[99','wp-includes/js/jquery/ui/checkboxradio.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/checkboxradio.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pCQh6T','%bп1^WS~:4y','',0,'?'),('GG','wp-content/plugins/kadence-blocks/includes/assets/js/progressBar.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/progressBar.min.js',0,'XAPh','XAPh','_U)	zJcs4Yￖ^W0','',0,'?'),('b;3vx\Z:C','wp-content/themes/kadence/inc/customizer/options/product-archive-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/product-archive-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wL!)','\Z~OwD\0\n5KuaYՊ\\I','',0,'?'),('X\"ɘc52e8f','wp-content/plugins/wordpress-seo/src/integrations/admin/helpscout-beacon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/helpscout-beacon.php',0,'qaZ:}HP~f','qaZ:}HP~f','Y`7]ʸNނs\rw_:-\"','',0,'?'),('3\"(za48','wp-includes/images/media/code.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-oUʓUU_','\'eM a[R#q2kz+*<7\0j','',0,'?'),(' @rż7+','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\'I5-6V','.34Q=C5@]	','',0,'?'),('(葈!>鋈^','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload.php',0,'#RpJ8l','#RpJ8l','-?\"c^HqcQ׈s@5','',0,'?'),(',)%	%U.[2','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php',0,'ė1:1sIwt','ė1:1sIwt','%I8jA\"X*\0b2\Z@E3','',0,'?'),('\n׹]O\"|','wp-content/themes/kadence/assets/css/lifterlms.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/lifterlms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\0\0LL[q/W','P\rRmxPՕ* 	|}v}N','',0,'?'),('m{@m','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oLFʒ4i--','Cc#1_|Z  1ɾYx','',0,'?'),('h)\\z','wp-content/plugins/all-in-one-wp-migration/lib/view/main/contact-support.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/contact-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÚ#ĉf(_','D<gu#=tuae}!R<','',0,'?'),('8\\oW~­v','wp-content/plugins/all-in-one-wp-migration/lib/view/schedules/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/schedules/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9f=','ZRSa\"W&@\\`C5q|','',0,'?'),('ڰ t\ZmW5','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AmpResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AmpResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Biձix\'B','X7Qs%bJbш','',0,'?'),('p\"RpcA3','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CroogoInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CroogoInstaller.php',0,'.3ębųl','.3ębųl','^jvh[a|g\ZJM','',0,'?'),('ޅTPnSH','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&G<NQ',':g) d)7#gg\'Qo#','',0,'?'),('ᐙaĩ}M','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeader.php',0,'ݲ?}`֫','ݲ?}`֫','-\\Dܻ˵AOf/ffd','',0,'?'),('C\0XU','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DependencyInjection/HttpClientPass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DependencyInjection/HttpClientPass.php',0,'7!2רnR','7!2רnR','ʼ\0{eqv+\"SrB-+p','',0,'?'),('\n5;	Eb\0Ќq','wp-content/plugins/wp-rocket/inc/Engine/Support/Rest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Support/Rest.php',0,'W#U_o','W#U_o','EyyqtKSIǁ?z/>','',0,'?'),('<zo=rf','wp-includes/class-wp-duotone.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-duotone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E9ٰl}A-','\'^Ib|+5x77BD>Fo','',0,'?'),('~QԁŴFp','wp-includes/class-wp-taxonomy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TƠv tF','1eM4`i.v&o*생,E','',0,'?'),('1kATo/','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/autoload-classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/autoload-classmap.php',0,'w^,m-o','w^,m-o','vusxsi5z!ѩ~ѕ:B(M{','',0,'?'),('jzGm[','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/OrderBy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/OrderBy.php',0,'`&]]w9','`&]]w9','R0~!6\\Htk.!:KK','',0,'?'),('@뵰On','wp-includes/blocks/html/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C2\rnwL5','Ċkm<@axf:Lcor`e','',0,'?'),('#4\ZٔS','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dytJ_X',';ѨE#))qˠV\0G(','',0,'?'),('%+:wP\"yh','wp-content/plugins/wordpress-seo/admin/views/form/select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/form/select.php',0,'UN@v M)','UN@v M)','lb)%TYt+\\rEMPl','',0,'?'),('0<0\nq	','wp-content/plugins/wordpress-seo/js/dist/api-client.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/api-client.js',0,'COiN0','COiN0','|@y6}\090d\\C','',0,'?'),('4#\np*&R BAm','wp-content/themes/kadence/assets/js/src/navigation-lite.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/navigation-lite.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7z','qmQ^2SGD\"~	c\"r1N_vʃ','',0,'?'),('Rz/_8@\'!','wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-permalinks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-permalinks.php',0,'Tl<R%*I','Tl<R%*I','2BRzm9,owΫ}i>Q+!\n\\','',0,'?'),('VXg!xOI{A','wp-content/plugins/wordpress-seo/inc/class-wpseo-primary-term.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-primary-term.php',0,'%<D9','%<D9','%YH䑺tO+h\\0','',0,'?'),('WջO','wp-content/plugins/kadence-pro/dist/header-addons/header-contact-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-contact-options.php',0,'S^C?','S^C?','h\n΁ajRT4᭕jeV','',0,'?'),('ZJ\n\'K}ǡz','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/HeaderUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/HeaderUtils.php',0,'ՠX,wS\0','ՠX,wS\0','\Z~%\Z9wHSZf GRpd})C','',0,'?'),('kHm1`0ѹ_','wp-content/plugins/wordfence/lib/wordfenceConstants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\Zl$4$a','Dh/D*jlT\ZQDs','',0,'?'),('zݿ&X❙6s','wp-admin/css/media-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ABzt2U{/','(`i_f:t1K(E\"','',0,'?'),('Y4aئtQn','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zuݚKb^Cw','qY\0L\04ὦ{*\\\'>7p֒','',0,'?'),('_C6:','wp-content/plugins/wordpress-seo/lib/migrations/constants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/constants.php',0,'I˟ZTc*u\Z','I˟ZTc*u\Z','3~o;.o-?ġoWw@','',0,'?'),('|R֤5','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/athens-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/athens-georgia/index-mobile-https.html',0,'*ke3\\v͂)','*ke3\\v͂)','b{38%o̙h6','',0,'?'),('%h>\0\Z.Pv','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php',0,'ipk.D:','ipk.D:','`ƘhF\"\\ɲƗF~UhqGĿ(','',0,'?'),('DѩGR>\\\r[','wp-content/themes/kadence/assets/css/learndash.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/learndash.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(z*[MO','e&r2]J4]}L','',0,'?'),('!yF]','wp-admin/includes/class-wp-ajax-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uŪ֘z$B','U<zV|T	wUzn3hvAS{','',0,'?'),('\n (z','wp-includes/PHPMailer/Exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/PHPMailer/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uiD7ǍC\0,','/b^u,ʲ`XJx ~\ZC','',0,'?'),('b\'ƻi','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Avada.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Avada.php',0,'K&Ȝ?v','K&Ȝ?v','Q\'<bK~=OH6@Snc','',0,'?'),('])\"/6}','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5DW*ڗ',')t<#&<.','',0,'?'),('1\nsL]s&','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64ContentEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64ContentEncoder.php',0,'(cC&+\'','(cC&+\'','hkpRZ\'!L@H0\r	','',0,'?'),('4de:.','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Events/Event_Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Events/Event_Subscriber.php',0,'cXpttT%','cXpttT%','=6Ukt\0c@H3}T','',0,'?'),('ٵ\nhJxdvԃ]','wp-content/plugins/wordfence/lib/wf503.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wf503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_*\"LX\09zR','=z:4msFyFЉOܲn)','',0,'?'),('ɾr;v|/','wp-content/plugins/wordpress-seo/js/dist/new-settings.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/new-settings.js',0,'\\R산3{','\\R산3{','F\\^jغJ\042v]K.','',0,'?'),('$TX@#A','wp-admin/js/widgets/text-widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/text-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z÷C6ؠ+','>X7T\Z&~27Z=JÜ-','',0,'?'),('#ngkw6','wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterApiTools.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterApiTools.php',0,'I4ed','I4ed','הD\r~89;HLS- tFp','',0,'?'),('2zs4xEB','wp-includes/ID3/module.tag.id3v1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.tag.id3v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\":0J6(`',':?Eͅff^/UC9R2/','',0,'?'),('Obc\" |J(','wp-includes/images/smilies/icon_evil.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_evil.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^M>z','Q|x>@VЛ_/\"W%S','',0,'?'),('d&BNTW','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/IncompatiblePluginsLists/APIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/IncompatiblePluginsLists/APIClient.php',0,'\n.C-edoVW','\n.C-edoVW','#1;h;(#<8M?uM&|Sr','',0,'?'),('e7F%','wp-includes/blocks/post-title/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8XoYc','oWBxp\'.uZ^2c','',0,'?'),('&g6','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php',0,')Ԅj>(ā',')Ԅj>(ā','e\\˜ҽM?*TEp)V沩','',0,'?'),('.]^+=7','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorAggregate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorAggregate.php',0,'c}\'','c}\'','\ZArZZq#L).xl','',0,'?'),(',Wucm6fEF','wp-content/themes/kadence/assets/js/css-vars-ponyfill.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/css-vars-ponyfill.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8L3tG8C','7VL3w%]/(\\ћ]M','',0,'?'),('(:[;jV\Z?9}+','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php',0,'7D#','7D#',',\'@{2n0I^P9I4%h','',0,'?'),('1WV(26','wp-admin/images/icons32.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/icons32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۬[m9J4\Z','DkCdi|a|+\rx̌','',0,'?'),('6M͓)̻','wp-includes/blocks/text-columns/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\'|=8','N@HK09L*|','',0,'?'),('=}LsQ\n`q&','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[M/*E<sWRG','\n\\Xΰ֨PA\nXj\';q{a','',0,'?'),('>ƀ脴o\\iD','wp-content/themes/twentytwentyfour/templates/page-no-title.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/page-no-title.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C`ۯ!2i$','^4.9,чʂGR:	K','',0,'?'),('EF,:\ZL=','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AsgardInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AsgardInstaller.php',0,'L>@Du-<','L>@Du-<','Du?lW3m1ț\ZL>3H<q5r1','',0,'?'),('Otg\02\\B','wp-includes/assets/script-loader-packages.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-packages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7I{~*+;R2m','yYo+lp=ї3M','',0,'?'),('Pg*l.\\쀑\'','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Admin/Subscriber.php',0,')Q*=ue&8',')Q*=ue&8','.sHnh\rLdIu2L\Z̫','',0,'?'),('P\0}B!Q6','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nTbU;!>}','cvv(L<7r^\nSaAm*','',0,'?'),('YmRlX\0:','wp-content/plugins/wordfence/views/options/option-textarea.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\nMus','O=~jc#6L窜asWOQ-','',0,'?'),(']숊YTXm+%','wp-includes/js/dist/vendor/moment.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/moment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZԮ','ӜXG\"\ZrsN=c\r','',0,'?'),('i9$:Ӟl{','wp-includes/theme-previews.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-previews.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!σ#x0,OY',']H[l\r.\rcC\Z嘿\Z3YP','',0,'?'),('jUUX\Z/J/','wp-admin/includes/class-core-upgrader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-core-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','鰀N5ᠶPx','	B\n5~|SP OaS.O)','',0,'?'),('sL|v0','wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/abstract-kb-csv-exporter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/abstract-kb-csv-exporter.php',0,'Dj2y8.8*Y','Dj2y8.8*Y','x>nʂG3TWF:%\\na','',0,'?'),('gزh/ḮON','wp-includes/class-wp-block-type.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0AG¾p6','?(}ul+|_g(ۻ5S#ekE)','',0,'?'),('ġ!\Z','wp-includes/blocks/categories/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	8 MkR=\n','ؗ0oTO|6W','',0,'?'),('T`+F.As','wp-content/plugins/wordpress-seo/src/surfaces/schema-helpers-surface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/schema-helpers-surface.php',0,'\\g{*hHV','\\g{*hHV','i\n7t5xMҔ','',0,'?'),('6FZK[q','wp-content/plugins/wordpress-seo/js/dist/languages/it.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/it.js',0,'P\\M,p1','P\\M,p1','\\?C=>n4שcq}5bg','',0,'?'),('XDAi(_','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Dreampress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Dreampress.php',0,'tMyƱ','tMyƱ','GvSJD_yE1`4(Z^','',0,'?'),('¡HﲒxT7D','wp-content/plugins/wordpress-seo/admin/class-option-tabs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-option-tabs.php',0,'[١fm','[١fm','?L{p	Q_i+<[3ahOf','',0,'?'),('1|}dQ','wp-admin/export.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'})]','\\n\n֡G!C}R/','',0,'?'),('ǖ:qg{j','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ProgressBar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ProgressBar.php',0,'l@\roa','l@\roa','#Äz1c#prt\"qfHvZy','',0,'?'),('ۜ؉sb','wp-content/plugins/kadence-blocks/includes/assets/images/masks/thumbs-down.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/thumbs-down.svg',0,'ԑ]ʹf|<>\"<','ԑ]ʹf|<>\"<','/*&?7fƈMEĽpJ\'j!BbV','',0,'?'),('Z@8pr!','wp-content/plugins/wordpress-seo/src/generators/schema/article.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/article.php',0,'mP֍#2','mP֍#2','c`jwJdq5l\nŷ{','',0,'?'),('鴴gB(d3','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-default-archive-settings-importing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-default-archive-settings-importing-action.php',0,'(c9d&','(c9d&','sᐙ@b4üSWPv¦X','',0,'?'),('/ORQʦ*0e*4','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/UpgradePhpMessage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/UpgradePhpMessage.php',0,'űp3V','űp3V','Ɛ-K:tj@}pXkֈ 6*\\&','',0,'?'),('[\Zà+2','wp-content/themes/kadence/inc/customizer/react/src/multi-radio-icon/multi-radio-icon-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/multi-radio-icon/multi-radio-icon-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\Z{	72','D=\'X_HEݧ=h\rTa}E','',0,'?'),('{Z)','wp-content/themes/kadence/inc/customizer/react/src/select/select-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/select/select-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g|-Y','8&jQ3k}[DowŐyđɳ','',0,'?'),('Π7D,','wp-content/plugins/wordpress-seo/src/generators/twitter-image-generator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/twitter-image-generator.php',0,'O$\rc+Dn-/','O$\rc+Dn-/','Mk/ƑHF1\nM$1x-U','',0,'?'),('	1А々S:(','wp-includes/js/thickbox/loadingAnimation.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/thickbox/loadingAnimation.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"h\rc&','BF`F-lڛRT6Յ','',0,'?'),('R\n琪Tp','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare/IpRewrite.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare/IpRewrite.php',0,'Hm ,V','Hm ,V','IgϗqX56DYO0L+\'6','',0,'?'),('\rW$2lv9{ܭ:','wp-includes/blocks/post-title/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}kRp$Ŷ','.µ&;i`?t\rI3ϓL&<','',0,'?'),('w:k@DiWQ','wp-content/plugins/wordfence/lib/wfModuleController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfModuleController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oIƷkb','7.ݰ̿UL>\"TM5]>','',0,'?'),('_WS޲$','wp-includes/js/dist/edit-site.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-site.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eK,c7h','phs^Ġ6`H8P({gt','',0,'?'),('#\"ԘA:.','wp-includes/Requests/src/Transport/Curl.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Transport/Curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pay','=FWeS>\\+sR$@','',0,'?'),(')KbBF~','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/HandlerStack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/HandlerStack.php',0,'T3^4Je,','T3^4Je,','˗hF7 }G@-WS/F','',0,'?'),('-91uA6|','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/RewriteTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/RewriteTest.php',0,'06Wf','06Wf','Ѣ|i#+HA*ړpW/	#','',0,'?'),('/0WfĦ','wp-includes/images/media/video.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/video.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';{q\'El',')8uG\\LbEDI','',0,'?'),('T!ة7l<','wp-includes/js/codemirror/htmlhint-kses.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/htmlhint-kses.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[k[#cLf{','N&V\ZA/R#~բ_J*Ї','',0,'?'),('_jSX2QQ=','wp-includes/ms-load.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Anf=','kXq2u\Z:7	><','',0,'?'),('`~|D%EHwO','wp-includes/sodium_compat/src/File.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r^\Z2','o%EsVFWWM]b BX0.y','',0,'?'),('qGIoJê~','wp-content/plugins/kadence-pro/dist/header-addons/templates/divider2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/divider2.php',0,'\0@U`	F','\0@U`	F','<b)Sw\'AIlVh$G/M','',0,'?'),('ÂuJM/ wy','wp-includes/sodium_compat/lib/php72compat_const.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/php72compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p{[˔	','9oGfpmeG#`:Q{`','',0,'?'),('Å.cxbaBf','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Create.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Create.php',0,'a՗q4Ǒը|-','a՗q4Ǒը|-','nU\Z9:\"Moف2b28','',0,'?'),('ÌF%<YHkraGU','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MakoInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MakoInstaller.php',0,'/-AY','/-AY','0-+bV\0\'_ʶ%˄+r@R','',0,'?'),('ÕuU[,IY','wp-includes/Requests/src/Exception/Transport/Curl.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Transport/Curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ТR1UUQ','q]t(Jj\r#9o\0Ⱦ','',0,'?'),('ä]0`AS:D','wp-includes/js/dist/blob.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/blob.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VKq]}eSɭ','Z/9y}Lm','',0,'?'),('ål^ڀpQ','wp-content/themes/kadence/assets/images/icons/credit-cards/mastercard.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/mastercard.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3c״ѕ)d','(\0\0.kߦ0w/:Ç9N_q','',0,'?'),('ñϒ&T','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/ByteString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/ByteString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5N}zAvWK','SAb[*Gtn[$ku','',0,'?'),('ýP7&ݣ`)','wp-includes/sodium_compat/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ou\r*B.7','OBѡEJ>q&h06\"<','',0,'?'),('t)pq>!','wp-content/plugins/kadence-blocks-pro/dist/early-filters.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/early-filters.asset.php',0,'SFR̢%Χ','SFR̢%Χ','<;{p0n:Lj{au','',0,'?'),('N:]y\nϱ','wp-includes/blocks/search/view.min.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/view.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d:Qj','6Fn[L\0!mm9m#k','',0,'?'),('tnRؔ%^','wp-admin/images/align-right.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BOe#l@:P+\"v','ɳC?=&UyZ31!<c','',0,'?'),('H+֧rYv	%','wp-content/plugins/wordpress-seo/src/integrations/admin/fix-news-dependencies-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/fix-news-dependencies-integration.php',0,'vP_qA6l','vP_qA6l','-(U7:Nxi!{YZ\r{I`x5ǃ','',0,'?'),('5V\"$$_','wp-admin/includes/post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']]nEȋe','XQehq4z\\cjg','',0,'?'),('4l!r؄','wp-includes/class-wp-block-type-registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-type-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|eRHEw#,f','fܸ^BenՈYlZ&]HLd','',0,'?'),('y$Yp~\rv','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php',0,'YeP`ӆ{2','YeP`ӆ{2','Ht:\0+w)JA=Fjl(ۯ:6r*','',0,'?'),('9ٲtr','wp-content/plugins/all-in-one-wp-migration/storage/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/storage/index.php',0,'A-pޜ\r͈V','A-pޜ\r͈V','=+O²2E[VOD','',0,'?'),('iY\0\nR)','wp-includes/post-thumbnail-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/post-thumbnail-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':&o/F@*1)q','$Sa:4:VV?}νob','',0,'?'),('uXݼ#-','wp-includes/class-wp-http-ixr-client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-ixr-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','45eTֹ','F@Iі%4]aks<Pkk','',0,'?'),('5}\\','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php',0,'$`w','$`w','S8$R|h_L+xKH`C','',0,'?'),('\0UaS','wp-includes/widgets/class-wp-widget-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gGP\'#Dax\\','|XKeQLK[u\0@R','',0,'?'),('cᘣrw','wp-includes/blocks/file/view.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vK\'[#HQ6','~vcaLb!pXz:I$GJ-','',0,'?'),('8d$nxyŚ','wp-includes/blocks/navigation-submenu/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#r\rl\0{@/','Su/{R\\e-xFh!E','',0,'?'),('bqk?ݞG=','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Editor.php',0,'6Tnt=+Ŗ','6Tnt=+Ŗ','Ctt˅ڥ|ِDB# 0qwija]','',0,'?'),('5Ĩ)0X\'','wp-admin/widgets-form-blocks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/widgets-form-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y#m$b','>h-Ji`py ȔX?E8-','',0,'?'),('!N`R{}9','wp-content/themes/twentytwentyfour/patterns/page-home-portfolio.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`t*UQaCp\n	','_\nfEdHЌ^n{P٬D#','',0,'?'),('3k<R6֔z','wp-content/plugins/wordpress-seo/src/presenters/twitter/image-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/image-presenter.php',0,'b۴|=}gqyd!','b۴|=}gqyd!','\n(<^י};>Rxؖi','',0,'?'),('HgK&/>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/JsonException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/JsonException.php',0,'&iZZ#=;','&iZZ#=;','0K97.&~*DJHyU^oN+e','',0,'?'),('`,}D@','wp-includes/class-wp-recovery-mode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YLϨO','wL\'ܜ+o`[+','',0,'?'),('fY펫~3','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_MonthField.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_MonthField.php',0,'b$ }[','b$ }[','S]KsDÀviIt%j=\'','',0,'?'),('m3j960K=','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-radio-icon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-radio-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0nb/}:G<','\Z oTft~,=u?y','',0,'?'),('oAxYԖ*M','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Subscriber.php',0,';d[.',';d[.','ƌ-5[6.>Y^a&VD>','',0,'?'),('pȬES0K','wp-includes/blocks/search/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O1f43Ѽ_0','}+{Ȗ19D\0W0S(\0sj(%%p','',0,'?'),('v\0F(Yx','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/VersionDetector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/VersionDetector.php',0,'^QWy)2','^QWy)2','ZY1hx/[/W683ZJ','',0,'?'),('vV/W{}!^N','wp-includes/blocks/html/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\'>t>	\nog','Ʃ\nyohSL-(>~a\ny{,p ','',0,'?'),('~;$(pXz','wp-includes/blocks/comments/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qTaQ\n!','jy^NtPvMpxt?.','',0,'?'),('Ĉ^A+lod','wp-includes/js/tinymce/skins/wordpress/images/audio.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7~!\0\"w','gz.gV:[ЙH)Ȟ','',0,'?'),('đԪVCTG','wp-content/plugins/wordpress-seo/admin/pages/licenses.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/licenses.php',0,'0Fn|hD','0Fn|hD','3&SbKA\' xP?d&Ow','',0,'?'),('ĔԼpPZ	H','wp-includes/images/smilies/icon_cry.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_cry.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\ZECsx','vewIHea-c','',0,'?'),('Ę#$붱R','wp-content/themes/kadence/inc/customizer/react/src/tabs/tabs-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/tabs/tabs-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|u*^6E','AH+0SF\0n99fC[','',0,'?'),('ěw+qAZ','wp-includes/blocks/group/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bl?Go$g\Z)','mS釂qj a]X\nSӿw','',0,'?'),('ğ\\x*=	.V','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/BearerAuthorizationTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/BearerAuthorizationTrait.php',0,'9TaCI;@','9TaCI;@','yHxd?OWfGf̶Xe~m5f`','',0,'?'),('ĥdIxh','wp-content/themes/twentytwentyfour/screenshot.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,9ԭp]m','td{Ãenf\"Ya8s','',0,'?'),('ĳJ\n`|5,HT','wp-admin/includes/admin-filters.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I~j4ͭy','Vy~@qtZ?fIЊxb=v	-','',0,'?'),('ĶƖoèf{U','wp-includes/js/jquery/ui/effect-highlight.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-highlight.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9A4dSM\'e','Npp21}NgoVZ5','',0,'?'),('ļS7=','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\08\"~q','V\Z\"Ҧ\"eeFK R<','',0,'?'),('ѯ:tM@?\Z','wp-content/plugins/kadence-blocks/dist/blocks-form.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-form.js',0,'\"\n*l`9oX2','\"\n*l`9oX2','woqXo؁%6b#Ft','',0,'?'),('7޿,Sƶ~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php',0,'ީ;OcOHz(!G','ީ;OcOHz(!G','aěQ#mRy| }ު]{','',0,'?'),('eN-@1\Z','wp-includes/blocks/legacy-widget/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/legacy-widget/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gtnr*a','>!OjeE\"~9*503','',0,'?'),('Ѻɩuy}','wp-includes/sodium_compat/src/Core/Salsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b5lJ#v','c=0-#-TSX&4\0K8\r','',0,'?'),('g\"d3	9JV','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/ResponseStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/ResponseStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\02o3ذtp','^t7VlIX[6[Tsbd;86מ','',0,'?'),('׭Ď','wp-content/plugins/wordpress-seo/src/deprecated/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/index.php',0,'EЛO0cAg3','EЛO0cAg3','	蚠{cFJw!}a9','',0,'?'),('r/IL.','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Factory/StrategyFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Factory/StrategyFactory.php',0,'e0vB\\','e0vB\\','0d\rih+ԣN	|Ksw','',0,'?'),('檦B,vcQot','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/RelatedPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/RelatedPart.php',0,'ld?wG','ld?wG','Ouq79Ⱥ=O؋_3q','',0,'?'),('Ff\\-ixV','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/DataChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/DataChunk.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\nt@w \03!v','֖,ps޳1w	1Ƹ2','',0,'?'),('ʙ\0}甠K.','wp-includes/js/jquery/jquery.color.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.color.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!4;ַ¢1','}+!9\'^--0!\Zr~hA9','',0,'?'),('1I$j','wp-content/plugins/kadence-blocks/includes/resources/Cache/Cache_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Cache/Cache_Provider.php',0,'йޮ!eT;','йޮ!eT;','Kס4)2;j:B)mX5 )U','',0,'?'),('Єj[\'P`y','wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dx	0!','hӃ|*_Şd5F+','',0,'?'),('q(JV#edy','wp-content/plugins/wordfence/modules/login-security/css/admin-global.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/admin-global.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n!m]\'x_','WIYTįQ.0(?Ff#|M','',0,'?'),('b5r[#','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FWnĖWu*6','vv/MEJ*7\rЂ\'aN]	L','',0,'?'),('{Amm*K','wp-includes/nav-menu-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/nav-menu-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.e2V0C','7N-[~1kE/buyÒ_]/4','',0,'?'),(' M4Cy.SSԃ','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/Inflector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/Inflector.php',0,'lVIs	`c\0','lVIs	`c\0','wRE\'[O^bumpCT\"K','',0,'?'),('.#i1K<7͊','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*i^zGOVMh','Zb\Zòo?Ùc','',0,'?'),('DTrUjY^hZ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php',0,'=2s\"(ӓHSAV','=2s\"(ӓHSAV','%~53Vn(ɓ^(!%~','',0,'?'),('Lu:U0hE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^=o4m~`','_&HSY;8Ҧ@\rJiA!#.s','',0,'?'),('P@SNT','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap.php',0,'CcgZBܲMt','CcgZBܲMt','\rcy`Lȓ1OlF\'uv4W~1','',0,'?'),('TV6Dg','wp-content/plugins/wordpress-seo/admin/menu/class-admin-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-admin-menu.php',0,'\'hs`V=U','\'hs`V=U','\0p=\ro\06Gs!D`I','',0,'?'),('_npaV','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*L1˵\"k%F+','ZiMfUvi-})f\"Mnd?X','',0,'?'),('`#GbC֊','wp-includes/js/swfupload/handlers.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jڙK~q	c=','T򌿑dTy~#jI\"++3ɉ','',0,'?'),('a88MlQD','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Utils.php',0,'zU|C]vv\0ջ','zU|C]vv\0ջ','<Tx%]OR6e','',0,'?'),('k\"a\n\n+3','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\0\"qКt','V_DlXǉYJSz\"o5@3F','',0,'?'),('pWCLY]','wp-content/plugins/kadence-blocks-pro/dist/blocks-query.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-query.asset.php',0,'Ix1!','Ix1!','9Fq?&i/ҪX&Fp','',0,'?'),('xeju','wp-includes/css/dist/edit-widgets/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-widgets/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%.K\"_','KZ_B	|,s	2B','',0,'?'),('|-9dYQC','wp-content/plugins/kadence-pro/dist/dark-mode/templates/footer-dark-mode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/templates/footer-dark-mode.php',0,'3ZUßh','3ZUßh','$TVeF&pc1Ԕ7\0ӎ\\','',0,'?'),('łjDߋ.˖D','wp-admin/css/forms.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/forms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4)YXbs','b{\Z%eSw?\n1	bF8WVC','',0,'?'),('ŃI@DAL_bj@','wp-content/plugins/wp-rocket/inc/Engine/Optimization/AdminServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/AdminServiceProvider.php',0,'Y\Z5.UW\\Y\ZE','Y\Z5.UW\\Y\ZE',':e3&0PRh6@Bvݕx','',0,'?'),('ņԡyiD1','wp-includes/blocks/embed/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E#RGCt','[ꕭ8M~̴xWyv|	\\','',0,'?'),('Ŋ6@L(`','wp-content/plugins/wordfence/views/scanner/site-cleaning.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/site-cleaning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\!ߴ_&xhG','lt!oVL`͂eܶ<`','',0,'?'),('Ő5]dxv:','wp-includes/blocks/pullquote/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hR<UGt','Aoi^<h+FyQԡNox]L4O','',0,'?'),('őxm tish','wp-content/plugins/duplicate-post/duplicate-post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/duplicate-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nՖeHRbp','&0<kfM}ƋAslF','',0,'?'),('Ŝ\0>j-','wp-includes/blocks/latest-comments/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lt3Ta','<E(SW䮓+|ѫ$4(vWph^d','',0,'?'),('ŝElH)','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerAwareInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerAwareInterface.php',0,'50,\"|,dM̉','50,\"|,dM̉','MhuܡRA>빅\'wXF]','',0,'?'),('Ş!bt$]a','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/InstalledPackage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/InstalledPackage.php',0,'r\rvɗE	3~I	','r\rvɗE	3~I	','dlaib#ݽDT0\0N(C','',0,'?'),('ŤyftRi','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KodiCMSInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',0,'?y','?y','V\n_RLu}vOu~z`80f','',0,'?'),('Ű;E7IE ','wp-content/plugins/kadence-blocks/includes/assets/js/kb-form-block.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-form-block.min.js',0,'07L8#','07L8#','oaQ˙ЧڻH;:Y;&c\'','',0,'?'),('Ŵ<xaiQϕ{','wp-content/plugins/wp-rocket/views/settings/fields/radio-buttons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/radio-buttons.php',0,'!Q[i.hbD','!Q[i.hbD','MHjX.3@)$F]	xw','',0,'?'),('ŷk,Q\"K*>','wp-content/plugins/wordpress-seo/admin/class-paper-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-paper-presenter.php',0,'ؖyќb','ؖyќb','w?W~_=nXiO<,','',0,'?'),('-plEk/','wp-includes/js/jquery/jquery.hotkeys.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S!}EU\\bgh=','\ZJ]x ծTc0n9  +Vk','',0,'?'),('UE~-`','wp-content/plugins/wordpress-seo/js/dist/externals/searchMetadataPreviews.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/searchMetadataPreviews.js',0,'4Fb\'	','4Fb\'	','|Z35fñzxY}eXz~','',0,'?'),('޹;;їW','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php',0,'bKv#','bKv#','T[HXti>WZʷc','',0,'?'),('\ZN1-\\_','wp-content/plugins/kadence-pro/dist/mega-menu/mega-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/mega-menu.php',0,'+;do5;&5F','+;do5;&5F','鏷ժ/)`{I:dRKwb٩\0','',0,'?'),('ZTD\r[FcLL','wp-includes/blocks/gallery/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fg9B	]i$','7U[sB|AQ\r@rpVA','',0,'?'),('Zx%;ѝiv','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/view-debug-box.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/view-debug-box.php',0,'uI8E','uI8E','\'j[4l(bk*gީlE','',0,'?'),('xxw]3','wp-content/plugins/wordfence/lib/wfScanPath.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanPath.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';YkjRzA$20','୹3vQPju$$e܋Hq','',0,'?'),('v.)NkpL}	d','wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.js',0,' c?p(у:',' c?p(у:','b=!$AN|橓S=bS','',0,'?'),('	#A\n#b#=','wp-includes/js/tinymce/themes/inlite/theme.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/themes/inlite/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z=\ro<3E','\";l\0s\'lB3q6)8\n@D','',0,'?'),('#XN@.7P','wp-content/themes/kadence/inc/customizer/react/src/common/capitalize-first.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/capitalize-first.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KgTH=Z','.gf/\0j~*g9Z','',0,'?'),('\'\ZX`IMWl','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php',0,'o2\r~SUH','o2\r~SUH','u,#5bn_t\r$%(R','',0,'?'),('+gq6^\0','wp-admin/images/wheel.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wheel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E0 q0m\ZY%VX','(]:=dqۅO{9ԀvȘ~','',0,'?'),('+kZ@bKҚ','wp-includes/blocks/block/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_fe9SdRW','Zg$,:3;Q0Ճ  ','',0,'?'),('@:<o|J-e','wp-content/plugins/wordfence/images/wf-error-badge.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/wf-error-badge.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EQts	Mzy','殙F`a݀kmEQ+~','',0,'?'),('OH+xߑv\"','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php',0,'~A?4[R','~A?4[R','nT\0]|cgۛ~l','',0,'?'),('X\rNΌ\"&5GN','wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-found-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-found-exception.php',0,'6]Fe','6]Fe','TԾ;67M6XS','',0,'?'),('X@Ic~_','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-nokey.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-nokey.php',0,'Y5Y<\"nu','Y5Y<\"nu','MrmyD^xg[򦻣Q]','',0,'?'),('^٨[9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#v9F۬?\'FT','\\\'fY}?kzWXB/\n9H,','',0,'?'),('dtS0[\\Og:','wp-content/plugins/wordfence/modules/login-security/views/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aabvr','C\'r9@Kކtw#@k','',0,'?'),('fR!vo&ޭ(K','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bvgvf|7','VN\"?FbɥF6C1!W;h;u','',0,'?'),('g0#{AYQ(','wp-content/plugins/wordpress-seo/src/deprecated/src/config/wordproof-app-config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/config/wordproof-app-config.php',0,'hT^vL','hT^vL','R#{^5@qw!\\ ','',0,'?'),('h(ٲ&b\\ek','wp-content/plugins/wordpress-seo/src/presenters/abstract-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/abstract-presenter.php',0,'.E	\Z(','.E	\Z(','4&\\<##QٕoFk|x','',0,'?'),('iK$|:3	?z','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ConnectException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ConnectException.php',0,'c|hhI','c|hhI','xXv\0S#2&N','',0,'?'),('q&]&=m','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/EasyHandle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/EasyHandle.php',0,'\0j\r_','\0j\r_','E[\Zы?ۢxW6a@SѼ','',0,'?'),('ƅ|_i/y	','wp-includes/js/tinymce/plugins/media/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/media/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\'1Zf ','\n>EQi漺k}îǲ','',0,'?'),('Ƈ?d!(ڧrW','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Lock.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Lock.php',0,'O	ROA7Kg','O	ROA7Kg','\\j*毽aYt[jM7鍣\Z','',0,'?'),('Ƈ]Ĭޘ','wp-content/plugins/wordpress-seo/admin/interface-collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/interface-collection.php',0,'/8sr%,#','/8sr%,#','t_<M,to~fYc׮2(j','',0,'?'),('Ɖ3S+c,N5','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/ControlByte.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/ControlByte.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=x$/\"','HE* dǭl)z8Ӷ','',0,'?'),('ƍuvHO','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/control-points.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/control-points.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>|<ONCSiP','v<c\'!\"!~g+yB6Ǉ','',0,'?'),('Ət\Zo+ش','wp-includes/blocks/spacer/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','skk3zU)','u2Tz\"-g&]Vj$O>','',0,'?'),('ƑYCrJr','wp-content/plugins/wordpress-seo/src/integrations/blocks/breadcrumbs-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/breadcrumbs-block.php',0,';p}:e΃',';p}:e΃','aJŹDQ`~6Z#\\݋sf\'+](6/','',0,'?'),('ƛB6e\"01','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qp{K}N\n','hup;MNAyQyx08','',0,'?'),('ƛCU!','wp-content/themes/kadence/inc/customizer/options/general-colors-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-colors-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a@\"O','hz-Y+hiAy+e޷NOD','',0,'?'),('ƝCQUn}','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89\"zzVv*]','ۆ%%l:Jf<bqPPt˯}ߝ\"f','',0,'?'),('Ʃ\nВC','wp-content/themes/twentytwentyfour/patterns/posts-images-only-3-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-images-only-3-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZJA_wurp9','<Ҳ>p[g;(','',0,'?'),('Ƭ+\ZId^i <\0','wp-includes/js/jquery/suggest.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':$tVEʿ','r,Kpŗrq^b\\=rZ]6+','',0,'?'),('ƬSXZ3','wp-includes/js/dist/plugins.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/plugins.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C֌z@EiD','\re1PKϸUtC܂>9\n\Z','',0,'?'),('ưG>wxݕ','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']`43UCX','\03w>lו!\\Aw2%Ce<?','',0,'?'),('ƴWb?uqm0','wp-content/themes/kadence/assets/css/src/elementor-checkout.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/elementor-checkout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n,{F','Pa28j:XG0CxG','',0,'?'),('Ƽ~9~籌','wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php',0,'r@g','r@g','vG>YV^Y?;M`@QƂ0W\"','',0,'?'),('î>sDD','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c̮F FZ.','X\0[7+\0`g¹^W)-=ט','',0,'?'),(';VޯnTy ','wp-includes/class-wp-theme-json-resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme-json-resolver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mJǱBQ	','XN{uIFDam7~_dv\0P\nZ9','',0,'?'),('Hٹ|\r','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/index-https.html',0,'h\r\rF[+','h\r\rF[+','uФ]阳RzM_|}&K^','',0,'?'),('gv.َK','wp-content/plugins/wordpress-seo/js/dist/help-scout-beacon.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/help-scout-beacon.js',0,'v	4Gfsoi','v	4Gfsoi','<ݏ۟CkSOKD	:','',0,'?'),('	RNc','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UploadedFileInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UploadedFileInterface.php',0,'FA!~+o','FA!~+o','7vg-&j,*U 	I\n9Cv','',0,'?'),('&(;dc@','wp-content/plugins/kadence-starter-templates/dist/starter-templates.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/starter-templates.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AӜ*71ή','qV~f0)J+oWCHK@4','',0,'?'),('몳@ =y`','wp-content/plugins/wordfence/views/options/options-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/options-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۘj玓݆E','Kxf+eǖ٭ʌm','',0,'?'),('Vl9:.{r','wp-content/plugins/wp-rocket/assets/js/heartbeat.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/heartbeat.js',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('͌%+e@uQ(','wp-includes/js/dist/editor.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY*>4N(aʂ','V>% rS`Lzz3p','',0,'?'),('f!*O+n','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-activate-plugins-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-activate-plugins-exception.php',0,'-h@|_q','-h@|_q','h}א6X1<sʆD#k55','',0,'?'),('`N\"z,n*','wp-content/themes/kadence/inc/components/clean_frontend/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/clean_frontend/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eB2/ d~bu','K?ڞ>kQ~:0p%g/-','',0,'?'),('W\"\0~KM5','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-glight-video-pop-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-glight-video-pop-init.min.js',0,'L밈J<V@\"u','L밈J<V@\"u','*ƻ%WJ ?QZ),n','',0,'?'),('+B5oY9','wp-content/plugins/kadence-blocks-pro/includes/query/index-query-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/index-query-builder.php',0,'~u>\"z','~u>\"z','I&icEM_4$G:`z8Z','',0,'?'),('\'Uk?+[N5z','wp-content/plugins/wordpress-seo/src/conditionals/wincher-enabled-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wincher-enabled-conditional.php',0,'GɷT1 :','GɷT1 :','@9)-V9\nhfy\\)⍫I','',0,'?'),('+d	%pfLGbe','wp-content/plugins/wp-rocket/inc/deprecated/3.7.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.7.php',0,'Yt\Z2$r','Yt\Z2$r','o_\rQaT%2¼m-','',0,'?'),('>0Ń^Lx\ns','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/sf-move-login.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/sf-move-login.php',0,'O/ɲ9w','O/ɲ9w','69V0f9ˊZ>pG;!\'','',0,'?'),('>#9ͩ+.@ ','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php',0,'|?L^7]','|?L^7]','Ϳ u~ÓcU0	Euk1ܧ','',0,'?'),('D=K>c','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php',0,'[x5</3H&','[x5</3H&','(Gו\"9~z','',0,'?'),('SQsY7aFIMjz','wp-includes/blocks/post-author/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ۖ|)+j.','p+zE\'v~9`W|j!','',0,'?'),('W}\rDŬw*','wp-includes/blocks/query-pagination-next/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-next/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|p$.NWJ','¢JC͊\\t2(1$YSVh8','',0,'?'),('^{[b#$Xs','wp-content/themes/twentytwentyfour/patterns/template-index-blogging.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-index-blogging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Axk','ҠΟ.]b*)b3','',0,'?'),('f9t^&gO','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NoopHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NoopHandler.php',0,'BgmfU=M','BgmfU=M','-Nͧps=h','',0,'?'),('oUn&5f','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Cloudways.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Cloudways.php',0,'P}D+V\\#l','P}D+V\\#l','m$X(Q1 rJEGG0y|R','',0,'?'),('ǂ-i).\\z^a','wp-includes/Text/Diff/Engine/shell.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Engine/shell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tC& wB@','ݙ<J2AQ<NIW|	eW','',0,'?'),('ǅ99:\Z','wp-includes/cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'~ĩB<X','8hbSzmsabjK\0%o','',0,'?'),('ǓJ!;Ţyj','wp-content/plugins/duplicate-post/src/watchers/link-actions-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/link-actions-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$S$uǿ*',')FB6XRSiat0','',0,'?'),('ǝ^xJB\Z3-6','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G5]{\"V','CJr~WOY*[:[j)GЄe','',0,'?'),('Ǥ>zԄ!J]>','wp-includes/css/wp-auth-check-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-auth-check-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','94~&9$','Mia\'3Fݭ.e','',0,'?'),('ǧ\0j1#.J','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Slugger/SluggerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Slugger/SluggerInterface.php',0,'Phj','Phj','zJ]dTY?Z<ԮY])9߅EL','',0,'?'),('ǫ=m/^','wp-admin/includes/schema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\r*ClML','c~dg ƅ\\素gydxX80A6H!t','',0,'?'),('ǱѮp*\'+>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php',0,'5g;A($.*ݥc','5g;A($.*ݥc','$gAхaĺ%Q%Q?0g-','',0,'?'),('ǲY6W;hb','wp-content/themes/kadence/inc/customizer/options/forum-archive-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/forum-archive-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y*@D5,','ch_	Лwѹ81~n>P!qO','',0,'?'),('ǳ\\_L-YŌ%$','wp-includes/ID3/module.audio.dts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.dts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','llA2̋','\ZaHr%A6$`HuT6y4','',0,'?'),('ǳp&	54!\\I','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/version.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/version.php',0,'l\"bD}I','l\"bD}I','	> luK5Ky5j`Oc','',0,'?'),('Ǵ32T3?','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/FormatterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/FormatterInterface.php',0,'_1\"7\r','_1\"7\r','/Z[@	.unL` w΍Uw','',0,'?'),('ǿXM>])H','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Ezoic.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Ezoic.php',0,'R*iXU-:M','R*iXU-:M','19B:Y.]-2\0_KoLI˼7N','',0,'?'),('C?/zĢ7','wp-content/plugins/kadence-starter-templates/inc/class-import-give.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-give.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l6=eǆed','X!x9d(OEEToq*6,Ӝ','',0,'?'),('Ҭ@>]','wp-admin/images/contribute-code.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/contribute-code.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%\'+c&\"L','RuiKt\Zjl@7#U*A','',0,'?'),('myvH̍','wp-includes/blocks/table/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MW\n)GkC','8>*D#\'*-v/˞>Q/Oc','',0,'?'),('wy*XO\nG','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}&?P!D,\"','}gY/~[-Ԛd	pl9fάs','',0,'?'),('\'md姊˟E','wp-content/plugins/wordpress-seo/js/dist/support.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/support.js',0,'G1ry \rQ 8H','G1ry \rQ 8H','kFh-XR4\nV(.n{n/%1','',0,'?'),('}CwXTC','wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]a\\$','Ǘh?S):i@h.Xg','',0,'?'),(')5Dr\r','wp-content/plugins/wordpress-seo/src/actions/addon-installation/addon-activate-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/addon-installation/addon-activate-action.php',0,'*9jBJ\'O%\ZI','*9jBJ\'O%\ZI','b^=G(-婐)xX','',0,'?'),('ҎăE$','wp-content/plugins/wp-rocket/inc/classes/traits/trait-config-updater.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/traits/trait-config-updater.php',0,'r\rXK?z','r\rXK?z','9	+LXTզtҳB)m','',0,'?'),('[^yEsB','wp-content/plugins/wordpress-seo/src/models/indexable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/indexable.php',0,'P:p,BگM','P:p,BگM','!*\0=:`4EGȾԄKh,t','',0,'?'),('xӝð&','wp-content/plugins/wp-rocket/views/settings/fields/hidden.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/hidden.php',0,';<An=Ǣ(T',';<An=Ǣ(T','_J@T~ڀ<ULeGa','',0,'?'),('q(d9','wp-content/themes/kadence/assets/images/icons/loader_org.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/loader_org.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r7c)[w^','Be vO+\Z*eҿW3~','',0,'?'),('\Z{g?3gڢ\Z','wp-admin/images/icons32-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/icons32-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*g','#!$@0g.;i3%!cHP=','',0,'?'),('fp\0!tDK','wp-admin/js/code-editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/code-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\'߽	%','-Bd/`\\Vx6Y*-$W','',0,'?'),('eP\Zya\n','wp-content/plugins/wordpress-seo/admin/views/tabs/network/restore-site.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/restore-site.php',0,'z7HVL','z7HVL',':b yR2pR;\\\\iS','',0,'?'),('\"u@TS5','wp-includes/images/smilies/icon_idea.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_idea.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<]W3tށ','{2^4STlIJQ\"','',0,'?'),('6wr]*\\#','wp-content/plugins/wordfence/license.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B7&]NDd','@HM;ﺾ5 i\'o5V','',0,'?'),('7\0tt.','wp-content/plugins/wordfence/views/dashboard/status-renewing.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/status-renewing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hwBe (','^K$1\0nƄ&iM{$^h','',0,'?'),('8R6>G\"','wp-includes/js/dist/element.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/element.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`I*V ǽ\nH,','pP?k54/?|rЪa','',0,'?'),(';NQ>','wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v@ޗ֙8:(','Dkf}{g%y=3Vfh)nqTx','',0,'?'),('AG-nB! b','wp-content/plugins/wordpress-seo/admin/watchers/class-slug-change-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/watchers/class-slug-change-watcher.php',0,'GV;?^Һ&̗','GV;?^Һ&̗','-L70^QTA>EdOLҲT','',0,'?'),('Y$\'o','wp-includes/css/wp-auth-check-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-auth-check-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0dhڝ','~Qәm,}]?*\0łTĀm\r','',0,'?'),('^/xp$Vto','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Polygon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Polygon.php',0,'{m ','{m ','(!ǨG\0N]17/ey)@l','',0,'?'),('uC~7\nWe','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ko`U','4C	x̶Q\n*7','',0,'?'),('xxj^׀','wp-content/plugins/wordfence/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$SNRcg..3','}[VD痎xc0{\'x v','',0,'?'),('|-]W1','wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/Subscriber.php',0,'8_˭#]VW','8_˭#]VW',';Ӊ8\"ht=3l\nЈŵԏ0','',0,'?'),('ȁ#/\06','wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Atz`n%YP','\\1[Z>EKRkW\\v','',0,'?'),('ȁ҂{M','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Subscriber.php',0,'qMu(QI','qMu(QI','D~wWgX}ra','',0,'?'),('ȋd([uZ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/MessagePart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/MessagePart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vKke;\Z3','SQ씘(\"5x<yFւܦؕc*','',0,'?'),('ȍP 3\n','wp-includes/class-wp-customize-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y Qi!1\\N؊qE','XZ\rl+ǄeD ut~Lo\r','',0,'?'),('ȍٶtTl~','wp-includes/js/dist/development/react-refresh-runtime.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/development/react-refresh-runtime.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\M(gɌ#','?l\\^	=nC6}T7','',0,'?'),('Ȑ9h%M[','wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media-folder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media-folder.php',0,'0%jU] 2','0%jU] 2','SbudJf@=wVj','',0,'?'),('ȑЋ**TS!','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/BinaryFileResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/BinaryFileResponse.php',0,'0̐W=9d#0M	','0̐W=9d#0M	','QPӹ*t{w\"8(5B/','',0,'?'),('Ȥ	1]#w3]','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QW\nRb0','\"	&Y<>d@΄kŬ5KFzOѺ\n','',0,'?'),('ȯy`Õ褱ޜ','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Metadata.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Metadata.php',0,'BF\rx.','BF\rx.','[*cjKEkO\0MSe\ZGC?','',0,'?'),('0.P\\,','wp-content/themes/kadence/assets/js/src/text-widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/text-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\'K19)=\r$','\\U\\B9_{CO_H	]\\O','',0,'?'),('^3oMhV','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-button2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-button2.php',0,'+0qrk#={i','+0qrk#={i','䥇e$3qWZ%+dv','',0,'?'),('ߊ [DeHA','wp-content/themes/kadence/assets/css/src/_elements.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_elements.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PT_6Uɸ','%ۊޔav45p)ǰL(W','',0,'?'),('Qq}ޅ[\r<','wp-content/plugins/wordpress-seo/inc/class-wpseo-utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-utils.php',0,'^jw0tR','^jw0tR','%%.QZz{ڵk=|G','',0,'?'),('?cX~','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cle?2>Yh','D:αR\0fǥˉ1E1#!','',0,'?'),('C6Ӛ]EY','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Data_Providers/Debug_Data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Data_Providers/Debug_Data.php',0,'[l\Z*;%GK','[l\Z*;%GK','3l7pd3>;b\'p!%','',0,'?'),('-\'Dqz%B','wp-content/plugins/kadence-blocks/includes/templates/form-email.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/form-email.php',0,'J\"\0H%]ZC','J\"\0H%]ZC','RPu bDcS4\r^u7C','',0,'?'),('~\r\ZK4(#','wp-admin/user/credits.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(팋#A;','uA+I/㊓\0nN1G8\ZD-','',0,'?'),('\nC0w#','wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-features-list.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-features-list.php',0,'l`[cwhhc','l`[cwhhc','^ʃ\0$l`Po-.{/N','',0,'?'),(')\"-S@p뫐O','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RVY\r\0\"U','麕TѠʤxpEZg)IU%','',0,'?'),('19WuӀ4B','wp-includes/blocks/query-no-results/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-no-results/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!dsoз','@~Ѥy+N\Z!ȏALf','',0,'?'),('5iDhI6;','wp-includes/SimplePie/Cache/Memcached.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/Memcached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\'Xlab4`','?Od6Cu>Jrhte','',0,'?'),('5H=4\rcqSx','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X/D',':\"-K<;\'Ex:0Gƫ}w','',0,'?'),('8?s5Qm>	_\ZB','wp-content/themes/kadence/assets/css/src/_media.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_media.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K!LD^WM+','N\rdYG| +v2&','',0,'?'),('A7\'C#wSs','wp-admin/css/about.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/about.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?EZb\"U','[lJZ(\0qڢGu}v','',0,'?'),('AZ҈%B\niK','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php',0,'r3ؠQ(u','r3ؠQ(u','qMP!)𹟳%ӱy','',0,'?'),('GMAO~S','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DelayJSLists/APIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DelayJSLists/APIClient.php',0,'O\0-XNԁ6','O\0-XNԁ6','dG<tVCHG@eD>Z<<','',0,'?'),('YpVpC','wp-content/themes/kadence/template-parts/header/mobile-navigation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%{*YE','PT*W\'N©ӳiǉ^','',0,'?'),('`hqQm$]%7= 6','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64Encoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64Encoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i:C','\rarkEcgG\ZB0\r.(','',0,'?'),('d;¦w8X{S1','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/NativeResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/NativeResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dM\"adh\0p','?Pm8e|^n>AbRGWG\'kS','',0,'?'),('lXwB*XW','wp-content/plugins/wordfence/images/sort_asc_disabled.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oɧ*X9e','v\Z|5.YX Z鹁Ź','',0,'?'),('p\rso4d','wp-includes/Requests/src/Exception/Http/Status400.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status400.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GlC\Z }*b\n9]','|-;[e6U*|DC3','',0,'?'),('xҌTtGO','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TuskInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TuskInstaller.php',0,'=oʕItG','=oʕItG','ݐd&n)-mf\\|%i֞','',0,'?'),('Ɇ8pŻѵV','wp-content/plugins/wordfence/lib/wfActivityReport.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfActivityReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y1~\0aC2','(Υ:CԽ6P6cfaCu','',0,'?'),('ɇG7xXII','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PortoInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PortoInstaller.php',0,'ibYW}R','ibYW}R','rĄ1驅Gw~\Z:ּr:u','',0,'?'),('ɇTq@@wCR','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php',0,'m#!؜6%ڕ','m#!؜6%ڕ','\")P>L~|+xjb./','',0,'?'),('Ɏ\rTfg/9','wp-content/plugins/wp-rocket/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/autoload.php',0,'\r!\"HN7[(N','\r!\"HN7[(N',':ŤEVvgXr_L\'\Z}','',0,'?'),('ɘ\nLZ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ψ3M(݋OJ','lN!Te]\nq\0A','',0,'?'),('ɡʧ~.)k','wp-admin/includes/class-custom-background.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$G83o9F5','!j.V&[&:z׿ضM\rP','',0,'?'),('ɧM:E(6%=','wp-content/plugins/wordpress-seo/admin/class-database-proxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-database-proxy.php',0,'Qy\Z2LV\re','Qy\Z2LV\re','qey\0A\'.%	B9','',0,'?'),('ɲt85TM\'l','wp-content/themes/twentytwentyfour/patterns/footer-centered-logo-nav.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/footer-centered-logo-nav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cO5	;ܐW','|7	_OJ\n899桇cQ=Od','',0,'?'),('ɴ((kz?','wp-content/plugins/wp-rocket/inc/Engine/Common/Database/Queries/AbstractQuery.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Database/Queries/AbstractQuery.php',0,' @~(',' @~(','tFeuIxʤa(ʞ#@<4','',0,'?'),('ɹf~\rU̧IlL','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MetadataBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MetadataBag.php',0,'](B[CZ;\n#','](B[CZ;\n#','k9+=A*i5g}','',0,'?'),('~`ѕ\n4','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php',0,'gj: &g','gj: &g','QU:]6TꄌI+p,L\n','',0,'?'),('Xp{;(l\'u','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MessageConverter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MessageConverter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EpB;(\\','^;v}Ҕ*I(?܆Q	2HO\rPl','',0,'?'),('2Die','wp-admin/css/l10n.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/l10n.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĸP)|qr','wppS\"D.oMOmO\'baǋ0','',0,'?'),('P> =0\\','wp-content/plugins/duplicate-post/src/handlers/save-post-handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/save-post-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e]Kj~֭t??eL','@\Z9Lzu\02a16		ŕ1i','',0,'?'),('jWTp','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php',0,'(mD0E3V','(mD0E3V','ht3.s8$O@գ6','',0,'?'),('?\"&-j','wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!yNќz','ݩ\0$\no[\\q͞rv\"/','',0,'?'),('rтJL','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/BodySummarizerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/BodySummarizerInterface.php',0,'qvBbf','qvBbf','I7_qpm#bδGޤJt','',0,'?'),('h&\'s','wp-includes/blocks/search/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pW\n瘁Ӈ','E*i	ųh1NK[','',0,'?'),('\0FfT!UBt','wp-content/plugins/wp-rocket/inc/Engine/Admin/Deactivation/DeactivationIntent.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Deactivation/DeactivationIntent.php',0,'vuxTq','vuxTq','φ-xϬm	~|P4\\]$\r','',0,'?'),(' tdrlPj','wp-includes/css/dist/widgets/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/widgets/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʪl\'9tMd	*9','H:i95?VK\0`e\"^!&u(','',0,'?'),('\"RvN]Б','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߔoI/7','<@W3&ߝcn6Bp$7','',0,'?'),('%q8}ϝ','wp-content/plugins/duplicate-post/vendor/composer/platform_check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';W@Sx','I7ɭ\'<x]tm-%','',0,'?'),('(q4P}5Ozk','wp-admin/js/inline-edit-tax.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/inline-edit-tax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_hA?D','LZV(j0~\Z3u)ztef\nO','',0,'?'),('0C4uu\'`/;ȁ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php',0,'7nZT~+G>','7nZT~+G>','S2y\nܣ>#[\'ggA<ٟf','',0,'?'),('5/̔kwʯ','wp-includes/interactivity-api/interactivity-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/interactivity-api/interactivity-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ws5^_M',';l\0y[\"x$[\Zq~','',0,'?'),(';.sPs 7','wp-content/themes/kadence/inc/dashboard/react/dash-controls.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/dash-controls.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i%:sY',')螑cG0~&?f\0`#!','',0,'?'),('@>A-\0yE\"!#','wp-content/plugins/wordpress-seo/src/initializers/disable-core-sitemaps.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/disable-core-sitemaps.php',0,'Qh	sTBmӕ','Qh	sTBmӕ','lF]KN@]Ct,)P','',0,'?'),('D06mq','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?oɰw1Z,.','&r&Ps$(\Zy	5Y7X','',0,'?'),('Rш޿0','wp-admin/css/themes.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"m!vn#%I','`Daf܀ty\0W\n\n','',0,'?'),('^n.@\"X.F','wp-content/themes/kadence/inc/components/elementor_pro/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/elementor_pro/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uĻ<W^;F','B\Z!~jgq9ZJg[-@O','',0,'?'),('d{<0,o*','wp-content/plugins/wordpress-seo/src/analytics/application/to-be-cleaned-indexables-collector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/application/to-be-cleaned-indexables-collector.php',0,'vVtJID','vVtJID','=櫜 ć:G\Zꢡ2Kj)*','',0,'?'),('g]7h7;%','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ghlG','ӽkWT}mژz{5ɐ$%iI\\','',0,'?'),('hFM<@`%q-','wp-admin/includes/class-wp-filesystem-direct.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-direct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WĦ5iLb','Czɔ] +I7&4MhF7mN9[','',0,'?'),('r{\Zk\"k','wp-admin/css/site-health-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-health-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iEqVAd`{','!IL1]naTU;Ģ=DErz','',0,'?'),('rއ}rYY','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#1ehU66&',',OM`o=Srۖkۂ@','',0,'?'),('xjP!cx','wp-admin/plugin-install.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^vP}s5Kk','J\rˊUP|_=-6k5','',0,'?'),('{&HN`b5IЌE','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/RefreshToken.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/RefreshToken.php',0,'fUcB<\\5M7','fUcB<\\5M7','%ZeM>g*%j˿','',0,'?'),('ʁ	i:gy','wp-includes/blocks/search/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z嘻S','-Nk\",[[j_t -XO','',0,'?'),('ʊ2%+a_LF','wp-includes/blocks/columns/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lίFH}x/','x8mcnBC4\0ԉ3I','',0,'?'),('ʊN5i*p','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WordPressInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WordPressInstaller.php',0,'tB\"+z','tB\"+z','NV#K H:Be4\nd\'	(}','',0,'?'),('ʎ\"Q\0c:','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_HoursField.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_HoursField.php',0,'/1\\5U֖?','/1\\5U֖?','>bb$x݌	ǒHwK.~7ui','',0,'?'),('ʎ+pڌ+0;','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/UnstructuredHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/UnstructuredHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']FW\nZ%|\r,^L','˩s[fpSD\n(YK &L?','',0,'?'),('ʔB *','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ApiController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ApiController.php',0,'iXU]JÝ\" W','iXU]JÝ\" W','*064!w[anT','',0,'?'),('ʚl7*E\r5d','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/AdminPageSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/AdminPageSubscriber.php',0,'Tn7','Tn7',' mTsDQ.I}\'/','',0,'?'),('ʝ-_&>8','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Container.php',0,'A2EkUӄξ','A2EkUӄξ','K>?V!!Bc=y\"4െ!','',0,'?'),('ʥjRT_&','wp-content/themes/kadence/inc/customizer/options/lifter-course-archive-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-course-archive-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\n','rd\rjN*I5\\36[3','',0,'?'),('ʭ\\9\nzx=','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/UnlimitedElements.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/UnlimitedElements.php',0,'<l};n&','<l};n&','Pzsvdr{чbۼ3?\n\r','',0,'?'),('ʭ9p7+l*','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-taxonomy-settings-importing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-taxonomy-settings-importing-action.php',0,'.t6~oB','.t6~oB','J,\0׸\0L] u%','',0,'?'),('ʳܽ.,;U\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php',0,'=b\r	|','=b\r	|','[>ܵ9E\r_ylmƙ.\"#7Ķ~','',0,'?'),('ʵsBs*xn	k','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsibles-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsibles-section.php',0,'@gg:զ_`,W ','@gg:զ_`,W ','Tqյ.K4?2twILeIN','',0,'?'),('o<HZQ~ن','wp-includes/script-modules.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/script-modules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P8On}e','>?>[wWAJHU','',0,'?'),('(0k|O','wp-content/themes/kadence/tribe/events/single-event-blocks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tribe/events/single-event-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ný%Y','6;T34kcwo_ys','',0,'?'),('ۨV<;@P','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.php',0,'Zϙ.t3Ϳ;K','Zϙ.t3Ϳ;K','Jo?<j(/\r5oxF$3m!T','',0,'?'),('	b8[y','wp-includes/js/wp-emoji-release.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji-release.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vQ+%ݵi=','d?kOs?͢RY2%\"=\"ı\n','',0,'?'),('㱛 V9{b','wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Jnw8z2swa','u<O8Be\'Ob\0yPJx7I','',0,'?'),('\'7&ydC','wp-content/plugins/kadence-blocks/dist/icons.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/icons.js',0,'THKhk','THKhk','MU0Ye/߱|hD6qz','',0,'?'),('O忯uRc[j','wp-includes/sodium_compat/namespaced/Core/HSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[clru	Сu^','6p\'`+*[AG4^6Ŋ%C','',0,'?'),('\n#DC','wp-content/plugins/kadence-blocks/includes/assets/js/kb-off-canvas-trigger.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-off-canvas-trigger.min.js',0,'\'?7ͨ','\'?7ͨ','\ZvoD׮L]\'Rf','',0,'?'),('2֯[?;s;','wp-content/themes/kadence/inc/customizer/options/general-typography-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-typography-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{vF','u:EU =\rfξy(r','',0,'?'),('n7J\Zq11','wp-includes/fonts/class-wp-font-collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-collection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%iqD\\uF %','yU̮v灛 \rQ\0]\\\\/','',0,'?'),('!#I|F','wp-includes/js/tinymce/plugins/directionality/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/directionality/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\"X	& )=ʀ$','&[@5(cvLYI6B;)-','',0,'?'),('\'I?1~4M','wp-content/plugins/all-in-one-wp-migration/constants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vzCyr|CF^Ҽ','_|{ePۘޔ0Q!\\\ZۦCu;-Z','',0,'?'),('\'?ζűuʥXk','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_namespaces.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"@~Ǵ[@A','ЬKql:~ҝ٤Bu$*Vz)','',0,'?'),('.,-m_T','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/ParameterizedHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/ParameterizedHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gsvm.\ZQY','3(\"騙+-wi\0\'(\"W','',0,'?'),('5Vx,$>7dk','wp-includes/sodium_compat/namespaced/Core/X25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڸb9M','F/\'M%9}@fW>S*m','',0,'?'),('6<C﮿V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P{`Xs\r(L','k6W*t!;=\"&\0u[4ar','',0,'?'),('AWnq:^ʌO','wp-content/plugins/duplicate-post/src/ui/metabox.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/metabox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')CL\\','є:*FLފhF|\0]','',0,'?'),('F@ePZɉrtJ','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-off-canvas-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-off-canvas-block.php',0,'_&7\n,hc','_&7\n,hc','C	ejQ7%ir\"l/L#','',0,'?'),('U<?Y,ػ(','wp-admin/js/svg-painter.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/svg-painter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\hC<\0 CT','q},P/Lanp\Zr+#','',0,'?'),('U}B	Js','wp-includes/class-wp-object-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-object-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BIѪu','ĵ]FCL3W՞E','',0,'?'),('Wthp庛EZ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php',0,'әavx','әavx','yx -|*bvUkrg,N/','',0,'?'),('X8\n0','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/LoadInitialSitemap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/LoadInitialSitemap.php',0,'KC6&DFn','KC6&DFn','i\'swR\0YjQ8&O9','',0,'?'),('Z#.Sq\Zy>','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/DnsCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/DnsCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f6G=qu','q	^JTY\\Ɩ&!','',0,'?'),('\\}QeN-N\r','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-checkbox-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-checkbox-block.php',0,'b:~V?~2o','b:~V?~2o','d}Ny8ulEcy֊Sߴ1ޣ','',0,'?'),('cڮq\".|0>','wp-content/plugins/wordfence/images/icons/check-response.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/check-response.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NF','82f)o>5iq)e=G}','',0,'?'),('dkߺ>~:','wp-content/themes/kadence/assets/css/src/zoom-recipe-card.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/zoom-recipe-card.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','үl{>g/','\'Z?4<DH*L_Mj\'- \'','',0,'?'),('q8]C֔','wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y-ȮqQx','˯I@~£0s;\\*vwG','',0,'?'),('s#yhbE','wp-content/plugins/wordpress-seo/src/exceptions/missing-method.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/missing-method.php',0,'Ou\\M,!','Ou\\M,!','C4Х ]{(\"fI8F´0z[G@66','',0,'?'),('s񿉧}riS','wp-includes/block-supports/shadow.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/shadow.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ś7gC<','ʨ\Z̜Q\\#h\'&i¦SP','',0,'?'),('y66lMC','wp-content/plugins/wordfence/views/waf/firewall-status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/firewall-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S4,=tP','-.\\zo֑ʈgmPPR.$','',0,'?'),('|92呱ZMy','wp-content/themes/kadence/inc/customizer/options/header-builder-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-builder-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zri_9g~','7Y)&Ǐ{x\08X86','',0,'?'),('|G$k','wp-includes/js/dist/vendor/wp-polyfill-url.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-url.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>dKP\'IC38','kz:_sDpxe%J	ST_','',0,'?'),('}Ua&gli)!','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q{fD%Vm','o!jhoPd6$޻;D\rN','',0,'?'),('ˆ]g1{[	pe','wp-includes/blocks/video/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.q/Q?m\"q','CD@bϹ>aEΐŐ','',0,'?'),('ˍG䯀oeo','wp-includes/js/shortcode.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@P}SΊ','yaeaKR\0%xyuy↢','',0,'?'),('˓^Q|bxf^','wp-content/plugins/wordpress-seo/src/presenters/url-list-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/url-list-presenter.php',0,'ØeyIT|%x','ØeyIT|%x','U-MŇ٠Gjv0>%','',0,'?'),('ˤԐ{%k#f','wp-includes/js/mediaelement/wp-playlist.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-playlist.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nWizT֯','۔<Qy\\Bu|͏fC|d','',0,'?'),('˦ޕچU','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Collection.php',0,'u0S+M','u0S+M','hډXɶbu	GIu:X!AX','',0,'?'),('ˬ4 F<\\&','wp-content/plugins/wp-rocket/inc/Engine/CDN/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/Subscriber.php',0,'C BoYx','C BoYx','V8O$\0ڱ2/`\n9IM@z','',0,'?'),('˭2`m\nW&','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/deprecation-contracts/function.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/deprecation-contracts/function.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z5k-U+R.','`65)gDi!A1vZx','',0,'?'),('ˮa\ZyABoKl','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/s2member.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/s2member.php',0,'yb#EK','yb#EK','>1mz:XxM_t4F2\"H<','',0,'?'),('˯2EgWҪz','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/InvalidArgumentException.php',0,'g|%Wsg~a0\r)','g|%Wsg~a0\r)','UJ߆R/k|kI~pSm','',0,'?'),('˴ڮnDlm9','wp-content/plugins/wordpress-seo/src/user-meta/user-interface/additional-contactmethods-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/user-interface/additional-contactmethods-integration.php',0,']oo	',']oo	','Q@IR\n\rp!Y7=絅','',0,'?'),('˸nQ=pF+*D~]5','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php',0,'|{!C\Z.','|{!C\Z.','yZ<U\"笒Y)\'\ntiFN','',0,'?'),('˹@\nFܦ=','wp-content/plugins/kadence-pro/dist/elements/src/kadence-pro-element-post-admin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/src/kadence-pro-element-post-admin.js',0,'g9;r','g9;r','u&nb13ky|/b(o','',0,'?'),('˺L2CwLCf>\'.','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R^[+/v\'1','ÆǠav,u,3d;r\0I','',0,'?'),('˺\"n5b԰{pw','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php',0,'\n+ɃA/jz','\n+ɃA/jz','Z\ZL~ctX#yx3{j\nI0O','',0,'?'),('˻a)DD','wp-content/themes/kadence/inc/customizer/options/footer-widget6-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget6-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\'eYذ	>v߯','	H6Mza08~?CH6[~r','',0,'?'),('ǝQ_yd+','wp-includes/sodium_compat/src/Core/XChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XU iU0ll9c','_v$U7_*\r?+^≾Ā','',0,'?'),('ҭPS\0W+z','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTCSSSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTCSSSubscriber.php',0,'%\"\r?Xi','%\"\r?Xi','~<k\ZSe\\QOT}`qrπ','',0,'?'),('N\0ܹt','wp-includes/js/jquery/ui/spinner.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/spinner.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rOQ1','-7@i?҆83~gXV{','',0,'?'),('YAm<S9','wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/dialog-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/dialog-integration.php',0,'*\'`\\Kad','*\'`\\Kad','Tg5co1d7nfҪjӞ','',0,'?'),('5Y.i\'','wp-includes/Requests/src/Hooks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\"e|j',';g}hfט>SC8\Z1','',0,'?'),('p4La','wp-content/plugins/kadence-blocks/dist/blocks-identity.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-identity.asset.php',0,'\n<','\n<','h3uQܼYuFxOsxeC>S','',0,'?'),('dIKƹv\Z0','wp-content/plugins/wordpress-seo/admin/views/user-profile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/user-profile.php',0,'3wPχI~K','3wPχI~K','Ƶ}Ŏ$Ҭ7s:6b X_','',0,'?'),('vE,-O{','wp-includes/link-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/link-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rm|hZ+','ЙP¿hQh;pOm<(','',0,'?'),('Hkv<A','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php',0,'2)ճc%<F','2)ճc%<F','Jly-xDvpŻOEoeEޞ','',0,'?'),('S\ZLӀ<','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',0,'Ź2e0','Ź2e0','ų \"3kxڶ ~rh','',0,'?'),('!LT3ix','wp-admin/update-core.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a@]|mtEO','\rgtG,헽rr* zm\r4L','',0,'?'),('/}¦kAZj','wp-includes/blocks/query-pagination/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~udN','$ԡixr:`kGr?Չ','',0,'?'),('021?!8R','wp-content/plugins/wordpress-seo/packages/js/images/indexables_2_left_bubble_optm.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/indexables_2_left_bubble_optm.svg',0,'sjhK2(]@`qQ','sjhK2(]@`qQ','FR+)R|^<yUI9u~FG','',0,'?'),('4>{nu^-','wp-includes/Requests/src/Exception/Http/Status404.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I!ĂfZpL.re','rcc5\Z:^KYR|','',0,'?'),('6͙GB{s','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ValidationException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ValidationException.php',0,'1͚p}2Mn','1͚p}2Mn','K<:^:Z4~7(NY\n0y','',0,'?'),('=`:x~','wp-includes/blocks/site-logo/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yt۩BX','|8(\':={;AZ`\']Eh	','',0,'?'),('Eq\r\n(s͓','wp-content/plugins/kadence-blocks-pro/dist/blocks-postgrid.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-postgrid.js',0,'uDZÐ&!;','uDZÐ&!;','sQ=ļhVhMWlG3r;,E\"R߫','',0,'?'),('HےjPf\Zx','wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamiclist.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamiclist.js',0,'W_#6\r\'m`','W_#6\r\'m`',',t]E$E5%\ZOa','',0,'?'),('MzbKϝXt','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\"|s^W','`BxˡڢUDa4Dy','',0,'?'),('MTq&[?>칊\n','wp-admin/css/colors/ectoplasm/colors.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ab.3^DSo','xn0 #G.즡!!i','',0,'?'),('MzŭY','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GJu;QZ6','\\MUKhQwCiVJ\'','',0,'?'),('VڮMjӁ','wp-includes/js/plupload/license.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u&\nTIz+','\0v1sN>cID٦I0-','',0,'?'),('a$:4j\0\ZX','wp-includes/blocks/comment-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f*Yβ.W','OzՕVLQ6?{aKqk','',0,'?'),('q+QH̥','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KnownInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KnownInstaller.php',0,'oĐ>V}','oĐ>V}','K=DR<A={G(z0','',0,'?'),('inj/r','wp-includes/js/dist/i18n.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/i18n.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\ZO|71','Fx&wu\rIMi$ϾZ`G','',0,'?'),('́ԑAHa]\':','wp-includes/blocks/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C9Wx2%͜N','#}nա@Sr|wX:WXDABhǹ','',0,'?'),('̅{愵qI6','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriResolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriResolver.php',0,'\0[u!WD','\0[u!WD','<D[*waP2E1ihU_(:o~','',0,'?'),('̋qB3aY-','wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0`\'}(bA#','c,Bp280j7}hp-宆','',0,'?'),('̐VZڀk','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/CHANGELOG.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pΈ<\\RKah','k%wtG\'4Ԅj\rb\r\Z','',0,'?'),('̙~Ȍî+byȁ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǆ簕۹3w','ʣ>yqөf_#QuW\"^?','',0,'?'),('̣\Z%L','wp-content/plugins/wp-rocket/assets/js/lazyload-css.js.min.map','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-css.js.min.map',0,'69^nFW','69^nFW','Ͳ ͘M{!iO,nײ','',0,'?'),('̪_R_.	>c','wp-content/themes/kadence/inc/customizer/options/lifter-lesson-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-lesson-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6f\"F\'I*4','(_. ة2:+I%.e','',0,'?'),('̸-]\Zn','wp-includes/sodium_compat/src/Core/Ristretto255.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k9wZ~ \'',' z`WN?]ӟB,KJlW>k','',0,'?'),('̹x<4@YN0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Stream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Stream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JE~O;J','j\"Ǟ֙vm\"zu$@˙c*x','',0,'?'),('̾<:RP','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/AllInOneSEOPack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/AllInOneSEOPack.php',0,'0!ěC江\r҃','0!ěC江\r҃','<8\\)viX>={0s','',0,'?'),('\rdp\rO','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/modal.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tSҎ3\\þ-','Tl^L!ID\"Ԩ8\'Gׅ2','',0,'?'),('Ê5ff;,G!\'\'-','wp-admin/css/colors/ocean/colors.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mF8\n8prX\0;9t%','%`EmjxZk!	\r4','',0,'?'),('\";+\rxuw','wp-includes/js/mediaelement/renderers/vimeo.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/renderers/vimeo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?~si6G/','{w-\rzFv_\\wf','',0,'?'),('];)!X6','wp-content/plugins/shortpixel-image-optimiser/res/img/fastpixel-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/fastpixel-logo.svg',0,'\Z`m93]\"D','\Z`m93]\"D','\rU{N 0hgnN;f','',0,'?'),('ǊEvc,صyS^','wp-includes/images/crystal/license.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']LciGfQ\r','vpmc6Y~\",!VEXll\"z','',0,'?'),('̶@ q0\rh5_','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/SignalHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/SignalHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']]h\\὆2','+n\0$r>V5%(LQQ>Ra','',0,'?'),('U6Yb)O','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6kB E\n\Z','gS8pS.	Qy .%ËiA','',0,'?'),('W\"ݺuET','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/news-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/news-seo.php',0,'\0))	(#6:~6','\0))	(#6:~6','Jߚ<ԣ/ĳ藸','',0,'?'),('ӹa)I','wp-content/plugins/duplicate-post/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ү`{l{','5$kze77a5򬸊Ka;','',0,'?'),('M\\U2x]{8','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromiseInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromiseInterface.php',0,'dbsHhOWuş','dbsHhOWuş','h>U:p\ZТ.EP]wc&|','',0,'?'),('\rZ\0J=\Znk','wp-content/plugins/wordpress-seo/admin/menu/class-base-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-base-menu.php',0,'D	LFXʁ}I','D	LFXʁ}I','[ac\\Ԭ~(=\\tvd','',0,'?'),('߮*Pq[','wp-content/plugins/wordpress-seo/vendor/composer/InstalledVersions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/InstalledVersions.php',0,'r8h`j&t	\r\Z','r8h`j&t	\r\Z','VBH84O%/bЁbJB}!nv7','',0,'?'),('2>:mz=	6٣;','wp-includes/blocks/comment-edit-link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-edit-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';[\Zz','O5%W/j(_\n4\ZtQq@n','',0,'?'),('pj֛`w','wp-admin/css/customize-controls-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-controls-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sU%z\n*yj','\nlF~-QXŞHijo','',0,'?'),('dlPOI','wp-admin/network.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'$zktׄ','vwhKTc-\Z#j)5[\\','',0,'?'),(')\0e_5=','wp-content/plugins/wordfence/lib/diffResult.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/diffResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gQ f7F','ҎE؊>^!j\0Oca^','',0,'?'),('4g43!B\\ꟑ','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-readability.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-readability.php',0,'jfK_eRݜs','jfK_eRݜs','w2)##FV}ք ','',0,'?'),('I[í\\T','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php',0,'4[ZS@M','4[ZS@M','4bn{COTZ9L_0','',0,'?'),('K=Xa:\'5','wp-includes/sodium_compat/src/Crypto.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-p\0Ecbc','\"̘L!{rDnPz^XjLk','',0,'?'),('S lc#','wp-content/plugins/kadence-blocks/includes/assets/js/kb-header-block.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-header-block.min.js',0,'lkOhMan;','lkOhMan;','ta&ohFQ;*','',0,'?'),('^&`RyJ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aj@DTت+9w','q4q+@gsvz,~F麦\r$a','',0,'?'),('dyɘ3','wp-content/plugins/wordpress-seo/src/integrations/front-end/open-graph-oembed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/open-graph-oembed.php',0,'v0R8Y','v0R8Y','mK#=P\rhCŐr(0S]P-E+2','',0,'?'),('iX¥Rvp','wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional-heading.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional-heading.php',0,'(1!>CN ','(1!>CN ','}*hA޷b(WN޾9r72]','',0,'?'),('mL0N\"T~b','wp-includes/theme-compat/footer-embed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/footer-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z.+j','iDAJψ;v,gc%	^#','',0,'?'),('w9=_\"h%v','wp-admin/css/install-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/install-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\\uK=οv)\n','GD%ATK>5;E','',0,'?'),('x6X)\n&Rg','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lines.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lines.php',0,'f8amz','f8amz','2jX+=M΁_Ge?A','',0,'?'),('x\ZșqS','wp-content/themes/kadence/inc/customizer/react/src/color-link/color-link-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/color-link/color-link-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wሡ+o7M<','_7*FTE/PqCҦe;','',0,'?'),('͂J_Dӫ','wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional.php',0,'Rd3n','Rd3n','FEW\0߷id~PlcV24R','',0,'?'),('͎3עJynĀM','wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nq*ZF)2','&4\"\rQjXmN\"?Po\\?','',0,'?'),('͓Y36lY','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v<hp','!/[I+\rG Dխ7=\'','',0,'?'),('ͪuowsFCG[c','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kS\ZgNA\0g','ΤNBS>]K8,	Ή!Ɋ\nH','',0,'?'),('ͭ5b[?jU','wp-content/themes/kadence/inc/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ƭd','BUC~&j7V{K^+Q','',0,'?'),('Ͷjʃఱ-','wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d(ɪ\'G^e[1','sXrə{r.RX\0qΙ@','',0,'?'),('ͽ3=OG|~','wp-includes/SimplePie/Credit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Credit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.6K>.L','rٴ@c@{RCGd^>>E\Z','',0,'?'),('Ϳf_[ͥ\n5?=Z','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-tabs-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-tabs-block.php',0,'n\"!\\i\\EG4W','n\"!\\i\\EG4W',',iQIt`WޓQr','',0,'?'),('_P=O)','wp-includes/Requests/src/Exception/Http/Status402.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status402.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y 3NJC@wC','R.-	hkVHP\'jx`*','',0,'?'),('yUqhŝ','wp-content/plugins/wordpress-seo/inc/class-wpseo-rank.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-rank.php',0,'LDS ؚmG:','LDS ؚmG:','ogS?J(NjQs	Y^','',0,'?'),('Ӈ_@pb&','wp-content/plugins/kadence-blocks-pro/includes/form/kbp-form-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/kbp-form-actions.php',0,'Zd!vAm)*','Zd!vAm)*','P!ل3Y-\"1!DO1r','',0,'?'),('3F<8','wp-includes/js/underscore.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/underscore.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ie<̓f449','Vޗè_=V~ UWKOC\r','',0,'?'),('Ljf*VEe','wp-content/plugins/wp-rocket/views/settings/enable-google-fonts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/enable-google-fonts.php',0,'wk#sڰ@y4HI','wk#sڰ@y4HI','s`)29G\Za~aPm	:o','',0,'?'),('S>sU)H','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y$NXll','[-v5<M\n+Bu.,5g','',0,'?'),('E\rvϭЅ+1','wp-includes/l10n/class-wp-translation-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translation-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o6[/\n[','JU(⁍$\Z[fza/','',0,'?'),('j(g~jU#','wp-admin/includes/class-wp-filesystem-ssh2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-ssh2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\ZL2}9','ܟp\0$t%Օ䭥%cPǵ̝','',0,'?'),('?@[\r+}K','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ecommerce/BigCommerce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ecommerce/BigCommerce.php',0,'U\0d<UjZ=O','U\0d<UjZ=O','w-YL27o{ja^{qy','',0,'?'),('u臉Qp0t','wp-content/plugins/wordpress-seo/src/routes/indexing-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/indexing-route.php',0,'Я8q7|','Я8q7|','KgbN-ib(R)chR','',0,'?'),(' ,\'y~l\\F','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Queue/Queue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Queue/Queue.php',0,'AܽuJOcON','AܽuJOcON','CEgRDL׃a;','',0,'?'),('$ƠA;4[','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/RuntimeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/RuntimeException.php',0,'*.ns\Z','*.ns\Z','zl1A%\r~SA8As\nM','',0,'?'),('%r&I+k`>','wp-content/plugins/wordpress-seo/src/exceptions/indexable/indexable-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/indexable-exception.php',0,'X@e-X8.T','X@e-X8.T','Loۥ>?B̫fRۉ\'@','',0,'?'),('(F-\n^$','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/Resources/stubs/JsonException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/Resources/stubs/JsonException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cgᬽ\Z^{a','mq5zug-r)nT[','',0,'?'),('(*ľ&Sp','wp-content/plugins/all-in-one-wp-migration/deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wQr6\"\npn2','*UwQTIԷnF)H?g\'','',0,'?'),('Cڄ[#!VB%','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php',0,']\'}&nu: ',']\'}&nu: ','7b7󰧯KN1u\\H\0ǰڰ','',0,'?'),('JԖo[c`\n','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/wps-hide-login.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/wps-hide-login.php',0,'onrtȻ\r;','onrtȻ\r;','<M	k=m\0@ (7ͅ6!ˠ','',0,'?'),('_)-]ˌkO	','wp-includes/ID3/module.tag.apetag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.tag.apetag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d@O	%/f3G','K\')1+++!.*({.[X','',0,'?'),('l/<UZA','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ЈHn0\rv','<iqótIx8+IٍW;\'','',0,'?'),('qݙ\\DO>ջ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⹩y>>b?','a\r.#|oۙ(-Z','',0,'?'),('|f,2T	','wp-admin/term.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a2ױwSF.',')iCH358lB{Bfg','',0,'?'),('}H*s>GY\r-','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/ProcessorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/ProcessorInterface.php',0,'.-ƚ˸7WJ','.-ƚ˸7WJ','桓UiK_83]Vi~t2Z','',0,'?'),('΀-G*D1','wp-content/plugins/wordpress-seo/src/memoizers/meta-tags-context-memoizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/memoizers/meta-tags-context-memoizer.php',0,'@ze,noL','@ze,noL','\'~U:;Eq\0Exb\0j','',0,'?'),('΅_ٚh(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php',0,'YOu:f4u','YOu:f4u','3*aå\np%Xȯp͂_','',0,'?'),('Ε1\ṋso','wp-content/themes/kadence/inc/customizer/options/footer-builder-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-builder-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$QXe7d&Yac','ź0\Z*_hѹUF\\./>','',0,'?'),('ΝP|ڒ\\o','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' w^]緣M','ZEO7(nYh˨','',0,'?'),('ΤoZ3(\n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceProviderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceProviderInterface.php',0,'n9rPZ','n9rPZ','׆Ll>Ɖ\'ozsI$bǣ','',0,'?'),('αZ	iIȏ','wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HKWwB^','d\rW:|[\Z!c9q]LH\\F','',0,'?'),('γy\06ϛ\0^	=@','wp-includes/blocks/post-navigation-link/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cbr:','A!Dg$;~ِoP;{','',0,'?'),('γ\nYaw.','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/alpharetta-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/alpharetta-georgia/index-mobile-https.html',0,'0kkoTrc','0kkoTrc','Kb]C܃\0Q}[a.(\n~C','',0,'?'),('œϔ=#6','wp-admin/images/post-formats32.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/post-formats32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY~O{+_LkE;','k<8._DKG[5e-I(0wh','',0,'?'),('5F,Yښ.1.','wp-content/plugins/wordpress-seo/images/alert-warning-icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/alert-warning-icon.svg',0,'WH}理Al~','WH}理Al~','2̯%S=t؈n=Wc','',0,'?'),('	\0E>̈','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/autoload-classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/autoload-classmap.php',0,'b5\"vӗ	','b5\"vӗ	','A lᵧE5`E&#7Pz','',0,'?'),('\'Zݦ\Z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e[n*0`O','s\r\0繶X!tҦ9','',0,'?'),('dYtG<y̻','wp-content/plugins/shortpixel-image-optimiser/class/Controller/CacheController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/CacheController.php',0,'ȌQ$X','ȌQ$X','lᨆ\r֙nJ#KL5ΙGA','',0,'?'),('\nP','wp-includes/blocks/quote/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')A̿<:>N','O/\n/G\"s΁RȌwe','',0,'?'),(',@Q','wp-content/plugins/wordfence/views/common/indeterminate-progress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/indeterminate-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\"sg4\\(8','@Zn\"ξ~QՔ8sP\073','',0,'?'),('ru{++.P','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/b8&Q','a\09aEI?QN{?/r+̳ү2%','',0,'?'),('\n\00{','wp-content/plugins/wordpress-seo/src/helpers/post-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/post-helper.php',0,'=}\\\'U<}M$','=}\\\'U<}M$','֑>)W0mؼ(g8.','',0,'?'),('\rF\ZmѼ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php',0,'WbcQ\"SR','WbcQ\"SR','G%IZ)\rq\\?K2s@&','',0,'?'),('$ojJAиIβ','wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/empty-property-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/empty-property-exception.php',0,'7T<u/t','7T<u/t','\\$} g)ni3̃ѡ؁<`','',0,'?'),('-+emu\"x','wp-admin/css/colors/sunrise/colors.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$]t]je','m	4%ٟH3<PMix2&bf','',0,'?'),('0%0\nU`p\n`','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-modal-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-modal-block.php',0,'ߦ4~W','ߦ4~W','|7OtfMkVc8G;~','',0,'?'),('14TU5h','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestStack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestStack.php',0,'Qcs!H','Qcs!H','ø\"E0acW2	PM#x','',0,'?'),('266#	S[h(\\','wp-includes/css/dist/block-library/common.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BOxGⓗ;a','\\ ]w_&h}-oy?czc','',0,'?'),('70a$`K\\7','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/tec.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/tec.php',0,'@C5щ^\ZN','@C5щ^\ZN','&?ﯪx4PXV)JC6L','',0,'?'),('9\"Pm1%r.^','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Query.php',0,'ņ\\z:ٰҭPu','ņ\\z:ٰҭPu','Q:[Jy_їcV','',0,'?'),('<[pPT7b&i','wp-includes/js/dist/interactivity.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lڰb +gN','/NYA-Ruj>Fu@X','',0,'?'),('_q ^<8:	','wp-admin/css/colors/modern/colors.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jɰ>0g','\')53)֯y(+^','',0,'?'),('c8ڲ$n','wp-content/plugins/wordpress-seo/images/woo_plugin_assistant.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/woo_plugin_assistant.svg',0,'FR>9h','FR>9h','O饡)q8{*ܵQ`','',0,'?'),('emK7gau','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/pagely.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/pagely.php',0,'*ݝOu','*ݝOu','^MIHcӑ5kAW(%','',0,'?'),('g]|v@','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ҁv>m','pT$Ԭifsn2=>:1ly','',0,'?'),('n\nѺ\"iEzaY','wp-content/plugins/wordpress-seo/src/exceptions/forbidden-property-mutation-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/forbidden-property-mutation-exception.php',0,'~$o<E%[','~$o<E%[','BJhr;`\'ɱjRexl','',0,'?'),('s\'eX=@nJ\'','wp-content/plugins/wp-rocket/inc/Engine/Cache/WPCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/WPCache.php',0,'\nx\r','\nx\r','fʨ8G|=KLE/*','',0,'?'),('uF^GE+c','wp-admin/network/freedoms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u6|tJ41','B;M7߃[9</','',0,'?'),('=,-]F','wp-content/themes/kadence/page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8mCbrwRȘ','N\'\'\ZS1ae\rDʰ','',0,'?'),('πtGȩD','wp-includes/js/tinymce/plugins/image/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/image/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\n4\\0=','QvSI>;41%rf$@p\\j','',0,'?'),('ϊ=XbBz\' ','wp-includes/js/jquery/ui/effect-explode.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-explode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%VznY','p^vF#9s=ⷸ@F$','',0,'?'),('ϊYw׹EG','wp-includes/blocks/group/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3jCOѺ}`xݰ','GCf0S\"hsp4YuR\Z$xqO','',0,'?'),('Ϛ\"jy^','wp-includes/js/dist/blob.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/blob.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~fٹ]C<4','nƢ5gimH+f)|4krh$','',0,'?'),('ϝ%.^=)C\0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_k.V3Y-','S]C׌/q%OJzz(','',0,'?'),('Ϩ\0*-1/e9χBR4','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/marietta-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/marietta-georgia/index-mobile-https.html',0,'Ev.<Y8mRf^','Ev.<Y8mRf^','zU|ʷy\Z󭴐lQZC9','',0,'?'),('ϯ^~tųLɴ','wp-content/plugins/wp-rocket/views/settings/fields/rocket-cdn.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/rocket-cdn.php',0,'B䲿l.hJ','B䲿l.hJ','ssᑾCQUH]7`$88','',0,'?'),('ϯ	?\r#Ǥ]t','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dwG$I\'','KV%WZ+\ri?A]]h|UH','',0,'?'),('ϴ/G+9)kY','wp-content/plugins/wordpress-seo/src/elementor/infrastructure/request-post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/elementor/infrastructure/request-post.php',0,'jڢk\0:\0','jڢk\0:\0','I\ZZ<2jHd~ŗ(m','',0,'?'),('BٟsF:\"','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(QTB)f','LFMmɀE_2 Tme\r','',0,'?'),('HԹfk','wp-includes/js/tinymce/wp-tinymce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/wp-tinymce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1_H0US@h','_ؕN͞1*ǜ','',0,'?'),('ǚKBupI]Yx','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/CHANGELOG.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PV4iy','ZFJG)%pDPH;(Vg','',0,'?'),('MЛϣ~&$','wp-content/plugins/wordpress-seo/src/presenters/open-graph/url-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/url-presenter.php',0,'SKboڮY_','SKboڮY_','z~\n없NN!ϡd','',0,'?'),('~׿q8','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/ApiConverter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/ApiConverter.php',0,'i¬ba','i¬ba','xW퉯%k\'Lb7!x\0iIQ愈j','',0,'?'),('֎6b9a#s+W','wp-content/plugins/wordpress-seo/admin/class-admin-asset-seo-location.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-seo-location.php',0,'ZyP902','ZyP902','\rwY;O\'l/7GKF','',0,'?'),('yKv.\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>_3Nw#','ǥmZz*,=:\n-3|!','',0,'?'),('ݙP(O\'Ee','wp-includes/js/jquery/ui/effect.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v&?>\r]	f','F:4:^qv+u@]Fb!\n[5','',0,'?'),('ݚy.\0؜i','wp-content/plugins/wordpress-seo/admin/class-admin-user-profile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-user-profile.php',0,'n=,m]qbĎ','n=,m]qbĎ',')0]̼kvVm`bRn','',0,'?'),('S<Cէ6g)','wp-includes/Requests/src/Exception/Http/Status408.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status408.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L]pæ֊K','|g+}պIwyTlfO\rOd','',0,'?'),('鋭{^MU*_','wp-includes/js/twemoji.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/twemoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&kĊXN','%=tuplL+W.y{q\n','',0,'?'),('<˷uQ','wp-content/plugins/wordpress-seo/js/dist/used-keywords-assessment.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/used-keywords-assessment.js',0,'X gugJ','X gugJ','N?)dD$z[mٚv	K','',0,'?'),('\\T@SO|m','wp-includes/blocks/audio/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Μ?	h','\0[ވDxeRS{7MzM[ѧ','',0,'?'),('@AO=	yA','wp-includes/class-wp-paused-extensions-storage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-paused-extensions-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O܆Lu:J',',8kNf\Zi}:T(>\r7','',0,'?'),('\0L%E','wp-content/plugins/wordfence/js/jquery.colorbox.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery.colorbox.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(O0%69e3j','{L#\r]\ngL8P,@Ir,{ ','',0,'?'),(']mٲ	▭','wp-content/plugins/wordfence/vendor/composer/installed.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MX\"ƷU]\\','*5œ,VuC*_o1\nPC\rF','',0,'?'),('gs)݅','wp-includes/blocks/latest-posts/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O>ލ36SI.','\\3\rC2u]@~`d<hzYc#\n:','',0,'?'),('	wp,','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/Update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/Update.php',0,'8s-&\'b~7p','8s-&\'b~7p','C@bZLi3b-$jaD\Z,|/','',0,'?'),('ݧ\nXF%@','wp-content/themes/kadence/inc/meta/class-theme-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/class-theme-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	6K͌as-f','VԷ,*{c(FY&tUɻ.','',0,'?'),('%#t4x','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yW0{XnZ0','\0AVRXȕ~d^/)@R','',0,'?'),('%횹lT','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/TextPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/TextPart.php',0,'p[7Vx6','p[7Vx6','ʺ:k^J͟J/','',0,'?'),(',gXa1;jg}J','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Regex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Regex.php',0,'GI̐֍|~','GI̐֍|~','P*gGBdXB\Z^}Ӛq','',0,'?'),('2y4aC)ٹ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php',0,'9J','9J','/k>*n7cQb.ӑKht','',0,'?'),('5,*?\rpI','wp-content/themes/kadence/tutor/single/course/enrolled/content-lead-info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/single/course/enrolled/content-lead-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x+üe1QP','՛2ЌB:1?]J8xc\riR[gO','',0,'?'),('>6bYAUF.','wp-includes/blocks/archives.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fQn,we',']aj.=ZpѓhFY','',0,'?'),('>slWD7M','wp-includes/bookmark-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/bookmark-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xU@ a','VvZꢏ2(MpU{`K6^c','',0,'?'),('RcG\' =\0ލ','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':#$3','7K92q]V3gsZ','',0,'?'),('T@C9%i','wp-content/plugins/wordpress-seo/src/editors/framework/cornerstone-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/cornerstone-content.php',0,'n~eAh!!','n~eAh!!','V9b\'?J$9A>.T&xk','',0,'?'),('^%҉͟e҈茒','wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-item.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-item.php',0,'C,\rD)	\r','C,\rD)	\r','C#̕ynbV^X	HbD0E1','',0,'?'),('acI}fȄ;','wp-content/plugins/wordpress-seo/admin/views/tool-bulk-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tool-bulk-editor.php',0,':!',':!','Ȼ٭3]J73*pZ@L','',0,'?'),('aZ*?cE\n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php',0,'vQņ,','vQņ,','\007}]\Z\rݝ+&_Ԇ','',0,'?'),('gz_Mvf~','wp-includes/css/dist/block-library/classic-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/classic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݮux2V8C','69S$B#n.0%8lF*$\"','',0,'?'),('}E?F=d','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z˖W&N','	g9Ƨt??,k?\'f]#','',0,'?'),('q/I','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҝren','A\r;1I[~h|<Ö#[<','',0,'?'),('КݸzFp','wp-content/themes/kadence/assets/css/src/sidebar.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/sidebar.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Siw*iDZ<','Nr;5\Z*d(@~^vs$H9gw','',0,'?'),('С\"T=F:Ѐ','wp-content/plugins/wordpress-seo/src/conditionals/wp-cron-enabled-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wp-cron-enabled-conditional.php',0,'f\rқƦLn[9M','f\rқƦLn[9M','%Mq:$lQWoD@A0gIރ','',0,'?'),('Т펹|@','wp-includes/images/smilies/icon_arrow.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 	J<go9:x','ncx0ĥtN޾Y2X\0!','',0,'?'),('ЬIU&=','wp-content/themes/kadence/inc/template-hooks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɛi2_vv','p~UęGXMk*b.~Bw6.8','',0,'?'),('ЮvWLѤ','wp-content/plugins/wordpress-seo/images/readability-icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/readability-icon.svg',0,'iFh0B}','iFh0B}','W\n߁왹7`r{INF','',0,'?'),('/EmS~','wp-content/plugins/wordpress-seo/inc/sitemaps/class-taxonomy-sitemap-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-taxonomy-sitemap-provider.php',0,'hu\ZN_0X','hu\ZN_0X','`${(?6mexd\'©PjnژW','',0,'?'),('zճyuIN*','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/OrderByStatement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/OrderByStatement.php',0,'NY=q51','NY=q51','`1Oҕl	Dwwx4	1\"TI','',0,'?'),('.p]Z','wp-content/plugins/wordpress-seo/src/integrations/third-party/jetpack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/jetpack.php',0,'HLM]j8','HLM]j8','[lj=B[\n\"uBu[UdR>eΫ','',0,'?'),('u|=:1v','wp-includes/blocks/post-excerpt/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	<\r\'w9zR','OFsoKL*(\nb`fNXsSԚ\\S]','',0,'?'),('2[v\\)IQ','wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~/\\/0oҹ	ע\\','gZxEĴΗM&3rqclTG','',0,'?'),('^\\XPvS\\{','wp-admin/js/media-upload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media-upload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F߻V?an\r','Ea,\Z,yM/\\iQӠ\"?28','',0,'?'),('ڜb]~˃\"]','wp-content/plugins/kadence-blocks/dist/blocks-navigation-link.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-navigation-link.asset.php',0,'5$u<Ţ','5$u<Ţ','mNeSG@v$^\reMP','',0,'?'),('QrKL','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Email.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Email.php',0,'&W{5p}Pqo\'','&W{5p}Pqo\'','܊5ɋr(#)\nAk<:','',0,'?'),('#XfOѼa','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/thrive-leads.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/thrive-leads.php',0,'8z1TҨY8','8z1TҨY8',':V/Sa9Y%X{UՒZ','',0,'?'),('`~P0N6H','wp-content/plugins/wordpress-seo/inc/class-wpseo-shortlinker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-shortlinker.php',0,'ax[Tgh','ax[Tgh',']\\GvK}0C','',0,'?'),('^G甝%','wp-content/plugins/wordfence/lib/wfScanFileLink.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanFileLink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2%Ự嚃g@Ξ','\ZcBQVYNEgI%3<cvX','',0,'?'),('/DV<*m!E','wp-content/themes/kadence/inc/components/pwa/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/pwa/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dpl4AM','pzz\rgK. >	8L~35','',0,'?'),(',f','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y2eRۻI','Rws5Ǩ6ТKxi,u|','',0,'?'),('!Z&kAyX)','wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aOYc*C)%','~$;V|&8mpțh>','',0,'?'),('EU-фM:','wp-includes/blocks/more/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zud','y*C6WՏ۳w/8:t','',0,'?'),('	B~m9bnbŇ`=','wp-includes/blocks/details/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2GaF!P^','#_*%)&k;]V~zo','',0,'?'),('#$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',0,'\r%Do','\r%Do','vj\"|f*m\r1k]0\n ','',0,'?'),('#$t쀦M','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Xstore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Xstore.php',0,'q-*Ph6','q-*Ph6','c,Fn]f[R~I%WӪ','',0,'?'),('%3,ձT?GP','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Admin/Admin_Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Admin/Admin_Subscriber.php',0,'RǏi]G}L','RǏi]G}L','NWYB\ZWjEMi9}P)-<','',0,'?'),(',ENE','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php',0,'ySHE','ySHE',',.Ns:ܼD[=\rKˇp.(2-7V','',0,'?'),('2-wJ={ ','wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.min.js',0,'х#䤪B\n߰uT','х#䤪B\n߰uT','khveʛ11@)yEӟe\'\\#9H','',0,'?'),(':\nyˌ\"4','wp-includes/blocks/text-columns/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w`}N\nX','t!l`|*^0	l$C;','',0,'?'),('_\\c9mLv1','wp-includes/compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d;ZO.nJIf','LSm4*L\0rkM\nlQ','',0,'?'),('mavMvK\Z','wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 2%\\&\"P','6_]W>VXvBӾuK$ް9|]E\r','',0,'?'),('qNu\"`yf|','wp-content/themes/twentytwentyfour/assets/images/art-gallery.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/art-gallery.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݺ75N\n8u','rŉ{^o2g]ghjբgPתYq','',0,'?'),('uRlt\"','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7֊i[L9ƁH	','߹{8(Ïat\0Cn3Qڤ\nl?$y','',0,'?'),('с°)&T','wp-content/plugins/wordpress-seo/admin/views/paper-collapsible.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/paper-collapsible.php',0,'fRA&','fRA&',',e,\r$l!!fvGx\0\0$.<','',0,'?'),('уhy','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-custom-icons-admin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-custom-icons-admin.min.js',0,'vd\ZnM	wS?','vd\ZnM	wS?','>e;HUVU$$kn0Ht$','',0,'?'),('ч2n?F\nP','wp-content/themes/kadence/template-parts/header/navigation-2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/navigation-2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0.\\5','1|ˁQUWծ\nϙLZ','',0,'?'),('эڬxV&TZxjw','wp-includes/blocks/footnotes/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Qfn3','li+!)f%%u!Ye4\'','',0,'?'),('яHn6zK\"H','wp-content/plugins/duplicate-post/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Li`','q3%:aSQUәe','',0,'?'),('ѕnz,5RTjS','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l.(KpQ','ٍ$rb=phxK5]8QRjn4','',0,'?'),('ћXClBȆ,','wp-includes/blocks/query/view.min.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/view.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5UHĠ\n','˭w\0tzwF7ǢXΞSu#t','',0,'?'),('ћu¨oa\08_','wp-content/themes/kadence/inc/dashboard/class-theme-dashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/class-theme-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[|JHW§x)','>DVYuf؂zuj','',0,'?'),('ѠW`td\0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0tə]L9','7Υ\"r@\r#bh>\rE','',0,'?'),('ѥ$v;X**','wp-content/themes/kadence/inc/customizer/react/src/background/circular-option-picker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/circular-option-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i~bUQC[[','Y߯m7zVB]@0]}	','',0,'?'),('Ѧž7\nh\'','wp-content/themes/kadence/inc/class-local-gfonts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/class-local-gfonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!X4[d?As','0\ZZ#>)T~N>?pF7','',0,'?'),('Ѷ\"<9޺ZXmǕ','wp-includes/class-wp-theme-json-schema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme-json-schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|amo11;g	',',ұ)%}~\ZBQ\Za^u#	3','',0,'?'),('8*so%nu!s','wp-content/themes/kadence/assets/js/src/gutenberg-notice.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/gutenberg-notice.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q?_4+tt5#','}	cOMQ\0+=}/B!ĂWZ','',0,'?'),('m#.iC6Q','wp-content/plugins/kadence-pro/dist/elements/post-select-rest-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/post-select-rest-controller.php',0,'$\0:Fӷ۔','$\0:Fӷ۔','\'l)TZmZooJenn\08','',0,'?'),('УDMyk','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/LiteralArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/LiteralArgument.php',0,'(ˈ`Ri','(ˈ`Ri','(f̏YS\r8)e^w1Hf<yX3D','',0,'?'),('F+&','wp-content/themes/kadence/template-parts/content/archive_header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/archive_header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-XPb?Cl','¿S֢sBj4FmBkz1','',0,'?'),('_V#Bt','wp-content/wflogs/config-transient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/config-transient.php',0,'d\ZLNZnG','d\ZLNZnG','4\'d8ƺN¬Ia`j','',0,'?'),(')\rW蹣<O','wp-content/plugins/wordpress-seo/src/generators/breadcrumbs-generator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/breadcrumbs-generator.php',0,'N=s=ܡ:.','N=s=ܡ:.','4j!$JR0s4qWB۱4','',0,'?'),('P /<y|.&H','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/CommonResponseTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/CommonResponseTrait.php',0,'O:\nQ;ΰHc','O:\nQ;ΰHc','ik9jpj{Ǜ4rW|{','',0,'?'),('\0LXqG\r%]}M','wp-content/plugins/kadence-blocks/includes/assets/js/slick.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/slick.min.js',0,'7`4⊰*tѰ','7`4⊰*tѰ',':k8WS]z8K;{;/]\0','',0,'?'),('Jh|0`ZpE','wp-admin/user-edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӈX)S+','}s._MLn򿞁\0d\rl}Ei&Hk','',0,'?'),('\09i6x','wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-indexing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-indexing-action.php',0,'=@qusZ','=@qusZ','ePMssK=t\n,{W0Ƣt','',0,'?'),('Y:R|nJ','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/GuardedPropertyTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/GuardedPropertyTrait.php',0,'V*KS*^(}','V*KS*^(}','$.A^j\n3n^_LS','',0,'?'),('C6WWVa{P','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/adbario/php-dot-notation/src/Dot.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/adbario/php-dot-notation/src/Dot.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' >2%\01','?%6˕lx[ӗQ5fԌzD','',0,'?'),(' 	{\\,6A$','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php',0,'1*HID','1*HID','Z,vXCZ4\\O37XP$Z','',0,'?'),('.JQ\0J`zy','wp-content/themes/kadence/assets/images/icons/credit-cards/laser.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/laser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\8ջh','hHΐb;<]VĤEmK','',0,'?'),('5#b[jcNg?','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php',0,'g#i2','g#i2','m(PO)qwGA;k','',0,'?'),('7[*wJ\nn>','wp-includes/js/dist/redux-routine.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/redux-routine.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\r)0Qq','Y3I5=y/=\\<q','',0,'?'),('8s鎗߹Oh','wp-includes/js/dist/vendor/regenerator-runtime.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/regenerator-runtime.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"xa?J','pfcEg09f\'f[OUKTM','',0,'?'),('<vADh\n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Value.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Value.php',0,'UңCq(alZz%c','UңCq(alZz%c','apkx<@Nf:XY4I`','',0,'?'),('T9EbtE','wp-content/themes/kadence/assets/css/src/_reset.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_reset.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':yi%\\38y','zMmzC>SO\\','',0,'?'),('ZnUt$ \\2','wp-content/plugins/kadence-blocks-pro/class-kadence-blocks-pro.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/class-kadence-blocks-pro.php',0,'tkؒ(@2핺','tkؒ(@2핺','	k%C,^F4|z>x!','',0,'?'),('h<i+P6@','wp-content/plugins/wp-rocket/assets/img/bandwidth.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/bandwidth.svg',0,'X[EK&','X[EK&',' NFgH?j[ml`','',0,'?'),('ji \nT槿\r','wp-includes/blocks/post-featured-image.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IqZ}0','NV@	ƪЪ %g^YR}Nb>Q','',0,'?'),('n\Z7Й','wp-content/plugins/kadence-blocks/dist/blocks-tabs.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-tabs.js',0,'z|n_?o~','z|n_?o~','5\Z֐IyV.,}|B4','',0,'?'),('҇fr^č','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Exceptions/NestingException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Exceptions/NestingException.php',0,'W\ZjZ','W\ZjZ','DF4	tWM*\\I8ÅbmV','',0,'?'),('Ҍ!q>Y','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerInterface.php',0,'d-80b','d-80b','9o!FsupA_\Zdac]Kz1','',0,'?'),('ґdZYD\'c','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/Canary.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/Canary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N?&BnoU','h\"_u-@zOȂ^)τ}^','',0,'?'),('Җ6M֦5wH','wp-content/plugins/wordfence/views/options/option-text.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kߟ*׉k+;8','7M$<rO9GjEyQ*+3','',0,'?'),('ҚUd79y\'','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/MetaTable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/MetaTable.php',0,'[Qeȫ\nq	W6w','[Qeȫ\nq	W6w','RD\r	IVɧsٓ\"BUJ9\"','',0,'?'),('Ҟǟ	Ks','wp-includes/images/icon-pointer-flag-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/icon-pointer-flag-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2b&Zr','4Bȥ\'x+chҠVn5I>j','',0,'?'),('ҟ_SbK\\ 7S','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php',0,'7CXz/Z\0H','7CXz/Z\0H','UԚ<-&H\'ӯjyA\nl;','',0,'?'),('ң/Iu.K`/{','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MimeType.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MimeType.php',0,'g3{Y%','g3{Y%','P\Z0W/(cDKc4','',0,'?'),('Ҫk}E','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-attachment-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-attachment-watcher.php',0,'ԉT@+','ԉT@+','s֑)Nfo--)Y{̮','',0,'?'),('Ҫ*H\n;t','wp-admin/includes/ajax-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/ajax-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ot¤j#CX','#I7jm\0E5W*96','',0,'?'),('Ҭw^a<','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/NativeHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/NativeHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','* <a!	#','ky86xeM&k͒pq$PJ~7','',0,'?'),('ҭ_VlKg!p1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J3X#[ϊPq','f1`H7)dy>O\\.Ãm[ĝ','',0,'?'),('ҲE5|ѵCd闼','wp-admin/options-reading.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-reading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l`Ju\n>~','N^fdbCT]$/','',0,'?'),('Ҷ,nN2D/M','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N_d]\'Ї%5Y','Hz!#ﴒbS-9;1','',0,'?'),('ҽ4-$WTtiz','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/TestHttpServer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/TestHttpServer.php',0,'{5Bi.w','{5Bi.w','uébqNٸ:=5el;c\0t','',0,'?'),('Πd2p_E;','wp-content/plugins/wordpress-seo/src/editors/framework/seo/description-data-provider-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/description-data-provider-interface.php',0,'	궾g|','	궾g|','W/i4ݓziۗ\nGVѢ','',0,'?'),('ҦQQG\"','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/BadRequestException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/BadRequestException.php',0,'7sSAvUT','7sSAvUT','tl[ِ9Y#ԫgAfwys','',0,'?'),('Lt593u^)','wp-admin/images/comment-grey-bubble-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/comment-grey-bubble-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TYŝ2s,\rm','DxT-wN	P{','',0,'?'),('lI\r,B8','wp-includes/blocks/quote/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fm/x%rka','YSYOOc1tjxRTB','',0,'?'),('c)x;iSƌ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uWDZ*','k(x:K2hP+qZ ?D%z!;ɥ','',0,'?'),('AXZ=','wp-includes/Requests/src/Ssl.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Ssl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tvbuض:|','ċ^Ȩ瞅KFc\"Wd \0V֜,eb(H3,','',0,'?'),('w]cIwȰH','wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rm\n8+(^M','ФpݺkWB-.ѩ8=X+`jfSR','',0,'?'),('f\0s.9׆x<','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Paths.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Paths.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uVl\'O-4o0s','##<ɍ~s-6!_','',0,'?'),('JJLfj-','wp-content/plugins/wp-rocket/inc/classes/dependencies/wp-media/background-processing/wp-background-process.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/dependencies/wp-media/background-processing/wp-background-process.php',0,'%!Qr}Orȹ\r','%!Qr}Orȹ\r','\Z)a=Iﮮ+5#|o -6%','',0,'?'),('(EhLf|~','wp-includes/blocks/details/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2GaF!P^','#_*%)&k;]V~zo','',0,'?'),('DwIjN\"ŤU','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Parser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8sVu H8','e]|_9~JsoN ԌW>:','',0,'?'),('E#lL_&ܪ','wp-admin/images/arrows.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v$>>Y','YW(N32U;<.iDd!','',0,'?'),('H %9lԅE','wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z|JS','i\\JkFt\\\0xRehe&j','',0,'?'),('Mp\0`knP','wp-includes/template-canvas.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/template-canvas.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\\Kg5vmx','=\0Ć}}8\rq>&','',0,'?'),('Un/|r@ڪ','wp-content/wflogs/config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/config.php',0,'v/ۙ3邩;','v/ۙ3邩;','3FpT3+\n`=WpRFD}ن6f|','',0,'?'),('jsw2pqS','wp-content/plugins/wordfence/lib/wfIssues.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5}]!G','7ŨHWMBʛMiE\0oUTB','',0,'?'),('s}Ƕ)TV','wp-includes/blocks/nextpage/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oXVዏM','2?#{eOz_Q\"z}','',0,'?'),('{ڭd3TXy7;','wp-includes/css/admin-bar-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/admin-bar-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2/QT1','oNc2|RTRdh','',0,'?'),('}eC!*','wp-includes/js/codemirror/codemirror.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/codemirror.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	fh;fq','u*Q6Ƅdvdȇ_\0','',0,'?'),('Ӎ-wy9,','wp-content/plugins/wordpress-seo/admin/class-premium-upsell-admin-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-premium-upsell-admin-block.php',0,'	Ivy','	Ivy','պ֦9[+4pW]8Q','',0,'?'),('ӕ?Z!ܘe','wp-content/plugins/userway-accessibility-widget/includes/notifications.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k/i\0gў',';p1IsX$lB{4{','',0,'?'),('ӕ(P3Q8su','wp-content/themes/kadence/inc/template-functions/footer-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/footer-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f8wxոdC','oZVySfxɨ=i#q','',0,'?'),('ӕ\nt0','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mpGaBNX>(','%-*Ψ6Fi\rWϹM׽WI:vD','',0,'?'),('ӗd]0j\Z^\"','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/title-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/title-data-provider.php',0,'tcMYKy\"','tcMYKy\"','3fI;![uS݃NL (R#V/_','',0,'?'),('ӞgjBHv3\r.','wp-content/themes/kadence/assets/css/src/editor/zoom-recipe-editor-styles.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/editor/zoom-recipe-editor-styles.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BJ!^j}','lҁ׽ފufy]@SX+YUF?BRC','',0,'?'),('ӟmy+\nf:','wp-includes/js/wp-api.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-api.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɶ	@\\RT3','<bЍS8\"fU-ЛrM~L','',0,'?'),('ӤǕLFZQ','wp-includes/css/dist/block-library/common-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\\me_,8','K\0C6\\`V','',0,'?'),('ӷ#','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k\n{YOg','K/5\'%\\2[./\"\"޸7','',0,'?'),('ӻ̸۬Za(;','wp-content/plugins/wordpress-seo/src/integrations/third-party/wincher-publish.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/wincher-publish.php',0,'D.6\\$F','D.6\\$F','>A bůq鸃ISUIUǖ.}','',0,'?'),('эo(Httx.','wp-includes/blocks/table/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i@ڵfO','upX;`qR碩J0\Z bY','',0,'?'),('HK~rJ]-K','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php',0,'\njjƣ','\njjƣ','1XYޖkI3p>[\nke×(d0','',0,'?'),('@aO\"h','wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner-ocd-disabled.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner-ocd-disabled.php',0,'aEy]S8ȭ','aEy]S8ȭ','Rf}W>:+N}\'V\"','',0,'?'),('\\;^=','wp-content/plugins/kadence-pro/build/ace-html.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/ace-html.js',0,'[4Ze01.o!','[4Ze01.o!','tvlܥ2\\0n.-T7=V','',0,'?'),('5ĺ%','wp-includes/blocks/buttons/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬>uY*','/-(y$g2','',0,'?'),('5#ț&','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/JobProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/JobProcessor.php',0,')P1s>',')P1s>','QL\r8EឫD#f@@az=1m','',0,'?'),('.\")U\rǸ=}]','wp-content/plugins/wordpress-seo/src/integrations/breadcrumbs-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/breadcrumbs-integration.php',0,'\nЈo\rk,','\nЈo\rk,','i*{He#ͥ^','',0,'?'),('z_<2$ʤ>>jG','wp-content/plugins/wp-rocket/views/settings/fields/rocket-addon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/rocket-addon.php',0,'|qͫvRΩ+','|qͫvRΩ+','#ʢ	.ܠb\\UGnȡ\n)','',0,'?'),('6ׇſ','wp-content/themes/kadence/inc/template-functions/single-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/single-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O/%5&j\\','EvRcQ\\|6DG8fy>','',0,'?'),('GI\Zأ8','wp-content/plugins/wordpress-seo/src/integrations/admin/workouts-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/workouts-integration.php',0,'j?qSޤh\"R5','j?qSޤh\"R5','t~Ld2/5\rӷ\n','',0,'?'),('HAG|\"','wp-includes/blocks/nextpage/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Rc0t F0','XkW4xYĘH7ya','',0,'?'),('I7߇S2&','wp-admin/erase-personal-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/erase-personal-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	eFѰ,6<Dr6','IdgTSѫVEw;bv;w','',0,'?'),('MMFg,v','wp-content/plugins/kadence-blocks/includes/assets/images/masks/smile-beam.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/smile-beam.svg',0,'<]u\n]\ZO)պ','<]u\n]\ZO)պ','鉘KGMcY?4Cb/B7','',0,'?'),('?H4V\n','wp-includes/blocks/pullquote/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i}}OaX`','5h3D	!У^Iun+/_u','',0,'?'),('	kJ? @x','wp-includes/blocks/categories/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GG3-\Z#kv','kQ/\0v;ļ[Xv!!TS','',0,'?'),('LX>elc?p','wp-content/themes/kadence/assets/images/icons/credit-cards/discover.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/discover.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߾CLFé$[','~8.\\iM9۰h','',0,'?'),('0*W','wp-content/plugins/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/index.php',0,'gD,V=\\bP','gD,V=\\bP','k~	UH\ZxPĀ<;X','',0,'?'),('\r\n8n}','wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z-W5hdC','Y+GQ{u(V\0V$0\'','',0,'?'),('D9/{3 ','wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oݱ*S	JQ',';%}F2:o>ia5','',0,'?'),('B{aec\'*','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php',0,'a9rop1q','a9rop1q','>ua3\nf5Oh(Bn}hҋXO','',0,'?'),('A?j&l\\tQ|','wp-includes/Requests/src/Capability.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Capability.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dzϤw{','g$_;^>mΔ-dp+g','',0,'?'),('//.\0llO(','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Promise.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Promise.php',0,'ZUsq83{g','ZUsq83{g','Q=:5{7\'F#<yF','',0,'?'),('L%}-ðZ\"і#','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/EightBitContentEncoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/EightBitContentEncoder.php',0,'щ{>Lf,','щ{>Lf,','-.d5Z]~Ν)V;<Ls','',0,'?'),('].ooȦM-n	','wp-admin/images/align-none-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-none-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XC)[-4','ߧ&QQp\"~\Z8S׊YS`','',0,'?'),('fH\n','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-media.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-media.js',0,'O~\04(F.\Z','O~\04(F.\Z','pY,qU0XL-xap','',0,'?'),('jVQ*t','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ItopInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ItopInstaller.php',0,'v\\wxzy','v\\wxzy','>\"-U\"˾ACI&','',0,'?'),('mMmy`B_Oߕ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php',0,'_ק3\rCos','_ק3\rCos','X>rX?eG9HqI\'}','',0,'?'),('y8WN9VӨ','wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uԖoE!2','iBSxp%h`.xbsɫ','',0,'?'),('Ԑ$`Ϻ،?[d','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/RuntimeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/RuntimeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',hdYVK~2','(,bی-4\0G;{r$cȮeHT~J\r','',0,'?'),('Ԙ{o._/W','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Eݨ&V','}SԮjb9p\'xweP','',0,'?'),('ԛatr','wp-includes/blocks/video/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?*>\" Z8|','CF5oe峔	W6QT|3','',0,'?'),('Ԝd&;0;}h','wp-includes/blocks/columns/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lίFH}x/','x8mcnBC4\0ԉ3I','',0,'?'),('ԻqE{n','wp-includes/blocks/verse/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eˣRR|','j/+H+׈z*c*aae','',0,'?'),('*ܦg/','wp-content/plugins/wordpress-seo/src/deprecated/admin/class-customizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/admin/class-customizer.php',0,'/sM0>qRf','/sM0>qRf','Z1Zf,-.>,@D٣IZj','',0,'?'),('\"*]D94F)','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php',0,'K\\Ŵp','K\\Ŵp','\0*txNHZWfy8	ޮ','',0,'?'),('Ȇp]4Lq','wp-includes/css/admin-bar.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/admin-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','誼jo~H','V^oBD(JWodxY{36','',0,'?'),('pS`]T]D','wp-includes/css/dashicons.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dashicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',J/nR~','qԡcql5/3$˝TGW','',0,'?'),('̆lҘ\\4,C-m','wp-includes/css/dist/block-library/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.X6dN','rWMz& GqBC\Z*+?ҍ','',0,'?'),('̟:HCbg*I;','wp-content/plugins/wordpress-seo/src/helpers/language-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/language-helper.php',0,'?a4b,bwH','?a4b,bwH','{).,$wSٜ0o⫖)','',0,'?'),('g{-T`< ','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǻwI3\rdgU',':{e[C[6GjOD\Z','',0,'?'),('7~;-7@j','wp-content/plugins/wp-rocket/assets/img/imagify-info.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/imagify-info.svg',0,'\'\ZY?\'\n','\'\ZY?\'\n','cҏc| x{֎lu^x-','',0,'?'),('/qRR|','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~zf8m',';!us`\'4bp8sblRZ{y','',0,'?'),('00?I-?96','wp-content/plugins/shortpixel-image-optimiser/class/Model/ResponseModel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/ResponseModel.php',0,'2R','2R','WKBWAU(k4,@/=Mw΋','',0,'?'),('\rbd/ӡ;\Z#x','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/EachPromise.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/EachPromise.php',0,'w\'PrQ%f ','w\'PrQ%f ','ZyݨeCݎQSniEtCJ','',0,'?'),('DX','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OsclassInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OsclassInstaller.php',0,'In','In','}4GGxu3h\r	&,i&g7_=B0\n','',0,'?'),('X$aB^','wp-admin/js/user-suggest.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/user-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6|3sJ:+IV','ǌ0BȠ|qO	F>g#','',0,'?'),('vf*&ξ','wp-includes/Requests/src/Exception/Http/Status409.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rZD6$[$','G973Uɬ}O@,','',0,'?'),(' edWt<XD','wp-content/plugins/wp-rocket/inc/classes/admin/class-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/admin/class-options.php',0,'\\zNdʲ','\\zNdʲ','-7祴9Af㨏t]V^','',0,'?'),('1ިM','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/OffsetStatement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/OffsetStatement.php',0,']\'kLD',']\'kLD','R@vzr].Fzbw\"2υ\\','',0,'?'),('2_R[Y','wp-includes/blocks/code/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\ZQ響',' $\r$gI`@+9\rmf','',0,'?'),('8зSA5\Z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/File.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J4?W+^)',']Cƙ\n-AV`-J','',0,'?'),('BImS967X','wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"UE\"Eb;Dn','ԱrgCXJU1։Ya,1','',0,'?'),('BgLհ5ǩ9','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U	','l7Hى-5\"EZ˖.SP','',0,'?'),('IZWq=P-','wp-content/plugins/duplicate-post/src/admin/options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','je\r}tӈs^gv','TeÁw6W~Gڬ2@5ƗÙX','',0,'?'),('RH>KkSV5Z','wp-content/themes/kadence/template-parts/content/entry_header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Xq.>XL','*Di\nnRq*~(?bTfʕ|','',0,'?'),('gֿm㋣I','wp-includes/js/dist/data.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kl廫d','mzE^>DpKa|ZX','',0,'?'),('iVp&ſ].܉','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/API/Client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/API/Client.php',0,' \"*xL/q',' \"*xL/q','@FNb\Z\r\'u_uc]\\','',0,'?'),('k\"O$N)$','wp-content/plugins/wordpress-seo/src/helpers/primary-term-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/primary-term-helper.php',0,'~Vnq/1','~Vnq/1','r8æeYk5an\Z[U,T^^e1','',0,'?'),('psZZ#N7e','wp-includes/css/dist/block-editor/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k*U=8','e s,;~~D\0-u,|','',0,'?'),('s,?hiM','wp-content/plugins/wordpress-seo/src/values/robots/directive.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/robots/directive.php',0,'ݓaS<q_','ݓaS<q_','3!/x<5(Ҋ~&zKR\0','',0,'?'),('ՁWjugzQ\Z','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-buttons-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-buttons-block.php',0,'.\\6OfGs','.\\6OfGs','J|P\"iL{/p2K	kc-@.','',0,'?'),('ՕL+7>$ɡ4]','wp-includes/blocks/post-comments-form/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','쮛9\n.ha=8','b?C=P\nEHgpE','',0,'?'),('՗:\0-ŋl','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php',0,'^ƣd$G^.','^ƣd$G^.','\0 :@Pg~GSX,:ؒᰛW`t3','',0,'?'),('բ-(fS2','wp-content/plugins/kadence-blocks/includes/assets/images/masks/circle.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/circle.svg',0,'\'(r bcNX','\'(r bcNX','\n3h92`2W%w,Ead4','',0,'?'),('է\0=-M̷W)B8','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ResponseFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ResponseFactoryInterface.php',0,'M,ra?s0EV\r','M,ra?s0EV\r','pn-F036U׾n@','',0,'?'),('ը?m>*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',𹟀R!','p\n&o*0!RRo~/v+9','',0,'?'),('շK;-/U7f','wp-includes/class-wp-block-parser-frame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-parser-frame.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O}%	kXi!m','}!\':]JeXSZ躸+yc','',0,'?'),('պmjD<','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceProviderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?cWҥ','+Q./ZՋĵ;','',0,'?'),('ջKe>7;()','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/LiteSpeed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/LiteSpeed.php',0,'\0rVuzz[','\0rVuzz[','yqU	[~ms%QA','',0,'?'),('ս\n}M','wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.twentytwenty.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.twentytwenty.min.js',0,'^o?j0MSf-|','^o?j0MSf-|',',C7uVr12Þ^.$ӯc','',0,'?'),('Ȩr%Mè','wp-includes/blocks/file/view.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/view.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Cxf]\\_0Oi','o\'|F7]+R+x4=yYvz0R7','',0,'?'),('*q;߮~L','wp-content/plugins/wp-rocket/views/deactivation-intent/form.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/deactivation-intent/form.php',0,'U2`Ϝ','U2`Ϝ','`i״4dK[\rK','',0,'?'),('Undf','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';*aЅ','#:Gs1z:٤`0=','',0,'?'),('v)+/~Z%iV','wp-admin/images/dashboard-background.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/dashboard-background.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[H\rkgyjKOM','c.K.h|M=ʀ0RϭD','',0,'?'),('uORO̪ks93','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeReader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeReader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0_MW{\r','<#{cm|^I}6yiߙՄ U\0','',0,'?'),('ul=\0Æ=','wp-content/plugins/kadence-blocks-pro/dist/blocks.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks.js',0,'FI._lesX','FI._lesX','.D0IyFo>%!*:$w\"|gM','',0,'?'),('K2;<Dkub','wp-content/plugins/wordfence/lib/wfStyle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfStyle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s1_ek2R','j颎_c6323օ]Gs}.\n','',0,'?'),('- ','wp-includes/Requests/src/Exception/Http/Status403.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#YOdsCHMG7','\ZYEKqev@9n3Jy&','',0,'?'),('ͤ6\0/k','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӳ/VaW6\r','tcAt]{ N@\'y)BCL','',0,'?'),('J?,Q6','wp-includes/blocks/read-more/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','靇OWF[Gk4','H9	v\nܭB5\r`>ue','',0,'?'),('i\nUlS','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/edit-color-picker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/edit-color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','쾟*}1','mX}=Z]C_ǺI#h̻','',0,'?'),('	ARZ\Z','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-renderer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-renderer.php',0,'ڳ#c4ԍsIM','ڳ#c4ԍsIM','Tozsa\\RO뎼?vaN','',0,'?'),('Q\"0]קEL@','wp-includes/Requests/src/Utility/FilteredIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Utility/FilteredIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c׵L{$G\\i','GdOu$A$6PCnts','',0,'?'),('	_Nid1CL','wp-content/plugins/wordpress-seo/src/integrations/settings-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/settings-integration.php',0,'u}k/g','u}k/g','UziCI36\'͓','',0,'?'),('\0XI,=6','wp-content/plugins/wordfence/css/license/response-variables.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/response-variables.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('$,%ղ\n:','wp-content/plugins/kadence-blocks/includes/assets/js/admin-blocks-deregister.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/admin-blocks-deregister.min.js',0,'̈cŋ(q#','̈cŋ(q#','r6hP\'ѳzF̗','',0,'?'),('\"%$i]','wp-content/plugins/kadence-blocks/dist/blocks-tableofcontents.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-tableofcontents.js',0,'oSֽ$','oSֽ$','2w.ZǸ)f8','',0,'?'),('(hfX-\"D','wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/ImageDimensions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/ImageDimensions.php',0,'@T3ʔ][Ws^x','@T3ʔ][Ws^x','i`bcNm?4Fޝt5Le]','',0,'?'),('0\"gmUmjq','wp-content/themes/kadence/assets/images/fonts/rubik.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/rubik.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HksU\ZW$','¸4aRlϴ<uxƼ','',0,'?'),('5x=KDW','wp-content/plugins/wordpress-seo/src/presentations/indexable-term-archive-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-term-archive-presentation.php',0,'|dɢ,Z\\ ','|dɢ,Z\\ ','~KF#}	\rhR㜎\r<K','',0,'?'),('7\0Ťs','wp-content/plugins/wordpress-seo/js/dist/externals/chart.js.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/chart.js.js',0,'Rj<tj[','Rj<tj[','T[!Hv`NEx','',0,'?'),('<8;p xTG','wp-includes/css/dist/edit-widgets/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-widgets/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tR\\#HmفJFi','l\ZFɳ`Ṕuٳ\'gFQ0','',0,'?'),('A8>\"IE?Ce','wp-content/themes/kadence/template-parts/content/archive.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sƃS:.o','6T	%!5HYC.','',0,'?'),('A`Grk-/','wp-content/plugins/kadence-starter-templates/inc/resources/Traits/Image_Size_Trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Traits/Image_Size_Trait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v(2yR','oU%FOȴThG!81`','',0,'?'),('E*4̐LT)/','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_DA0T|','FÚl?J1s08ި[˞]\0','',0,'?'),('G!)?1m','wp-content/plugins/wordfence/js/wfonboarding.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfonboarding.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8x+`:.^A[)T','VpPoV:CI\\Rd','',0,'?'),('IJcr,ZJ3N܃','wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b?\\ٰYgD\rz','Od :X RU+@9','',0,'?'),('WvA/p8.Ϭ.-','wp-content/themes/kadence/inc/customizer/options/footer-navigation-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-navigation-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pmw:FcF','{ `uTvOt|q&Yi}','',0,'?'),('Xډ|8}B','wp-includes/js/tinymce/plugins/link/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/link/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\\\n]Ks\'','\Z>ISеv,qU^','',0,'?'),('Z	r!ޏf	','wp-includes/images/icon-pointer-flag.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/icon-pointer-flag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',E^j`\'','oq9a{)h}=#Tק','',0,'?'),('eƙ}ǜMWԻ-','wp-content/plugins/wordpress-seo/src/presenters/robots-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/robots-presenter.php',0,'މI_PrY','މI_PrY','XWJתoD9C407Pa Q','',0,'?'),('j#ӲX%I','wp-includes/block-supports/elements.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/elements.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\rzI2\0j',',#G7f3QM/6M*0','',0,'?'),('mዞjWBv|','wp-includes/blocks/template-part/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Jd՝<TS\\','#XQwESbz)l!uO _kϝ1','',0,'?'),('n6MNb\r>9r','wp-content/plugins/kadence-starter-templates/assets/images/kadence_logo.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/kadence_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','҄ALxG\"E',')f\'*7sNa\\TQu\\n','',0,'?'),('oҨ*Ko7{ <','wp-includes/ID3/module.audio-video.matroska.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.matroska.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FopHJ	!','whd=n=yLY<,oY-KZlm','',0,'?'),('rA]	/s+','wp-content/plugins/wordpress-seo/src/integrations/front-end/robots-txt-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/robots-txt-integration.php',0,'y}gW@Aj~','y}gW@Aj~','6@\0Zߴ~0c)','',0,'?'),('rYSxwDY˚J[','wp-includes/images/media/interactive.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R׬˂ôŉhH','{ [K\0!긽/\\lw.','',0,'?'),('u>	bM|=','wp-content/themes/kadence/assets/images/icons/credit-cards/jcb.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/jcb.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؜A~ht\"Ga','\Z\ZHF $lwz,K܄','',0,'?'),('֋8[0ʊ','wp-content/plugins/wordfence/views/waf/debug.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ANz	ܿ','ŗ5bDG!{t*\"y','',0,'?'),('֌qóX[','wp-includes/class-wp-feed-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-feed-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?LMpo','2=+Z,%|1[+Ѻ`','',0,'?'),('֛.l&D$Ϸ?','wp-includes/l10n/class-wp-translations.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\QU@e:\0H','%BTT-z/P7}zfSU','',0,'?'),('֟J+|','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/CSS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/CSS.php',0,'./ `','./ `','n*XJ¦F}xy2(ۜHT`_B^Q','',0,'?'),('֮mNGAs.','wp-content/plugins/wordpress-seo/src/generators/schema/organization.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/organization.php',0,'ެI=&.)','ެI=&.)','~mKtהH?$ey	ΨQM7v','',0,'?'),('ֶ9؞fpo3t','wp-includes/class-wp-admin-bar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+m걽gZ\n','[	l./`\"GNħE8','',0,'?'),('ֽBmO*:qz','wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader.php',0,'{0,Q6n','{0,Q6n','`sN.-ډGDT-\nt','',0,'?'),('J![W6ݧ','wp-content/plugins/wordfence/lib/IPTraf.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/IPTraf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8wVX8~$','%m򳚫-[\0:&','',0,'?'),('BWk\rZ{','wp-includes/sodium_compat/lib/ristretto255.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a3pwypo|i','$	3o383iQ\Z)[e','',0,'?'),('bV$yt','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y׌Qb5<9ʩ1','J\\XZ岶z`_҈vK)ukC4	MT:','',0,'?'),('[/lBw\0v','wp-content/plugins/wp-rocket/assets/img/play-alt.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/play-alt.svg',0,'n*ohwZKCs','n*ohwZKCs','m$2[+#l-j;','',0,'?'),('w\n:¥','wp-content/plugins/kadence-blocks/includes/assets/images/masks/heart.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/heart.svg',0,'s\nQ|#w6','s\nQ|#w6','$fr6K1fJZ','',0,'?'),('Toќ̔bg','wp-content/themes/kadence/inc/customizer/google-font-variants.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/google-font-variants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^?\nWan*','ŘHe\'Wv̒w^  |?{','',0,'?'),('\"L徑>^q','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Fr*r','.O:Xž^u㘱y ','',0,'?'),('*全χ0Q','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php',0,'یԮVl4GE','یԮVl4GE','2^Qu}6̻guI,[','',0,'?'),('\"-sp5','wp-content/plugins/wp-rocket/uninstall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/uninstall.php',0,'/do%HuwX^','/do%HuwX^','veO<byγ{!KsЗ','',0,'?'),('%ucp֖]','wp-includes/blocks/calendar/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	WXAf~DaaZ','җ;mT}&]hNdEhT','',0,'?'),(' \rXؠBd','wp-content/plugins/kadence-pro/dist/elements/elements-init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/elements-init.php',0,'v8SkOFAvR\"','v8SkOFAvR\"','@F;~PևlTP:','',0,'?'),('\"B6\nbZdF߀','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exception.php',0,'3lsuJ1a','3lsuJ1a','BmDs*^`Ԁr	lEbPu','',0,'?'),('Gȩ6\0Y','wp-admin/includes/class-wp-posts-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-posts-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Mn̱','s*Qׯ#f5bD','',0,'?'),('I	Ja~RZ','wp-admin/includes/class-wp-application-passwords-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-application-passwords-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9,٣ڸz','	z،syhT\'\Z) ','',0,'?'),('M\0c_d','wp-admin/includes/class-file-upload-upgrader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-file-upload-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ep.NGut)','&<\0nwyHqAPz|爘+,','',0,'?'),('Szus','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-css.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-css.php',0,'fj L31','fj L31','5lo]\'2F0M3HHi','',0,'?'),('XJK3F~','wp-content/plugins/wordpress-seo/admin/views/js-templates-primary-term.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/js-templates-primary-term.php',0,'=`BWT','=`BWT','C	V/ƢAZVKebkiq','',0,'?'),(']\\|\"','wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/single-ajax-add-to-cart.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/single-ajax-add-to-cart.js',0,'sdJ\'#$%','sdJ\'#$%','L5LG]K̊a)՜','',0,'?'),('fk[x \\/Y','wp-includes/js/dist/redux-routine.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/redux-routine.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z̥hJ^Qgǆ啐','\n#Rkv@71 _','',0,'?'),('m@ǑilF4k6','wp-content/plugins/wordpress-seo/src/integrations/admin/first-time-configuration-notice-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/first-time-configuration-notice-integration.php',0,'A.L,C\\(Yb','A.L,C\\(Yb','RFezpU,a؊j`=1;Y','',0,'?'),('r\r>jI$7','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/Settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/Settings.php',0,'M}`AG;ۊ','M}`AG;ۊ','uY)XG;$nfYe4p','',0,'?'),('v\"6`vyH','wp-content/plugins/wordpress-seo/src/integrations/third-party/w3-total-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/w3-total-cache.php',0,'dXE%EE','dXE%EE',',;Q]:ŭ\r{#~㯎i\\$ ','',0,'?'),('wh]á&wM','wp-includes/class-wp-network-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-network-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\nw{s)ܯ8','5ʟ]TSkv-`G)^	폗7','',0,'?'),('םXs;:\Z','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-custom-archive-settings-importing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-custom-archive-settings-importing-action.php',0,'ĭ\'<4GS','ĭ\'<4GS','ƉQ֌%>kprڱ','',0,'?'),('מj N@d','wp-includes/Requests/src/Exception/ArgumentCount.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/ArgumentCount.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','䏽$JzfDU','Vh6#EI =\r6U!\Z(','',0,'?'),('מy7mE5O_','wp-admin/js/media.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%K/^>$','<R|w&%b2Hq{f`c˞4','',0,'?'),('שc#|','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-published-time-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-published-time-presenter.php',0,'91b56x','91b56x','2R[,Z7ME,%1dBS0u','',0,'?'),('׶fx%','wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer.php',0,'=s#epŅ\rFQ','=s#epŅ\rFQ','8j$)ȏt:h|Ik҄','',0,'?'),('j0wE}®R','wp-admin/css/wp-admin.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/wp-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eUpʓHWtP!H','^E-R\'#?lemL0kU@','',0,'?'),('Pـ\\/ov','wp-includes/Requests/src/Exception/Http/Status406.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status406.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4)-Հ\0G','$+}dm<|viwr1G0','',0,'?'),('m8QLnG','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/Subscriber.php',0,'T`O%[','T`O%[','&)Y7asu\n[:>}YLnV','',0,'?'),('zߩa,6','wp-content/plugins/wp-rocket/inc/Engine/Admin/API/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/API/ServiceProvider.php',0,'Uxĉּ?\Z!(~','Uxĉּ?\Z!(~','i\0\"I\Z4|vlM4Sɹl0	M4','',0,'?'),('^u}G','wp-content/plugins/wordfence/lib/email_unlockRequest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','΁~͟ak','u\Zg$}obĄ+\r\n8','',0,'?'),('MRNa ','wp-content/plugins/wordpress-seo/admin/class-bulk-description-editor-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-bulk-description-editor-list-table.php',0,'ԅGy$&','ԅGy$&','\\S/3)nbpz춲2?Tƕ4','',0,'?'),('N{NT','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoFileException.php',0,'|~Vh}l^','|~Vh}l^','s	kKG@RdU$^bD','',0,'?'),('\ZvI:wm\'~K-','wp-includes/ID3/module.audio-video.riff.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.riff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9u7s9dG','mIlJcI93B.<K.ӖYi?)ف','',0,'?'),('4^xD','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/TagInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/TagInterface.php',0,'TY{θ\"lu','TY{θ\"lu','T<o)f%bڷ~h	.[X;GB)','',0,'?'),('#ոm46~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ForkCMSInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ForkCMSInstaller.php',0,'BĀC','BĀC','8.}r,S\"/tWdw','',0,'?'),('&Zh$Éo','wp-includes/class-json.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ްBsA*.','u8gǓ9HK2J\0,','',0,'?'),('(Ko5F','wp-content/plugins/wordpress-seo/js/dist/term-edit.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/term-edit.js',0,'x#EOZ8','x#EOZ8','Yr0z0x=tnN\"D9Ҏ','',0,'?'),('.6LXnEf','wp-content/plugins/wordpress-seo/js/dist/externals/reactHelmet.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/reactHelmet.js',0,'^X%&})@','^X%&})@','`{HȴO!\ZLnRc','',0,'?'),('8/B$8`m','wp-includes/js/imgareaselect/jquery.imgareaselect.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XN?[ƁZL\"','YE64g/<\"zq$','',0,'?'),('>P@ړFkg','wp-content/cache/wp-rocket/atlantagynecomastia.com/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/index-mobile-https.html',0,'oe nXµ','oe nXµ','.M i}[ /Z(z:@c','',0,'?'),('Ah)I\Z]GrE','wp-admin/includes/import.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-&ÞE1v5','6.)GPrcbem #jW}픇','',0,'?'),('B>1$	\0','wp-content/plugins/kadence-pro/dist/infinite-scroll/src/post-infinite-scroll.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/src/post-infinite-scroll.js',0,'.U`Z\Z-\r.','.U`Z\Z-\r.','W(,m\ZvldC5>>[U}1e','',0,'?'),('IB̠$QMyLd?','wp-content/plugins/wordpress-seo/src/integrations/alerts/webinar-promo-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/webinar-promo-notification.php',0,'Нս=)Gh','Нս=)Gh','fpH͓	F|ho<e<,3d','',0,'?'),('J=R\'t^}\n','wp-content/plugins/wordfence/images/2fa2.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/2fa2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0H','npʅG06KqJ]J','',0,'?'),('M&3\r3CMaQ{','wp-admin/images/yes.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/yes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+7܉\rqZQk','=QG9%K,\r\ZFy','',0,'?'),('T@\'L \\8','wp-content/plugins/wordpress-seo/src/values/indexables/indexable-builder-versions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/indexables/indexable-builder-versions.php',0,'}M:]n\"G','}M:]n\"G','a],]z;24wD\Z/f','',0,'?'),('Z	˕\"\\KE$','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƹsIi!s~','qbȊ@\'k[v	}','',0,'?'),('[%X<r','wp-content/plugins/wordpress-seo/src/config/migrations/20200430150130_ClearIndexableTables.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200430150130_ClearIndexableTables.php',0,'P&qKUr','P&qKUr',';C]?&EWQQ','',0,'?'),(']c27o\n','wp-content/plugins/kadence-blocks-pro/dist/blocks.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks.asset.php',0,'\"Ňɘ!MĎy','\"Ňɘ!MĎy','%$Sd򛎇X%(!,&','',0,'?'),('_<ĴµtS','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/AbstractFactory/SaasFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/AbstractFactory/SaasFactory.php',0,'6ۣқ]l','6ۣқ]l','0|M 9\r^f e22\'','',0,'?'),('b}i<_<7','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php',0,'(9	䕁~','(9	䕁~','T͵feEv\Z/IL8GQ8\'R','',0,'?'),('dMXnE{DH','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagProxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagProxy.php',0,'ҠG\r4ybR!','ҠG\r4ybR!','Й:/WˠG~o<_7u9','',0,'?'),('eǇng}.','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/weepie-cookie-allow.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/weepie-cookie-allow.php',0,'=).|$h\"','=).|$h\"','=\\k֣Ԣ-#lu,m','',0,'?'),('nޭSSqI','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-iso-post-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-iso-post-init.min.js',0,'gK]j]+^\"_','gK]j]+^\"_',' pjo2nWycuc_t~&63)]','',0,'?'),('oǣ	ףf0Y','wp-includes/SimplePie/Core.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ز3aݩ0)_S','760w8([oWK4d','',0,'?'),('v\r&X','wp-includes/js/jquery/ui/selectable.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/selectable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZBR;n+','-xax7=mY&*^ecL','',0,'?'),('xβЦA	<','wp-content/plugins/wordfence/lib/wfCrypt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CR`9|e','U͊sds9;COȤ@','',0,'?'),('yf9.)N=','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/AdminSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/AdminSubscriber.php',0,'< ̅\'FX','< ̅\'FX','`(E3#`(\nC>6Zya\nJ','',0,'?'),('ؕF:\'W|e','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php',0,'Q*Q_ȓr{aa','Q*Q_ȓr{aa','>%).ڄU1	\'!gUQ','',0,'?'),('ر-_}Zh\n\Z','wp-admin/includes/class-walker-nav-menu-edit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-walker-nav-menu-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YtS0o','N*>.<ZDs\0[m,7','',0,'?'),('زSḹ=9nl','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-query.php',0,'i\'*ǍshLN}3','i\'*ǍshLN}3',' e?*qԨot2Dԭ.5|\0','',0,'?'),('صT=QUI<XK h.	','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-multi-radio-icon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-multi-radio-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+qÿcj)','4QCEv܍r@#|Blz','',0,'?'),('	u6qh','wp-content/plugins/kadence-pro/dist/scripts-addon/scripts-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/scripts-addon/scripts-options.php',0,'2hp|<P[','2hp|<P[','>]R\rD)ELXC\\fjC0','',0,'?'),('Xz3ӌ.^%+','wp-content/plugins/wp-rocket/inc/classes/dependencies/mobiledetect/mobiledetectlib/Mobile_Detect.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/dependencies/mobiledetect/mobiledetectlib/Mobile_Detect.php',0,'=>G\"','=>G\"','i;Srϧ]s\n@-ϯuJtPt','',0,'?'),('˗ǯmB;3','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tϢnuO1','y6%d1G¸ۜB/04t;s\nA','',0,'?'),(',4R\0oI*','wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-html-bg-video.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-html-bg-video.min.js',0,'@~*q?{Am4','@~*q?{Am4','<l!pS\0,94lI}!̈','',0,'?'),('=)8{\0Zg({','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/BadResponseException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/BadResponseException.php',0,'	|,UǞIIBDxK','	|,UǞIIBDxK','6eǒ9NsSm-フ~%9LE','',0,'?'),('⅊\"Y#','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ResolvableArgumentInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ResolvableArgumentInterface.php',0,'o|d4J4py','o|d4J4py',' kZd4Aʟ\n4(K\\BT-e','',0,'?'),('ҡK%^','wp-includes/js/dist/dom-ready.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/dom-ready.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eʑ	ޡ4\\Q','i!6ѓ]sR96TM<\nln','',0,'?'),('%pg$','wp-content/themes/kadence/template-parts/content/error-500.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/error-500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^mEєbD:L>','BPe\'zn۽i韢JA}t','',0,'?'),('E,}T0-|','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/ParsedownModern.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/ParsedownModern.php',0,'o\r<	ÙA','o\r<	ÙA','GyqYyK0Iy_B{#UP','',0,'?'),(',4na*X;','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php',0,'(?\Z\rWb=s^%','(?\Z\rWb=s^%','\'iP@BO.b(Mh$','',0,'?'),('-h\n\r`ýەC/s','wp-includes/class-wp-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\\`j.','Yf\0z^:Rk_Z8UIGE`3','',0,'?'),('+v}','wp-content/themes/kadence/comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rBf!a<','Ѧ[*\'Mq֨4%Fdʅy@ze','',0,'?'),('g\"g','wp-content/cache/critical-css/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/critical-css/index.html',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('?ҞdaL7M','wp-content/themes/kadence/inc/customizer/options/tutor-course-archive-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/tutor-course-archive-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p;I#PrnOW0C',';|#\0N5ͣI#ʬ\01','',0,'?'),('#CI\ZI','wp-content/plugins/kadence-blocks/includes/resources/Cache/Block_Library_Cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Cache/Block_Library_Cache.php',0,'k|TSk 	(|\n','k|TSk 	(|\n','5V$hĖí`srmbs	c\ndC\r','',0,'?'),(',(i7:^^#','wp-includes/js/tinymce/plugins/paste/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dXz҆֫','f\0W{?qUlP֫c8','',0,'?'),('5\ZHmg2O','wp-content/themes/kadence/assets/fonts/star.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/fonts/star.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<$d\Zl','+)x=%\':ak\'ezG','',0,'?'),('6G3x{k\"','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/UploadedFile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/UploadedFile.php',0,'yآ\ZѾs','yآ\ZѾs','2_ȲψdSN9>Z','',0,'?'),('7I?v	zO','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/WhereQueryBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/WhereQueryBuilder.php',0,'%@wh:','%@wh:','iVxŷL:>?ZT4酀','',0,'?'),('J^\Z7uGk+','wp-content/plugins/wordfence/lib/wfDB.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','צxk#-Of!','P·JIK>ISBf`yYrA','',0,'?'),('O\'\'C','wp-content/plugins/wordpress-seo/src/config/migrations/20200702141921_CreateIndexableSubpagesIndex.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200702141921_CreateIndexableSubpagesIndex.php',0,'wDḯ:%Cs','wDḯ:%Cs','WWgn.&p&\no0GHI','',0,'?'),('QmSFBJ','wp-content/plugins/kadence-starter-templates/inc/resources/App.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/App.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=WM$Fg','\0&kX?\'}k3`;$','',0,'?'),('RM<60%;','wp-admin/network/contribute.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/contribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cyJߛB\0','CKdSISߪի,<,F','',0,'?'),('derDڂ.\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',0,'i$ig֦jT','i$ig֦jT','tVwꛝ)	!;ÿkz{[I','',0,'?'),('d%3Z4_+','wp-includes/css/dist/edit-post/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@S^PЯY|','3\"tKkg.(*٭5<','',0,'?'),('iglC9:','wp-content/plugins/kadence-blocks/dist/extension-stores.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-stores.asset.php',0,'ҍIL0','ҍIL0','N{ߋK3w@P8ApNr\n','',0,'?'),('k/y&G','wp-includes/images/rss-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/rss-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ya[Qrj','yS0c`\n7as#nY','',0,'?'),('lzDy1/','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-divider-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-divider-options.php',0,'N{S<l,+ߦX','N{S<l,+ߦX','\Zs=3~r2^AW-8\\\rpJ','',0,'?'),('r&V`\r䑽C','wp-content/plugins/wordpress-seo/src/builders/indexable-link-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-link-builder.php',0,'zWҁHWag','zWҁHWag','=)Y_#:JV@2','',0,'?'),('rJYΔ̳ñ','wp-content/themes/kadence/template-parts/content/entry_hero.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_hero.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*QI1uȌx','!CQڠնLu lgHk{G','',0,'?'),('t>xo,V\Z','wp-content/plugins/wordfence/modules/login-security/css/login.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/login.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZeBϖajo','_j1\\Qv4|%it9|:Fk4','',0,'?'),('v(^2!','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/AddressEncoderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/AddressEncoderInterface.php',0,'LviB}','LviB}','\'5%\"H 8աadx\r','',0,'?'),('{%=cW\r','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/webp-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/webp-interface.php',0,'˵\"EQG\\','˵\"EQG\\','`=#}{`&,\ZkXrM','',0,'?'),('وTĖhx~Dt>l','wp-includes/js/dist/compose.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/compose.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ua-kQY','X~N@:W/,t։7^e','',0,'?'),('ٗ6>$Hr*K2','wp-content/plugins/wordpress-seo/src/commands/cleanup-command.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/commands/cleanup-command.php',0,'\"3zL','\"3zL','Kuac*Х^cGlCUNq(3<O','',0,'?'),('٘\"Pܞ,','wp-content/plugins/wordfence/images/icons/ajax24.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajax24.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P','j*edoX~7&N9|L','',0,'?'),('ٱMPrh~','wp-includes/blocks/post-content/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vj~r(K~&2Js','D2kdgX|(C','',0,'?'),('ٻ*uᶜg ','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/out-of-town-patients/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/out-of-town-patients/index-https.html',0,'W07','W07','f6>)bY!-41\0JE','',0,'?'),('ٽgHvK21E^','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-focus-button.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-focus-button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','20oNߡ7','@EUa^\'UÆweXIOZ\n\rܡ','',0,'?'),('\n4@dܣ[I\0','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-abstract-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-abstract-block.php',0,'>u\Zq#2','>u\Zq#2','Vp_?~\n8rvOPpg*ƽ','',0,'?'),('܎joZ䥩Eq','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^=o4m~`','_&HSY;8Ҧ@\rJiA!#.s','',0,'?'),('7r-\Z<>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Rfc2231Encoder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Rfc2231Encoder.php',0,'*դgީkta','*դgީkta','Ie6IYܪ=s`0<\\p','',0,'?'),('!}=`*gZ=','wp-admin/network/themes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<9[rc`','^Ѹ3T@Q7eوNwEf}d','',0,'?'),('M$3w%2ͯ','wp-content/plugins/kadence-blocks-pro/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/installed.php',0,'Ǯ4bP*{','Ǯ4bP*{','#k ;tOA(\\','',0,'?'),('<G+&39l','wp-content/plugins/wordpress-seo/src/config/migrations/20171228151841_WpYoastPrimaryTerm.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20171228151841_WpYoastPrimaryTerm.php',0,'N1N`?Ռׄ','N1N`?Ռׄ','ݑwH,Qhb?Z','',0,'?'),('VBǡ\ZB\"\0','wp-includes/js/codemirror/esprima.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/esprima.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d_ Sgٛ','];%JslxFqBH\ZU8','',0,'?'),('>~!gq','wp-includes/js/tinymce/skins/lightgray/skin.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\B&pw','7>xV&v|­U& ݷ\"ǥz9jF%ѽKV','',0,'?'),('aa*\ZGu\0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php',0,'k]*#Ff2r<M','k]*#Ff2r<M',']\0lqpaK̩f׻e\\','',0,'?'),('w=ŢO&F','wp-admin/css/colors/midnight/colors.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DI0\'|`n_(','\\&5e\\kqpAnL:b','',0,'?'),(')D','wp-includes/block-i18n.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-i18n.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n!:D8','f\\tM&\r1	$u3 ','',0,'?'),('\"}/|X\\','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php',0,'oE4\Z','oE4\Z','&SUU\'[z|_MŅ<㠐','',0,'?'),('\'7b~ 6','wp-includes/sodium_compat/src/Core/Base64/Original.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Base64/Original.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ң-с','9\0zotID:\0g I%~ަ$o','',0,'?'),(',\r	gH6','wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8v\ne=\r+','o!#0`Bڡ`Rݖ&##TF','',0,'?'),('//sv\nod:','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Dotenv.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Dotenv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-9H\ZBYtʝ','hGz^\\<O!M!\rI(','',0,'?'),('26,̞|keL\ns','wp-content/plugins/wordfence/images/2fa1.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/2fa1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/)h\\ hG8','C%0z)f @t>ɶ{T8o','',0,'?'),('3\"οE0c(hi','wp-content/plugins/wp-rocket/views/settings/fields/cache-lifespan.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/cache-lifespan.php',0,'e\r_]d>R0=','e\r_]d>R0=',',,=>Q%+AԂ/8ydiU','',0,'?'),('VCdvۦ','wp-includes/blocks/file/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ōL?*','Ts3n\nAtl۩_S^HZ#8','',0,'?'),('Vp#f','wp-includes/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/.htaccess',0,'>XV\nf2>m','>XV\nf2>m','rTq[B^n.v$3\r{CM̍','',0,'?'),('Z1׼B0n','wp-includes/css/dist/patterns/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/patterns/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d0aqm7|Kb;','\Z\0݈4TJUdM1XT#v\'N','',0,'?'),('ZeKK\0VN','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/woocommerce-currency-converter-widget.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/woocommerce-currency-converter-widget.php',0,'8BV,\"\n>)K|s','8BV,\"\n>)K|s','`-:{_ ~ִW\\+XDVr','',0,'?'),(']5zr\Z>B9','wp-content/plugins/kadence-blocks/includes/gfonts-names-array.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/gfonts-names-array.php',0,'zk_$>{<8,','zk_$>{<8,',')Cw8}*YJZByd','',0,'?'),('u78¸KԊkh','wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tJֶDܒ+C','\"uugI$ED=\nQg-TZ','',0,'?'),('|#԰#{','wp-admin/js/link.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/link.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nwhs[','y׈h8Hi*\r!4*<9gV\"U','',0,'?'),('ډx`9LťM,L','wp-includes/css/dist/block-editor/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','դ>)O8dd\'','&<0^F\\\r=ܛr<i','',0,'?'),('ڊz&$i_9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/FirstChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/FirstChunk.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H~J{}FY\r','\\Q@R{\0]KEvN','',0,'?'),('ږZplyb\0q','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPMessageDismissListener.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPMessageDismissListener.php',0,'!1/B','!1/B','3sѨPV\\<5~\ZáA0(nB','',0,'?'),('ژ/%7JH\"','wp-content/plugins/userway-accessibility-widget/includes/admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sdo*	L','2uP\Z),VwO!M܅q7r','',0,'?'),('ښ޴u_','wp-includes/blocks/post-template/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!$,m-Fx','Eg5ja#]\Z᧬G&W߽SUB','',0,'?'),('ڟd3=\n]','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/BodySummarizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/BodySummarizer.php',0,'galsgh/$}\nXIz','galsgh/$}\nXIz','A2L\r\rd,28','',0,'?'),('ڦYL\nrQ-','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\[I7/&','uOcWHQ_50/,\rZ$','',0,'?'),('ڪ~V]j','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-shortpixel-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-shortpixel-subscriber.php',0,'&Q+E7]\\Ѽ','&Q+E7]\\Ѽ','DM5-GZnrIYaqh5','',0,'?'),('ڪߕ9vCJ,','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php',0,'[Mb|u;ƪcG','[Mb|u;ƪcG','kF6`I6ۨ4a	O:q','',0,'?'),('ڰn+?G9ov','wp-content/plugins/wordpress-seo/src/actions/addon-installation/addon-install-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/addon-installation/addon-install-action.php',0,':dL\r=',':dL\r=','_B\0&$b\n97','',0,'?'),('ڱJLX\"|QY2','wp-content/plugins/wordpress-seo/src/config/oauth-client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/oauth-client.php',0,'ҬL@0','ҬL@0','ēJO;H)Pd4qU*','',0,'?'),('ڲ(@drx8s!>','wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-built-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-built-exception.php',0,'ne+r>N9Rb','ne+r>N9Rb','\n=ҤQ ~\\uKd`\Z#&','',0,'?'),('#6K%#f\r','wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9@G0z0j^D','[j9Ba|)>Oa','',0,'?'),('rwƞ','wp-includes/blocks/footnotes.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jt+`촒:','2*q-htQe{uEZ\'i','',0,'?'),(',&(k d%','wp-content/themes/kadence/assets/css/src/_ally.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_ally.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')D|k','o0B ʼQ{pG(4?(}I','',0,'?'),('̭\n5B+l','wp-includes/blocks/gallery/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xucL\Z߁{Bx','ZhZ,!̜3u51ԙ_','',0,'?'),('m*l)4','wp-content/plugins/wordpress-seo/vendor/composer/autoload_files.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_files.php',0,'$f:ƅR7g2nP','$f:ƅR7g2nP','<Ͽnm<^832','',0,'?'),('qؼ\0p,','wp-content/plugins/wordpress-seo/src/services/health-check/links-table-check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/links-table-check.php',0,'fюqM>֤8ʗ','fюqM>֤8ʗ','3HUukKQˀ<t_R2q^6','',0,'?'),('JB&9:VF[','wp-includes/js/dist/media-utils.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/media-utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';JqͶ _','$߷\rxfjK9*9tړNv/K','',0,'?'),('C.yj\0o*f','wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\Z3`fі{_zq',' .IETأJ#JUk7hy\\0','',0,'?'),(':io;A\r`','wp-content/themes/kadence/inc/components/essential_real_estate/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/essential_real_estate/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Lb-Y3','wײnC>V@[XJ:}~','',0,'?'),('wYa5 /','wp-content/plugins/wordpress-seo/admin/views/class-yoast-feature-toggles.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/class-yoast-feature-toggles.php',0,'cН_g9Ȱ$F','cН_g9Ȱ$F','<Ң|tmmD1R>g@M5X*i','',0,'?'),('!(t<Թ','wp-includes/js/heartbeat.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/heartbeat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{kAUI<.','Jݼ¼<	tZG\r\\Wv5','',0,'?'),('_\rJL#@B','wp-admin/css/colors/midnight/colors.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']1A9Qz}>q','Mt&}*%5\"w萆	o|x}!','',0,'?'),('RQ}n{qc|','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',`M+]sΰ-\'','AP	_c$j:*?c','',0,'?'),(' I_X?','wp-admin/js/gallery.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\r~7xDecb','У0	#u\r/L:hJR\'9k','',0,'?'),('\"b6tN|rf','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[j^\r','^-*>jF8\'K{?I.;n2','',0,'?'),('4Vs#,Q','wp-includes/blocks/query-pagination/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(yXn	Hf','DAuJ[?W.ٝoIo&','',0,'?'),('461mYR','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4tQSDv','t!BxV\\N<tp!SEг','',0,'?'),('Aq8k\"ݏb~p','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/schedules.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/schedules.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>WMC҆WK','@*\0oI^g\0ӭV+\'z','',0,'?'),('Ab-tD','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nҦNʅ9','U,t_̨2zVHƘ׹Kc','',0,'?'),('EgKm2\r6,G','wp-content/themes/kadence/inc/class-theme.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/class-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&&{{>=-ֲ','~ZosGssI@ޟx','',0,'?'),('Qsl#{K1n','wp-content/plugins/wp-rocket/inc/classes/Buffer/class-config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/Buffer/class-config.php',0,'5XMhr.ū','5XMhr.ū','Z<[DQ_(Iw7','',0,'?'),('_QB|CG','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/QuotaNoticeReached.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/QuotaNoticeReached.php',0,'2p>	YAQu','2p>	YAQu','vwlGhIdT[T.qP!','',0,'?'),('d>G?S܏`h','wp-content/themes/kadence/template-parts/archive-title/search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VXIM~:jfH','JjԌ]8Z>DB7.#h9峂','',0,'?'),('k\rN[,\'	VC$Du','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posts-importing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posts-importing-action.php',0,'JO*Ր','JO*Ր','}\ZڂL\rB%\nO2n\ZN','',0,'?'),('v6^AA/],6\'y:','wp-admin/css/site-health.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-health.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yC[_!2jja','{JKq@\\oymrJ%8','',0,'?'),('ۆxDLzW#řM','wp-content/plugins/wordpress-seo/packages/js/images/icon-facebook.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/icon-facebook.svg',0,'pPx}','pPx}','|*Z uh@z;;`FÉXCÒ5m','',0,'?'),('ۆA+:ʌ','wp-includes/Requests/library/Requests.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/library/Requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5NEj4yx\"$','P\05P^9*xG)֬aX|','',0,'?'),('ۋ{S0\0\0=1_ئ\r5','wp-includes/js/dist/priority-queue.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/priority-queue.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8@7^XC','];)en<\'GZo=Tm)V-R_m','',0,'?'),('۔Ap\"YI','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php',0,'ydfsS&?9o','ydfsS&?9o','F迫71f\r_{+I/O','',0,'?'),('ۖJBwC|Mv','wp-content/plugins/wordfence/lib/Diff.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5VzY]#yRJݮ','YM\"z)tϖ*cwL\01w$d','',0,'?'),('۪v|ecO;؛','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/base.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/base.php',0,'Rܟ$SjU81','Rܟ$SjU81','!N\nѢaddkh2g','',0,'?'),('۪	.ո\\','wp-includes/js/tinymce/skins/wordpress/wp-content.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Un\0\r','>@:soX=Kdku{','',0,'?'),('ۯ2MKf','wp-content/plugins/wordpress-seo/js/dist/filter-explanation.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/filter-explanation.js',0,'~j3I','~j3I',']P2+1t0[pE','',0,'?'),('*).','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ConvertPlug.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ConvertPlug.php',0,'JZ78#e:p','JZ78#e:p','ܵ\n;{\"lmP\n}C\n/D)','',0,'?'),('ØZ:&$v','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x@o/DchE,5','	6wl]SCJo+*a,WM','',0,'?'),('r؁=Ԓ','wp-includes/images/rss.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[(.*NZ','j(-9_E-#we$]o01u','',0,'?'),(']`(bayu','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-imagify-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-imagify-subscriber.php',0,'$z9ȇ*>','$z9ȇ*>','v}l۬0.QE7~Qw<&&\Zg','',0,'?'),('\npGnu:','wp-includes/js/colorpicker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/colorpicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V g-','Vw%%:3CQ#+g	e}','',0,'?'),('`su\0tc','wp-includes/html-api/class-wp-html-unsupported-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-unsupported-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fl2_!','x\\99yb	].ݙ9','',0,'?'),('?Am','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/give.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/give.php',0,'R\"]','R\"]','\"6i=j1M~Ƹx\\4','',0,'?'),('ʡiy','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-permalinks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-permalinks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nCicFJ','f){E;^U	?&\r,+','',0,'?'),('\"[|$','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/youtube.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/youtube.php',0,']~E*ړxzv',']~E*ړxzv','#Yq~\n[zQэ0z:ƸZ1R!','',0,'?'),('F\ruDb7','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aMG<?v\'D','Yw1\Z%Rarզv\Za','',0,'?'),('ȼ؟\'\r`','wp-includes/feed-rdf.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-rdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xG7%\0b','p=m=GlhnhV]-+1a','',0,'?'),('x\\ہuԎ','wp-content/plugins/kadence-blocks/dist/blocks-navigation.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-navigation.asset.php',0,'g[\"(','g[\"(','~\ZUzǻM,rP	Ů|H','',0,'?'),('ǖo','wp-content/plugins/wordpress-seo/src/integrations/front-end/redirects.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/redirects.php',0,'99uKjw','99uKjw','	sd8-5a *|Di','',0,'?'),('t|i4u','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/NativeClientState.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/NativeClientState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܊{z\n.hbTH','9Rٖ\06fhPVh1a͏','',0,'?'),(' \'\'','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ServerException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ServerException.php',0,' 7@ l',' 7@ l','ClMސ\'a\n /W0n','',0,'?'),('1w\0s~B','wp-content/themes/kadence/inc/customizer/react/src/available/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/available/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#V@HV','?Cq1r]{QR]߬/','',0,'?'),('2G?_\\-B','wp-includes/canonical.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/canonical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V[M;NX{~R ','x$]Yj9yX)z}t lኮ&B8','',0,'?'),('2{(6+{*','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PrestashopInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PrestashopInstaller.php',0,'bc>K;ճo','bc>K;ճo','\Zp/@jظ( ]','',0,'?'),('>ݞI`Zxsa','wp-content/themes/kadence/template-parts/content/error-offline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/error-offline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')|,,+?','2C\"ktŅI?!Jz0xo','',0,'?'),('>n*p[FB:','wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-service.php',0,'PXHF|fAE','PXHF|fAE','S/\Z7Ix=$ؤ','',0,'?'),('D:DAXC','wp-content/themes/twentytwentyfour/readme.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u?J\0_','dTCSo`Q~MR*A`&Mq','',0,'?'),('YjbHuNV9ªR&','wp-content/plugins/wordpress-seo/src/introductions/application/user-allowed-trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/user-allowed-trait.php',0,'Y-EDf-[p1','Y-EDf-[p1','y֦M\r*\r:Μִdw:߮','',0,'?'),('i\n}сJ	','wp-content/plugins/kadence-starter-templates/inc/class-customizer-option.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-customizer-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','樫šK!9VmU','mR˻k>L]O]*=/q	','',0,'?'),('ܑKݓ%eP^U','wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g}hk9yb(W','\ZDQ^\\9;7vF','',0,'?'),('ܔS*O\'L(Z]Q)gL','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-divider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-divider.php',0,'XDel͍}3','XDel͍}3',' hi?hMS z1,oMk','',0,'?'),('ܨ$HIo(\ZN','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/JoinType.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/JoinType.php',0,'+{Yf','+{Yf','\n/Me6xܑ<O7d;y','',0,'?'),('ܮvw+P\n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php',0,'^ִ5D\0zT','^ִ5D\0zT','V@XX.34','',0,'?'),('ܲI: oЪ\"','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-homeurl-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-homeurl-watcher.php',0,'6qHjz`','6qHjz`','#p}ΑZc֕nM.9\r.2m','',0,'?'),('.U	Y=','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h`VAf','<\\G;1#kLà(փ','',0,'?'),('TоR\'{','wp-content/plugins/wordfence/lib/wfPersistenceController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfPersistenceController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%kyiMO*','X(30\r\n\nPE̠ 9','',0,'?'),('ZCiT5g?f/','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Is.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Is.php',0,'}4(i-9Fm','}4(i-9Fm','*&AƢ8P\Z&','',0,'?'),('<+\"=yX','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Activation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Activation.php',0,',Cs<\ny[r',',Cs<\ny[r','n>=i1ڝrl\Z̫[tU#\r','',0,'?'),('ڛ)$,V','wp-content/plugins/wordpress-seo/src/services/health-check/links-table-reports.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/links-table-reports.php',0,'j8ŋgg#','j8ŋgg#','Z9އ9ag]Vvbn','',0,'?'),('~a3DL%','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/TestLogger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/TestLogger.php',0,'P\roz+Քʣ','P\roz+Քʣ','Kj~v?¿?\'v׻\\','',0,'?'),('ᷩV\'<!0j','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϸnnK:','*(̊ZlPtȊM4\ZkW?	-N','',0,'?'),('xQ>.\n@','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/PhpToken.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/PhpToken.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yv`\0Ȕlv0','*FumIag(Ry','',0,'?'),('ջZml4ˮU','wp-includes/images/smilies/simple-smile.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/simple-smile.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K{fwh','?Yag\\<y0\0183Hg','',0,'?'),('$rN\ZtD6','wp-content/themes/kadence/assets/js/shop-toggle.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/shop-toggle.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0gx$R','bM1*ƼcHP\rjo,Vo','',0,'?'),('0\Z/1~','wp-includes/blocks/query-pagination/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HȞ]yd`R<','ϭFK^	BүBn5','',0,'?'),('\r\0FJBe','wp-login.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')8͹\'.C','ldwTna7)ղb_o]2\Z2#H','',0,'?'),('׵(KB','wp-includes/js/codemirror/fakejshint.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/fakejshint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5v,ROlx]J\')K','-6$$;}ptO4]2ТR5֡','',0,'?'),('A0\'jX','wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\\as','N4|R6)@w7ﾞbGn','',0,'?'),('%n#\nV߃O','wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-submit-actions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-submit-actions.php',0,'y;ĮݚZ\0W','y;ĮݚZ\0W','>JKK:v85MV','',0,'?'),('5 <؏]Ԛ>u','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DatabaseMetadata.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DatabaseMetadata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I}b~ LMQ','WVXHWrrt(<b)','',0,'?'),('8҇KTޏ=v<3','wp-content/themes/kadence/inc/customizer/options/general-comments-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-comments-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')j=h-%','eg̡uQVYO֭5j','',0,'?'),('9OXRha2D','wp-content/plugins/wordpress-seo/admin/views/redirects.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/redirects.php',0,'	 \Zh','	 \Zh','~t?djҔ.$WUBceB(H','',0,'?'),(':gxա','wp-content/themes/kadence/assets/css/src/_icons.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_icons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zs\"C9XWtr;','*n\"[\Zy;;#6\rEe','',0,'?'),('Fd.Ļ','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/SpinUpWP.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/SpinUpWP.php',0,'l{-H3/8=','l{-H3/8=','Zp*~Nqk\0>tw}M','',0,'?'),('J0jYgh','wp-includes/js/tinymce/plugins/lists/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','28:sw9J',')b#4e*9(=QEe0|1\n','',0,'?'),('Y)?5nx','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-splitcontent-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-splitcontent-block.php',0,'A/m+ŧ','A/m+ŧ','S+\\<F8T~Q9','',0,'?'),('[65+	n9','wp-admin/images/sort.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/sort.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','* 3','vP-~xO\"	;','',0,'?'),('`L\\3-i_3S\r','wp-includes/blocks/code/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hhw>C','#0ckSvܾlnlJ7','',0,'?'),('fyħ*!','wp-admin/js/nav-menu.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/nav-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gjd$]L9','+`ٚS6!hˣn','',0,'?'),('hEaVq g','wp-content/plugins/wordpress-seo/admin/import/class-import-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/class-import-settings.php',0,'CDۉ^wDQ7','CDۉ^wDQ7','6\ZzKDgciCpo4:Qd','',0,'?'),('ofAם(','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nJ!^\rY^&[c','Ώ$k[oBLZ@haWTe','',0,'?'),('t{\rR~,`\Z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/FrenchInflector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/FrenchInflector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\\(%%:?','JBNw;/6s|Wy~ci','',0,'?'),('uV9g','wp-content/plugins/kadence-blocks/dist/admin-kadence-home.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/admin-kadence-home.js',0,'s@ǤX[6','s@ǤX[6','Ip6BUCӑd}s ','',0,'?'),('ݖ\'\"|3_t|','wp-includes/class-wp-term.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0tvei/:','VGk<|<PS	5I_','',0,'?'),('ݞkДL(5:U','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/buckhead-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/buckhead-georgia/index-https.html',0,'\'l=$','\'l=$','P	WN:\na{x9Xґ','',0,'?'),('ݰ\"ڑ{χG+','wp-content/themes/kadence/template-parts/content/entry_loop_header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S6fP0(','@occ>\05I\"?Nd}','',0,'?'),('ݲg>:[tQV','wp-includes/blocks/query-title/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9-mCl-h','i)!nle#aniqla\nOX','',0,'?'),('ݵiK#B]','wp-includes/blocks/term-description/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2璌oF`@_','XH)e?JWy2\rkqLK-7','',0,'?'),('ݿ2.	','wp-content/plugins/kadence-pro/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_static.php',0,'.!if⎌','.!if⎌','q]c)Yr+ۿAMY\\','',0,'?'),('4','wp-includes/blocks/media-text/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fCa[_','Iz|w6HPa@7Kr','',0,'?'),('\0b21?:','wp-includes/js/dist/core-commands.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/core-commands.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',&(O_t','۽R\"h\'Rl:;av6Š','',0,'?'),('!zHT۰','wp-includes/js/dist/router.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/router.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']NIx݉.>','nڛfNl,[._\\\\,#1XyW>','',0,'?'),('\'|?>','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LaDJ?Z','=F==<_%=M?u/','',0,'?'),('	FE)','wp-includes/blocks/comments.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Z\\0*S1','hT>x7ź\04q3B^ܭ','',0,'?'),('HC)C','wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yK\nu@x','Aݶ݁;_|sȤ4_)zaKQEe!','',0,'?'),('*Kh05(	lK','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\rٱ\\wv','\Z0\nfF\r4\'DX4Qp','',0,'?'),('pխ^@#Ԓ','wp-content/plugins/wordfence/views/scanner/scan-progress.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b1{	@m90','KM$)+SCQF1qZTv`r','',0,'?'),('Xy`O','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H>`qg\Zd\r%Zh','*9Lt=H yw\Zq¿','',0,'?'),('@>7S*l','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/virama.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/virama.php',0,'jS^M\"','jS^M\"','[W߭jb mPw(.Ym','',0,'?'),('3^PMYHD','wp-includes/js/tinymce/skins/wordpress/images/video.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶B=\rz3j','iI/=MMX:MApv\r','',0,'?'),('5foޮ','wp-admin/includes/class-wp-privacy-policy-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-privacy-policy-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Bn\nA','MP>P͵KjN?3??t*9e','',0,'?'),('6i+y/SfB~5','wp-content/plugins/wp-rocket/assets/js/wpr-admin.min.js.map','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.min.js.map',0,'	`I/Ar','	`I/Ar','ж7\\J:7^+IK w9V','',0,'?'),(':%ze2','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ServerRequestInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ServerRequestInterface.php',0,'\ZTKr!Yp+','\ZTKr!Yp+','g3F:PAEf5@`1I)3','',0,'?'),('=vi\"\Z\Zb!Y','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Resources/bin/update_mime_types.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Resources/bin/update_mime_types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kB3靚ʉ','>O8I̟J<y	_17D	k','',0,'?'),('N\\|`*,)@4','wp-includes/images/xit-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӂu:@4\rz<5','S\r}@~Q:Sc*d+Z_{R','',0,'?'),('Q\\E','wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint-file-size.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint-file-size.php',0,'e\nPwН','e\nPwН','!G&xNY Y}dI','',0,'?'),('Xr/D}eB0K','wp-includes/css/dist/patterns/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/patterns/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j2*,Mj\\\0~','`|߶=%QDЮOJv75*i','',0,'?'),('roᎄr)&','wp-content/themes/kadence/inc/customizer/options/header-navigation-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-navigation-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|j4CǙoRMy\Z','P.{]CX,.~','',0,'?'),('tyEr','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1,I','.Jcr;\0LoU@LBBO\nݙq/','',0,'?'),('ވӓHAI8X','wp-content/plugins/wordpress-seo/src/introductions/domain/introductions-bucket.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/domain/introductions-bucket.php',0,'T8j$Pq`(+Q','T8j$Pq`(+Q','Hi28ODrN\0kAeWm','',0,'?'),('ޒ3Fe5\"¸','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php',0,'>)j#aO','>)j#aO','%}D(<A2.o#d','',0,'?'),('ޒ?IΩi%gy','wp-content/plugins/wordfence/lib/menu_dashboard_options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_dashboard_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xUeҵS','H#݂yf6AU(714J2','',0,'?'),('ޚꧭ߅\"gс<Nr','wp-includes/blocks/text-columns/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w`}N\nX','t!l`|*^0	l$C;','',0,'?'),('ޠqDb,','wp-includes/blocks/paragraph/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"a\'	b+0ԙ«O','(wm¤b\Z:7=1','',0,'?'),('ި\n_>%a\rJ`','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-editor-assets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-editor-assets.php',0,'R8dzhgLX','R8dzhgLX','gjm	1DY%b\0Rw','',0,'?'),('ިz+BC-','wp-content/plugins/wordpress-seo/js/dist/addon-installation.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/addon-installation.js',0,'	cW>ez','	cW>ez','YO1n_ct,]_zƷs','',0,'?'),('ު%%-','wp-content/plugins/wordpress-seo/images/alert-info-icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/alert-info-icon.svg',0,'B,IkE0','B,IkE0','f/#O4۵Qsvv+&#','',0,'?'),('ެ\'5Z? i\ni','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/index-https.html',0,'Q\05Bc^Z_','Q\05Bc^Z_','HN+w!D66Y\ng','',0,'?'),('ޯrr&','wp-content/themes/kadence/inc/customizer/options/header-mobile-nav-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-nav-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','82ik~A','NzW&\Z)@O.+z','',0,'?'),('޵f̎B\'5','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/SessionNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/SessionNotFoundException.php',0,'\'0\0]%^L`;','\'0\0]%^L`;','⭕\'ڌ9ϟA5/k1\"8rva}@','',0,'?'),('޷HӚc','wp-content/plugins/wordpress-seo/src/initializers/woocommerce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/woocommerce.php',0,'޾〨:~1','޾〨:~1','\'?\r=l5$X&','',0,'?'),('}v\\y(','wp-content/plugins/userway-accessibility-widget/readme.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ٞ^3+uϏ}4','~2\\7;J1\\|Ļ;n|','',0,'?'),('U;c  08','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js',0,'!i \'y Rh','!i \'y Rh','Ǫ4?m,\'\\%Zd2gį','',0,'?'),('ދ1Fa','wp-content/plugins/wordfence/lib/wfArray.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rzTG~SJD','8snbA޺.r0z!N<sA','',0,'?'),('H\"gp39','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/compare.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/compare.php',0,'Mɍ=,-)F','Mɍ=,-)F','U8 $2q}6kl6K\"\'>U-','',0,'?'),('\'g!:H),','wp-includes/SimplePie/XML/Declaration/Parser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O,@ۺa	Δ','imQq+\r:Po\Z*','',0,'?'),('fOab@','wp-content/themes/kadence/tutor/archive-course.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/archive-course.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'H[&d[\ZZL','@[X\'!ߛ~%5uQb','',0,'?'),('1V86.','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/index.native.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/index.native.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5}a1S','UqjCbwㆀ#Al1UV?','',0,'?'),('6wϥѫ','wp-content/plugins/wp-rocket/inc/Engine/Admin/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/ServiceProvider.php',0,'hvkQ=cA+Ӭ)','hvkQ=cA+Ӭ)','T\"(-e9vyud	\n','',0,'?'),('CZ[}\"\rj4','wp-includes/js/dist/vendor/regenerator-runtime.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/regenerator-runtime.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~szt\rõ','($9tLre_X','',0,'?'),('\nkYul','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-additional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-additional.php',0,'# Yl	Z1','# Yl	Z1','#k/ʰawE*;v[#','',0,'?'),('\nr\"L0{C','wp-content/plugins/wordfence/css/diff.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/diff.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܀g		$`rQ','$hEJ^54<$ӭYc&','',0,'?'),('uJ,Fq','wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-invalid-json-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-invalid-json-exception.php',0,'{\0,\'gUƉ','{\0,\'gUƉ','TtJ5i>xuHf{|kGX','',0,'?'),('\"c)j\"','wp-includes/js/wplink.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wplink.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ًO-37a$','Cv*QrZMA2Tǉ%c	f?u','',0,'?'),('\ZLd*','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-bulk-special.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-bulk-special.php',0,'6ܕyW','6ܕyW','ƁrJ1,ﾐﮥ&z:!dmpb|','',0,'?'),('\"Ne)C','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileNotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileNotFoundException.php',0,'[65a>ܥG=','[65a>ܥG=','!lNי\\>\'nr/Z˕\"','',0,'?'),('9Ix9]','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AttributeInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AttributeInterface.php',0,'+Eޕ#s#eO','+Eޕ#s#eO','^\Zy<P%;6VxڀYx%G','',0,'?'),('=@\\JpQm\\6','wp-admin/includes/class-wp-upgrader-skin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!:mB>','|!ƮMi+\Z0,Fi\0~Oa','',0,'?'),('L#aW ','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':nzt','$4g:A*y^m=2++','',0,'?'),('Y?)f','wp-content/plugins/wp-rocket/inc/Addon/Sucuri/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Sucuri/Subscriber.php',0,'4nItw','4nItw','H?TbV48){L2}8Q8','',0,'?'),('ZCu	tli','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/IOException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/IOException.php',0,'ȝpt$,lX}','ȝpt$,lX}','n4-\'?\0l/)=ʯ*+Y','',0,'?'),('\\.R\r\ZI','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m{{Ġ','mY}<,DHQ*3>	.','',0,'?'),('bz/T7aHy','wp-includes/js/mediaelement/mejs-controls.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mejs-controls.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^yq+S%y','hA3L:\'1ꁠ\\','',0,'?'),('lPvfN','wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Assets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Assets.php',0,'x<)#!)@$','x<)#!)@$','#\ZxqY&!u>l]i^pq\'','',0,'?'),('q%ű m+','wp-admin/css/colors/light/colors-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';/I3_\rZ=','\Zβ%UK_\ZpԂa\0u','',0,'?'),('v#6ڲ̆ɏ','wp-content/themes/kadence/assets/css/elementor-checkout.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/elementor-checkout.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P̃~\\tθy','d.\rTޓnf\'\nϽAAz','',0,'?'),('z#>lRf','wp-content/plugins/wordpress-seo/src/presenters/rel-prev-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/rel-prev-presenter.php',0,'\"Jɉ_02','\"Jɉ_02','k1_V,@୒{`Z>$.','',0,'?'),('~>g>j^0%asg','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-type-change-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-type-change-watcher.php',0,'ޘQ!	@S]k','ޘQ!	@S]k','3qAHҖeJN er01','',0,'?'),('ߌ(2','wp-includes/js/quicktags.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/quicktags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɗLK/W','AV1ʾFe4,ų5e\Z','',0,'?'),('ߔHu&','wp-includes/js/plupload/plupload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݠ$pZR>\'|','\"8[J%.˚cV\r\rE)\'','',0,'?'),('ߗQu!ٶx[','wp-includes/js/wpdialog.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wpdialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%EW@','&C%(B\Zt]h˾3','',0,'?'),('ߘyeHW','wp-content/plugins/kadence-blocks/dist/extension-stores.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-stores.js',0,'߹\ZH<$T.','߹\ZH<$T.','qKHi.\"5yu','',0,'?'),('ߘLM8A̜','wp-content/plugins/shortpixel-image-optimiser/res/js/punycode.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/punycode.js',0,'}7<vdBFq6Pb','}7<vdBFq6Pb','i(<uҍ7rɄyUTW\'-','',0,'?'),('ߜr~弖U','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MFy\"mqǸUr','Y/<! m_}Th\Z\nw<S','',0,'?'),('߭\nEMv(:߉','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-button2-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-button2-options.php',0,'ie內sXq<','ie內sXq<','ܙX$V7N@޵&KNQVV','',0,'?'),('߰Sh[۳','wp-includes/class-wp-http-streams.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>,Q1(^=','¡\\Í\Z降H\ZoͦFNȡ','',0,'?'),('ߴS8AТ','wp-includes/js/jquery/ui/autocomplete.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/autocomplete.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7 G¤T`B','eXӔ?C8vP~ \Z	6','',0,'?'),('߶=\'ۂcgn','wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ripqj]','ݺ\0sŖ2ØD0$wepc=VP܂','',0,'?'),('߹V=\"#n	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_-T\02L-','ȴgA]z-ۣ᷸[','',0,'?'),('fyڸyYnC','wp-includes/style-engine/class-wp-style-engine-css-rules-store.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ChM_pY','0&Fo>I~_BC:3nk6C','',0,'?'),('ĵ>#Bb','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۓGc,=c^','Gct(5\n,9%)e','',0,'?'),('Ȧ0 $7O>','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+`JS偑t',')=	Լ_H\nB?%Ks͜VW','',0,'?'),('ыz4 	UF','wp-content/plugins/wordpress-seo/js/dist/externals/featureFlag.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/featureFlag.js',0,'g\"=m	I','g\"=m	I','[	^\rKsIT/~:','',0,'?'),('Yvz֗*9a','wp-includes/js/jquery/ui/tooltip.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/tooltip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FA\r{?D\\','\\@$)Ҷ\nX\rήlhDHH','',0,'?'),('e\n*v','wp-includes/blocks/comments/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g߿>\Z=(De','-0:\' !o6Ս\09ZN	@7B	Xv','',0,'?'),('tS+0j','wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamichtml.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamichtml.asset.php',0,'2phv>','2phv>','ݠ>gX꘥#?֟\ZjM9r&','',0,'?'),(']?t(`85V','wp-content/plugins/wordpress-seo/src/generators/schema/main-image.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/main-image.php',0,'&|ZjX','&|ZjX','GN֨ZK+1wiTw)Ig2n/','',0,'?'),('V4\\o','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/siteground.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/siteground.php',0,'ĳ#it.3','ĳ#it.3',' $QZ5l痑6<Ab','',0,'?'),('槆e9Aslp0','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Bridge.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Bridge.php',0,'Q]KT','Q]KT','66\0d.1}Жe䠊k\\R','',0,'?'),('Gs!CoU;','wp-content/plugins/wp-rocket/inc/Engine/Media/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/ServiceProvider.php',0,'[țEL7tk','[țEL7tk','2$|] kV~l.ʭaЮ^A','',0,'?'),('-w=S','wp-includes/css/dist/edit-widgets/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-widgets/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pJ\'<ޖ2','Mq>w|Sd;=*o/Ixx+\\O)~`','',0,'?'),('f/\nZ=jۅ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseStreamInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseStreamInterface.php',0,'ROkĕȄb )L','ROkĕȄb )L','tjǿ3\\ih`\'}.J Rt','',0,'?'),(',KS(A','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/toolbar-group.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/toolbar-group.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ȑX,Pq\0u:','};gE)(Ie:/ShB','',0,'?'),(':麃Hy','wp-includes/js/dist/vendor/wp-polyfill-inert.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-inert.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5q]ĢZ0ђQ','x*<u	OL:\nrf','',0,'?'),('I&%`~','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Queue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Queue.php',0,'y۝|\\z','y۝|\\z','I6bk{\')ǚ%JAt=','',0,'?'),('<S%ӟBq}','wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/Subscriber.php',0,'Rݮ9R','Rݮ9R','TӇ~u_8{㇐#=S','',0,'?'),('\ZtUR\r\"C','wp-includes/blocks/avatar/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ٓBE/A',')q2蕷^WkNiA0?','',0,'?'),('%f\\+,\0\\Y','wp-admin/includes/class-wp-filesystem-base.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xdh{4;$P','K(RyUpl{{A5Z','',0,'?'),('*\'Kj̰!c','wp-content/plugins/wordfence/waf/pomo/plural-forms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/plural-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P!7GǊq`.','.\n)[.cf\r\rFZk','',0,'?'),('0ŶlbWV','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/MessageInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/MessageInterface.php',0,'m:8J(	h','m:8J(	h','[̎f՚@j\nG\n','',0,'?'),('8YYnbwۮz','wp-content/plugins/kadence-blocks-pro/includes/blocks/product-carousel-products-rest-api.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/product-carousel-products-rest-api.php',0,'\'}30]P','\'}30]P','k\0!I\Z3I\rjŨ}','',0,'?'),(';=./;,)t?x7.','wp-content/themes/kadence/assets/css/src/woo/_small_screen.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_small_screen.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\\% [','`z詧OJc\"I>{h:Iʱo','',0,'?'),('O*Ҟ9;','wp-includes/blocks/embed/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1IFe\0MKRr;','׉shMw8_.LIM','',0,'?'),('R7~\ZpFk','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/BootableServiceProviderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/BootableServiceProviderInterface.php',0,'q`\rw\ZM\'N4','q`\rw\ZM\'N4','-/*Y=dVx\n}[s벇h|','',0,'?'),('SSCPƿ','wp-content/plugins/kadence-blocks-pro/includes/query/query-frontend-filters.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-frontend-filters.php',0,'ci-q+[Cd','ci-q+[Cd','y\n^/	Pv\'{%՗j','',0,'?'),('XLtCc-','wp-includes/blocks/query/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\U\n#]xHu','vg?. unXA׼&J','',0,'?'),('\\1݃%VE|<N','wp-content/plugins/wordfence/modules/login-security/img/loading.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P','j*edoX~7&N9|L','',0,'?'),('^.UU47ˊ[ds','wp-content/themes/kadence/header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n!?;@L','ZݰS&^L8H##>','',0,'?'),('qrЍ߇EߠCJ','wp-content/plugins/wordpress-seo/src/routes/abstract-action-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/abstract-action-route.php',0,'D0WsIa\ry5','D0WsIa\ry5','ZM))uBzmx^ JĿ8֡r','',0,'?'),('stdkMwUO8','wp-content/plugins/wordpress-seo/src/presenters/twitter/site-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/site-presenter.php',0,'(\0PV\rʯea','(\0PV\rʯea','\n-Wbg뺔w&y8_1А(/','',0,'?'),('v5NZ','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/flywheel.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/flywheel.php',0,'_\0gK2~&','_\0gK2~&','s4\nJi +aBX`','',0,'?'),('y(TJ3gh','wp-content/themes/kadence/inc/customizer/options/footer-social-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-social-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m	Tcʻ\'','@M&>K~$𽒖EUH\'','',0,'?'),('~\'dZqx','wp-content/themes/kadence/inc/customizer/options/general-breadcrumb-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-breadcrumb-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Ȑ`0XS,yc','6ƭu&aSj^ʥ0Q[4','',0,'?'),('i4ZlЃ @','wp-includes/css/dist/block-editor/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mᡣv\n:9','zS\0JHנgW_%N','',0,'?'),('>]*aR','wp-content/plugins/wordpress-seo/src/helpers/product-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/product-helper.php',0,'QQ6I~p`<d','QQ6I~p`<d','fE(hG1Ğcy|','',0,'?'),('&[','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Str.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Str.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eFSt JFo/','--j\r0+5c}Vz_','',0,'?'),('rMܴ-\nS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eRr#U犏','sGdlIB-?`7|rR3V','',0,'?'),('z\rHD','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Q**B','6XDұ/R\\BtLt','',0,'?'),('x=g	Aa!','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#>3:.FWm',' M<5L\"Nϖ(Z1ւfBZ','',0,'?'),('=AXo','wp-content/plugins/duplicate-post/src/admin/options-inputs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/options-inputs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wthQqڋW','5Uc[;sX\0i\n	@A?','',0,'?'),('LsϺy','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/HttpClientTestCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/HttpClientTestCase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ilږ%A','>uU.wvжU920/7	','',0,'?'),('G/Ŵ^Rk','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/UpdateChecker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/UpdateChecker.php',0,'vUlD2','vUlD2','ZDWY\rGw\\hp&U','',0,'?'),('im	RVG','wp-content/plugins/shortpixel-image-optimiser/class/external/cloudflare.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/cloudflare.php',0,'M\ZRbٲ2%','M\ZRbٲ2%','p{ź>vCZU+k74','',0,'?'),('.o\Zx%','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Schemas/AboveTheFold.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Schemas/AboveTheFold.php',0,'&$p(<ƃ?','&$p(<ƃ?','u:\0[L-ZTu7','',0,'?'),('^bRSI!?','wp-includes/class-wp-image-editor-imagick.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-image-editor-imagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\re/xZT','y,U,<Um<f(a@b','',0,'?'),(';-XiiG0d','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Mbstring.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Mbstring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҁ<% gqE','Rg*\\tUآ)/{H\r-\'L','',0,'?'),('zhu<8\r3X','wp-content/plugins/kadence-starter-templates/inc/class-import-fluent.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-fluent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?߄s8ʟ','B/J[|[$CQ','',0,'?'),('	:ix*I','wp-content/plugins/kadence-blocks-pro/dist/blocks-videopopup.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-videopopup.asset.php',0,'YeQ\"Vq<','YeQ\"Vq<','NjĊ܌JwV0iۭ\0R@Fd','',0,'?'),('\n(xAe=Fم','wp-content/themes/kadence/inc/customizer/options/footer-widget2-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget2-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѯn+lO','zޅf!֒>mBThǽ','',0,'?'),('ڒqMǋ~KKm','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/IpUtils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/IpUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~B2!چ5F>FM','|&gv)VcZF51\'S9w	','',0,'?'),('sk6/н','wp-content/plugins/wordfence/lib/wfSupportController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfSupportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(IVM','q5)2_{[XLnIjqw&5','',0,'?'),('?p_LwE,','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php',0,'o3+P[9,','o3+P[9,','G\rNp3xxw\"QH\'V		','',0,'?'),('@M]\"iNJ','wp-includes/class-wp-http-requests-hooks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-requests-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#X-tн','2:(@\'V){\0b;f_w','',0,'?'),('TT9ܰ\nj~','wp-includes/blocks/query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<c','տ%e\0W٥10֫;q;','',0,'?'),('Z(>(1bޫZ','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lo7r79wAUE','EP[xv1i0h;^J','',0,'?'),('\\m]I{B]','wp-content/plugins/wordfence/images/icons/check-premium.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/check-premium.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߇`ީ:\rN','&y$fDz9ͧ|VqV','',0,'?'),('\\$IH','wp-includes/js/jquery/jquery.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n~*rO|','ix\nc .h\'.syo','',0,'?'),('e:֬p6','wp-includes/js/dist/vendor/wp-polyfill.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x2$!\0؊l','<h%Z,aY8wj\\O','',0,'?'),('f*8i','wp-content/plugins/wordpress-seo/admin/class-wincher-dashboard-widget.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-wincher-dashboard-widget.php',0,'dԆS\0?','dԆS\0?','x2]J\rx\r3nsdxN\'','',0,'?'),('q@/ꦑٞ-M','wp-admin/network/site-users.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pXW o ٷF','&I5h@d;^O aC','',0,'?'),('|K[C5Uo','wp-content/themes/kadence/tribe-events/single-event.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tribe-events/single-event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*9n~B{J','zlQr86a.kg\"slo{q','',0,'?'),('~O!#jrqar','wp-content/plugins/wordpress-seo/src/conditionals/text-formality-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/text-formality-conditional.php',0,'X5mU\0q&ݕ','X5mU\0q&ݕ','MYM76tޕ{**>qr','',0,'?'),('^','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpClientTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpClientTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','滐aq9','q]ӷ6_{^}8fH]','',0,'?'),('<\0@\"ixQw\"','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageDismisser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageDismisser.php',0,'\nqm1 %ƾW','\nqm1 %ƾW','~{-DsXR!(b}','',0,'?'),('ᕵ7\\F|[El','wp-includes/sodium_compat/src/Core/Curve25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=`v\ZC','xӡU\ruXaLq&\0-N','',0,'?'),('a0P@a\\x-','wp-includes/blocks/social-link/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h|H?feI','=JL!<\0f/7p^W','',0,'?'),('>\n5Z','wp-includes/customize/class-wp-customize-image-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jf	˥^К','\nu8\rYY:\nVk.aGGoM','',0,'?'),('(LV\n\\>+n','wp-content/themes/kadence/assets/css/src/_forms.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_forms.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','麍$5UTEZ','Nz_m㏞z(ZGS΋','',0,'?'),('ᨴ^\"7ɢ-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gt{a$','ȟO+X!`?I>7^O~5:V\0=','',0,'?'),('\0-sY@','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\T\'14E[2','[ʎnJi\rp','',0,'?'),(';DthEG>H','wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ΓjNy8','UAMV\nPWkxu		/=','',0,'?'),('JrϿڴ','wp-content/plugins/kadence-pro/dist/infinite-scroll/post-infinite-scroll.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/post-infinite-scroll.min.js',0,'EްNCΗ','EްNCΗ','4/PY?@ܗPNa۟jQ	','',0,'?'),('ẝ+9\n^r','wp-content/plugins/wp-rocket/inc/deprecated/subscriber/Optimization/class-dequeue-jquery-migrate-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/subscriber/Optimization/class-dequeue-jquery-migrate-subscriber.php',0,'ۏ$	JBhr','ۏ$	JBhr','YMӻM	MtFzj~ntj@[ʅ','',0,'?'),('m|yb','wp-includes/class-wp-recovery-mode-email-service.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode-email-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BƩg%}wr','#\n`ApYǻGagD','',0,'?'),('_*|eji','wp-content/themes/kadence/inc/customizer/options/tutor-course-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/tutor-course-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';L{\r$d4if','\Z!{UXpU_#{B	X\'ة','',0,'?'),('8jSQ2','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DataCollector/HttpClientDataCollector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DataCollector/HttpClientDataCollector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wu!\r5P','},0JGQ\0W12Әn','',0,'?'),('\0t|9\02K\'Pd','wp-content/themes/kadence/assets/css/woocommerce-account.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/woocommerce-account.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$sʟ3w','\\ZyFI/!\'Qw$.e','',0,'?'),('g=/quD','wp-content/themes/kadence/inc/customizer/react/src/boxshadow/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/boxshadow/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EͣTQ','@W?sz=:]ҚU7\"*5	Lȋ\r/8','',0,'?'),('q:s#10]-','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/MockHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/MockHandler.php',0,'MDF\r?','MDF\r?','jeIޡxIi\0:@Kɤ','',0,'?'),('i4|?','wp-includes/blocks/details/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=P\'Ұbl9','b1Kvi/\"C','',0,'?'),('\"C*.','wp-content/plugins/wordfence/vendor/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('\\9ã>Iz4c','wp-includes/js/tinymce/plugins/hr/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/hr/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k+%5l3!-','2`RiL#e؄46gpo~','',0,'?'),('&^hU(l','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5*Rw<skN','.9HLԻ*=**AHa8.','',0,'?'),('ޟCEO}\rՍ','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamDecoratorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamDecoratorTrait.php',0,'M:1h','M:1h','6=H6X4{U','',0,'?'),('BKAa<l2','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XߓŒ\"X36DQ','!l..GI\n7oeѿ\';I\n\n','',0,'?'),('EK>Bm/1i','wp-includes/Requests/src/Exception/Transport.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hax','7C\rX\Z<w=,8rww{cm[M0D','',0,'?'),('![\r	f\rACV','wp-content/plugins/kadence-starter-templates/assets/images/masks/star.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/star.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ʓ(','>$Oaa-\'6J,#iC\"','',0,'?'),('$,+KK!:$h','wp-content/themes/twentytwentyfour/templates/single.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/single.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l/HaK','KT5ئ׉g~Cv]j[Eo`','',0,'?'),('\'/O\n^ U\" ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5}dp٪\"\r','Xx& An%I/`>\"ְ4ȭ]','',0,'?'),('650O1*[s','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php',0,'ʤߴ!8N','ʤߴ!8N','%S4s\n؇FXԿ֤','',0,'?'),('9Rj<oq\\.]','wp-content/plugins/wordpress-seo/src/deprecated/src/introductions/application/ai-generate-titles-and-descriptions-introduction-upsell.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/introductions/application/ai-generate-titles-and-descriptions-introduction-upsell.php',0,'(`(RO~','(`(RO~','p~PzkcnD\\yH,iuO','',0,'?'),(':4:>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php',0,'*AA2_v-','*AA2_v-','xHB[/,Kہ!Ar9','',0,'?'),('L>ٟ#{6p}Y','wp-admin/options-writing.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-writing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aI&y쒺','YđIv<~n~%?','',0,'?'),('U6υsd~x','wp-includes/sodium_compat/src/Core32/XChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y%RSTY','`-J\0P#M\"&o','',0,'?'),('\\S5}Eר','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-candidates/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-candidates/index-mobile-https.html',0,'ıfϨ\'pY','ıfϨ\'pY','2#Qf9EIǗͭ6q	','',0,'?'),('^}R	V7{WI\rH','wp-includes/blocks/search.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Crp','r*KFv3.[>uny>}+aj','',0,'?'),('s\"o4fnN','wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/kb-form-export.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/kb-form-export.js',0,'H{^C,u','H{^C,u',')=\rs/@Άa(`kJ[	1;','',0,'?'),('y0H#;e\n\"+','wp-includes/js/dist/server-side-render.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/server-side-render.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=._>Sw<','6@>	v^S<crCG`j','',0,'?'),('P\'\rF','wp-content/plugins/kadence-pro/build/dashboard.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/dashboard.js',0,'1\ZZ`.','1\ZZ`.','5+GpfԬJto6lz','',0,'?'),('`a(UC','wp-content/plugins/wp-rocket/views/settings/page-sections/tutorials.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/tutorials.php',0,'P\neadA,','P\neadA,','!AR7o5}@>!XMb','',0,'?'),('5\0l94Wf!','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/LogRecord.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/LogRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G$o}]VC','Nʆ@{__~S.','',0,'?'),('Qcl','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/ServiceSessionFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/ServiceSessionFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߋGz)e','WQ~&]2NB%\Z̷_Ka','',0,'?'),('Oz!θdG{','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/HttpClientInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/HttpClientInterface.php',0,'B\rf&ɦjV2','B\rf&ɦjV2','{a3\0v]2q*Oet\nCW;','',0,'?'),('⫕omKg֕\Z','wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-integration.php',0,'x$(9@$','x$(9@$','D;*`K[?5G[d5BEv','',0,'?'),('⬟k(|__)','wp-content/themes/kadence/template-parts/footer/footer-widget3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gTa;𪣮9+','}PblYJj:[$Lvq','',0,'?'),('Za9Uzն','wp-includes/class-wp-date-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-date-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Ž_/C','wE!mj4=a\03>ժ%	i','',0,'?'),('0BI','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/TimeoutException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/TimeoutException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\ZXc{@','Pw\rC_[Q^靡\'uRe/V','',0,'?'),('-PF?:','wp-includes/blocks/comments/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e8_\Zꏐ','\nqC5!|v\0+iMԠKf\\{}','',0,'?'),('ĸ:,p1Hr','wp-admin/js/dashboard.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/dashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4v[r(','2̇!UJ;D<s˕GV-x)','',0,'?'),('옉\rn	','wp-content/plugins/wordpress-seo/src/helpers/environment-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/environment-helper.php',0,'@#j׈sd3{','@#j׈sd3{','~?\ZL(o%ʓ^};+BY%','',0,'?'),('{qrAXQ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/DummyTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/DummyTest.php',0,'2d\nscSr','2d\nscSr','ZWs`5\\,K<(XU','',0,'?'),('\0וoxi3%\r+]kg','wp-admin/images/post-formats.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/post-formats.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\0%3','9ƺ&]nEua]iFƳ','',0,'?'),('	5%!Lt@','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Abstract_Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Abstract_Subscriber.php',0,'a5X09N.','a5X09N.','YѣeYӷFc!(QtyF&7','',0,'?'),('	@9Wxrss','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-spacer-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-spacer-block.php',0,'\nNY<<%?h','\nNY<<%?h','֤U=PafV죡YK','',0,'?'),('x\\5nW\n','wp-includes/blocks/embed/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#z=5;{\'nG','tcjp$1QQ','',0,'?'),('.s(NdY{n','wp-content/plugins/kadence-blocks/kadence-blocks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/kadence-blocks.php',0,':-jaBOϣ',':-jaBOϣ','h1|s[`Bu-!(','',0,'?'),('0;-,AEy','wp-includes/theme-compat/sidebar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\t','1=UgPvX3a@b%o\\\'','',0,'?'),('2S`\\F/HV#','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Subscriber.php',0,'BVǞP5|E\'','BVǞP5|E\'','Z:V0%DiNhi!߹','',0,'?'),('9Ľ,[q^x','wp-content/themes/kadence/inc/customizer/react/src/multi-radio-icon/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/multi-radio-icon/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\':U6!\\','#=uº?O$;L?Nx&`pf','',0,'?'),('>t]wybKS\Z','wp-content/themes/kadence/inc/template-functions/title-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/title-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\\-z8@\';}','G77k	HwqY','',0,'?'),('B\"^I\nhƜ','wp-includes/js/dist/dom.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\' +UWwE','8ҔVu$Fk(XMĕ4\Z$\"D?','',0,'?'),('J\"2z\\7\\','wp-content/plugins/kadence-pro/dist/header-addons/templates/account.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/account.php',0,'{Qʟo W','{Qʟo W','ڡך@ve$pc^#cS','',0,'?'),('K&?\\&gY*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nyVU6\\FX','6*rP7;~ɣIĪ5ȴs','',0,'?'),('S\"BcB-y','wp-content/plugins/wordpress-seo/src/commands/command-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/commands/command-interface.php',0,'(yX@s$Xos','(yX@s$Xos','ydT!&R\\p^OS\"NuS','',0,'?'),('YКqK.3hҦ','wp-includes/blocks/footnotes/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','# q7@vޑ','i	`\"TB]-Ywf],q','',0,'?'),('[ Ln>Vv','wp-content/plugins/wp-rocket/inc/Engine/Common/ExtractCSS/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/ExtractCSS/Subscriber.php',0,'[06dθq','[06dθq','nQ@/އw/4(uB8','',0,'?'),('aOj\'ŻD*ցV4','wp-cron.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x%y6?7','^gk)$²]\r2%CՅ\\','',0,'?'),('g$_d\'|*','wp-content/themes/kadence/inc/customizer/options/header-trigger-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-trigger-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ෙ?I@<\ZW','N[0R\\`b\rm<9p','',0,'?'),('m5^u9>','wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(t\r4cR','^Vx_:k	(?B!','',0,'?'),('yj{Z}6','wp-content/plugins/wordpress-seo/src/conditionals/settings-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/settings-conditional.php',0,'r0BRU\"Cm','r0BRU\"Cm','GFYPfQ3eK`_]޸','',0,'?'),('#\' ~/zF','wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jҫ%e\0ϻ','-ߟ&(:4h??Or`sHh','',0,'?'),('e\\kcXf','wp-includes/customize/class-wp-customize-upload-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-upload-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؓB8?)ivr`-','~t~X% K/3-n6\0RB֨G','',0,'?'),('Rs{p~gЁؑ','wp-includes/css/dist/reusable-blocks/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/reusable-blocks/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&k7G|Ňrތ','[>& 6A/.0lG6қ','',0,'?'),('X-','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/wikipedia.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/wikipedia.php',0,')\"wu(Ba',')\"wu(Ba','d\ZʕUNwD%*Pk~FL6%','',0,'?'),('5{*}>','wp-content/themes/kadence/inc/customizer/options/learndash-topic-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-topic-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ML(&t\Z۠i','cg/ᕅWImKpDY<j0','',0,'?'),('4}a4	W','wp-content/themes/kadence/inc/components/color_palette/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/color_palette/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lS#Cyz','f%aZ\rI8^g1B,]8JHC!M','',0,'?'),('{JDk+Ư<?','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php',0,'׽\Z2QH=','׽\Z2QH=','t:$UyL;','',0,'?'),('QPS/lSq','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/AddressEncoderException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/AddressEncoderException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'0ҭ[l','?k\n)>yf	Ah>AFMLAuC7','',0,'?'),('[D\"(K;\0i','wp-content/themes/kadence/assets/images/fonts/cormorant.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/cormorant.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GF\rk8\Z\\','!*|vyﮞ@d#/f(','',0,'?'),('rg','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/ShortQ.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/ShortQ.php',0,'ءZ\'y=P#\"','ءZ\'y=P#\"','KL:=)/L8U]bC4@@.OB','',0,'?'),('c/Y?a','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/NotFoundExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/NotFoundExceptionInterface.php',0,'s$qº\"W.','s$qº\"W.','U[#cp_2m(՛','',0,'?'),('Ő~h\n','wp-content/plugins/kadence-blocks-pro/includes/kbp-getresponse-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/kbp-getresponse-controller.php',0,'\"y%kɅ/','\"y%kɅ/','~g;a,7DzJb\Z՛5Hj\0O$','',0,'?'),('q82v&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpview/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j5qS\rXi','Ej\Z\ZI3JGjVݒ6<S9P','',0,'?'),('H%,','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%;wQ8@','wi>6Ƭ4.NC\Z4IO','',0,'?'),('rM0Y','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-header.php',0,'1O5C/s«2','1O5C/s«2','FHQ3D.G?+pGޗy^','',0,'?'),('wnx>','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/ScopingHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/ScopingHttpClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`\nK؎v@ت','F{CfAieB0t(/^ФB','',0,'?'),('<kUJv%1','wp-includes/fonts/dashicons.ttf','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7|Z','DD+vehs>ZfovW~,=','',0,'?'),('8\'Jfm(','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/PackageLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/PackageLoader.php',0,'ꑚo<m֚ ','ꑚo<m֚ ','fҖm}؉]:m?!~_!\nA','',0,'?'),('*}3ugY','wp-content/plugins/kadence-blocks-pro/includes/advanced-form/kbp-advanced-form-analytics.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/advanced-form/kbp-advanced-form-analytics.php',0,'-|h;1','-|h;1','hRu<M̠Ėe6kNV','',0,'?'),('8?pC|TZ','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/ResourceOwnerInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/ResourceOwnerInterface.php',0,':Z(yH17',':Z(yH17','XkflC~}ֶ','',0,'?'),('`c@3vz','wp-includes/blocks/legacy-widget.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/legacy-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Gknu.18|','Ug+(]{ !H>`O]!C~ꥋ7','',0,'?'),('zeߛY','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HwI8^s','4	f7z130wd6Y^h','',0,'?'),('Lb}F~\0\n.','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/assets/css/main.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/assets/css/main.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jSc@JP~','Ϥ?ØC7#\'R8YYLGk','',0,'?'),('#iJH?@','wp-includes/class-wp-http-curl.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3@RbZl','|\nTаb[j>%v;','',0,'?'),('wV!','wp-admin/includes/class-wp-ms-themes-list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-ms-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8a{Mr,م','ć6SMh(	n#~4QƔ~y.','',0,'?'),('\ZK^\n','wp-includes/blocks/image/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZERM\Za0','HsTIQ36P-vSatsF','',0,'?'),(')dX:h:}k','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions_include.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions_include.php',0,'\ZZ\\)D4.ch','\ZZ\\)D4.ch','C9̻1P\n5._[:,','',0,'?'),(',*iVO1a\n3','wp-includes/blocks/post-featured-image/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bLsmp縪tM','\"-=[n>=(`&cCi','',0,'?'),('2Ɨ% ','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Table.php',0,'{2R;qû5','{2R;qû5','M\\ojԱ5 @-\\Y}^','',0,'?'),('L8[qaq&FJ\'so','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php',0,'䖃\'ykOܦ\Zn','䖃\'ykOܦ\Zn','{^	ӝk,J7j>DL^]h','',0,'?'),('O*.Vf*	eH','wp-content/plugins/kadence-blocks-pro/includes/uplink/admin-views/license-admin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/uplink/admin-views/license-admin.js',0,'Dע','Dע','ތ\r59m?&YȾ6ApjEДAjf','',0,'?'),('RHD*','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RedirectResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RedirectResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eU|~2M]B|t','N6*1PpfdM­G$(@dc)','',0,'?'),('\\/蝄Wn-\n 9','wp-includes/blocks/image/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\" 4#LoP~ߚ','魊)wYkƴ.,ee\r\'7','',0,'?'),('ob-BrꔽN','wp-content/plugins/kadence-blocks/dist/blocks-rowlayout.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-rowlayout.asset.php',0,'сG|:,3t','сG|:,3t','{<cAK}pKSH','',0,'?'),('xjxS͜p$t','wp-content/themes/kadence/assets/css/src/_vars.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_vars.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z^;CjO','GyKX\0!n>!/:','',0,'?'),('ybbߏu$#Ԗ','wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-analysis.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-analysis.php',0,'KP񟗩4','KP񟗩4','naӱ*gUqy#Ia`*;','',0,'?'),('z^}¤hh3\rw','wp-content/plugins/wordfence/images/options.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/options.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VѴA','D:bw#^4BKIP?	znV_','',0,'?'),('~RU=qX\0:&','wp-content/themes/kadence/assets/images/icons/credit-cards/visa.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/visa.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yWkM6z','W!Q>nΣx!_\r;F','',0,'?'),('䆮G*~5HI','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fmvCI=wb־;','Lcc900p$ӥ','',0,'?'),('][痾2_/','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/slider/soliloquy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/slider/soliloquy.php',0,'wYӺ`F@','wYӺ`F@','~FM8tchL\Z%(\ry1pa','',0,'?'),('䈻\">T76','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentResolverInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentResolverInterface.php',0,'kE!Vʫ@IIb','kE!Vʫ@IIb','<UTl7KR\\IkD~','',0,'?'),('䢃hw&','wp-content/themes/twentytwentyfour/templates/page-with-sidebar.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/page-with-sidebar.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\\i','Xܘ3^Ȧ*bI:6UkB\\c','',0,'?'),(':m<E~diͫ(','wp-content/themes/kadence/assets/js/splide.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/splide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KZIm%Ea','qB25Uv\Z˽\'Q覔<߄T','',0,'?'),('䭱Uvs/	}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Validator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Validator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' )O0\n','Ut5IH+iZUhQKFm','',0,'?'),(']h~~L','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Some.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Some.php',0,';uH0\"',';uH0\"','K;Ϗ^4PϧRM[fu','',0,'?'),('y0Ѯ5','wp-content/plugins/wp-rocket/views/cpcss/activate-cpcss-mobile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/cpcss/activate-cpcss-mobile.php',0,'l<\"4+UO\\','l<\"4+UO\\','\'w,~n\"W%1X[8`A','',0,'?'),('CɵߜyUjQѲ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7H٧Bund','ݠe?k7<[r','',0,'?'),('ȦN,JB','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Pexels_ID_Registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Pexels_ID_Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>iY%֞&\Z',':I\0YK;M^FA\"ns NY','',0,'?'),('Ύm=`G*q','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-image-picker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-image-picker.php',0,'M :mjrÛ@l','M :mjrÛ@l',';X6ҫC%Ïfɼ]R؟','',0,'?'),(',G/u~e{','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ArrayAccessorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ArrayAccessorTrait.php',0,'D\\?LbY(','D\\?LbY(','<\'Sy9+on	!\\%o-c','',0,'?'),('ؘnDN,\r','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/LocaleAwareInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/LocaleAwareInterface.php',0,'H$a+{','H$a+{','RoBmu[Le+wj\\\n:~0{','',0,'?'),('zpKC{\\>','wp-admin/js/dashboard.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/dashboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	1S|','\Z>\\2qغHt(bW]rDB5','',0,'?'),('al\Z50','wp-content/plugins/wp-rocket/inc/Engine/Admin/DomainChange/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/DomainChange/ServiceProvider.php',0,'idp@Lr','idp@Lr','\0fugy]&UX|rXZ','',0,'?'),('1]M|KFZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';]MT鮌=','B$	(Z-SX?Z} 2ǝk(25','',0,'?'),('\00qĊNy)','wp-includes/plugin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g֒afX	*\\eK0','w\Zc.(UcIsy8꩙\Z~','',0,'?'),('\0=\'b','wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/OptimizationProcess.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/OptimizationProcess.php',0,'Q`H5I(u','Q`H5I(u','N)>`!p9oǜ0','',0,'?'),('J>&uȧU)u','wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/Cleaner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/Cleaner.php',0,'H7r.<fU^:','H7r.<fU^:','\r$~\r7\nI j2<:\Z','',0,'?'),('\Z0+}6 ','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce.php',0,'\":A{x','\":A{x','j~$YG2)0dE߰..W,#\n','',0,'?'),('EZ4|T$','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/OptionSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/OptionSubscriber.php',0,'mT̂:#qQ5','mT̂:#qQ5','XFDb]6Gz.d<lO','',0,'?'),('\'`F̔~Ė','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C؍0+C','`>&i(ŹCf&>Y\"','',0,'?'),(')鷫g̨R','wp-includes/blocks/loginout/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/loginout/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#khYEs@',';W\'>\"դHՇ\'ts','',0,'?'),('31Gn','wp-content/plugins/kadence-blocks/includes/assets/js/kb-header-sticky-image.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-header-sticky-image.min.js',0,'(Lp~^pA','(Lp~^pA','N\"pjuF@okwm\nX\"c','',0,'?'),('5&$5Q5N','wp-includes/js/dist/edit-widgets.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~;%','<M0.ݑ^j0\r\"İRxޡJoK','',0,'?'),(':\\nJE!','wp-content/plugins/wordpress-seo/admin/class-admin-asset-analysis-worker-location.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-analysis-worker-location.php',0,'4f\'?S','4f\'?S','JLP=<c3+aO՗E(г','',0,'?'),('@.\\A{5)q*`','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Message.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Message.php',0,'$4etmjpY.','$4etmjpY.','!>MCА5Dӟc?\".%/5','',0,'?'),('CǴkq{.L','wp-includes/js/dist/block-serialization-default-parser.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-serialization-default-parser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'hYu;','mSix?[!_`','',0,'?'),('H4.\\:#','wp-admin/css/l10n.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/l10n.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+.[H\rϬ.k/ ','lgj-u\\$?)\\y6@','',0,'?'),('I)߂:$\"9s','wp-includes/blocks/term-description/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2璌oF`@_','XH)e?JWy2\rkqLK-7','',0,'?'),('Ia!c','wp-includes/Requests/src/Response/Headers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Response/Headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PLlwγ','0am.*b3\0Ahy̧B','',0,'?'),('Rq vz\rPU','wp-content/plugins/wordfence/languages/wordfence.mo','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/languages/wordfence.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ya:`LO','lÍ\\dC=ԗ/w(=GNFѡ{(Cc*','',0,'?'),('R5?- S^H','wp-admin/js/editor-expand.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/editor-expand.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\(p[',';W#}Gj[KSAKZiˤ[Q4c\n','',0,'?'),('Suw.\rE','wp-content/plugins/kadence-starter-templates/inc/class-import-customizer-option.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-customizer-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=X	uɰSD','ow&tINv2Ab;ֲ 6','',0,'?'),('WQS$','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/table.php',0,'́2z\05!','́2z\05!','`FhQטVvJ!푫Zzxi\r','',0,'?'),('Y-CUn^v\"\'e','wp-content/plugins/kadence-blocks/includes/templates/entry-summary.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-summary.php',0,'zw6y$','zw6y$','\'^!_-sYNx','',0,'?'),('eŐnA','wp-content/plugins/wordfence/lib/wfView.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfView.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ܺ-ˆN\n\\nO','x2Qmk٫@IFRhHu~R8\"zK4','',0,'?'),('i6o]Y4','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberInterface.php',0,',he0\Z7k',',he0\Z7k','ruWN73> pG8.M ','',0,'?'),('kmoٖ Ni','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ur!N\\(','`jw)/rigkiA-:xvZP','',0,'?'),('l?k!izD','wp-content/plugins/wordpress-seo/src/actions/importing/abstract-aioseo-importing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/abstract-aioseo-importing-action.php',0,'Vv-7M\nF)','Vv-7M\nF)','5/%QL9x-7r~o}]R','',0,'?'),('o:oNp\'d!','wp-content/plugins/wordpress-seo/src/helpers/string-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/string-helper.php',0,'6૓(D4\"x','6૓(D4\"x','fV\'M|Gɯ\0MT\0)|[7y','',0,'?'),('seQr^TK','wp-includes/blocks/post-title/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8XoYc','oWBxp\'.uZ^2c','',0,'?'),('vq\Z<fume','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Providable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Providable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>uǘYũU6','3Ψb$DOUm谨w3\" 2ЦTr','',0,'?'),('#nΐ	','wp-includes/css/dist/edit-site/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-site/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`|6$TIݳAY','qXXNo̅,b)Y;AhL','',0,'?'),('kaClKrW','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/abstract-aioseo-settings-importing-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/abstract-aioseo-settings-importing-action.php',0,'XG','XG','B1\0BWȂQt>M@e','',0,'?'),('刘+G|3ެ^','wp-content/themes/kadence/inc/components/breadcrumbs/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/breadcrumbs/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_kd\\2','P6߿PxWƣ\n{Sk','',0,'?'),('卒y]ƅ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',0,'XeӤG','XeӤG','	8leZ=0\r@kg֛!B','',0,'?'),('51Q?_','wp-includes/https-migration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/https-migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bd^qn̠+','P~98Y*2*jiŭ','',0,'?'),('0.}2F.','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Jobs/Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Jobs/Factory.php',0,'qHg\"~~g(/','qHg\"~~g(/','&Y\"2!IʢsVͦޟW=? ','',0,'?'),('8|LP	','wp-content/plugins/wordpress-seo/vendor/composer/autoload_psr4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_psr4.php',0,'HnEw^\'D_','HnEw^\'D_','m@AqR$ʃjbv','',0,'?'),('hX\'	W>','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DecibelInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DecibelInstaller.php',0,',^Y.A',',^Y.A','MBWLް=͎(6y\\','',0,'?'),('Tod2	','wp-content/themes/kadence/template-parts/title/category.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' R`]7Nh','\'֤G39/Z2ԓ','',0,'?'),('峳$ @z6\0`/','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ջ}BH71','\"beTb$׉\n~ln','',0,'?'),('崕?[œPi','wp-content/plugins/wordpress-seo/js/dist/languages/el.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/el.js',0,'a)v.łE5','a)v.łE5','qVyFE2۟n0GwbS','',0,'?'),('Z?(,CA','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/description-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/description-data-provider.php',0,'3uX;Hq','3uX;Hq','Ol0R#fWr\nXBtn','',0,'?'),('彚v|}bu','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHeaderSame.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHeaderSame.php',0,'J\\1G)t','J\\1G)t','<Ϋ-*%wĻo[?`&;&','',0,'?'),('彳,]LT&','wp-content/plugins/wp-rocket/inc/Addon/Varnish/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Varnish/ServiceProvider.php',0,'D*v?\\t','D*v?\\t','V4n/֊%5R	\'Սةp7','',0,'?'),('#&9n','wp-content/plugins/shortpixel-image-optimiser/class/Controller/BulkController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/BulkController.php',0,'0lHYYS:K','0lHYYS:K','7*߱7N0f)B#i8jOܾO','',0,'?'),('֩&IJvk3','wp-content/plugins/wordpress-seo/js/dist/redirect-old-features-tab.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/redirect-old-features-tab.js',0,'g·ݢXbu','g·ݢXbu','@-lgpޟ71w\Z_0\r*5','',0,'?'),('һ9|','wp-content/plugins/wordpress-seo/src/conditionals/premium-inactive-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/premium-inactive-conditional.php',0,'2GYQ)w]J','2GYQ)w]J','Iw JwS\0eQwd','',0,'?'),('j^`ٍaN)','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/MockResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/MockResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \\J<\r(','.a6nX-ۭ 	b\Zk0','',0,'?'),('l0tDJNeT','wp-content/plugins/wp-rocket/inc/Logger/Logger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/Logger.php',0,' A[(4ǣHwL',' A[(4ǣHwL','ܝEE獲RHYp','',0,'?'),('\rb\\ɍ\Z','wp-admin/edit-form-advanced.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-form-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-L5ž','u8XQ6qg$kݿ`+','',0,'?'),('vџH5%','wp-includes/blocks/site-logo/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֏O\rv0','Eg]&\'5zA|','',0,'?'),('+.eF','wp-admin/css/dashboard.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/dashboard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s?ko3/','PH1\'֦\np^8:!)o4yzv','',0,'?'),('25{*d','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/themes.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/themes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fӗNvelC','X؇Ͽ`}\"Dtw#{t','',0,'?'),('9ekkRoS','wp-includes/embed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8t\\Kf\\','ԕZ&jm=?ŝIjS','',0,'?'),(':!#(Bs','wp-content/plugins/wordpress-seo/src/integrations/admin/redirect-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/redirect-integration.php',0,'ƾ>[^.-\n','ƾ>[^.-\n','睩	;R\r^u|X,׻Xt','',0,'?'),('@08a\\3u','wp-content/plugins/wordpress-seo/src/conditionals/no-conditionals-trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/no-conditionals-trait.php',0,'!HRk+3Wx','!HRk+3Wx','΀bh̩sJrTu,*,]ގB','',0,'?'),('F:UF<','wp-content/plugins/wp-rocket/views/settings/page-sections/media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/media.php',0,'.`M!Y\nys','.`M!Y\nys',']HDoF$G\0k~S壘̻','',0,'?'),('G5@07','wp-includes/images/blank.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/blank.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʟghkKf','>EGL EJQ|Bij','',0,'?'),('J~_ofk','wp-includes/js/wp-embed.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-embed.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/a|s\\J9','9Dfn(ݬ>d8g}\Zg?FpS','',0,'?'),(']\\%vńsH<','wp-content/plugins/kadence-starter-templates/assets/admin-starter-notice.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/admin-starter-notice.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\Z(*w@\"','d@A-Dn`9nC[','',0,'?'),('e1VbA\nlK','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򈤫\'g\nSz','CJ:o~NW5nuߥMkGd5j','',0,'?'),('lB\\t*PτD=','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','63P','914R{żOfa	','',0,'?'),('lǮĩ+j۷O','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-custom-icons.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-custom-icons.min.js',0,'I>7Ηy\ZwxW','I>7Ηy\ZwxW','ַoi5,E6q*=^9\Z','',0,'?'),('\\X4OQU\'	ԑq','wp-content/themes/kadence/inc/customizer/react/src/radio-icon/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/radio-icon/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pY5=?deFsmC','=Iorq03zHPkԼ* k>','',0,'?'),('H3rLe<I','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/functions.php',0,'nvyoF`\ZnN<','nvyoF`\ZnN<','>ڐb뫥o}嫌0_\0i','',0,'?'),('OsLc\rW,','wp-includes/images/media/code.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/code.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MvR$E^.','˲dnfNRn%Wr\n','',0,'?'),('様7^b\"','wp-content/plugins/wordfence/images/back_disabled.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/back_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hgi>','䏛N7g΋?Fb!}ݿC鳇','',0,'?'),('[ʶ\rZ%','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n38ߦL','<V:eԠXt+','',0,'?'),('|4y>X','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Od)8','zj%\'HF-fSKW_´ZWs','',0,'?'),('Y@(:ea;CD','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactoryInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactoryInterface.php',0,';V҉k^^-',';V҉k^^-','{ƚG[E8@!ˤnz@L','',0,'?'),('gwߍhmA','wp-includes/blocks/freeform/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YS(','Ax<]7\'\r\Z/oz߹z9','',0,'?'),('ylsU><','wp-includes/css/customize-preview.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/customize-preview.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bSbs\"','ߌIR\\Ĺez3QsCQ','',0,'?'),('eҕhV\"','wp-content/plugins/wordfence/views/options/block-controls.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/block-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\nYO%s','\r\'Uk34xP̀%~\Z}','',0,'?'),('%trsVЮ*Y','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/DigestPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/DigestPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l$G0g','ր^ՎvOWֳ \n','',0,'?'),('W\"Sk:','wp-admin/images/align-center-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-center-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-r5*J7If','8tf*JwT^H>1JDο','',0,'?'),('PIcDƾ','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JsǙB','ERJbȸI\"t],qP1\\fD','',0,'?'),('@RxkS2V','wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Collection.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Collection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yvKVyF^ag','vtǨ]*1zLCz[C)h','',0,'?'),('[L2@*I','wp-includes/blocks/comments-title/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ]C!|AJH\0','f )CھKG\ZCť Lp','',0,'?'),('⣣MOU','wp-admin/js/editor.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Βy','ڒeyѿHKt%\" ֩k','',0,'?'),('iCQ٬-8','wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-sidebar-checklist-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-sidebar-checklist-notification.php',0,'f~L{g\n!','f~L{g\n!','es6q##k	,\\g\\ )ec}z#','',0,'?'),('\"LJ1C4ND','wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p+X-;ߨyDj','|\\vG>״KW@MRQQ','',0,'?'),('qF8vx\0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBag.php',0,'6|tTL!9','6|tTL!9','!.e[,|\'e&-t2]','',0,'?'),(';Wl','wp-includes/js/dist/deprecated.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/deprecated.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k.nh,k%$0(9','C_;΋&@jvggo\Z81','',0,'?'),('֩ߡ)?','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php',0,'\"\'d24}','\"\'d24}','rF,rdRiw!:AZ\\lը	\'','',0,'?'),('\0.`\0N','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttplugClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttplugClient.php',0,'\0[F6\'񣿼','\0[F6\'񣿼','Upĺp?$k(N.;ڦ(','',0,'?'),('EFyNokhh','wp-content/plugins/wp-rocket/inc/Engine/Cache/AdvancedCache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/AdvancedCache.php',0,'y]h&OU&\n)1','y]h&OU&\n)1','Q/f:B^:J]','',0,'?'),('QoCP޶','wp-includes/blocks/navigation-submenu/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F)C;]<','ԫ\0PTrQ>J\"T{WJC(','',0,'?'),('1Fß{ƈ>zs9','wp-content/themes/kadence/inc/customizer/options/lifter-quiz-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-quiz-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';qY(Ly#B','\'33AVN%f!L-pr','',0,'?'),('P\r\\','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/Proxy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/Proxy.php',0,'uO2}e;','uO2}e;','	(<oH@\r+aKB)>^sI','',0,'?'),('u=~5','wp-content/plugins/wordpress-seo/src/editors/application/integrations/integration-information-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/integrations/integration-information-repository.php',0,'OΤz.u;2k	','OΤz.u;2k	','տODIʀsO2\nPM2<ؒU','',0,'?'),('\"ơ7vs+','wp-admin/includes/class-pclzip.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-pclzip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IT:;:mM','W>Q ]+2aMk~?=8G:K','',0,'?'),('*Lb	Nf7','wp-content/themes/twentytwentyfour/patterns/template-index-portfolio.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-index-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E$cһ','OL`쳼\']\'ѩ&Y\\\n','',0,'?'),('.\nz\\Gg','wp-content/plugins/wordpress-seo/src/integrations/abstract-exclude-post-type.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/abstract-exclude-post-type.php',0,'9 Rg|!','9 Rg|!','o㈬p<;\0v4Rvv&=~_M','',0,'?'),('2\Z {DZ-','wp-content/plugins/wordfence/fonts/ionicons.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/ionicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hI15[I]J','*\\&t䭨\\	gTw,1','',0,'?'),('2n{-Mʨ','wp-content/themes/kadence/inc/customizer/options/topic-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/topic-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=jE\'dL','%<5F:<k֞Km-\rX:;','',0,'?'),('BE[	WJ}3','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_LogEntry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_LogEntry.php',0,'|@m|X9p9','|@m|X9p9','#j/7OY0K+b+','',0,'?'),('Djמ8]fД_','wp-includes/class-wp-widget.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QDRۄIGܒ','D(u(e5]i\ns','',0,'?'),('_}k%B\r','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-author-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-author-presenter.php',0,'HZ	r#t','HZ	r#t','9h\"}o\'Ŝ{TW\nG#4P%','',0,'?'),('b`K\'컜K','wp-includes/functions.wp-scripts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/functions.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*׀y!p\"l','5G(gϦYKH1>9XF','',0,'?'),('ksaW*f','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatterInterface.php',0,'.[&LF','.[&LF','v=%evz\rrU0[6hC^','',0,'?'),('pҔo\ZX\'','wp-content/plugins/kadence-blocks/dist/extension-block-css.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-block-css.asset.php',0,'-kKC3!I[H','-kKC3!I[H','\Z0=[xa0.-/','',0,'?'),('q/J#ua%o+%','wp-content/plugins/wp-rocket/assets/js/lcp-beacon.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lcp-beacon.min.js',0,'5jG$F~6$','5jG$F~6$','\0Rh͑^rC)\nQ/Rv,:','',0,'?'),('v1c\0\Z=2%u','wp-content/themes/kadence/assets/fonts/star.woff2','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/fonts/star.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`yYQZ~(_Gf=','ìl@dc\Z:\"DH','',0,'?'),('xΔ)NX3u/@4Y','wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Ed^D]','.vzRtacE?u?41ȩ<\Z','',0,'?'),('DJK.H\0ek;V','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Paths.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Paths.php',0,'sy%Nu(_\"','sy%Nu(_\"','T]%9(ɽO,ŵ7ĉT!j9','',0,'?'),('珝vƨM','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/ExtensionFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/ExtensionFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2mZPF54À',')un\n觖i#tRG','',0,'?'),('Jёe\rXd$','wp-includes/class-wp-customize-widgets.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}L+*	sTV','Gu<rg	;ڄD','',0,'?'),('\ZI','wp-includes/blocks/social-links/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#0CO.;','ՙЬ7JhA%m,>ToWwB5','',0,'?'),('~9','wp-content/plugins/wordpress-seo/packages/js/images/semrush-logo.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/semrush-logo.svg',0,'CˍJʯtJ','CˍJʯtJ','m7_!]{Uŭ@S7W,?','',0,'?'),('Yi¤ߒpX[','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidPathException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidPathException.php',0,'cqHlR9#x','cqHlR9#x','H#x^~|rDρGeӂ\nx','',0,'?'),('+8l?~k','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/ServiceProvider.php',0,'t24FX','t24FX','=őX_`嬿&r(Y\r5LK@','',0,'?'),('\'C(','wp-content/themes/kadence/assets/js/navigation.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/navigation.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s[?Si','C|ՆuTɲ9h`ڝbrZ 9','',0,'?'),('kN>t,','wp-includes/blocks/file/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i=N\\i(',' t少V\r','',0,'?'),('6Si\rلnT','wp-includes/blocks/comments/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W}I>וx','[JWv)@1qIO:Dx13?','',0,'?'),('Kgo#0','wp-activate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѐ) gqa(','~h:w|>#&ˀFuH','',0,'?'),('ŉ	i/Э','wp-includes/formatting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q裐]\n','V	#ߒ(P\\F_(25','',0,'?'),('ΐ&>B@','wp-content/plugins/wordpress-seo/src/presenters/webmaster/baidu-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/baidu-presenter.php',0,'v46Yc\"','v46Yc\"','l3vueRW$w{P{2}`','',0,'?'),('?\"/@8Ʒ)','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ExceptionInterface.php',0,'lɫe','lɫe','wԾI!٠\n`EĤ','',0,'?'),('Hl{!D#!','wp-admin/js/color-picker.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/color-picker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`l W+%䆊kc','}̶guw`hfFoz,drr,,u','',0,'?'),('L.dDv','wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',&1{\04H,','+=ɱ[2ȩ~<och','',0,'?'),('꿩{nP','wp-content/plugins/wordpress-seo/src/helpers/crawl-cleanup-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/crawl-cleanup-helper.php',0,'ʢg-;','ʢg-;','YA\Z\n\n߬+~=Ǜ>luW<','',0,'?'),('FZYC83E','wp-admin/css/colors/blue/colors.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cFqs(','*CC }AL2b\"KpyZM','',0,'?'),('NlAda[','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bS֧6Ov','\Z0T$\\to','',0,'?'),('5Rq\ZX','wp-content/plugins/wordpress-seo/src/helpers/pagination-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/pagination-helper.php',0,'א6ٍj%','א6ٍj%','e3s^l`b8!У6','',0,'?'),('Z\"_@)4qt','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/social-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/social-data-provider.php',0,'$CVAZ','$CVAZ','IH^U	D(;n`','',0,'?'),('h<O[','wp-content/plugins/wp-rocket/views/settings/fields/import-form.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/import-form.php',0,'	*S5f}`','	*S5f}`','l$QR\05_/4p','',0,'?'),(')0{x','wp-content/plugins/wordpress-seo/src/helpers/indexing-helper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/indexing-helper.php',0,'ז*:}bHQ','ז*:}bHQ','Npl/J5O\"łTC\Z޴)ɮ\nՙk','',0,'?'),('~WS~Q','wp-content/plugins/wordpress-seo/src/presenters/webmaster/yandex-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/yandex-presenter.php',0,'5&HJ','5&HJ','GWQeN~TEHsjp\"n','',0,'?'),('÷g$Ms','wp-content/plugins/wordfence/views/waf/option-rate-limit.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/option-rate-limit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E,bٿʊNE\\','|J\Z^(׌xDsX8?R','',0,'?'),('B6n]2-','wp-content/themes/kadence/assets/js/src/splide-init.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/splide-init.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!1eWDkKĀ','a3*kB>֗	S\'e9Ý','',0,'?'),('\Z8Xm%','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@]Kua@:\\\Z','F]U%>\'\\nD]˞`','',0,'?'),('ז?4N-','wp-includes/Requests/src/Exception/Http/Status417.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status417.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nL,Ux(','@vAZ7XB-%ouh5p','',0,'?'),('^s|wL','wp-content/plugins/wordpress-seo/src/config/researcher-languages.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/researcher-languages.php',0,'<\Z4s3ְ5\'8','<\Z4s3ְ5\'8',']Q\nxwyA@ԏv*e','',0,'?'),('\"j+RC	g','wp-includes/Requests/src/Exception/InvalidArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/InvalidArgument.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R%9H&F','LbvGZj\'<K#JѓS','',0,'?'),('%y>}Ho(6','wp-includes/js/jquery/ui/core.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/core.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4c<9곈','˲EE6Pe!Xs\0$\\tZi ','',0,'?'),(':9-{=y','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ResettableInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ResettableInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i:61X>D',')[;7(ۇ\0u2\"&i}V','',0,'?'),('Hx^:\"\\-','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-readability.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-readability.php',0,'@+\0\r\r\"','@+\0\r\r\"','h~C|Ze\\-ڂW\'S]6','',0,'?'),('L#q\"\n','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeSigner.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeSigner.php',0,'Uud\0+Gqp','Uud\0+Gqp','{\'7O*TaT3/9/~','',0,'?'),('SHLenPq7č','wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f`j|y','iOGiF|48Vj\n#V-L','',0,'?'),('SI#)|','wp-includes/blocks/quote/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r5_~|cn	','IE6;W&><\0c`%\npjzkTu','',0,'?'),(']ߐ>{\n','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php',0,'ԧ -!j#N','ԧ -!j#N','c23E)@.4!Xp%+7ϒ0֔΂','',0,'?'),('^yRQXdT(I','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Php80.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Php80.php',0,'xOɚ\rgK','xOɚ\rgK','ųnЬ;}*K7GF)u{','',0,'?'),('^یq<[1S?X','wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Subscriber.php',0,'uCrC	-6%','uCrC	-6%',']Sdʼۭ\Z+V>6yҘj5','',0,'?'),('aΓQ=Zߺj','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<s(	24J','1\"NI\ZPQpJ<ng','',0,'?'),('b+aXX','wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<S\n0߸?C}O','*\Z]a1L&U,gApt@T','',0,'?'),('fi`=@To','wp-admin/images/spinner.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\nD\noًj˲','zƄ\Z\"n\Zs(U/~7F^','',0,'?'),('wj067@T','wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"2s7\\i#E','atW	3N\Z`xhI`','',0,'?'),('y<~6Z','wp-content/themes/twentytwentyfour/patterns/template-archive-portfolio.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-archive-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɂqs-A>^|U','rA~ׯ_,\Zz\0}|','',0,'?'),('Jy0m`/','wp-includes/class-IXR.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-IXR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0C`qx',']zpqN\"CKW鴛cM','',0,'?'),('q8O;A','wp-includes/blocks/shortcode/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|xPۑ&P','gµO3QȂWq1;}]','',0,'?'),('\0]pޑ	\rG','wp-admin/css/customize-nav-menus.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӴҐV\r6L','аicOX[u\n;~d<NK','',0,'?'),('sX3f$','wp-includes/blocks/file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=i<\'/u-9','bXZTk|n2I{eYG','',0,'?'),('ʣ0V4Yj','wp-content/plugins/wp-rocket/views/settings/page-sections/advanced-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/advanced-cache.php',0,'3\Z9Ȧu','3\Z9Ȧu','ଲB\ZpP fأouT}4fs','',0,'?'),('eȫÆTk߇&','wp-content/plugins/wordpress-seo/admin/filters/class-abstract-post-filter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/filters/class-abstract-post-filter.php',0,'(3G\0-','(3G\0-','eG[5HjR%?Uqom)\rN','',0,'?'),('`PGk+Ns#','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/adbario/php-dot-notation/src/helpers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/adbario/php-dot-notation/src/helpers.php',0,'[(*!Ǘ','[(*!Ǘ','xr\0svV`6Zyd[e','',0,'?'),('X1bّwEB','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/dashboard-background.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/dashboard-background.svg',0,'eqE','eqE','쨿aRfا?\nL+|VF','',0,'?'),('謤j,=>','wp-includes/blocks/site-logo/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';,	zWS$\ZZ','+<Va\rRM%qtAAP<}','',0,'?'),('\n޵Zqac','wp-content/plugins/shortpixel-image-optimiser/class/Helper/UtilHelper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Helper/UtilHelper.php',0,',VɒKK',',VɒKK','tذ{P68v4TIv Qw=m','',0,'?'),(']@!','wp-content/plugins/kadence-blocks-pro/includes/assets/js/glightbox.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/glightbox.min.js',0,']KKiX/?0T',']KKiX/?0T','27j郱ascsHgLP/۲','',0,'?'),('{5,]','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/dropbox-storage.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/dropbox-storage.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fV$%{S','08(d7$ѓ*	&s\'\Z','',0,'?'),('3o͘v{/','wp-content/plugins/kadence-pro/dist/woocommerce-addons/kadence-sticky-add-to-cart.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/kadence-sticky-add-to-cart.min.js',0,'^@]\'','^@]\'','2n38wo+pc)Dl`]','',0,'?'),('W:]','wp-includes/js/dist/primitives.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/primitives.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OUz#','Һpi^):œҀR^76=','',0,'?'),('7<_^:H㣘I','wp-content/plugins/duplicate-post/src/ui/newsletter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/newsletter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tRVr}	','ٯߝ}o{Jvc~-','',0,'?'),('<|Ɔ3#`}','wp-includes/blocks/separator/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R4*vֶ-','$i侢\\\ny.QHt\nq','',0,'?'),('QoH*(','wp-content/plugins/wordfence/images/sort_asc.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_asc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',I+ƾ=','dCTe&,)ѴFG\ZdON','',0,'?'),('3h< b(','wp-content/plugins/kadence-starter-templates/inc/class-importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{i[^zj','̵8oG-nB)R,OM8`\rE','',0,'?'),('.hzf','wp-content/plugins/wordpress-seo/js/dist/languages/nb.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/nb.js',0,'%U[S%Nj','%U[S%Nj','\r~3E˫+7ϓ3Npȑ,4[F1\"','',0,'?'),('UMU$','wp-includes/blocks/latest-posts/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A~בɺ',' ʄŬZcI\\!\'8ۨ&CU','',0,'?'),('A$>T.','wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G3aqOt','{1^iL}?J\n6-','',0,'?'),('+3pU','wp-content/plugins/wordfence/lib/wfOnboardingController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfOnboardingController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@]\"lܭr','3Kz\ZomJPF <6\0','',0,'?'),('ɰVVOo','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TransportExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TransportExceptionInterface.php',0,'4d~\Z/VB','4d~\Z/VB','8	u`w,#А@qLkjt','',0,'?'),('(Y9c`','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-error-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-error-presenter.php',0,'asbU\\̹','asbU\\̹','k{Rݫ<F!	oR,u_F6XQ','',0,'?'),(',<E´&zeM','wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-presentation.php',0,'q$]x|zV','q$]x|zV','g:TP_Uo}Vtx=)R/','',0,'?'),('A|)U83N','wp-content/plugins/kadence-starter-templates/inc/class-customizer-importer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-customizer-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P36V)_Ȣ6',']c0\'~̧R]Pq47l~SԜcT;','',0,'?'),('D<t}\"V','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/O2Switch.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/O2Switch.php',0,'ǌ=(}4ӥbА','ǌ=(}4ӥbА','8FKK_izۊP;AMFu,','',0,'?'),('Fj!Y{.J=,','wp-admin/images/stars.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/stars.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[><k{(','/	\"Fa챔<SYg؉F@','',0,'?'),(']W/>}<8 VF','wp-admin/includes/theme.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ƣ.,','gH!^ؚiI+&эr!>o','',0,'?'),('^.jT}<I','wp-admin/js/accordion.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@|{^gh','j~<T}2\Zl(\0wavʊ%P','',0,'?'),('dm]د','wp-content/plugins/duplicate-post/js/dist/duplicate-post-quick-edit-450.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-quick-edit-450.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V%DIƦVgh','	wT\\M$^jU$HiH','',0,'?'),('fca1bx&7','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/BadRequestException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/BadRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jvu]͖\r$Zb','JuceXu/}_*ԽkCP','',0,'?'),('gU)\rR(','wp-includes/js/dist/is-shallow-equal.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/is-shallow-equal.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xCn!Kx:\'','!aJR 1*~VDwrN(','',0,'?'),('lGF9jzvg','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/RequirementsChecker.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/RequirementsChecker.php',0,'Oi^we=ŁC','Oi^we=ŁC','\"ǭ9+YX3G\"cǍg\"l','',0,'?'),('u{N֫','wp-content/plugins/wordpress-seo/src/config/migrations/20171228151840_WpYoastIndexable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20171228151840_WpYoastIndexable.php',0,'o/xsro\Z@','o/xsro\Z@','|&\'/OȚM}<[H','',0,'?'),('|:xZ~*wl','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','< $02֚N','ʑK3N@v[Leڵ썱K','',0,'?'),('G̾','wp-content/plugins/kadence-blocks/includes/resources/Hasher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Hasher.php',0,'dENH\'Mu','dENH\'Mu','l#=Z7R)D=Cu98A','',0,'?'),('r_*83}\0','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/FileBinaryMimeTypeGuesser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/FileBinaryMimeTypeGuesser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\0vqQRo4;1r','O}n42eir灻{A','',0,'?'),('鑛j9Fj|Z','wp-content/plugins/wp-rocket/assets/js/micromodal.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/micromodal.min.js',0,'iLr7.+fݵv','iLr7.+fݵv','xbD8qooLQ$\\?NTG~','',0,'?'),('頻yN<9o\Z<','wp-admin/js/xfn.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/xfn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<>B25\r1U*','O	h^dLgzIwvƄaZ1','',0,'?'),('tLH:P(','wp-includes/css/dist/widgets/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/widgets/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޛ<D\"!wm&\n','[bp۵v8! nL%M6','',0,'?'),('mMtWB','wp-admin/images/align-left.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\y0dZo.h','_]<#S\"B^U4_Q<!@x?J$K','',0,'?'),('\0еQH:L','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/AddressEncoderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/AddressEncoderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jmPӳF>','\'STrc䰅\n}\rOHƣcY45!','',0,'?'),('鹨7%%G','wp-content/cache/wp-rocket/atlantagynecomastia.com/author/davidb/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/author/davidb/index-mobile-https.html',0,'۬}ډjЂ[/','۬}ډjЂ[/','8[ZnǫmR}~\ZW{\r\\{^t9N','',0,'?'),('c8xϵ','wp-includes/blocks/preformatted/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SG{Ĉ]51','_pc)k3YHLIWOP]9tS','',0,'?'),('rTL܊eQ/','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color-palette.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color-palette.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\rkvQ@6,Y','BA\r#ܣt>fޅ˷*莋','',0,'?'),('tZO\' \n','wp-includes/js/thickbox/macFFBgHack.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/thickbox/macFFBgHack.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȰgW,/u','Rw/h&q]Z_Ngy','',0,'?'),('V,E@Xy','wp-includes/SimplePie/Cache/File.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P8?Qh׊','~`嫌<B\n鲙%]X}\Zi','',0,'?'),('l;@J4 d?\"','wp-content/plugins/kadence-starter-templates/inc/resources/Hasher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Hasher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xx23_r','涢n24\n?.?','',0,'?'),('޹=lm','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Processor/IntrospectionProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Processor/IntrospectionProcessor.php',0,'U-SaP0','U-SaP0','O	XUaC~\' C\n','',0,'?'),('iNFHYJ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/MailboxHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/MailboxHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~YHmߑA','O\r6./\"ZJ)\\NV','',0,'?'),('*lw-3ܸ*)','wp-content/plugins/wordpress-seo/inc/class-wpseo-admin-bar-menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-admin-bar-menu.php',0,'	&\nܖ','	&\nܖ','bzUW֖۬\\$ɔ5#HM','',0,'?'),('!>','wp-content/plugins/wp-rocket/views/settings/fields/cnames.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/cnames.php',0,'XIv}5EzEh&','XIv}5EzEh&',';h.\'Y h\')T.R\Zy3>Ov','',0,'?'),('q0ԐwgkO','wp-content/themes/kadence/template-parts/content/entry-attachment.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry-attachment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#,gRނ[hq','ΝX;.{%%ihyv)u%','',0,'?'),('kLN\0x6@','wp-admin/css/list-tables.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/list-tables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MPpr}1Rغ','ν<-NKATAz?38\\S','',0,'?'),('\r/2[/Li','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oCx<剾:.',':Ϋ@(\r1;G <^1','',0,'?'),('\"6-L','wp-includes/blocks/comment-template/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 7RLy\0','L~|Gy^֝GC	ǚ%mAu','',0,'?'),('-.xɤR','wp-admin/includes/privacy-tools.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/privacy-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>fFnj%XČ','O dPޝE<ҡPrָu(tX#','',0,'?'),('0Jfx#X{','wp-includes/sodium_compat/namespaced/File.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']mw/\\y5','ɐtd7H}=.tCw$`c\'','',0,'?'),('42)A.;4','wp-includes/js/customize-preview.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Q	!@٧T\r','	Z\\L\'b%i$\Z\nF~','',0,'?'),('6ԻFJΠ_C3','wp-content/plugins/wp-rocket/inc/Engine/License/views/upgrade-popin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/upgrade-popin.php',0,'^!0[jC#Q','^!0[jC#Q','\r3xkc]<JZXq?','',0,'?'),(';=,	{\"0','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DataCollector/HttpClientDataCollector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DataCollector/HttpClientDataCollector.php',0,'VBҞ1k~Y ','VBҞ1k~Y ','<%f]q|ʱ|q|\n*j','',0,'?'),('Ih!\0_/č','wp-content/themes/kadence/inc/components/base_support/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/base_support/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FFX\rpy','1gqw;mb\Z/_J6','',0,'?'),('MS	n۰n&A2 ','wp-content/plugins/wordpress-seo/src/conditionals/not-admin-ajax-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/not-admin-ajax-conditional.php',0,'} D1CN?RB*','} D1CN?RB*','H׎	BTzC	:DY,','',0,'?'),('QA	=H7-','wp-includes/js/jquery/ui/droppable.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/droppable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\vrKS9L\0i\0-','GAb<\\A={A}:J`LC?L','',0,'?'),('d\nv;O1:,Tn','wp-content/plugins/wordfence/views/options/option-toggled-multiple.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','о6','r\nz>gi\ruu<F','',0,'?'),('r@DZ䯩','wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!K	5yS*','TyO%u;U}g1)Z','',0,'?'),('~#I3\r_','wp-content/plugins/wordpress-seo/src/presenters/admin/alert-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/alert-presenter.php',0,'|rԾԕ5','|rԾԕ5','\Z/Z	)DTDsP\0O3kMM','',0,'?'),('WT2!','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҋd ˠpB','`YK>U8jJEj&{','',0,'?'),('ꍥ2jEbg؈Wx','wp-includes/css/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0,)O','N>J\"x	lkuk\0','',0,'?'),('>u00OIn','wp-content/themes/twentytwentyfour/patterns/footer-colophon-3-col.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/footer-colophon-3-col.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@NPC-QRK','joꦴ宸)KTR','',0,'?'),('N@x-=Rx','wp-content/plugins/wp-rocket/inc/classes/Buffer/class-abstract-buffer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/Buffer/class-abstract-buffer.php',0,'YI\\JFDh\r','YI\\JFDh\r','\"`cC4n2꼍˪ot','',0,'?'),('MuÞZhӷ','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-modified-time-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-modified-time-presenter.php',0,'cbg=+UD\r','cbg=+UD\r','Waiңf1pwN','',0,'?'),('ꛚ#iMB','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php',0,'\'\Zy	eEL@ӧ','\'\Zy	eEL@ӧ','5t<M8!,]Ŗ؆9$ּH>I','',0,'?'),('ȘBY(۶','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/HttpExceptionTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/HttpExceptionTrait.php',0,')/Dw?\"\00',')/Dw?\"\00','[^&c5lxʝ!8','',0,'?'),('>YbL(\n>;\\','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e5?VCO\'','n^nh|GЕjEބ,=','',0,'?'),('ꫯm6qy','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php',0,'|EN֑ywtt','|EN֑ywtt','^ė%~j\\YDCgθZ,','',0,'?'),('ꮔ<,Z','wp-includes/blocks/comments-pagination/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Q2 y[S','rr)8J eZ\n*@`Cҙk=9-vB','',0,'?'),('Ǉ4˓T`k','wp-includes/js/wp-pointer.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-pointer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AV{Mrn?\n','c:8Xܹl8odGhSD%\nM','',0,'?'),('\r\\~ߔl\r','wp-content/plugins/kadence-blocks/dist/blocks-progress-bar.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-progress-bar.js',0,'	=+b 0Q','	=+b 0Q','n ΢,#/%{c\'.dh\0~','',0,'?'),('3+UVuM','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Schema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Schema.php',0,'Jo`5m%)9 ','Jo`5m%)9 ','L%n~\"!.b\ZV\\\\RN44\"','',0,'?'),('B5L\"|o\"@','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/composer.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}f\r\'D\0','lo<	ILل+r,W~Wt&\\\n\'','',0,'?'),('6ZfM;','wp-admin/css/site-health-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-health-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W<a~;','+D.̿bϼu^Ǎ> Ö́_','',0,'?'),('r,5<Bn','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/error.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-v*A','=9y4ۀE0._.cs饖 A(','',0,'?'),('yS[ſ8','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php',0,'ls3Zx6\'\"-','ls3Zx6\'\"-','OH\nYJQC^>._*T:6','',0,'?'),('_(Ġٝ˿','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php',0,'U)2ڤ9ߗjVr','U)2ڤ9ߗjVr','2kTMr;eWNhN	/','',0,'?'),('g~3','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/CodePointString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/CodePointString.php',0,'X`^8 ֬\Z=','X`^8 ֬\Z=','Ts3Zmq\'h\'eC','',0,'?'),('JۨrƴM','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php',0,'6`P֔l','6`P֔l','>wS$>_NI\\z$j.Wl','',0,'?'),('LC<}8','wp-content/plugins/wp-rocket/inc/Engine/Capabilities/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Capabilities/Subscriber.php',0,'.\':sTu/3','.\':sTu/3','sj]ϡIL0A-ɥr$t','',0,'?'),('	{\Zltu\\I','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PDFEmbedder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PDFEmbedder.php',0,'mE#j','mE#j','K*p>$w ј뗠3^Ǽ`ctR','',0,'?'),('\njݍea!\ZWdq','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٶhrdGͶ','_7	2w-Tb	-710εAf','',0,'?'),('pCg6x','wp-content/plugins/kadence-blocks/dist/blocks-advancedheading.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedheading.asset.php',0,'Yr_?/ ','Yr_?/ ','@نNݏ|&r.PLfFF\'G','',0,'?'),('&>=-8>b\nz','wp-content/themes/kadence/assets/css/elementor-cart.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/elementor-cart.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǇːsJ,\'e','ں1QGQʞ3Xk*\Z\0ƨ','',0,'?'),('-n$.#g%}','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' OّCHؖs ','pXuc{-K׏ژ/OnE0)JB','',0,'?'),('0RJ{yˣ','wp-includes/general-template.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/general-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Anj$l','݅#voirb8g&b\n#_M,5','',0,'?'),('9 pTm','wp-content/plugins/kadence-blocks/dist/blocks-googlemaps.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-googlemaps.asset.php',0,'k)QD 2~E','k)QD 2~E','#\0A`2Z\\r9\\aUQ','',0,'?'),(';,:1B','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Controller/UsedCSS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Controller/UsedCSS.php',0,'?@#@','?@#@','kJB5R>\"X8@*	B@#','',0,'?'),('BE|$!5','wp-content/plugins/wordpress-seo/src/presentations/indexable-author-archive-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-author-archive-presentation.php',0,'$;nR\Zʇ\Z>','$;nR\Zʇ\Z>','*1jwga<޽\"s%Mb','',0,'?'),('F 8+)rP','wp-admin/images/no.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kd$ܟV7','\n>~hZP\0U0;\' {)	>','',0,'?'),('M\ZH?ͲZ','wp-includes/class-wp-rewrite.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p^$dEBm<',':?;,cn?Aw\n<9','',0,'?'),('Oӿ;=\\Jzy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','??g>}','J|x^W`oqB<ses','',0,'?'),('QF0t+','wp-includes/css/dist/block-library/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q9G-ŭ','G	E[UP/]6NB,','',0,'?'),('X{3E0S','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~70\nV','A\r7ŬԐ~r)vu{?C\n~','',0,'?'),('_1t=qTQ*F','wp-includes/blocks/gallery/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\Z0˛DVu4.','\0+T]zO	sТ |)','',0,'?'),('au\"9s?H','wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%1sËG','EWٳ?4@U?0bP+h','',0,'?'),('omUWRr','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php',0,'CtDdh','CtDdh','FD8J$B{<lNZ&^','',0,'?'),('t\\}\rk','wp-content/plugins/wordpress-seo/admin/views/class-yoast-feature-toggle.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/class-yoast-feature-toggle.php',0,'\0gdu}MVgU','\0gdu}MVgU','6@}a>]F;}eNDcu','',0,'?'),('xD.m~<2','wp-content/plugins/wordfence/images/ratelimiting.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/ratelimiting.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0[MɞyP','@Sy\'N+kB3J!PbƖ','',0,'?'),('끢Qu-;i-','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php',0,'=&MHW~!e]/*','=&MHW~!e]/*','/]Q>.fCHthd=+','',0,'?'),('놪D.k7uZ','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/RawSQL.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/RawSQL.php',0,'Έu8_HJB','Έu8_HJB','p/lcPxI#Wk>!0d','',0,'?'),('둪\09܎Ryg','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',0,'@od\\:@%7̡','@od\\:@%7̡','^pq\"z\"t{8 +D','',0,'?'),('¶ՅF0Y}','wp-content/plugins/kadence-blocks/dist/blocks-singlebtn.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-singlebtn.js',0,'%N\0{JW','%N\0{JW','贕6H(	<QkFD4H_Ո*2','',0,'?'),('LM','wp-includes/blocks/comments-title/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_eGAl	','ƳTz]	Gbg','',0,'?'),('<\'a=+n <','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\'uѐ*^','{?\Z*~5&`2','',0,'?'),('{}-:','wp-content/plugins/kadence-starter-templates/assets/images/masks/hexagon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/hexagon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Հ&','<{vil;ނ=ިez>Nc0H','',0,'?'),('뭷\r!z}MLKE','wp-includes/ms-files.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a4^#	i','дe]]I[)9~wdK\n','',0,'?'),('/IL86Z{','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Subscriber_Interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Subscriber_Interface.php',0,'#^','#^','P{?C<G}-Fc;	]_Ad\049y','',0,'?'),('뱰6#|tĸ','wp-content/plugins/wordfence/modules/login-security/classes/model/script.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/script.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/+','Sݕˢn $Cj\ZD#','',0,'?'),('SڰpGMǯl','wp-includes/css/media-views.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/media-views.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w&\\d\n73','emY]?k%мwN⤛n4','',0,'?'),('뷤!M`f\'','wp-content/plugins/wp-rocket/assets/img/play.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/play.svg',0,'LY','LY','͘+Kt\nrn%svKLu_v','',0,'?'),('2|?]ϸ','wp-includes/css/dist/nux/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/nux/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wvr\'','\"_e9)O:iK_6G?:\"/a','',0,'?'),('׮Fps4','wp-content/plugins/wordfence/images/back_enabled.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/back_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']H','9퇥)R$px#q {#LO','',0,'?'),('4E','wp-content/plugins/kadence-blocks-pro/dist/blocks-slider.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-slider.asset.php',0,'/fh','/fh','~Zj0\'aڝu\'&#cNy/G','',0,'?'),(',D9}}\0rj','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php',0,'jآ0','jآ0','&z=n&؂ۈpzuH','',0,'?'),('֍[1땰5E','wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-edit-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-edit-conditional.php',0,'q\\/)?g','q\\/)?g','$2}i}FtJX-4[j\r=\"k','',0,'?'),('vAdsK]','wp-admin/post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uZ{(yO% N','w#E?a\0\r&A\r3N:Q','',0,'?'),('YCooR亞','wp-includes/capabilities.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sq?f6{','\'2)N`qp3/Ê','',0,'?'),('ߺ\"=','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!e5+tO','o$D|hEu2l0`_DGLO5','',0,'?'),('.㵓~Xѹ7','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache-validator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache-validator.php',0,'\'\rUTڃ%^','\'\rUTڃ%^','#Oqi3BQQd(','',0,'?'),('\rhT!$)]@','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/dashboard-status.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/dashboard-status.php',0,'9p','9p','zξp|Xl\0=m5i9','',0,'?'),('/h/	=]','wp-content/plugins/wordfence/js/wfselect2.min.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfselect2.min.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ġ ǧ^t,g',' uV nhCPH]8*)G`.r','',0,'?'),('`}Sm\'r','wp-content/plugins/wordpress-seo/src/integrations/admin/import-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/import-integration.php',0,'ih\\ZS͞M','ih\\ZS͞M','\n5\r!-`B\n=bd5y','',0,'?'),('fK1MhPs:H','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/index-https.html',0,'Is7@','Is7@','cȽjf/6enٯ闐&n','',0,'?'),(' p(邊ȼa','wp-includes/blocks/navigation/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qUV\'o','#0\">Zv{}a\0Xb\'cm','',0,'?'),('\"O̕j/','wp-includes/images/media/archive.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/archive.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}+働ϯ','֞\\_m=:66N~ɥ,Mz','',0,'?'),('*V!\n+H:KBQ,','wp-includes/Requests/src/Exception/Http/Status511.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status511.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѻ\Z1EWk','E+A:Sl h	)-*RA$','',0,'?'),('6BTCc-n\0UG','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php',0,'W)`.ėgX','W)`.ėgX','3R]uiBe-aΎڄ9','',0,'?'),('8ڧs}նNi','wp-includes/class-phpmailer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-phpmailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'F!; 2󱻱4&','GZG5_ܚXS[WS:9p@?','',0,'?'),('>XдƸ,׻','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php',0,'f:xC&-y','f:xC&-y','7EJ[ɊCQ(u68gB/UX','',0,'?'),('?h;','wp-includes/js/quicktags.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/quicktags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ>	%nK{<5','mwd^ʋ\r1^K(<nV','',0,'?'),('D\rh}!\n','wp-includes/js/jquery/ui/effect-drop.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-drop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UZJv:Ѕ&','cK5޸Wl5߈^zI4 ','',0,'?'),('P<hlRA','wp-includes/blocks/list-item/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list-item/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^/|p)t}','s4k\nHwu#8','',0,'?'),('Pط悇̺ƴ$@','wp-includes/SimplePie/HTTP/Parser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/HTTP/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P0ش57,	z','&bB筢09Z/|1p','',0,'?'),('T@aJQZ\"F','wp-content/plugins/wordpress-seo/src/conditionals/wincher-token-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wincher-token-conditional.php',0,'b8挚J&','b8挚J&','mմ2\'O?vNqx%4V','',0,'?'),('yl9N>','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/InvalidArgumentException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{OJ6#\n','i|}ԀAFŌJq92','',0,'?'),('{7P|j|	լ','wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterSubscriber.php',0,'~L2Ͷ(;,','~L2Ͷ(;,',']\"[Q\\8-5Ǖ	؏2Bd+','',0,'?'),('{VcR>ԈA','wp-includes/blocks/code/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!)>8o$','	%B*0Essx-\\s','',0,'?'),('~zrp;8+ٲ','wp-content/themes/twentytwentyfour/patterns/template-home-blogging.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-home-blogging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jZ҇9F','PQ\0Lbҝ#\0m`%9Q~.?H','',0,'?'),('_rt','wp-content/themes/kadence/inc/customizer/react/src/available/available-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/available/available-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B*%y_נ:T\".','c%ԡs;~IwwbCutH','',0,'?'),('b5Ab\r$#;9','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/PumpStream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/PumpStream.php',0,'bv\"a2Сjk','bv\"a2Сjk','bpДI+;_	#:]n','',0,'?'),('c.Dr |','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RZ?f.8	','.c%c*G~բ>Yd:7j','',0,'?'),('?SJ|R','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#qy򏪣0R,L','lTlu2x#	IEei','',0,'?'),('츃v6;~','wp-includes/js/tinymce/utils/mctabs.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/utils/mctabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','끡\"Y>xU季','%Y}ڿ&)MaYgЍ*l','',0,'?'),('[v','wp-content/cache/wp-rocket/index.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/index.html',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('칤\0Uw','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-textarea.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZV=[3g','sc\\Uu{-*\n Wt+','',0,'?'),('!<B4\ZS}','wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','le@1-','+	[P\ri-b0mƥM\"#@','',0,'?'),('[Ӄ2W','wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Va6nE.c','0eÊpiva\Zoy-[>|*','',0,'?'),('Q˒^$','wp-content/themes/kadence/assets/css/src/global.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/global.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','МsY,3','t^X2Lh|1','',0,'?'),('-x(EoI=','wp-includes/class-wp-customize-section.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AJo','\n1O:L6֣!dh+Si9WJD','',0,'?'),('֫(qۥblh','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ca˱F','h5%^sLZSi$NlV;w','',0,'?'),('M	Nuט','wp-content/cache/wp-rocket/atlantagynecomastia.com/accessibility-policy/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/accessibility-policy/index-mobile-https.html',0,'bE=fC4([\0}','bE=fC4([\0}','6ERudrp  T${i_','',0,'?'),('9+K*','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/ServerRequest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/ServerRequest.php',0,'&gE>','&gE>','*m9v6ĉ4hh_هw`4','',0,'?'),('Ư0~\rjA4u','wp-includes/css/customize-preview-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/customize-preview-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E?nZd-','Gi\rliU^nrm5Ώۻ\\l','',0,'?'),('\\SՇ8;2','wp-includes/class-wp-tax-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-tax-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wG+h','	%\r\"!1P7_B&y֑<','',0,'?'),('mהF@$~r','wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+#\"bMBLK[6','Sk!,BO#	Qdz{w-z','',0,'?'),(';@,0<QHY','wp-content/plugins/kadence-blocks/dist/admin-kadence-home.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/admin-kadence-home.asset.php',0,'pIO-brkp\'','pIO-brkp\'','LL{vik~i]','',0,'?'),('&e`9ԣ\n3Y]}','wp-includes/blocks/image/view.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yf\Z7Ιx\Z','Ξ©*H`S1\0_N 6:ăė','',0,'?'),('upqdWZJl/','wp-content/plugins/wp-rocket/inc/classes/event-management/class-event-manager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/event-management/class-event-manager.php',0,'k[Şo\0%>','k[Şo\0%>','eTjbHʍtuꀴ&5k','',0,'?'),('-&4ҋ`d\'kC','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php',0,'=H 1EoQ͎','=H 1EoQ͎','咇5qz֌0m$Rڠb	ĵ','',0,'?'),('Jj[P\\ \0','wp-content/plugins/kadence-blocks/includes/resources/App.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/App.php',0,'fĽ^ةQ=R\n8','fĽ^ةQ=R\n8','t^֫@V2,Я^o,','',0,'?'),('N\'!\rBj3','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\H!#>bW','&xwαh)œ@5m.)9R','',0,'?'),(']@\n>ĺYn','wp-admin/admin-post.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':%Pw','Zdz##D68\"U\09x','',0,'?'),('k.OjMSß','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-ancestor-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-ancestor-watcher.php',0,'e#j=\nR','e#j=\nR','0qU!׀f߻utK\nE3a','',0,'?'),('jr{Z','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/jquery-ui.structure.min.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#/h<U','ni뗅NvX7Y]D','',0,'?'),('I0B,hʛp','wp-includes/class-wp-term-query.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-term-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\'lWx:','>M\0M?il)A3>65P\"u|1Ai','',0,'?'),('5N)7	','wp-content/plugins/kadence-blocks-pro/dist/gallery-styles.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/gallery-styles.asset.php',0,'0˰學}2X!','0˰學}2X!','!PL\Z?Jы:+l_\n>I','',0,'?'),('>LTƠz#Pkó','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TransferException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TransferException.php',0,'Yzc(pc^\n','Yzc(pc^\n','\Zk|!`mS8KW|fo?,;','',0,'?'),('賮]','wp-includes/customize/class-wp-customize-code-editor-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-code-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jMіlM_','xFZKc37`Ԫ$jg]Q','',0,'?'),('Z\Z5\nj}@','wp-includes/blocks/buttons/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#خ&skHGxrC','mb貭^Sk8B-bK0V#3`Ǩ','',0,'?'),('Fm','wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ʸx53z','?aaU\'9,鮟nC5\"6?','',0,'?'),('Z\ZaYH\0 5~ ','wp-admin/includes/class-wp-automatic-updater.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-automatic-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\nn\ru','][oTk79\rJm*9','',0,'?'),('QR\"@3vS','wp-admin/js/link.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/link.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','϶5֞P','Onn˕{?Q!=Voi','',0,'?'),('G ~`','wp-includes/customize/class-wp-customize-nav-menu-name-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7fW՚7','pvw ܪ9?az','',0,'?'),('<.+I#I~J','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0.b!>.~Lf.','-wX3sWX66O\'/Ѕf\0','',0,'?'),('L(mQe','wp-content/plugins/wp-rocket/inc/Engine/License/Renewal.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/Renewal.php',0,'GNzdUpM','GNzdUpM','*sPE(\\%XŠ8G=(H%>E1','',0,'?'),('`,hEf;','wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J#.GYb\r\0/','1u~Բ\0}L\'? &44Fi','',0,'?'),('UEKڂ*U','wp-includes/blocks/gallery/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ol*','zqZ6Yvcd]','',0,'?'),('\'YAb\n\\;L;','wp-content/themes/kadence/assets/css/src/_typography.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_typography.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TӵVp','(\rc(PNGl{,~s\032;','',0,'?'),('\Za]]A\'h','wp-admin/network/settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S]֫NŜpN',']O}cB[.n+It4lX|','',0,'?'),('Qe`Yax','wp-content/themes/kadence/inc/customizer/react/src/social/social-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/social/social-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#pޘcx','3ó\\\'Q5$x<:8J1A)','',0,'?'),('=cه','wp-admin/includes/upgrade.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ADB;9O)c','j-i,S^\Z#3~1h1+R	','',0,'?'),('c<gbɼB','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ICU֚F','fYOrvr[cMl̴G?h','',0,'?'),('##Ia-)','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidType.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidType.php',0,'%\'\r}K4','%\'\r}K4','y<8)OET	\Z	64WE','',0,'?'),('eCDi!','wp-admin/css/colors/coffee/colors.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.]#%y\ZeS','Ma$ey--(\ǹuh','',0,'?'),('f%uP','wp-includes/js/mce-view.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mce-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h}7ȫ\nB','r\"vZejR7f/T̶=qJۊ','',0,'?'),('RtF*b@lY','wp-content/themes/kadence/assets/images/fonts/playfair.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/playfair.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\Z\0:c^','kJ{Ovv\Z-S%hoGB','',0,'?'),('\Z{:\Z4f','wp-includes/js/customize-preview-nav-menus.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Nm lVҪ3','5,M35n(tL5;^P/9z8','',0,'?'),('!mmf\r','wp-content/plugins/wordpress-seo/src/actions/importing/importing-action-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/importing-action-interface.php',0,'(X$[PlUg2','(X$[PlUg2','פ\0Oe%\nC[u{*\0c7\0\Zu','',0,'?'),('.z&.1y','wp-includes/css/dist/format-library/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/format-library/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(׿OpZN[y_Ef',' ;90\\yV^e\Z̤k<|','',0,'?'),('.%q$$6ٌ~?Gp','wp-content/plugins/wp-rocket/assets/img/logo-cloudflare2.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-cloudflare2.svg',0,'\'0؁ƻ\n-7','\'0؁ƻ\n-7','Y@\"GE܅[LL *Q0ɾ','',0,'?'),('1`p	K','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-syntaxhighlighter-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-syntaxhighlighter-subscriber.php',0,'U(:=','U(:=','Tα_:=ʺGI9@snjAѩe','',0,'?'),('?kbx_JM','wp-includes/blocks/comments/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|X$ǂ=`',' `}nFW66ڮ4bSl\"~07','',0,'?'),('@hYU','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/x.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/x.php',0,'#PlQ(PZr/','#PlQ(PZr/','B\n1jrU*j;İЀVR','',0,'?'),('e&r-rs','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidPathException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidPathException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fd(+]5;>','\"ah\rirK>;=@','',0,'?'),('nnDAJyn\r~s','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/views/exit-interview.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/views/exit-interview.php',0,'-Wӗ?%2*','-Wӗ?%2*','ͩ2(NLV<O}eaCnreud','',0,'?'),('pqKg4k','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vK<t Q','O[^yV`=h+ﰰd\0-','',0,'?'),('F>!8u','wp-content/plugins/wordpress-seo/admin/class-premium-popup.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-premium-popup.php',0,'Պ8TA2zo-\03m','Պ8TA2zo-\03m','Cyϴ]~\'fWA1,Sx\ru','',0,'?'),('dY:','wp-content/themes/twentytwentyfour/patterns/page-rsvp-landing.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-rsvp-landing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y&G*\0znk0V','t^~~+[FwլypUr,]x;g','',0,'?'),(')B<\Z\\$g','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wP\nn\"','q||(n{\n=nFmL8q','',0,'?'),('Zr2/xã','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Row/UsedCSS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Row/UsedCSS.php',0,'MlM֬M','MlM֬M','&E\0\Z;>^tEn/W>(5','',0,'?'),('sKd-}','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DefaultLists/DataManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DefaultLists/DataManager.php',0,'$e@?̲T+','$e@?̲T+','lA6#(Lo\\a6N!','',0,'?'),('ӫĽ^','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UploadException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UploadException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T^r9|Xpq','3Ǽ(esvtaJ','',0,'?'),('<7vY6?','wp-includes/blocks/separator/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R4*vֶ-','$i侢\\\ny.QHt\nq','',0,'?'),('-}[L~\nW','wp-content/plugins/wordpress-seo/src/conditionals/premium-active-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/premium-active-conditional.php',0,'.Bcx/U3R','.Bcx/U3R','<ǏW)\\3&t:/61daKO','',0,'?'),('_em>1V','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-type-archive-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-type-archive-watcher.php',0,';*xL\nX',';*xL\nX','a-ݲ_u˩X#ZN','',0,'?'),('g~.2','wp-content/plugins/wordpress-seo/js/dist/externals-redux.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals-redux.js',0,'srdN;ʹ@','srdN;ʹ@','Ȍ{\0T0ʇ%%*鴡M}K','',0,'?'),('ί?gW9','wp-includes/blocks/embed/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQXhoW;E','	c\rYDZ\\iju+kU%','',0,'?'),(',?	ru','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/AdminSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/AdminSubscriber.php',0,'~;_	z憐\r','~;_	z憐\r','+^p4>)!ZK	','',0,'?'),('i)`G5֡','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/RequestExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/RequestExceptionInterface.php',0,'I\ZTkAЌ5d','I\ZTkAЌ5d',' M%\ZG0 /hA4*sӈ_','',0,'?'),('=!yP','wp-includes/Requests/src/Exception/Http/Status414.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status414.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㰚Del~Jp','.Hm<+ۦ)ҝDQ<5','',0,'?'),('NFVYC','wp-includes/blocks/shortcode.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0t	ڨ.j','{bw\n~4n\"\"#.m/#1','',0,'?'),('uy؟uV@/','wp-includes/class-wp-block-patterns-registry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-patterns-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\VL&\"\nS<','*2305[j\nu6B','',0,'?'),('+#B_W','wp-content/themes/kadence/assets/css/src/woocommerce.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woocommerce.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l#ejnZ)e','yb3%q%-_a2\Z}*]a','',0,'?'),('񸵕Y','wp-content/plugins/kadence-blocks/includes/assets/js/lottie-player.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/lottie-player.min.js',0,'\Z{J','\Z{J','7TDV{w]AGMky	F','',0,'?'),('@}&J~¾&\0','wp-includes/customize/class-wp-customize-new-menu-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-new-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NpaCqk','F0HyceLuQ&LiH\nDũK','',0,'?'),('ZLHi\'{','wp-content/plugins/kadence-pro/dist/header-addons/templates/search-bar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/search-bar.php',0,'r4U4\\','r4U4\\','KZ%MeBh}VVj+<','',0,'?'),('V1RmMZ','wp-content/themes/kadence/inc/components/custom_footer/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/custom_footer/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z#H\\\n1!C','K&N\n((o1\na͡ԒD5K.','',0,'?'),('ܓfv0$=3','wp-content/plugins/wordpress-seo/src/presenters/admin/sidebar-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/sidebar-presenter.php',0,'~9.M\0S椠','~9.M\0S椠','YdjxxJB*7-\n','',0,'?'),('\' ô㯶UB','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˡYv`6:','	{bFcr3t^RUtģ@','',0,'?'),('26ig=ה','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/AlternativePart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/AlternativePart.php',0,'4śjiK\n','4śjiK\n','A`3чĉ#Dz _','',0,'?'),('6-B]/','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/utils.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wBpf\r˕','\\\'8ќ~8˿ǭxJ8`G֦΢','',0,'?'),(';Lt׬Cɣ','wp-content/plugins/wordfence/tmp/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/tmp/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iz~i,L','	HQIqzڤp9C4>H3G','',0,'?'),('@Qbݽ:','wp-content/plugins/shortpixel-image-optimiser/class/external/offload/Offloader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/offload/Offloader.php',0,'t|5÷+~	vx','t|5÷+~	vx','\"`yiq[a\'=n*B#','',0,'?'),('Ej;imޮL','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php',0,'/+pugg','/+pugg','Mvol.;{\Z|ʕA;O~Wa`\"','',0,'?'),('KLֻ]','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`b3@GetHw','a6/3-pyWa/m1FH','',0,'?'),('Lt(B=.=T','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/IdentificationHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/IdentificationHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'J`Hh̷0\Z','l5}8O=gzBY`','',0,'?'),('M+(+(qo}J','wp-content/plugins/wp-rocket/views/settings/page-sections/addons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/addons.php',0,'4E#l:\nU','4E#l:\nU','-oxOs1&\nvJF\"T\\','',0,'?'),('Vj4U@','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/index-mobile-https.html',0,'fLinJq','fLinJq','=h5C(\"q\'m%vJ{]4','',0,'?'),('Y^~5~pG-','wp-includes/js/customize-views.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hӷ-\\Me','bL-9wloy$+Y\ZޘN','',0,'?'),('_ې\r','wp-content/plugins/wordpress-seo/src/conditionals/conditional-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/conditional-interface.php',0,'15E\Z-1','15E\Z-1','A;ɜK_#HzT~:','',0,'?'),('b.8','wp-content/plugins/wordpress-seo/js/dist/integrations-page.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/integrations-page.js',0,'-tH}1yxtm\r=','-tH}1yxtm\r=','^nTgYܩpx+¿*XW0y<','',0,'?'),('b*1,=\0-3','wp-content/plugins/wp-rocket/inc/functions/i18n.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/i18n.php',0,'wNi\0?R','wNi\0?R','LH{Ú15jf8e;Kc9Y','',0,'?'),('jU30<gb','wp-includes/blocks/paragraph/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RH	;','i7j;W;).ETPt8','',0,'?'),('u_~!\0','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y=\nY992','6\Z/py5EحOE','',0,'?'),('z|zxv','wp-includes/js/jquery/ui/droppable.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/droppable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Ֆ	*0bb(lN',';MHW#[i՚KwjAkxh','',0,'?'),('}YC=Ӆv`','wp-content/plugins/wordfence/modules/login-security/css/embedded.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/embedded.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eP:}:^','\'}-q8iβ!1TFWʆ\n','',0,'?'),('˕r&qFi','wp-content/plugins/wordfence/crypto/vendor/composer/installed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!yWU[u3FQ','ķ͞&FIfYG0','',0,'?'),('M7jWl','wp-content/plugins/kadence-blocks/includes/assets/images/masks/rounded.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/rounded.svg',0,']Et$^ۗNK]',']Et$^ۗNK]','(5ۗ~+MV\n<J\0o#/IC','',0,'?'),('dWqxB4V^','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/APIKey.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/APIKey.php',0,'RA`2x[e׶9=','RA`2x[e׶9=','0\rD0MA#x Ԗ	4','',0,'?'),('$䀕i]HJ&','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_NullAction.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_NullAction.php',0,'ȎeWS<','ȎeWS<','H\Zta!IcU||i\'','',0,'?'),('S61pk;{','wp-content/plugins/kadence-blocks/dist/plugin-kadence-control.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/plugin-kadence-control.asset.php',0,'E1\"W(tGeTC$y','E1\"W(tGeTC$y','žA̖DIx&4/9@+CrQbԮ','',0,'?'),('{4jz','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Resolver.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Resolver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SwC]ԭ',',uݚv~;;D&tb\'ԴguR','',0,'?'),('JV(TL+','wp-content/themes/kadence/changelog.txt','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+4wN(r9','`}n߳Q]\01j^_{\re6','',0,'?'),('BJ=4','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-plugin-data.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-plugin-data.php',0,'5̶=:rR','5̶=:rR','`Sx3^xQ@m]\Z.NZPzWd','',0,'?'),('5\0-Wu','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload-files.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload-files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','taaPj,jD','2\'TG)$zWyc~\n','',0,'?'),('u+ޢ','wp-content/plugins/wordpress-seo/src/routes/semrush-route.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/semrush-route.php',0,'76ږKġU','76ږKġU',' @\r6,s	빹_','',0,'?'),('ﾘQ)B\n,','wp-content/plugins/wordfence/images/loading_large.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/loading_large.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y{ObUW~Y˙','p8\'	t:Qo]{5G1E','',0,'?'),('Pa`Xu','wp-admin/css/color-picker-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/color-picker-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\":@ܐ^J','E_w1:-E','',0,'?'),('{ \rSlſ	','wp-content/plugins/wordfence/views/.htaccess','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('̸WTԢ4s','wp-content/plugins/wordpress-seo/js/dist/externals/helpers.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/helpers.js',0,'r@U \\ڶ;','r@U \\ڶ;','I0wP,zWWTTV3i\'\0|','',0,'?'),('X=UpfpZ','wp-includes/taxonomy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DApo','\"}ց{goVKWtˈP','',0,'?'),('V1l>','wp-content/plugins/wordpress-seo/src/integrations/admin/first-time-configuration-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/first-time-configuration-integration.php',0,'_˸;2n.xm','_˸;2n.xm','H-2$8z4)/Q@w	>','',0,'?'),('4~^U1Ex','wp-includes/blocks/site-title/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@{Rb\0۔','͸F!jGvhO5d','',0,'?'),('诠sDU','wp-content/plugins/wordpress-seo/src/config/migrations/20200408101900_AddCollationToTables.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200408101900_AddCollationToTables.php',0,'Rp\ro%Ft','Rp\ro%Ft','\\q Ds`rK\n7','',0,'?'),('ތt+\\+XaZU','wp-content/plugins/wordfence/lib/wfScan.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z{AZ(cZK%','t/sP/c2w&q\'M5V','',0,'?'),('Xf9;^J','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ActionClaim.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ActionClaim.php',0,'e<iY^0Y&','e<iY^0Y&','_v&ZYwDڀg]^9۔ufd','',0,'?'),('㯩	\'ިV','wp-includes/images/smilies/icon_biggrin.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_biggrin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KJr:]kI|',':ٔMX%	<8g4','',0,'?'),('6XԪ4[_=t','wp-content/plugins/wordfence/lib/wfScanEngine.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%	#w\nQ','\\a_9-\nHf [qnɔ(','',0,'?'),('W~','wp-content/plugins/wordfence/js/wfdropdown.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfdropdown.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J_Y\ZTvFu\Z','AĺKba4-t$WTrPd','',0,'?'),('cG(`E','wp-content/plugins/wordfence/views/scanner/issue-configReadable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-configReadable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\0lp_р>#','T,}1waY4BI]wAX۵','',0,'?'),('9rMԧ','wp-includes/js/customize-preview-widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b^Zi\"\'X}kf','oCMǆ=M0ʫ','',0,'?'),('&gJP5@','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q+PL1ޚ','X s%\\!#j&A','',0,'?'),('VXUӟs=','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-currencyswitcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-currencyswitcher.php',0,'zݍx)d\\{\'ޚ','zݍx)d\\{\'ޚ','Ҍa+=n+	eǫ˲\r\\Ő','',0,'?'),('d@6','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/fulton-county-georgia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/fulton-county-georgia/index-mobile-https.html',0,'&tH9-4csm','&tH9-4csm','U;|Ğ}g`NVǳˇ,gBxU','',0,'?'),(' ލ<:9|6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Nu)wgơg^&','5!셔N{Gcy]>\\;B!','',0,'?'),('6)Jo*Nn+','wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','洩`\"@)','[(Q@̊#2\nHeEc{רxH8:','',0,'?'),('$\nD)M?{973','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܑpRat\Z6|m:v','q2aR.^\0l547','',0,'?'),('$īI^3','wp-admin/menu-header.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/menu-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':º!h!(','JI֔@(RNbӱ	no_','',0,'?'),('/(54Lo','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php',0,'W\"O7$gaJ','W\"O7$gaJ',' +JǮ-VC','',0,'?'),('1pH}Ejir','wp-content/plugins/wordpress-seo/js/dist/workouts.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/workouts.js',0,'\\No:S&f:','\\No:S&f:','6@*9@H{5M4(/KdGd','',0,'?'),('3lrP_B','wp-includes/css/dist/block-library/classic.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/classic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݮux2V8C','69S$B#n.0%8lF*$\"','',0,'?'),('=Zzq2(','wp-includes/html-api/class-wp-html-active-formatting-elements.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-active-formatting-elements.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j}FxˇYQ','K\"a|*pmA\0X','',0,'?'),('A],|2`','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʌnen$_dPd','$	Is]LDx\',IBw~L','',0,'?'),('I/\ZN2p','wp-includes/sodium_compat/src/Core32/Ed25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*e/','1he+:zaͣ4@','',0,'?'),('KF$2qHb<*>,','wp-content/plugins/wordfence/modules/login-security/classes/utility/url.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\\FMP	^','аSThD>wD\n});TQ1&','',0,'?'),('S9QeI3','wp-includes/blocks/details/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\"o@$)Nm','1j#IqNP\'9ˏEĲ_%','',0,'?'),(']B$>^е','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php',0,'Ñ+%EڙJ\n3','Ñ+%EڙJ\n3','>0{J8[m6CWi!^8ۈGo','',0,'?'),('kG\0o','wp-includes/block-bindings/pattern-overrides.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-bindings/pattern-overrides.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h;	3X\0','qy91UgH}{Ce','',0,'?'),('s%LB4bc','wp-content/plugins/wordpress-seo/src/integrations/admin/old-configuration-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/old-configuration-integration.php',0,'aWE{C>\ZN','aWE{C>\ZN','օSژG#D\'<lQ?Nh,G','',0,'?'),('}٪L1s_=̔~','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',0,'|>Vذ(','|>Vذ(','Bz#lynRD/PL?I','',0,'?'),('el1\0*','wp-content/themes/kadence/assets/images/icons/credit-cards/visa.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/visa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~SY\'',':q5Jwo>TF+77\Z58Y','',0,'?'),('3:^c','wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-ajax-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-ajax-integration.php',0,'dPXn$','dPXn$','dMksq4R^2~B\"K','',0,'?'),('9BϠ3','wp-content/plugins/wordfence/images/icons/check-care.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/check-care.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@n?duǡos?','JX;W`i\"[*&`K>r4	','',0,'?'),('yunc[٧','wp-includes/sitemaps.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`S EX^YA','%Six3kOnz]','',0,'?'),('з&L۽¨VN','wp-includes/css/buttons.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/buttons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\1AKtN[u','SY^ĜMլ6Ġ1Mg','',0,'?'),('%\Z=7W','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DecoratorTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DecoratorTrait.php',0,'Al[W0B','Al[W0B','=ȧSg8Gcn\\p18ABTl','',0,'?'),('2s6c\'9A','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Context/Context.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Context/Context.php',0,'	E9off3-?','	E9off3-?','fD|1ZC{GۺwV?n','',0,'?'),('\"i','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Test/TestCase.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Test/TestCase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hjj |j97}','cʺ9\\{h,0~/8','',0,'?'),('6$[O','wp-admin/css/customize-widgets.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xhdM*Ey','Z0ڀ#]*ԯ\r=}i-','',0,'?'),('rp.u3zx','wp-admin/includes/class-ftp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷aLp4~Ɋ','_aBQeDSa=	ewV+@','',0,'?'),('Tèc\\žxE\Z','wp-includes/blocks/search/view.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZTd','6pdb<.Q1qr`M*','',0,'?'),('3Pdo,t','wp-includes/blocks/comments-pagination-numbers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ڏ6<\'','%.xYavw\raihi[F','',0,'?'),('^=J\rB&\\','wp-content/plugins/kadence-starter-templates/assets/images/fonts/worksans.jpg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/worksans.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N?JXN7','h2$qEpiw82<9F^;ڟr4	','',0,'?'),('&[>j/GU','wp-includes/js/dist/token-list.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/token-list.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gzցcWAd(','u60^࣠!-(u!r~I','',0,'?'),('*_2AWbOx]','wp-content/plugins/wp-rocket/inc/admin/admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/admin.php',0,']jImTqPB',']jImTqPB','\Zv$)^5\0uV,i3m','',0,'?'),('+\nQn*+M','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php',0,'3w&ToddOa-','3w&ToddOa-','L[mXtC\06ߛ1','',0,'?'),(',1x@e<)','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/AccessToken.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/AccessToken.php',0,'p\r\'8ﺜj %','p\r\'8ﺜj %','U \Za;q _t3J\n','',0,'?'),('7I__vD!','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-premium-seo-pack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-premium-seo-pack.php',0,'S!=[uRJZ','S!=[uRJZ','F<Rug%gR\r]ܨ@','',0,'?'),('7s\\]}AAwe1','wp-admin/tools.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IqGȧn','ߪրT&nDՉ','',0,'?'),('?F5(r[<','wp-content/plugins/kadence-blocks/dist/helpers.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/helpers.asset.php',0,'5C]o]	δ\Z','5C]o]	δ\Z','%\\@_@-Bx.fLockHa','',0,'?'),('Nbēp	\n#?E','wp-content/plugins/wordpress-seo/src/generators/schema/webpage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/webpage.php',0,'pjIBOTԠ','pjIBOTԠ','ll1Xs)3r$vi9+*$','',0,'?'),('Z91f\"','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/JobSetFail.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/JobSetFail.php',0,'\r %	1','\r %	1','luK&ʿ?W','',0,'?'),('Z/{LtծF$','wp-admin/js/svg-painter.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/svg-painter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' V,~H]d','\"sW`qa84P٢Vu혧M:','',0,'?'),('^v[c^8äw','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/jetpack-markdown.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/jetpack-markdown.php',0,'1S,PGVwP','1S,PGVwP','Ȼ\"vwCM\'D*EL|- T','',0,'?'),('a-vמ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/RawMessage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/RawMessage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$HNKu~','\0EZ¡\r}\nyh>R%','',0,'?'),('e0Զ誙)*%c\"','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4f?6y>c\\','k[V\0)\0üM_i>xx W)%','',0,'?'),('vhEtJf\nQ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zǏ}\rimsK','믫wRW`tq\\{ojC^佰}K\ZI','',0,'?'),('y{In','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','闩	0#.f','8WE=b$AeJcJ	*','',0,'?'),('{/W\\\"b\rU','wp-content/plugins/wp-rocket/inc/Engine/Cache/Config/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/Config/Subscriber.php',0,'0u=u\Zo','0u=u\Zo','HLεQIFtzt','',0,'?'),('\'V9<ȍf][VeL','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/AbstractString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/AbstractString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':&\rr#l\r','jk[Nw_@?N/NJurV͚','',0,'?'),('*v<\"*p:~','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageProvider.php',0,'%v]','%v]','	=\nʼ\nbX*,\ZQ','',0,'?'),('v:DYG','wp-includes/js/plupload/plupload.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y|(He','SVybZjzx0L','',0,'?'),('jrq_:po','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php',0,'ѷ}BdD]%N\'t','ѷ}BdD]%N\'t','=u.QkK.4=Y7','',0,'?'),('_(tP	','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RadPHPInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RadPHPInstaller.php',0,'!ba$b\\U?a:]','!ba$b\\U?a:]','x`ۇԮFfƨ1MX}޻ZZK','',0,'?'),('mct2)|','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php',0,'P?xj[.	q[','P?xj[.	q[','@fطBhYSz0\rAL','',0,'?'),('ͨ޹0Ɂ䷑','wp-includes/blocks/video/theme-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̩2^n>]P1_','}0\r}pu\0Q(VAK.9q<','',0,'?'),('TYPpEw','wp-includes/widgets/class-wp-widget-archives.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ɯ@tН@X&','hĊZx:r8@޾͓$K','',0,'?'),('}O;Ui<','wp-content/plugins/wordpress-seo/src/conditionals/admin-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin-conditional.php',0,'!Zϓ}iF o','!Zϓ}iF o',';^&`2:&(ƽ{ʗLy9\\d','',0,'?'),('V|ڑS##','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-woothemes-seo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-woothemes-seo.php',0,'3ZxJO5w','3ZxJO5w','|Y\"iGGÌ7:lD}e*x+','',0,'?'),('4$ꎪ','wp-content/plugins/wordfence/views/scanner/scan-scheduling.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-scheduling.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&JHNԑ','rh,ИQU2 VJ6}N\'3iuK','',0,'?'),('Uxaq','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ZendInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ZendInstaller.php',0,'D!r+B','D!r+B','Ovp0ЄD#z^Ll9Gy','',0,'?'),('}3=W\rW)','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w2q,~˳ոχ','LMw\\umFtFC','',0,'?'),('І$Hd+ػ','wp-includes/assets/script-loader-packages.min.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-packages.min.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ANzY<\\0','W0@}\\Z[)\r޲#>','',0,'?'),('(?q\r~','wp-content/themes/kadence/bbpress/form-reply.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-reply.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eNXLul;M','.Ͱ8;4>J툧lA','',0,'?'),('絛zy>_+t','wp-includes/class-wp-user-meta-session-tokens.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-user-meta-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8/\'\0\0vSL-G\0','8bYB&?6o>','',0,'?'),('17j-*܇rJO','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/promote-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/promote-notice.php',0,'껋9x\Zao؈','껋9x\Zao؈','?`}?@Ri؏$FuqtF?D)','',0,'?'),('v\Z7~\"','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php',0,'Tatp=uu3t','Tatp=uu3t','Dy*zj(Q@&ү','',0,'?'),('ӝ/)v6','wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Provider.php',0,'*MvJ`\n &\"','*MvJ`\n &\"','KG3S[]0^Eԓy݂XosF(%-','',0,'?'),('dޠ	d','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php',0,'bj@','bj@','.Q2ucϐSߙ XT','',0,'?'),('+i!\n(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php',0,'Ļӳz/\rli','Ļӳz/\rli',']O4?{QBy|غ{Tr,<','',0,'?'),('Hr #w/:4','wp-includes/js/dist/plugins.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/plugins.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Z4u<=','7;)P3w*&TBpA?\'uǈ','',0,'?'),('\'9_u','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l;k8Q!\0/3{','Y%oGʄj[L-|b4 [hc','',0,'?'),('D?=W@','wp-content/plugins/wordfence/js/admin.liveTraffic.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/admin.liveTraffic.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G#fox*ȍ:̩','S[z$	Rd!kVMJ.#@8','',0,'?'),('#mX8+ˊܵ','wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/empty-token-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/empty-token-exception.php',0,'4qkrDX\"]','4qkrDX\"]','C`n)w14KH-_a	=','',0,'?'),('1\nx','wp-includes/blocks/latest-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~gt/g\Z)','OLnq>9]m+}hnG[S4','',0,'?'),('335=9晦1S','wp-content/themes/kadence/inc/customizer/react/src/common/responsive.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/responsive.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\B=kV','ĦxY5$*3#tg?X-','',0,'?'),('?!9E8=:','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php',0,'YWAJ+W^','YWAJ+W^','SNÃ)Ot_j?\"3%E','',0,'?'),('?E_)xڅ$','wp-admin/includes/deprecated.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','՛e/v雔','ѬV:\Z&FH\0}-[','',0,'?'),('L>;*	Y۞m','wp-includes/blocks/preformatted/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OoJ}[׻W','mA-`8	P ay<(','',0,'?'),('Ua2Kt','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/DebugItem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/DebugItem.php',0,'2|]ܧiIUÇP8','2|]ܧiIUÇP8','l1]Jj*1LuapXѠ%ԸgY','',0,'?'),('cȿԂ֤a[{','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bp.N+','Sr\'/D]ǃ2\'\r','',0,'?'),('dTofҷbS','wp-content/plugins/wordfence/lib/menu_dashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H£{=7§x ','wڽþ$7!#XXI{@X{CO','',0,'?'),('j\nj<c@BX','wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']}q\0','9zf#\ZmׯRK	x%yi ','',0,'?'),('m*+A!!<','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-robots-txt-notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-robots-txt-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M׮i=b}','>t`mtoÐ*e0','',0,'?'),('poX0%','wp-includes/css/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bϱ[@B','g\Zk!]3>\'rC^','',0,'?'),('t˵18jx','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload-classmap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload-classmap.php',0,'3}T1/ѭ]d&m','3}T1/ѭ]d&m','ہp^}Uё|sh5A','',0,'?'),('u;Ȍ0qw=','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1A׶$^>','p}:\\O1Q6XyTY','',0,'?'),('\r189VǜG$3','wp-content/plugins/kadence-starter-templates/assets/images/masks/heart-solid.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/heart-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\knZdocU','>.W\ZÒx\0-[Co#,5bPR٥','',0,'?'),('FWrV','wp-content/ai1wm-backups/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/ai1wm-backups/index.php',0,'A-pޜ\r͈V','A-pޜ\r͈V','=+O²2E[VOD','',0,'?'),('?=䃍b^','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeRecord.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~$xM6filK@','J]\'\Zu(XݴR\"','',0,'?'),('򇊨DVeohx','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo.php',0,'^hh{C','^hh{C','W5e,ƄC>yx\"~H75z','',0,'?'),('?U4Xe#p','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/ResponseAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/ResponseAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Md8B؏ =','>V9G?2+<ڲȭVSDAv','',0,'?'),('ׅ$T{8/f','wp-content/plugins/wordpress-seo/src/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/functions.php',0,'HKJ;Җ9my','HKJ;Җ9my','׭E\r>Ĳ=+t6HJQ','',0,'?'),('^( *','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php',0,'Nt@rRe)4f[6','Nt@rRe)4f[6','jjm	V.W]u','',0,'?'),('$c{97^ІJg','wp-includes/js/dist/server-side-render.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/server-side-render.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĵ|{','F%r:-h2،\n!0O66JD ','',0,'?'),('\Zl8/~','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IoException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IoException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sӔ\"Ku#','|*~rǪ byDRãAx','',0,'?'),('ŕoi|}','wp-includes/block-supports/custom-classname.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/custom-classname.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=FGrk9','{ͪ7*wz\rp3a3ꅧ7@','',0,'?'),('M٦M/`','wp-includes/js/swfupload/handlers.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*#0-Ճp','H#a:1߯orrjuzzV','',0,'?'),('򱠭BRzY','wp-includes/js/jquery/jquery.table-hotkeys.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ogo~iI	','<=;:t_,wăI,,','',0,'?'),('?{o_\'n','wp-admin/images/resize-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/resize-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{3VVFVf%K','懴y2qZo~([`\0`Ci\ZL\'','',0,'?'),('maY7˓;','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','в&uuֹ','u~<zFEitn>ɔnM','',0,'?'),('_f $O<o','wp-admin/js/common.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/common.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c6L%Ibu1d','pՑ-%cQqu/!ivݧ','',0,'?'),('%\0zfNpS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SEx=d~eM','\"w%%{=L(hK\rƢHP','',0,'?'),('اRz<XSa','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentInterface.php',0,'q?=k%y','q?=k%y','\n$c5W*N)^sBA}uk','',0,'?'),('w+\"+$^','wp-content/plugins/wordfence/lib/wfLog.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dۧb}FD','G8%\'Xiاpߐu`++!\"l','',0,'?'),('1I~HÍ@6O','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/AbstractHeader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/AbstractHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>1Qߒ%w1','QW\\_;!2f D','',0,'?'),('6U*)u1@)\0P','wp-includes/blocks/navigation-link/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d(SzB','/2#粧P^*GۋkwFl','',0,'?'),('VOD<[','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/NativeHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/NativeHttpClient.php',0,'b}hr1		J','b}hr1		J','\"Nq;Ȕ1)Cd2boR\0','',0,'?'),('>I̔ye','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/social-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/social-data-provider.php',0,'m͊\\*$z\":Ҳ_~','m͊\\*$z\":Ҳ_~','[j5rQeʇrk\'\r0#ig','',0,'?'),('ɢ4!cADP^','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/AdapterRepository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/AdapterRepository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RdL/ (','{LS8GQKnu>Pbr','',0,'?'),('y-fn6C','wp-content/plugins/wordpress-seo/admin/views/tabs/network/general.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/general.php',0,'cw9\'\ZwD','cw9\'\ZwD','q~Ѡq/%LX\'5@\n','',0,'?'),('#\\/vXR','wp-admin/js/theme.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֫\\޿&kҴZIP','?=*\'ɾ1\'3Sl\01Ί^','',0,'?'),('$Ova8%','wp-includes/blocks/text-columns/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','++R\r','$Y|eqЍu\0dfDbtF^	T','',0,'?'),('\'^=h$$hF','wp-content/plugins/wordpress-seo/js/dist/languages/id.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/id.js',0,'%_O:','%_O:','Yd`8zm	P糝՜K-͚Oa','',0,'?'),('<f|M\\On<8','wp-content/themes/kadence/bbpress/loop-topics.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-topics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',?REE}J','s^YS\0!9sR66','',0,'?'),('B91=\r^}','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/facebook.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/facebook.php',0,'\n!1|gѨ','\n!1|gѨ','{lK8=I+Zʍ!~aPλ20','',0,'?'),('HZfWg{\'0Y&','wp-content/themes/kadence/assets/css/src/woo/_archive.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_archive.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\Z0yUժ','$%aEiF|kKh\nT2','',0,'?'),('Ofa-TmŁ&v','wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.js',0,'5qzFW^!	','5qzFW^!	','Zh*`:g$rZkH.Xʏ','',0,'?'),('_<Dhg','wp-includes/block-patterns/query-offset-posts.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-offset-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NtW42:','բ}=%f|ޞVؔ#/=ȼk얜*','',0,'?'),('enXZG/nQ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/autoload.php',0,'#RpJ8l','#RpJ8l','-?\"c^HqcQ׈s@5','',0,'?'),('lFc뒕L','wp-admin/js/iris.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/iris.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','22?ޡ{','dUD2G#lk^[\Z','',0,'?'),(',o!zj\"','wp-admin/css/edit.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/edit.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#=*Q4','yqv=EX9+gbfʞ','',0,'?'),('ؠ]fP','wp-content/plugins/wordfence/lib/wfLockedOut.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfLockedOut.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X307p','%yCw2]E*@\re;}X.v','',0,'?'),('^@9','wp-includes/blocks/read-more/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','靇OWF[Gk4','H9	v\nܭB5\r`>ue','',0,'?'),('{*݊','wp-content/themes/kadence/inc/customizer/react/src/common/color-picker.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\nF%*NP','^m9DhXf7k=G#Ki','',0,'?'),('/`','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/NotFoundException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/NotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%\r˒','հQA\rbLp+}`B','',0,'?'),('Ns','wp-includes/customize/class-wp-customize-custom-css-setting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-custom-css-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?H(t)G9','O/`d;]z#΁lQgf	','',0,'?'),('n(.nk`zY','wp-content/plugins/wordpress-seo/src/conditionals/admin/estimated-reading-time-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/estimated-reading-time-conditional.php',0,'p@\"DxW','p@\"DxW','pǄ|٦O8,pDWG','',0,'?'),('\0L6','wp-includes/blocks/latest-posts/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"fa!','9\n֭G+~F?ʣUFuHd4<:','',0,'?'),(',{F(Č}P','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wincher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wincher.php',0,'m|XңݤePe','m|XңݤePe','%?<FDQ\'|Kr{','',0,'?'),('QKk٧ ','wp-content/plugins/kadence-pro/dist/elements/src/kadence-pro-sticky.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/src/kadence-pro-sticky.js',0,'_p$}r)qr','_p$}r)qr','3)U(FOځ','',0,'?'),('&.ЦQxT/rb','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/i18n/polylang.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/i18n/polylang.php',0,'~sZq/A','~sZq/A',')Ip\'7x{ ac?ck@5|','',0,'?'),('kX,}','wp-content/plugins/kadence-blocks-pro/includes/query/query-frontend-pagination.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-frontend-pagination.php',0,'Kn	qiD','Kn	qiD','sc`:M;Z\'DE0XAiW/7&','',0,'?'),('ľN׋|uq','wp-content/plugins/kadence-blocks-pro/class-kadence-blocks-pro-plugin-check.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/class-kadence-blocks-pro-plugin-check.php',0,'KiGntcёy','KiGntcёy','gf<)x-0ۄ?4cjFZFԍӟ\Z ~','',0,'?'),('e`s̺Ʊ','wp-content/themes/twentytwentyfour/templates/page-wide.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/page-wide.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E%z\ZahChm','OHb^5xo\'8-mn?>','',0,'?'),('➞^՘R','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ohg[','߁.-h4`9S _\r)I(W','',0,'?'),('3I,J\Z+qƳ*','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/FloatArgument.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/FloatArgument.php',0,'Xp}EDz','Xp}EDz','+y\"\\\"ɱ\'Ѡ3l:5(2fe','',0,'?'),('8U2TMe','wp-content/plugins/wordpress-seo/src/integrations/third-party/amp.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/amp.php',0,'벨@+ɑ\Z~G5 wr','벨@+ɑ\Z~G5 wr','\n_w*Pz*Z#4w,Lue','',0,'?'),('?0-6g^','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StringStore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StringStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oh\rP:','jn	&XS\n[jeWVJrS','',0,'?'),('Vk9۴sֿ','wp-admin/css/customize-controls-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-controls-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^$Đ\"\07%','!7+dӭd#\rwbC','',0,'?'),(';^𩸴8c','wp-includes/css/buttons.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y؞mjm','@:v5p\"_/%','',0,'?'),('RPp ','wp-content/plugins/wordpress-seo/src/integrations/support-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/support-integration.php',0,'3OZ+n	)k%\0','3OZ+n	)k%\0','2)5@(r^u炤gkdΥ','',0,'?'),('S],4Fr8v','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbThrowable.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbThrowable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f-\\;X=','\Z78Ue)1/<j\'&Ց+(','',0,'?'),('}2ѪWYq;a{','wp-content/plugins/wordpress-seo/src/config/semrush-client.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/semrush-client.php',0,'v_c','v_c','ZZE$Hj|#|;ŻW)UӞ','',0,'?'),('(~t}e]a','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LZ/N!1|o','.N\n{Xf۹i\reՒ&\Z','',0,'?'),('(Կɶ۾趮','wp-includes/js/dist/edit-widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڟ.2<b\rbC','{u%N:/~YCd{7C','',0,'?'),(',}|ȯ~','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/CurlResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/CurlResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a7+G} \n9','꼚g:YoIQ/]}','',0,'?'),('>⭙2|+Iw%','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-progress-bar-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-progress-bar-block.php',0,'fR\r2py','fR\r2py','ƈ	pAYɦzQo','',0,'?'),('H@g_u|؂Y','wp-content/plugins/wordpress-seo/src/conditionals/user-can-edit-users-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-can-edit-users-conditional.php',0,'G\'NI)<O{','G\'NI)<O{','?Z Gr=O07]sd','',0,'?'),('J\'#rN0a\r','wp-includes/images/crystal/audio.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nV:ωG-#k','~B\Z-׼of|Wx\\|M)ˢ','',0,'?'),('O0ͧG	Hzѭ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php',0,']{(vXz}',']{(vXz}','%+[I\"DUw#g','',0,'?'),('P>?֧iF','wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Schemas/Cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Schemas/Cache.php',0,'0ǑW\rR','0ǑW\rR','ߠ=kaYuۛ^V','',0,'?'),('SgV8R*J4oFE','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Config.php',0,']/Ap2YV',']/Ap2YV','~E5GbLV+Yi_E)i\r','',0,'?'),('Y\\TzaL','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/CachingHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/CachingHttpClient.php',0,'U	\ri?-n8','U	\ri?-n8','p<--7j`ϳt,V@@','',0,'?'),('YRYi/l@HX','wp-includes/js/media-grid.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-grid.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M>>)ZΫ\n','+,m`ɢ;rǴ\n1z=m}','',0,'?'),('ZQ!*','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`y\0#xsGJt','Arx?j#CFOG-S$','',0,'?'),(']CP&R!','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Activation/Activation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Activation/Activation.php',0,'k\'_iO*!59','k\'_iO*!59','TP&rL@8$!7\rtpT!','',0,'?'),(']И\n(?W&\\','wp-includes/blocks/audio/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٍ','\r>3;-so\n{sUwN\0!','',0,'?'),(']ܦj]~~','wp-content/themes/kadence/template-parts/title/description.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$@3䟝','AoO#:<ǈ7^>	#@m','',0,'?'),('w>d?d','wp-includes/blocks/post-featured-image/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','垧UtHE','7.F|dn2A@WJNW','',0,'?'),('{P,uOvG','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-column-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-column-block.php',0,'f.IYf','f.IYf','doؐ08rkV#;[<I','',0,'?'),('π{q\"(g$9','wp-includes/Requests/src/Exception/Http/Status504.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status504.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!gGN&asoIw','@Ȝ\0!Fq?d,ǬMom','',0,'?'),('7:b\r,ja','wp-includes/js/dist/blocks.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b)\\\ZPF7a','/3E6`fQO?A\Z_X','',0,'?'),('YEdp~֋G','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/ByteString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/ByteString.php',0,'_Ba۟b','_Ba۟b','KԐ)b6_3x&:ˠd','',0,'?'),('KBUolQ','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Info.php',0,'=<ɽ9<˙F','=<ɽ9<˙F','MwyLҎ)̟0','',0,'?'),('k\0t%r8CꝤ','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php',0,']WKIUE',']WKIUE','1O`Rr亓1lB!fy9!','',0,'?'),('f	W5\raR\nK','wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Co()b&','Ip:ǎ3%vQ.`M1l4؇=ќ(','',0,'?'),('zZfip^2׎','wp-includes/js/mediaelement/mediaelement.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\Zx5+.c','DRy\n:tƴ7C@W','',0,'?'),('F$S^ņ&lD','wp-content/plugins/kadence-blocks/dist/plugin-kadence-control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/plugin-kadence-control.js',0,'fט\'#Z:','fט\'#Z:','I!R7sM\'p϶+T.:)㼊p]','',0,'?'),('YY\\̺','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RedirectResponse.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RedirectResponse.php',0,'co`jީ$','co`jީ$','Ftzx:\'a	ǎF78','',0,'?'),(')KQ8u1D','wp-content/themes/kadence/inc/meta/react/src/capitalize-first.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/capitalize-first.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KgTH=Z','.gf/\0j~*g9Z','',0,'?'),('j8ď\Z','wp-includes/js/wp-backbone.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JT	lQ1','\nTxN@s_L`E*dHc?','',0,'?'),('\\MULU','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-woo-attribute-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-woo-attribute-block.php',0,'Nf)>9\\rc','Nf)>9\\rc','\Z]ydǖ\nhAdum','',0,'?'),('?2暦	!','wp-content/themes/kadence/lifterlms/course/lesson-preview.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/lifterlms/course/lesson-preview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.DI%Sr-','*f$|,NpФgۥe-V5|h','',0,'?'),('$P%߯gqk','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php',0,'y=Y ֏','y=Y ֏','\ZG\n\nWƶ7JK_U#','',0,'?'),('ZR+F|Z:M','wp-content/cache/wp-rocket/atlantagynecomastia.com/accessibility-policy/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/accessibility-policy/index-https.html',0,'p{ #Ήv^ږ','p{ #Ήv^ږ','XF#dY)y0qdv{inpq','',0,'?'),('Q/&Jᰂ;','wp-content/themes/kadence/assets/css/src/_palette.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_palette.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Lh;o#\Zjo','/*,\Zgd(62+Gf-.@','',0,'?'),('¾h֙ѽjﲰ','wp-includes/blocks/comment-content.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѥ\0#KPH#','x`\rÉJ)ɻA~\'.;.','',0,'?'),('(Y܌M9','wp-content/plugins/kadence-blocks-pro/includes/query/query-init.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-init.php',0,'λulQUk','λulQUk','F}/XSlc_WYHx`','',0,'?'),('2tzY _`','wp-content/plugins/wordpress-seo/src/conditionals/user-edit-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-edit-conditional.php',0,'X)-\0CӀ','X)-\0CӀ','=4b<c%\n<r4','',0,'?'),('_DmҜ\Zk/˞','wp-content/themes/kadence/template-parts/footer/footer-widget4.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I~,c̤s','Z[Hۮ_e>\Z9jQ8&','',0,'?'),('A@0gzS^','wp-content/plugins/kadence-pro/dist/scripts-addon.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/scripts-addon.php',0,'yNW]I\'$}','yNW]I\'$}','5@NC=^[]z9^\\uU','',0,'?'),('N4ߏoݺ3^P','wp-includes/block-supports/settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ulY P8bH\0','a\'MX0ݤ|\\nÉgFj','',0,'?'),('amʺtz/','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/background-format.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/background-format.php',0,'\'3⧉#:^Ғ','\'3⧉#:^Ғ','?9W+0p	\n3ġny','',0,'?'),('CFCT/ڮ+:`','wp-includes/blocks/comments-pagination-numbers/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r1Ah$RY','6=+B)/UASz','',0,'?'),(']R>w.EQ','wp-includes/sodium_compat/src/Core/Curve25519/README.md','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yϛvj\n','Sx^V>m!-qDeV','',0,'?'),('(T/IevB','wp-includes/blocks/table/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V:P:TP>\n','եk.y8>J=.	Ŋ,B#{','',0,'?'),('CW7','wp-content/themes/kadence/inc/components/nav_menus/nav-widget-settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/nav_menus/nav-widget-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pr(0vV	\Z','e-c;6O~hˊP*QF/Pڿ\"','',0,'?'),('t%lEVv.qظ\0','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Context/RetryContext.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Context/RetryContext.php',0,'zyB̰(K','zyB̰(K','*h6m©+liu6','',0,'?'),('!֐(yJo*J','wp-content/plugins/wordfence/vendor/composer/autoload_static.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6	PWn\"b','EgpԨwh.3\nfN','',0,'?'),(')#jdSeʋ','wp-includes/js/jquery/ui/effect-shake.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-shake.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"H:yOa?','G-%1AeʐUe,b$-c$','',0,'?'),('*1G鍫vLߟn','wp-includes/sodium_compat/src/Compat.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\"И\rC6','u\n@݌.R#j!YIW','',0,'?'),('-\"DʹD5a/','wp-includes/cron.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gbm\r!r/','b	zF*+fhI0O','',0,'?'),(':1@_`ݓ','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-splide-slider-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-splide-slider-init.min.js',0,'R}Kt\0pud','R}Kt\0pud','8|&2+bz?A\0Y6','',0,'?'),(';1/wSr(','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/EncoderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/EncoderInterface.php',0,'^ي\\*]EoayG','^ي\\*]EoayG','v\'I5߬Q6Rk}+?z','',0,'?'),('>U@s{r','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Admin/Settings.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Admin/Settings.php',0,'}mϓД I','}mϓД I','\"}K3\n~r6t\ZZ=d\Z2;\'','',0,'?'),('A4e{^Z','wp-includes/js/wpdialog.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wpdialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȋ5U c','}LS5zb$^G\0P#{Ie','',0,'?'),('F\ZC1P','wp-content/plugins/wordfence/lib/wfDict.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y LZ!bEl','.{0Je{5-~[T$Ğ','',0,'?'),('P^f:7jxW','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z(z;o|fγV','~3Mzs2ϧ7ۇjD\"rT;qD','',0,'?'),('c}bfɰ܀yB','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Password.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Password.php',0,'\nq<7','\nq<7','\nZnB8)C\'gjWMxi','',0,'?'),('f (7j','wp-content/plugins/wordpress-seo/images/link-in-icon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/link-in-icon.svg',0,'m4t1D','m4t1D','?ӽpMR\nIm#','',0,'?'),('uN.A__','wp-includes/js/media-editor.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@4Vaˣ','9R\rƲo[NKš*h','',0,'?'),('w65%mΜ!b0','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php',0,'`=-&:','`=-&:','F)yoՁs,HъA','',0,'?'),('|*w/\ZT*6bJ','wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories.php',0,'2\r!],','2\r!],','rє2XB}S$p{fGl','',0,'?'),('(wSO','wp-content/plugins/wordpress-seo/src/integrations/front-end/handle-404.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/handle-404.php',0,'=uVp$}~\Z','=uVp$}~\Z','s&=``\n\n-|zTC>','',0,'?'),('%7r@V','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Container.php',0,'\\8iW4e=8','\\8iW4e=8','WZlSdWj\'Fa}\\\0','',0,'?'),(')Q\n?Oar','wp-includes/blocks/comment-reply-link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-reply-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{o>ipVz,','*EHr9`7fRMcʗiaVh','',0,'?'),('7c8T','wp-content/cache/wp-rocket/atlantagynecomastia.com/causes-of-gynecomastia/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/causes-of-gynecomastia/index-mobile-https.html',0,':K9ey3 9p㥑',':K9ey3 9p㥑','S %OU1I2y`Rds','',0,'?'),('>+ܞL[m','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a5qȑ_4@','(afoxDpaQ6mtk,V^','',0,'?'),('(%#9yn','wp-admin/css/forms.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/forms.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hFLf4PyzU','WDZoM_YYx0F4R%','',0,'?'),('obBrj3#\r','wp-content/plugins/wordfence/waf/pomo/entry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';²iGQAw','79]#/rbCte\\cߏP','',0,'?'),('HL<̑5','wp-includes/blocks/query/view.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7PUDjCX^F','XBR{ʱfJ.pT&','',0,'?'),('D6S/cQ?','wp-includes/customize/class-wp-customize-background-position-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-background-position-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}4O','\":\nD<RD+|-Z]K?','',0,'?'),('f]Di{RG','wp-content/plugins/wordpress-seo/src/presenters/admin/search-engines-discouraged-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/search-engines-discouraged-presenter.php',0,'):-MjwO','):-MjwO','Jl\nݨfqmKE(D*1','',0,'?'),('K}:a<U+#','wp-content/plugins/wordpress-seo/lib/migrations/table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/table.php',0,'jm8wĔ%	O_$','jm8wĔ%	O_$','	[9Ŕ]Zםn','',0,'?'),('ȉmm^mB#','wp-content/plugins/wordpress-seo/inc/class-wpseo-statistics.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-statistics.php',0,'eT#W','eT#W','ݦ؄t9\Zbk~poMl\\;27Q','',0,'?'),('ɲAtoCp','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php',0,'q	BT*n','q	BT*n','۴jJЃ]\'[N䵺uT(2','',0,'?'),('ֵ-IQ4','wp-content/themes/kadence/inc/components/styles/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/styles/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cZ[iAm6r','\'ޠS$.Lg7wӶ','',0,'?'),('C`\"op','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0R\"$+nm\"#','\\0m?0ò$;|:P(=D>Gj','',0,'?'),(',zRsuX#zy','wp-content/plugins/wp-rocket/inc/classes/Buffer/class-cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/Buffer/class-cache.php',0,'u:Ke;4d0','u:Ke;4d0','%?`/VO=M\'#U','',0,'?'),('y\0\"Q','wp-admin/user/menu.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zV','m\r)h0ECN`D[	$3','',0,'?'),('(\ZvdvQ','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Stream.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Stream.php',0,' b\rn>_',' b\rn>_','Ur!2mB\0=C55W8,\r','',0,'?'),('e 0Uzk','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\쾸vcY7','!||8>xX	a&>eVX.H','',0,'?'),('^zO5<','wp-includes/blocks/details/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\"o@$)Nm','1j#IqNP\'9ˏEĲ_%','',0,'?'),('Pߘ)%%`','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php',0,'?5x!#7KQc','?5x!#7KQc','$ٖ=cOk)v;ZǦNz_ƫJ','',0,'?'),(';><-','wp-content/themes/kadence/inc/customizer/options/tec-event-archive-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/tec-event-archive-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bR\"6','Aޑ^X(G~޾kuھ','',0,'?'),('~rC','wp-admin/link-parse-opml.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/link-parse-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/-^X','E=cdh!Xe,`gs.#','',0,'?'),(')BBMzE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KgnL{2{0','gڎ1]P#Nmf<w0C]8-)@Q戍','',0,'?'),('&zRu{)','wp-content/plugins/shortpixel-image-optimiser/res/img/filebrowser/folder-open.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/filebrowser/folder-open.svg',0,'Ԃ)|Wns','Ԃ)|Wns','l([<o|P=<@)?YD8','',0,'?'),('?o\"(+MVu','wp-content/plugins/kadence-blocks/includes/assets/js/countUp.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/countUp.min.js',0,'t\"*>5FBVFT','t\"*>5FBVFT','׊z0:ɉ	*>/	3\\','',0,'?'),('H$ƩPY^','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_Action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_Action.php',0,'>_DNglS','>_DNglS','}X7RM֚bۦ؝,_\rN<~','',0,'?'),('OdTl5#U','wp-content/plugins/wordfence/css/wf-roboto-font.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-roboto-font.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Ouݵ','+hJ~ʆ*a*Gb67\r:','',0,'?'),('V9KgoX7','wp-admin/images/align-left-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-left-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i8O^c','$kb>k&:	ڂa7Zcdm%','',0,'?'),('W#:V^H3X','wp-includes/blocks/nextpage/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Rc0t F0','XkW4xYĘH7ya','',0,'?'),('n;tIsSx','wp-content/themes/kadence/assets/css/rcp.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/rcp.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J._}XLH','Z\'jn /vGܛ1y!qI','',0,'?'),('ѿ={64B','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/QueryBuilder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/QueryBuilder.php',0,'z	s7β];','z	s7β];','(z&-l]?\06!','',0,'?'),('s./}LIb','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OntoWikiInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',0,'(p	E&','(p	E&','zL>ʤ|W*?.d]cbEM_','',0,'?'),('HS!; ','wp-admin/js/user-profile.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/user-profile.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3xYfqTe$^\'','0Ǐj4GE?([:^yc.N','',0,'?'),('aWё擩','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php',0,'#Qz词}','#Qz词}','(Tlև\rK\nx,k','',0,'?'),('@}~4Gv<m','wp-includes/sodium_compat/src/Core32/X25519.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gbf>=','ߺ`\'盱Жx#i#','',0,'?'),('+qpW','wp-includes/update.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ot]i{u&hXrO','\\k+HvQPM`Y(','',0,'?'),('`&X<aQVh\\','wp-admin/user/profile.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x8!xSj','Jfv^Dwۦ\nsBu/L','',0,'?'),('uwtf$','wp-content/themes/kadence/inc/customizer/options/general-sidebar-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-sidebar-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aiOrY$݋','R3\r{H4m8&1B:UJMk_=E=GSu','',0,'?'),('G0y\r|','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/InflectorInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/InflectorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<a}s3^?','N[jP/ٝ9=9JBK#','',0,'?'),('yY)hNÁ','wp-includes/js/dist/customize-widgets.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rH;M4cX','80ޣ/nZSnck*4','',0,'?'),('b.\Z\r(','wp-content/themes/kadence/inc/components/zoom_recipe_card/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/zoom_recipe_card/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1:`/hQFTv','{,Iuat줣,p˅]XW<Ʌ','',0,'?'),('BϟgW0C[H#','wp-content/themes/kadence/assets/js/admin/customizer.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/customizer.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J;Gkdf\Z!','[>*mqe!~7G7Ī','',0,'?'),('Ĵٱrc!','wp-content/plugins/kadence-pro/dist/mega-menu/kadence-mega-menu.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/kadence-mega-menu.min.js',0,',<>>ZRw/',',<>>ZRw/','gæ৫{U-LXbtTj8','',0,'?'),('}bաN','wp-includes/js/dist/core-commands.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/core-commands.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<AZkw,','%=YTL/[!/Q-^\"d۔@v','',0,'?'),('\rGv\r70^','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-metadesc.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-metadesc.php',0,'tY\0yS^QLqb','tY\0yS^QLqb','U=A	\Z?N`\0e2V{z','',0,'?'),('gxAȢ}g','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ኮȣ&','K#@JU}F,![','',0,'?'),('\Z8j9','wp-content/plugins/kadence-blocks-pro/dist/icon-upload.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/icon-upload.js',0,'ElYN~o}','ElYN~o}','4ēg#U\r-,*gA&\0DD','',0,'?'),(' @;*|','wp-includes/Text/Diff/Engine/string.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Engine/string.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùfrZ','.0دl>/H-/p4{De[%%NX','',0,'?'),(' 0MIh=.j1','wp-content/plugins/wp-rocket/inc/ThirdParty/ReturnTypesTrait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/ReturnTypesTrait.php',0,'JV5;7lXy','JV5;7lXy','Pk_Ui(<-āVGž','',0,'?'),(')\nYSgq2','wp-content/plugins/userway-accessibility-widget/includes/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Q)5T,','@]8\":`^eeFuЎݼB','',0,'?'),('3aZ!;\n*2,','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_NullLogEntry.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_NullLogEntry.php',0,'4bBVN-`$','4bBVN-`$','c)NkY\r$oB5!&*ցd	4','',0,'?'),('4Qdf v_E','wp-content/themes/kadence/assets/js/ie.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/ie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=:^\0e#','rKRKAf*XJ!snB/BR','',0,'?'),('?^b,9ޘ!aeݲ','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/IpUtilsTest.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/IpUtilsTest.php',0,'KQsN;y2I','KQsN;y2I','\Z>\n9nUh]L20Qb','',0,'?'),('C:U8>h&h','wp-content/plugins/wordpress-seo/src/integrations/front-end/force-rewrite-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/force-rewrite-title.php',0,'\Z+kGg|M','\Z+kGg|M','OPnUZ7αL}','',0,'?'),('cp~0{fe','wp-includes/images/media/document.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/document.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KCӫMC	o','}vLXULmiQQpH	ߜ','',0,'?'),('t>]	Ue','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/[ĳ[xw','6WЋ?\'H\n>\rb`I,j\Z\"H=&g@','',0,'?'),(']pR/$1','wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+$B`wƕ','a6Οv]z5\rpc','',0,'?'),('=Tz?}H0l\Z\"','wp-content/themes/twentytwentyfour/styles/maelstrom.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/maelstrom.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|p\rb\'DN,','nX\Z)*avAw','',0,'?'),('+M%䣤','wp-includes/Requests/src/Exception/Http/Status405.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status405.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1#cN','y3<<۴yHߏS9QaFٯ','',0,'?'),('k|ͫdǇz','wp-content/plugins/wordfence/js/wfpopover.1722265817.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfpopover.1722265817.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R:RF_CFR','lݛ92̋!f/Ř!RGO8','',0,'?'),('u7Ao2','wp-content/plugins/wordpress-seo/src/config/indexing-reasons.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/indexing-reasons.php',0,'\0&Y${B$u','\0&Y${B$u','4yi?\ZP\'N\0%z','',0,'?'),('8C!0','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields-presenter.php',0,'a^W/','a^W/','4Qnܫ2U%e߁/:38Ʒ','',0,'?'),('\"jVd','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriNormalizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriNormalizer.php',0,'­Ae1EH','­Ae1EH','5ϸľeAbK\'IC+[pS%','',0,'?'),('eURϴ','wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3hZ-p{|','sʸl\n~f!teO[','',0,'?'),('_wƌ','wp-includes/widgets/class-wp-widget-media-video.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vI18K{','NI7 r\r/K3d}I*o]','',0,'?'),('BHw','wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.php',0,'?he,','?he,','80[`6R\r=~mk>|','',0,'?'),('ccQ@a','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php',0,')GVz}}',')GVz}}','/N6s>zyssOerӎNca','',0,'?'),('X0Pˑɷc7','wp-content/plugins/wp-rocket/views/metaboxes/post_edit_options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/metaboxes/post_edit_options.php',0,'@\r{\r/-m','@\r{\r/-m','TcLa{Q̥t&`\0,^m~Og&v','',0,'?'),('ǹFQ51&ς','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Filters/Table_FilterIterator.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Filters/Table_FilterIterator.php',0,'1<A8F[ uk','1<A8F[ uk','źXٵbܘR-L+v?NѪ O','',0,'?'),('h@vyw','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderAggregate.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderAggregate.php',0,'KL\')H','KL\')H','B4(b^\ZE-6ڀpB&?','',0,'?'),('-|VH%','wp-admin/site-health.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mLĸ','r\r}=sPSEU\Z|4w$','',0,'?'),('ǢBմ(\\0J','wp-includes/class-wp-text-diff-renderer-inline.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-text-diff-renderer-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ƏY ^\"}','qVVQ`X+Ί:>ZV/v6','',0,'?'),('.hVoNK;c','wp-content/themes/twentytwentyfour/templates/archive.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/archive.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2;\n','OWSh9-q.h!.n%y.^Yn7','',0,'?'),(';%N!9\nL&N','wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9f\"&	8','Ja ^e5)zQ؂#l24<','',0,'?'),('>I7m>꣍','wp-includes/blocks/embed/editor-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E#RGCt','[ꕭ8M~̴xWyv|	\\','',0,'?'),('A\\^zrBZ','wp-content/plugins/shortpixel-image-optimiser/class/external/offload/wp-offload-media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/offload/wp-offload-media.php',0,'jPVb{l82q','jPVb{l82q','%}+9U`j?k_kY','',0,'?'),('A_ymcl߆ֿ|r','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zj\0&1M','ۮ>B	\09\'Z))`FJK','',0,'?'),('Bۛ	^jU\'ԓ\r','wp-content/themes/kadence/assets/js/src/slide-init.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/slide-init.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZOHK#','GឞNV\0HYx;j7plv','',0,'?'),('D=SC','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%X`йKZ','SW,fK{\\^Y/','',0,'?'),('HU=c','wp-content/plugins/kadence-blocks-pro/vendor/composer/ClassLoader.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/ClassLoader.php',0,'+fq(4Ȯ','+fq(4Ȯ','k(\r(Njj\'̣6./\'','',0,'?'),('JSsG.J\00!','wp-content/plugins/wordpress-seo/js/dist/first-time-configuration.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/first-time-configuration.js',0,'&\">,l*RK','&\">,l*RK','?ZDn9E=XB) BBLV8','',0,'?'),('Tp?>C6gb)?','wp-content/plugins/wp-rocket/views/settings/page-sections/page-cdn.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/page-cdn.php',0,'\n\'vN','\n\'vN','j3^btX\ZQyU|	i<Ӏ','',0,'?'),('U5\nMȊFT W','wp-content/plugins/wordpress-seo/src/conditionals/deactivating-yoast-seo-conditional.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/deactivating-yoast-seo-conditional.php',0,'x.R`DrDѨ','x.R`DrDѨ','3`r\r9BARd0Jkk','',0,'?'),('\\1q7n5Ŭ6F','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/XPath.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/XPath.php',0,'N.Qb( M','N.Qb( M','T3Ozi`wCi0fHD','',0,'?'),('a*˫Cq,p5g','wp-content/plugins/wordpress-seo/admin/notifiers/dismissible-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/notifiers/dismissible-notification.php',0,'5t1HL3x[','5t1HL3x[','-SJ.#h\'(b4[R','',0,'?'),('gH逜','wp-content/plugins/wordpress-seo/src/presenters/admin/beta-badge-presenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/beta-badge-presenter.php',0,'\nr\ny,~I','\nr\ny,~I','|V&:53kɮM:\n\nPu','',0,'?'),('ke<F4','wp-admin/js/revisions.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bc\"_o','+};j#[89\0iX8FPJm','',0,'?'),('nU	8\n83Լ<','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wJ\'Fit','Ǣ]VX9Bm#9@Q4','',0,'?'),('zMEqyE','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/page-builder/thrive-visual-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/page-builder/thrive-visual-editor.php',0,'依uS','依uS','eCM8H%wZv֤(v01)\'4Q','',0,'?'),('{~3\ZyI!v]','wp-content/plugins/kadence-blocks/includes/form-ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/form-ajax.php',0,'l4&/v','l4&/v','WuIc6G\Z=kJ~|:','',0,'?'),('cnpu#Y&','wp-content/plugins/wordpress-seo/admin/class-primary-term-admin.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-primary-term-admin.php',0,'\\$Gy`E@h','\\$Gy`E@h','VQSCT>!	W','',0,'?'),('0ŎY\'','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H>YF','`{XNM.ҳ-7I!I5{0أ','',0,'?'),('D=K49','wp-includes/js/codemirror/codemirror.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/codemirror.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','23j1(D','Ό,au@sY%K-on\r','',0,'?'),('\rsP3,țln','wp-content/plugins/kadence-blocks/vendor/autoload.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/autoload.php',0,'g	ZZGֻ@','g	ZZGֻ@','O7QrjX[F&_X[hk','',0,'?'),('CMp<E','wp-includes/class-wp-oembed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kh(Ku_$TC=','[!շo3>[۫Ű֛H2Z','',0,'?'),('6+%ɺ ','wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml-wpseo-notification.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml-wpseo-notification.php',0,'\0gg\rVPp','\0gg\rVPp','ʢmY@8o\r`1V14e','',0,'?'),('|`e%_\r','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ܞJw',';n >]h܂fʩ|Q','',0,'?'),('6K1(}/AX','wp-admin/network/user-new.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԓuQdHHRpm','$20dtܵS+uUQ}','',0,'?'),('x.B@OA','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/MessagePresenter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/MessagePresenter.php',0,')*	5P-`Odo',')*	5P-`Odo','mU\0E-+tů(*ڞ','',0,'?'),('d@=\'*\Z@-','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-general-indexation-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-general-indexation-action.php',0,'87V<','87V<','\ZI|y^߯RD}g/e2','',0,'?'),('3RCV','wp-includes/blocks/calendar/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	WXAf~DaaZ','җ;mT}&]hNdEhT','',0,'?'),('Yj`\\)\Z{','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php',0,'Qn^~K=gy8','Qn^~K=gy8','cq|J̣>y;XŲ3@','',0,'?'),('?%Q0LL','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Admin/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Admin/Subscriber.php',0,'2:C|뭖*yՏ','2:C|뭖*yՏ','1\"n4@F\\^I\n7\"','',0,'?'),('afY|ߵp','wp-content/themes/kadence/inc/dashboard/react/src/changelog-item.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/changelog-item.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?3_H','Wr//x\n.DDH[г','',0,'?'),('jSp&0','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"/PO2o4]o','ܥrSS[|Kh2GK݇','',0,'?'),('ĩ}x(T','wp-includes/js/dist/block-library.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\"ޮ8c','{CēS@Q)\\rn-c5G+o','',0,'?'),('ɚvTܪ[]J','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php',0,'L;\rpf\"`','L;\rpf\"`','?;BM`Ffid_lܤטa^8$R','',0,'?'),('&ZmF,m `fg','wp-content/plugins/kadence-blocks-pro/dist/blocks-postgrid.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-postgrid.asset.php',0,'mzZȧwɼ','mzZȧwɼ','xY\"4O#EJiI|','',0,'?'),('#~rǤp','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Frontend/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Frontend/Subscriber.php',0,'M>B)\'OJ','M>B)\'OJ','~Lb=U1s3ZŶu[.','',0,'?'),('^Q6lJ!	ͦ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\oN.','>4i3|v1N6wD)Mjr','',0,'?'),('oϟӣ>-`8\Zt','wp-content/plugins/kadence-starter-templates/inc/class-logger.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6F{+\r,=2!','xHvBiI^\nQwy+ܭ','',0,'?'),(' ń1r}mJGWR','wp-content/plugins/wordfence/views/scanner/options-group-performance.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-performance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P=PҤ ','-9\0tD\\69s]\\e\0Rr','',0,'?'),('\'}nr\0!I','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php',0,'=l>+x]','=l>+x]','PS #,MbxBu','',0,'?'),('95!iM~&d','wp-content/plugins/wordpress-seo/src/builders/indexable-post-type-archive-builder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-post-type-archive-builder.php',0,'E>$zM#qV','E>$zM#qV','R)IhǸ4B=ˌ$AteT-uo','',0,'?'),('93+{#3','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LithiumInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LithiumInstaller.php',0,'~q߽\")i$','~q߽\")i$','lRExܻ	Rb*Hh','',0,'?'),(':t;kiPVtsm','wp-includes/blocks/image/view.min.asset.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/view.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#$LH+HX~8|ŷ','с%T_X;Rk(99mܙ8:S','',0,'?'),('D3$','wp-content/plugins/wordpress-seo/js/dist/languages/ja.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/ja.js',0,'&\rhP8RħRe','&\rhP8RħRe','MS}\r	^I&v7VLWC.i','',0,'?'),('SgoKĥwd$','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_FatalErrorMonitor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_FatalErrorMonitor.php',0,'=,##.!o','=,##.!o','A,=%`	y!v5x7','',0,'?'),('V	덵Wky	','wp-includes/blocks/navigation-link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ABk?J','/,UeK&7aB@>@VAGǘ','',0,'?'),('g7=!J@x(~','wp-content/themes/twentytwentyfour/patterns/hidden-post-navigation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-post-navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V؄=\n-m`','z\Z ae[ [f+TT','',0,'?'),('m~⟎LF','wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Queries/Cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Queries/Cache.php',0,'Ox>zGQct ','Ox>zGQct ','iZC#׽Ňځ.1W0DoC(s =','',0,'?'),('q\Zm nO\\Z','wp-content/themes/kadence/inc/components/accessibility/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/accessibility/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t5M-+','W!Bu934mw!dM3z','',0,'?'),('ɱ%a{Zj	%','wp-includes/class-wp-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kxMtfԫ)mh','IHߠ#1#	Y','',0,'?'),('I:4PU','wp-includes/SimplePie/Cache/Memcache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u5uyS','/M[Qtn.?χIqA?Tj<woRI','',0,'?'),('xP-`','wp-content/plugins/kadence-starter-templates/assets/images/masks/rounded.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/rounded.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Et$^ۗNK]','(5ۗ~+MV\n<J\0o#/IC','',0,'?'),(',`ttb7','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MP<^fG C','V$oBޞjf0֫QxuT=a`K','',0,'?'),('8K ?O]ʹY','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZlY^[F\r2xʻ','6=Sq-5 )EL}AViA]','',0,'?'),(':v\0֌s','wp-includes/blocks/post-comments-form/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nIgZ\\','W\'ߥ0H/N|+oVf','',0,'?'),('Qk+)|iÞ','wp-includes/Requests/src/Exception/Http/Status429.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status429.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Rm\ZpM={;|:','\\]b/ӵ$[ڃ<DǨ-p','',0,'?'),('苼3','wp-includes/blocks/shortcode/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gkɑ&2J$','õP$f\"YxoB3-n','',0,'?'),('Ϝ.{c\08~','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/ConflictingHeadersException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/ConflictingHeadersException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2,`@\\Pzvm','EȍLWj\n\\~ڸNГ-=','',0,'?'),('*Nk~','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/LogicException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/LogicException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q_ksUSd!i','jCim^SQC2\r','',0,'?'),('pl4[e','wp-admin/js/inline-edit-tax.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/inline-edit-tax.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u,2/b3S','Fc{+o>\n4PT,S','',0,'?'),(']a!71UZ1','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')/4;$۔ެvi\\','ni뗅NvX7Y]D','',0,'?'),('\"j623ψ','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-productcarousel-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-productcarousel-block.php',0,']r/{翬',']r/{翬','a^˶o-:l]~VF#;Qq~','',0,'?'),('|3A(\00\'I?','wp-content/plugins/wordpress-seo/src/commands/index-command.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/commands/index-command.php',0,'aLL&ʋ','aLL&ʋ','6%uX|a\';7:0nj_)v1t\r','',0,'?'),('%5\n7ZB','wp-content/themes/kadence/assets/js/admin/dashboard.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/dashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F$phsꟲj','M$FUDcd_})[sVn)m','',0,'?'),(')#0KƳR','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xu996','%)[CJMkNQki(DHک','',0,'?'),('l]g	SDn','wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1qQJ)ya__,','0`|\'8=Β<Q|`Է1pT','',0,'?'),('<#C<l','wp-content/themes/kadence/inc/components/restrict_content_pro/component.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/restrict_content_pro/component.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òE>ϰGyS','[w\n޻=֮\09ǚk֜nI8','',0,'?'),('ўBO䃜+\0,','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_FieldInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_FieldInterface.php',0,';GJY3p',';GJY3p','-X.Ik\'qxsy	U1/','',0,'?'),('Ѝ3>#.','wp-includes/rest-api/class-wp-rest-request.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/class-wp-rest-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','艎X;V\Z','Pvw[3AJ̵&$̃Ԉ\"Ӓ','',0,'?'),('ަ?%BPR','wp-content/plugins/wordpress-seo/src/generators/generator-interface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/generator-interface.php',0,'jX2	Dr','jX2	Dr','LBvH[VdkԼ}lE}','',0,'?'),('K|H#[x','wp-includes/blocks/tag-cloud/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u:yVԔ+','3j\0C\"D){UKVʛd%','',0,'?'),('lѮQz','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Filesystem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Filesystem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"P\\?*A','_B/<MefES','',0,'?'),('R=*dn','wp-admin/includes/media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G7n$\'','Y	L?\\[>RZ,א','',0,'?'),('\r׍K{!','wp-includes/css/dist/block-library/elements.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/elements.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sHH㑡 ','/hLLʭShHJԺ4  \"?A@','',0,'?'),('	LI<','wp-includes/Requests/src/Exception/Http/Status416.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status416.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J@E[X2Q\'','C:ϧgw3eI͹s\\w9H8X/','',0,'?'),('8=[ձ','wp-content/plugins/wordfence/modules/login-security/views/page/manage.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/manage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\\n\'}.KsG','W/\\})*bzioرѷ','',0,'?'),('A)͹D4','wp-includes/pomo/plural-forms.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/plural-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4%','[Ta1ًꝺ^=>?C','',0,'?'),('\"(b?\Zgsq','wp-includes/css/dist/reusable-blocks/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/reusable-blocks/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\'\'\0','.*W7MsdC?sLxCVz/m','',0,'?'),('+p),6Fà','wp-content/plugins/wp-rocket/assets/js/lazyload-css.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-css.min.js',0,'/nĽ(','/nĽ(','Y慃κ/\\czҔk<8׋','',0,'?'),('-^g̺@\0/','wp-content/index.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,V=\\bP','k~	UH\ZxPĀ<;X','',0,'?'),('.նZg{=','wp-admin/css/customize-controls.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-controls.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L[8tAw8m8CQ','}u-CND! $#iV`j','',0,'?'),('4/ف~<+','wp-includes/blocks/post-excerpt/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dt ]t^u','\ZXw[tDBK`4=!W6yK','',0,'?'),('9ޗe˼}`-TdF','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/ErrorChunk.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/ErrorChunk.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GoE0Շ,\n\nn','0Uz)\\p{cK_e_{P','',0,'?'),(':Y>=','wp-includes/blocks/media-text/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F!,9oc\n','\rϫQ`-lgA׆\'ļ','',0,'?'),('DeTa\\-ֆ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TaoInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TaoInstaller.php',0,'HBU$)w$','HBU$)w$','%ة8Pt6,},n','',0,'?'),('Z9ܽ\n<Z','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9dsι8\0','S<\"Ѥ\"1vǗ`~tF','',0,'?'),('k0k⟆VX','wp-includes/blocks/file/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ry[#z͢\n=','GL~Aua:aUa,/w)','',0,'?'),('n:zW_BSR','wp-includes/js/jquery/ui/resizable.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/resizable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\0D{','΀\0Pak&铅\0V +^\Z\r','',0,'?'),('w	+j','wp-content/plugins/wordfence/views/common/status-circular.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-circular.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',').=g','q4^\"-9\nd1qO,','',0,'?'),('$*-ً','wp-includes/blocks/quote/theme.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','86␢','ܙbi@9\\KqL2:++','',0,'?'),('7ڔ!2x%XN3','wp-content/plugins/wordfence/views/options/option-token.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xEJR`5\ZC\n','_NRϦgNr{oXӮ','',0,'?'),('UTieMhW\"uR','wp-content/themes/kadence/assets/css/elementor-admin.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/elementor-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dj\nsg\\C6L','?}9pe\'9tI)%\r`V','',0,'?'),('~a%!P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{6#UQ:|>#','([\n̻oRAo3^','',0,'?'),('e\Zၕt','wp-includes/Requests/src/Port.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Port.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t2ANr8)','O]gcxI3x숥Z\Z?<\'Ha','',0,'?'),('L?@.~O','wp-admin/css/colors/midnight/colors-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9(}ִ(Vv','ha?Rkm}~X\"@3','',0,'?'),('@\n]K\\x','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-thumbnail.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-thumbnail.php',0,'kiPч\"\r','kiPч\"\r','h|R3G4CS#\rK/f\":X$	','',0,'?'),('T\ne.(','wp-includes/class-wp-image-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-image-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','maŜ=K$Jު֦','<MO(dp\"Tj','',0,'?'),('hL(v^E#','wp-content/themes/kadence/inc/customizer/options/product-layout-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/product-layout-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z7ni|Q)sw','ݘh$:ySBDYL/(6a','',0,'?'),('ؘ-m4)}	','wp-includes/js/dist/reusable-blocks.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/reusable-blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jڊ۷\\X','ͪyRaQ2+/cj2|0','',0,'?'),('ܧ@{9@w<','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-platinum-seo-pack.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-platinum-seo-pack.php',0,'hJAբUkѪLn','hJAբUkѪLn','!^-PmY8P:#_H','',0,'?'),('KvKM;','wp-includes/blocks/comment-content/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dASbkYhH','	\0]Q&<GѬlB;Kfݐb+)r','',0,'?'),('Zp%\'n\ZWj','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' o@3e]@\"','FE(ۛ6Dd7ABG̠U*','',0,'?'),('}PÛP\\\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+q{[*$+','!K\\jYOG\r','',0,'?'),('R,A\ZGJ\'-','wp-includes/default-filters.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P5\r{eٽ4','aZGbH fHP\\OuW;','',0,'?'),(',K*ĳ՞','wp-content/plugins/kadence-starter-templates/inc/class-helpers.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-helpers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sVހPH','ָ߰C%p,d81v{/F\Z$','',0,'?'),('Bz;','wp-content/plugins/wordpress-seo/src/presentations/indexable-error-page-presentation.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-error-page-presentation.php',0,'!.\'f]','!.\'f]','ݼ^Qi#Et.+ׁU','',0,'?'),('^\':O','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1722265817.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1722265817.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kXZb5','[\0NEggdq\r*\'I','',0,'?'),('g(355k(','wp-includes/blocks/heading/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gj=bIg','BQ6bbDJtА^yYy	','',0,'?'),('\n\\ɶ.5','wp-includes/images/xit.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?`pR,_p','A\0|=fJS<|','',0,'?'),('ЬpIYR','wp-includes/sodium_compat/src/Core32/BLAKE2b.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FKy\"J','~T)_ԇYH+ɏ\'	;','',0,'?'),('$;PiB','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-backend.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-backend.php',0,'B>al$a6/','B>al$a6/','U\0f\'qd)3\"t+R','',0,'?'),('\n*fHYJ\rHD','wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/kadence-sticky-add-to-cart.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/kadence-sticky-add-to-cart.js',0,'>Ctˠ30<6Ҳ','>Ctˠ30<6Ҳ','_WO8ᤨ8!߽}','',0,'?'),('\nNL<ffJi+$iC','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l2̢=|\n^','\ree:Ψ<iߒ#4؃)\"V','',0,'?'),('Hf\n','wp-content/plugins/userway-accessibility-widget/includes/assets/images/bg.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/assets/images/bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U.׿Vw.2','Yb1#/\n04wFWv^','',0,'?'),('wU2}]','wp-content/plugins/kadence-blocks/includes/assets/images/masks/hexagon.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/hexagon.svg',0,'Հ&','Հ&','<{vil;ނ=ިez>Nc0H','',0,'?'),('usU~Y-y&R','wp-content/plugins/wordpress-seo/src/models/indexable-hierarchy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/indexable-hierarchy.php',0,'DdWHzK','DdWHzK','e\'2?.Ct\'o%C 0X@?y','',0,'?'),(' cO4ĨǖM','wp-includes/blocks/post-terms/style.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z^kNұ\Z)','?㷷(s\'˭#l<RTe','',0,'?'),('(ЊQB&Q?','wp-includes/blocks/categories.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֏\0[c	wXP:!','|ԯfVaѕzZkt','',0,'?'),('*>F0p\ZeM{ɟ<','wp-includes/css/dist/block-editor/content.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@p\\`I','6u.o[poY%\\P<5','',0,'?'),('.22~%','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/JsonException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/JsonException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cQr)N{tE','\rQ~lGhH0a#}qhP 4','',0,'?'),('7=? f','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/UrlHelper.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/UrlHelper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\0\rS','y50^)0?d%̭`H+','',0,'?'),('?\0fd-','wp-content/plugins/wordpress-seo/images/indexables_3_left_bubble_optm.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/indexables_3_left_bubble_optm.svg',0,'MEyhN88]DD@','MEyhN88]DD@','lAj6\nTCFJiN1;):4[','',0,'?'),('D]|߼$','wp-includes/js/mediaelement/wp-mediaelement.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d \r.K;I;','V@=jֆ<DHqs','',0,'?'),('DäflR','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/description-data-provider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/description-data-provider.php',0,'L0@Myz','L0@Myz','Z\Zx/r1*ڷjRd246','',0,'?'),('PhrV','wp-admin/css/revisions-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/revisions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؋Jfq^j4','+YvoxaJj','',0,'?'),('SǊ?b1	','wp-content/plugins/shortpixel-image-optimiser/class/view/view-edit-media.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-edit-media.php',0,'%Sg+Y%','%Sg+Y%','ݫ&r9tYezctf~','',0,'?'),('WyP@1','wp-content/themes/kadence/wpml-config.xml','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/wpml-config.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X[ۮS\'','iѾWO]C=8i','',0,'?'),('YsMѨwk','wp-admin/images/about-release-badge.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/about-release-badge.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>C^-<-','x3JOi\0.|\ry?X','',0,'?'),('[A$/]t{','wp-content/plugins/wordpress-seo/src/exceptions/importing/aioseo-validation-exception.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/importing/aioseo-validation-exception.php',0,'vK(ob)','vK(ob)','зiItZ{*bd)!ID#=','',0,'?'),('bv,/85N%','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/alpharetta-georgia/index-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/alpharetta-georgia/index-https.html',0,'ӠW.΋U`\0Uzf','ӠW.΋U`\0Uzf','06\0*xMG\"GOihxa4\r','',0,'?'),('dWi\"OO&','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PantheonInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PantheonInstaller.php',0,'8%饶d%-z','8%饶d%-z','\Zϡ4+HSTLYuO/\00A<1','',0,'?'),('k=\\bܡ','wp-content/plugins/wordpress-seo/src/integrations/exclude-oembed-cache-post-type.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/exclude-oembed-cache-post-type.php',0,'3Gi:/ܠpgd','3Gi:/ܠpgd','.u7ɗKM*1C}','',0,'?'),('mlg:!ND','wp-content/themes/kadence/template-parts/header/mobile-html.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h|trsE','(6Mǉ{[QlUR\0l|@','',0,'?'),('rZ@4//Xwg','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LaravelInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LaravelInstaller.php',0,'(2s;IL;t','(2s;IL;t','wa/:b2CGrs~]b:0Or\"','',0,'?'),('yZ\0~@EX.','wp-content/themes/kadence/assets/css/editor/learndash-editor-styles.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/editor/learndash-editor-styles.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x3Yzs,C','۳k˼6)jrai3','',0,'?'),('zt[','wp-includes/blocks/heading/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!<fK/l7','H3YF@&\'s+k}/','',0,'?'),('|De~}Qqz','wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J#.GYb\r\0/','1u~Բ\0}L\'? &44Fi','',0,'?'),('}L@S%8IA-','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/AbstractUnicodeString.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/AbstractUnicodeString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AE?!)-i','e<7|9ZFjjiDT䇍t','',0,'?'),('*p*2ˍoE','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/APIClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/APIClient.php',0,'N=>\'L| ct','N=>\'L| ct','!޽Vv<C>!/]Tv	\0Gd','',0,'?'),('\n,k4g_','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kt-masonry-init.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kt-masonry-init.min.js',0,'zW]%oG@	','zW]%oG@	','\\U12d2aC+FHr','',0,'?'),('j̀|89E','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/DataPart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/DataPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&&.`01lW','ZT w\0v>,}P$i>Bp-','',0,'?'),('.7GWA','wp-content/plugins/wp-rocket/inc/Engine/Cache/Config/ConfigSubscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/Config/ConfigSubscriber.php',0,'ޡJz|*T%$','ޡJz|*T%$','0zZhY.ffvxXՓ','',0,'?'),('xQΑnWE&','wp-includes/js/dist/interactivity-router.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity-router.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*8nK#*','v(=YFcĻjt&[p٢','',0,'?'),('\'VB~w','wp-includes/blocks/query-pagination/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' z\Z.','\nh(nq(WnCkO46','',0,'?'),('Ր-F}e8	','wp-content/plugins/wordpress-seo/src/generated/assets/externals.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generated/assets/externals.php',0,'}鹡yd0','}鹡yd0','.U $uE\0q?@S_Hb','',0,'?'),('SK547S','wp-includes/css/dist/block-library/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@0(%x~^p?','ؗ\\!ur&2D3Ʌ}۞','',0,'?'),('D36m[1܁W','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php',0,'AX.C\"x.m8Z','AX.C\"x.m8Z',')ӜWy<qtqbg','',0,'?'),('+f6Qy9','wp-includes/js/jquery/ui/selectmenu.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/selectmenu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P&H_ǭGvP-','!V&G7E>ڋ.X[t','',0,'?'),('ρXn\r?','wp-includes/sodium_compat/src/Core/XSalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pƮuo7;~z',' %ly\'#[_{E]8%','',0,'?'),('?i.Q[E','wp-includes/blocks/post-navigation-link.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?0UQ$N4)','lvK\"pg\\6\'','',0,'?'),('}\Zcʶ;','wp-content/plugins/wordpress-seo/src/integrations/admin/menu-badge-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/menu-badge-integration.php',0,'GAɿe!~','GAɿe!~','΂/%z\'4\'4/~@sƸS\'S)','',0,'?'),('GnOm','wp-content/themes/twentytwentyfour/patterns/page-home-business.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-home-business.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qB }		ET=','sȢhހnR\"52]ۊ%','',0,'?'),('%GOMm\r>','wp-content/themes/kadence/404.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[tھ_~H=i+č','̒=MZH\ZuεˀreS','',0,'?'),('RYޠK{)','wp-content/themes/kadence/inc/customizer/react/src/sorter/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h?ۨ@N\'','y[JD3u@zX5w+k+','',0,'?'),('])	{?R}','wp-includes/feed-rss.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iJ?YC>^f','flPf52tY3xDׄ','',0,'?'),('5U\"IUԆ','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/EnglishInflector.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/EnglishInflector.php',0,'\\]jkɔmo','\\]jkɔmo','Ġ7\r4EupBjVJgyݺt','',0,'?'),(' &L0$%','wp-content/plugins/kadence-starter-templates/inc/resources/Traits/Rest/Image_Trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Traits/Rest/Image_Trait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 7jxH6c','z.;/0\\|=v_Z|OWŞF','',0,'?'),('0<PsמH22','wp-includes/js/jquery/jquery.table-hotkeys.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.table-hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7?F5sS57,(','J<?YSuŪU&\nNy`TkL','',0,'?'),('9(FRj2n6]','wp-admin/css/colors/light/colors.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n(썤;','[a^330$eHMr)|J\"W','',0,'?'),('<.r9\Z{[4','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-css.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-css.php',0,'U%o@','U%o@',';_7A؝4mY;1OZ*r','',0,'?'),('J!2\0','wp-admin/css/about.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/about.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@d;Mv@','b!Γ*7L>ADD5n˖ݛ','',0,'?'),('W03սDڻM3','wp-content/themes/kadence/assets/css/src/lifterlms.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/lifterlms.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Bϋj','.	JI5?SWm?%pG','',0,'?'),('^N4ӝ,baD','wp-includes/css/dist/widgets/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/widgets/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\Z\"pcu8#','<J})|~Z˙ZejTp!','',0,'?'),('^O|\':QǙE','wp-content/plugins/wordfence/views/common/status-critical.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-critical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R/C[]u%','WB&69gk_EF6I','',0,'?'),('ek\'44Q^','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ActionFactory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ActionFactory.php',0,'U^	ZO5','U^	ZO5','vwy{&~)7*,?yAVgMX','',0,'?'),('g\"}_7J5','wp-includes/js/jcrop/jquery.Jcrop.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jcrop/jquery.Jcrop.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(/WM','rNRnɳ01\Z6[՛	','',0,'?'),('gjkS\nO\r','wp-content/plugins/wp-rocket/inc/main.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/main.php',0,'$h\\5;),','$h\\5;),','wSd7Pd :x`{]g:>','',0,'?'),('o5+IJP','wp-admin/site-editor.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/site-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j)]xz\"','qcȗU#e9OLA54','',0,'?'),('v6Z\'OIL\"ݕM','wp-includes/js/dist/block-editor.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K]+(#f','.\0TmL-g\"Rx`RW','',0,'?'),('ʘQ<ǋ\\','wp-content/themes/kadence/assets/css/src/content.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/content.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nMM Mp','xLRwK9?AHpO$V9','',0,'?'),('FbOMg','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-schema.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-schema.php',0,'-<gL\'O@ ','-<gL\'O@ ','dOBa\0y<^Q-\"	','',0,'?'),('&C,2¼M','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/LimitStatement.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/LimitStatement.php',0,'uMEoY烏','uMEoY烏','8K;\\1\"-b}Ms','',0,'?'),('\Z>w=[ub','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fCJuuZY!]','Y3Wq)S!,3\nhNǌX@v','',0,'?'),('p96èR','wp-admin/css/common.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G%s','/rvKtmٗXgذm','',0,'?'),('Ғ6(','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/DefaultProcess.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/DefaultProcess.php',0,'J3e9k̻','J3e9k̻','˧bG pJk#x׹`i\n','',0,'?'),('˄!oDe,\\','wp-content/themes/kadence/inc/customizer/react/src/sorter/item-component.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/item-component.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<oC_%ɿq4','<FVr4//OO;P,M2','',0,'?'),('ƪq悳','wp-includes/js/tinymce/plugins/paste/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/paste/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^s׶{މ2','\ZX8c+xη&Wg`m˴','',0,'?'),('lxy\Z\"','wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EU.7H>i;',',+x> V7rLKs&G','',0,'?'),('DNf','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionInterface.php',0,'@J%`Fz|<','@J%`Fz|<',')Q?}<>eAp|N','',0,'?'),('TKVQ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/star.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/star.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\rR','凙Sr~v% Y(khe','',0,'?'),('|=\Z&b.','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/over-quota.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/over-quota.svg',0,'|[P<^Pb','|[P<^Pb',']JPtH\'9I2GMN','',0,'?'),('qL>#Q\0','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}$?i','qn&%G~\\^Ӑ0','',0,'?'),('Oyg\r`','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Themify.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Themify.php',0,'nV7il(O','nV7il(O','.SĩOqv_E{tsl','',0,'?'),('\\\'}N)\Z\'#','wp-content/plugins/shortpixel-image-optimiser/class/Controller/CronController.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/CronController.php',0,'\rPiw?=,','\rPiw?=,','!Ӧ%W֜爚˨qa(մrdXu+H','',0,'?'),('<la,bX,','wp-admin/images/xit-2x.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӂu:@4\rz<5','S\r}@~Q:Sc*d+Z_{R','',0,'?'),('ը\nK}A\Z;.','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SimpleCustomCss.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SimpleCustomCss.php',0,'O:HS]7_;','O:HS]7_;',':>\rV=j#-\n2lkv<','',0,'?'),('؞׌[=z\0f','wp-content/themes/kadence/assets/css/heroic-knowledge-base.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/heroic-knowledge-base.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\"cnbv','o;S.ZLFVM5)k`/:{2','',0,'?'),('[@\'t	&','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/GoogleTagManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/GoogleTagManager.php',0,'A%Z\\[','A%Z\\[','?m	Н9=>(w\\O$=u','',0,'?'),('$Pk^#','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-optimus-subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-optimus-subscriber.php',0,'>KH[!|','>KH[!|','PMLaYjW4*?\rJ','',0,'?'),('0{#7lU<\\','wp-content/themes/kadence/template-parts/content/pagination.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2!*','=J>%5j6-J+_OԜ?tb','',0,'?'),('/[/Z','wp-includes/blocks/post-navigation-link/style-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nR(zJ,q3','G`	0tԄ?S\'$\n?*L','',0,'?'),('l&i1Fk','wp-content/plugins/wp-rocket/views/settings/page-sections/cache.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/cache.php',0,'wp+sqz͇','wp+sqz͇',' u0;tWt6ސCJ;&.L)\ns','',0,'?'),('0#6ֈ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoTmpDirFileException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoTmpDirFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\'R!,','H\r}|-G}_3naMe','',0,'?'),('PKqtAur j','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rύ^R7mR,\n','gA Os9+չu+5&+v	a	','',0,'?'),('ӎ o \Z','wp-content/plugins/wordpress-seo/src/introductions/application/current-page-trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/current-page-trait.php',0,'tuq!\'T\Z9','tuq!\'T\Z9',';DbjC\n%FaiA\rWdZ','',0,'?'),('Qh\0a','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php',0,';H<şJA{',';H<şJA{','gc҉X.ܴO\0\0*+:','',0,'?'),('Dicf`we','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/DefaultFileNameSanitizer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/DefaultFileNameSanitizer.php',0,',+n\nɒ}oY',',+n\nɒ}oY','$\'pE:\\6pp̚','',0,'?'),('(F\r٘l8','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/OAuthSignature.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/OAuthSignature.php',0,'\\HA!','\\HA!','q({fQNhP _r$BW','',0,'?'),('+q^eguF6\n','wp-includes/theme-compat/embed.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ţs^qcb','W5Tp;-n0aO\n','',0,'?'),('2=Ejh\n','wp-content/plugins/wordpress-seo/src/integrations/front-end/indexing-controls.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/indexing-controls.php',0,'\"E3b&bq\0','\"E3b&bq\0','18t;2!qի3%f!zvm@˘\"A','',0,'?'),('G!#h9	&','wp-includes/js/tinymce/plugins/wordpress/plugin.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^H\"Iff\n','ژZ9PMSdhf(-tUf','',0,'?'),('Kjh','wp-content/plugins/wordfence/images/loading_background.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'2p\nKX','Ύ%XŖF1s;Lzr璻','',0,'?'),('O\06S','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php',0,'zuݚKb^Cw','zuݚKb^Cw','qY\0L\04ὦ{*\\\'>7p֒','',0,'?'),('P:vQw','wp-includes/blocks/list/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\Z!@0\0V','v9R61=Kx3\0$','',0,'?'),('S/{:%ۢ^*','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/custom-gradient-bar.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/custom-gradient-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@BpP\nuU','e}0@vd,+B|w','',0,'?'),('VFއRF','wp-content/plugins/wp-rocket/assets/js/wpr-admin.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.min.js',0,'ڄݑwW\0_-\'','ڄݑwW\0_-\'','?P	U\'H>~✾]U@','',0,'?'),('\\~uf.J{]`','wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media-scan.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media-scan.php',0,'e\0$E&ib','e\0$E&ib','xjvZDLsR6Rt AIvw:','',0,'?'),('`Sk7TtvX','wp-includes/class-wp-list-util.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-list-util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c_7^a+Z(I','{p14hWwzq ̑Zr=W','',0,'?'),('b]׮30\r','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Cron/Subscriber.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Cron/Subscriber.php',0,'Z?E\ZN1\rl','Z?E\ZN1\rl','CQ\rԥCXp5Ԉ#rEISҭ','',0,'?'),('kLHϺ6\n`Q','wp-content/plugins/wp-rocket/inc/front/cookie.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/front/cookie.php',0,'Ew&?H9','Ew&?H9',')\0oe1ӏJ','',0,'?'),('la\'P_bm	!p','wp-includes/blocks/audio/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')[J[7>','vܽZR}ZfG|-!TUswo4','',0,'?'),('usT­BB','wp-content/plugins/wordfence/images/sort_desc_disabled.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_desc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J%{OZ\"/o','^*n^\0m+!NkɌ/ԯ^k','',0,'?'),('ZLOl','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CFhz','oő\nwnpL+;~t2P*ƃ6','',0,'?'),('53I','wp-content/plugins/wp-rocket/inc/vendors/classes/class-rocket-mobile-detect.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/vendors/classes/class-rocket-mobile-detect.php',0,'\0KL;','\0KL;','|^BAnGnL0GQ2','',0,'?'),('h.s4-ƝY','wp-content/themes/twentytwentyfour/assets/images/green-staircase.webp','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/green-staircase.webp',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ބ&`CV\0',')-RI/LAuֽt7,T؀u','',0,'?'),('0b2WH6','wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/MediaLibraryQueue.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/MediaLibraryQueue.php',0,'iPh$n\"m2X\\','iPh$n\"m2X\\','X$@,vT\Z}~b4CVJDp','',0,'?'),('\'B7S','wp-includes/js/zxcvbn-async.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/zxcvbn-async.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=$a[ZF)^\n~','uQ9ҫ{7o}`-nW','',0,'?'),('{	\n|p٤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\n\"!| W','>k/MŤU\"JPD<qE#}','',0,'?'),('9/\"@@Gr','wp-content/themes/kadence/inc/customizer/react/src/textarea/control.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/textarea/control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z]9<A\n+','MޣD$ߝ0b^*Ghkl','',0,'?'),(')(<','wp-includes/js/json2.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/json2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\'X$pqv','vT/ůDi\Z\\yq-B=k8i','',0,'?'),('b#!A3XV4	','wp-includes/blocks/comments-pagination/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','66ELСj-Ԉ(','`&`8sBVρCaϐ!','',0,'?'),('P -7I','wp-content/plugins/wordpress-seo/src/editors/application/analysis-features/enabled-analysis-features-repository.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/analysis-features/enabled-analysis-features-repository.php',0,'%l`U\ZK','%l`U\ZK','{FWb)5`QP\Z,)ٲ','',0,'?'),('vhy2%()','wp-includes/blocks/code/theme.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z	mEJ','w($썎B.}e-','',0,'?'),('l=+Ta','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/VgmcpInstaller.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/VgmcpInstaller.php',0,'TbU+ݕq?','TbU+ݕq?','gX8I(lN(-]G6/Y]{','',0,'?'),('ƐO|A7;o','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/RuntimeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/RuntimeException.php',0,'{AsNf','{AsNf','/k\'Fyߙ;F@$pdsz','',0,'?'),('<ZsptJI','wp-content/cache/wp-rocket/atlantagynecomastia.com/privacy-policy/index-mobile-https.html','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/privacy-policy/index-mobile-https.html',0,'xBFӕ4','xBFӕ4','h{ǮkI`p;aN`','',0,'?'),('!|MWkpr','wp-includes/blocks/query/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\0yτ','Fc~QTAdS珻Y/\Z&F','',0,'?'),('a\'@T瑓','wp-admin/images/date-button.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/date-button.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v!0ϝ$\n-潮LT','hŵδ䘼n$q!I#','',0,'?'),('ѠOܾF9wB7A?','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' TSF\'\nН','&)HWFð[DETc','',0,'?'),('FÌ4b*{wz;','wp-content/themes/kadence/inc/customizer/options/header-mobile-button-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-button-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VXP,G','I}WںI&\r?ᗺ]]:)2cG','',0,'?'),(':LeZz\\','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-form-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-form-block.php',0,'<#mޱ˝6k','<#mޱ˝6k','	*9ѻ>\n=\Z贿;OlAʈ','',0,'?'),('xQ}\0\n|WW','wp-content/plugins/wordpress-seo/src/actions/importing/deactivate-conflicting-plugins-action.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/deactivate-conflicting-plugins-action.php',0,']EpO-Np',']EpO-Np','2xǘ/aRDz=h{','',0,'?'),('.&t_1','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-account-options.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-account-options.php',0,'dJiGt','dJiGt','n2q\r0I]෦hp( ','',0,'?'),('\rYaԒ ','wp-includes/Requests/src/Exception/Http/StatusUnknown.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/StatusUnknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M%}҅p(','9p^n#UBTaxI8ثd˜C','',0,'?'),('(}:','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t(NJU\r','XMzމSUSh͉1\rDTԦ)}e!','',0,'?'),('낏\r?8[9kQ\'s','wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܈Vi<A$ɤ','4l^=HaU/?','',0,'?'),('\'T́YǙ','wp-includes/customize/class-wp-customize-cropped-image-control.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-cropped-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\n=PJjL','x\r:}gR)`kM%','',0,'?'),(')z]!?a','wp-admin/images/media-button-video.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-video.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>uewJ','Ye\"n+#@ƼZgVP\'','',0,'?'),('!JL܊6','wp-content/themes/kadence/assets/css/src/_site-brand.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_site-brand.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9P5@)gl','[XFmeyW~7','',0,'?'),('\"3:w','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/AlternativePart.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/AlternativePart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!z3ڰG|E`','Z.tְOGy','',0,'?'),('%|ݽ>?v{j','wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V=l	2X','״0M\"r,_Ǝ>)Gwg?','',0,'?'),(',=<2E;?t	0','wp-includes/Requests/src/HookManager.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/HookManager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','; }ԋ3','155?zsۍpb9d','',0,'?'),('.0b-Z6T/_','wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Image.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Image.php',0,'/)[\"e^T','/)[\"e^T','>&]z\n(VQFt\"Q','',0,'?'),('/e\no?}mbK','wp-includes/blocks/page-list/editor-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pb7rFΔmT','ao0CH*Bp5h\Z\rj\rG','',0,'?'),('2}+x4f	mX','wp-content/plugins/wordpress-seo/admin/pages/dashboard.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/dashboard.php',0,'E=MH?','E=MH?','@Kd\ZI=C?h;iu\r','',0,'?'),('72F,\'XN','wp-content/plugins/wp-rocket/assets/img/imagify-hover.svg','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/imagify-hover.svg',0,'w#LM\'@$I','w#LM\'@$I','mMd~XNU#{?cL,w4?','',0,'?'),('F%C0,','wp-admin/css/list-tables-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/list-tables-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?F!<.#<o','>i{T<NUF\r<a?K','',0,'?'),('I\"ptQ[Z6x','wp-includes/css/admin-bar.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s=l\\',')(pbHj\"Gs;-QFMy9.7','',0,'?'),('KXـ2#z','wp-includes/blocks/comments-title/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_eGAl	','ƳTz]	Gbg','',0,'?'),('LoA7ev	','wp-includes/blocks/loginout.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/loginout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' aG*qc:B{','KrMm8nJK>`A܅j','',0,'?'),('L ٩k','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/old-premium-integration.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/old-premium-integration.php',0,'2q}Gll,]$S','2q}Gll,]$S','(~5Tik\ZI\"j;','',0,'?'),('cwk(43','wp-admin/includes/list-table.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yݣz\0por	','ָ\'K`:$$b}$\'2','',0,'?'),('gVHIw!','wp-includes/css/customize-preview.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/customize-preview.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ig`oӏٷ1>','>kdU=@R\r;','',0,'?'),('gdٸ`6O7','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/CancellationException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/CancellationException.php',0,'J0a:AZ','J0a:AZ','M:PԫH4\ZN@0\\yi?^u','',0,'?'),('ntѹW;','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UnexpectedTypeException.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UnexpectedTypeException.php',0,'\0Z7<[\nw','\0Z7<[\nw','HX\n|)P-B\Z+73?','',0,'?'),('y.{uJߠ5[\Z.','wp-includes/blocks/more/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zud','y*C6WՏ۳w/8:t','',0,'?'),('}A5 PԆ','wp-includes/blocks/gallery/style-rtl.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v|JKe\'','*#\ZaiYJiFL/MK72','',0,'?'),('Qֿ6yq88','wp-includes/theme-compat/footer.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^X{Q3','nt2. |?<mfYE~I','',0,'?'),('v>A%Iz','wp-content/plugins/duplicate-post/src/post-republisher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/post-republisher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LEs9ס	CJXd',']Td/M]]*d!Y^s','',0,'?'),('KJVY[]','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-watcher.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-watcher.php',0,'A*k̉qE*غN','A*k̉qE*غN','~tVsٞ\"Ud9Uj\"㋢OnV','',0,'?'),('D','wp-content/plugins/wordpress-seo/src/integrations/front-end/category-term-description.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/category-term-description.php',0,'*U>NT','*U>NT',']3:?!F_m4Wϟ[','',0,'?'),('UAyǽ_-','wp-content/plugins/wordpress-seo/src/config/migrations/20230417083836_AddInclusiveLanguageScore.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20230417083836_AddInclusiveLanguageScore.php',0,'rW1M:$k\'/>;','rW1M:$k\'/>;','dKǦ)+sJe0WkGi','',0,'?'),('	Z]','wp-content/plugins/kadence-blocks/includes/resources/Traits/Image_Size_Trait.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Traits/Image_Size_Trait.php',0,'pq!Yf','pq!Yf','vak3ղqbb7<','',0,'?'),('K~[&','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-text-input-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-text-input-block.php',0,'N!THcQֺ ','N!THcQֺ ',',\0kO;:1yˀo]','',0,'?'),('rA|ƋdO쨰','wp-includes/blocks/image/theme-rtl.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1(!}7@s','DJ	-Zu*%֢\noy)³,','',0,'?'),('C	}(d','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ouא]`+{','TwAkPۨF\'6V~wsp','',0,'?'),('򞟳կ','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~SvOeut`4','^v!fBUHl,uʆ','',0,'?'),('a$yIҘ','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-title.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-title.php',0,'zA4e}[l','zA4e}[l',']sk-<I%ϝ~EÆk08','',0,'?'),('w\'6)','wp-includes/rss-functions.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rss-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' xr62\']el#','~^Ɏf}nBhi=F\n	^,','',0,'?'),('N9{;','wp-includes/js/mediaelement/wp-mediaelement.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\clE+htA6','009!t;ٖߩde\"','',0,'?'),('~[|Mo/ ','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Schemas/UsedCSS.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Schemas/UsedCSS.php',0,':DʖT2Gg84',':DʖT2Gg84','7*Ĝ:Tt7e߷!','',0,'?'),('.I\nfqM9','wp-includes/sodium_compat/src/Core/Poly1305.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!iLV=X+	v0~','4-<4,\"VȱXʘîhR	KFk','',0,'?'),('Tէ>UQ2','wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/pro-woocommerce.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/pro-woocommerce.js',0,'VlE&1?«}','VlE&1?«}','C}-,Wdf)\"q`LasY','',0,'?'),(',/o.(j','wp-content/themes/kadence/template-parts/header/mobile-logo.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ьƸ{QC','zc9?#	0u\Z7o.:(','',0,'?'),('+ŉ	&uq','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php',0,'()hGaRpA@','()hGaRpA@','AK/Vuj~k٪r;','',0,'?'),('lw8$Pɢa','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/HttpExceptionInterface.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/HttpExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tց35vw_ҡ','O~8șp\Z2. =sߺw6','',0,'?'),('գaes','wp-content/plugins/shortpixel-image-optimiser/class/view/shortpixel-feedback.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/shortpixel-feedback.php',0,'fV<a3׃','fV<a3׃','Ɵ9.9޳\rxET;Lh','',0,'?'),('\"UF~B.S','wp-includes/blocks/video/editor.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\"\rL<Jk\0','ǖIyz3cNVAN#(c','',0,'?'),(';`$r$=','wp-content/plugins/wordfence/images/icons/warning128.png','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/warning128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pGIt*Np=','*/ȾstA}.b\'\\','',0,'?'),('AaKo+O','wp-includes/blocks/post-author.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/}_G[ŉn','EMڀl-	@HbNuI<\n','',0,'?'),('E58yWsO','wp-admin/css/admin-menu.min.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/admin-menu.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','эUϝLJ','эg5\'-q;s4G~','',0,'?'),('Le5x?e=&','wp-includes/js/plupload/wp-plupload.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/wp-plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\r\rs ','l-7EG\ZMU?!?','',0,'?'),('M\02-Ht\Zp','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Utils.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ALYPZ`','ܬ#]f9䪁_o/&$[+daN	','',0,'?'),('NXFC[D2R','wp-content/plugins/kadence-blocks/includes/resources/Cache/Config.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Cache/Config.php',0,'J!Ud1XvS\"a','J!Ud1XvS\"a','q$h/2(?C\nel\0&O','',0,'?'),('OnP*8\n^','wp-content/plugins/kadence-blocks-pro/dist/query.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/query.js',0,'g\ZrbX','g\ZrbX','kZ}QP./oH)pSZ-','',0,'?'),('QS2#]srt','wp-includes/sodium_compat/src/Core/BLAKE2b.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⃎wl\0pA','+1,3-OETodÛ՚c?<','',0,'?'),('UO|aPx\Z','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-pagination-block.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-pagination-block.php',0,'tL>,G','tL>,G','cW\ZȄghz`$zN2Vޏp','',0,'?'),('[%4*$e23p','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Having.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Having.php',0,'\"N6=\"kS$%\"','\"N6=\"kS$%\"','g_8ӪQq)hC124֫(1@^U^','',0,'?'),('\\t;bO','wp-content/themes/kadence/tutor/single/course/above-lead-info.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/single/course/above-lead-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6VW8\"SVq\n#','c6\'}4|^˩C*$_','',0,'?'),('kPP1<','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oul_4@','6b% \"ʴsJp38ӷSǙ:','',0,'?'),('m>\Zh\rI\'','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/EventSourceHttpClient.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/EventSourceHttpClient.php',0,'τs@D?Ʊp','τs@D?Ʊp','c\\\'_V<IP:M\0\\','',0,'?'),('{Qw:	*s','wp-includes/blocks/details/block.json','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ei@&p3_3','\"@7[FV.ȣ	%!Œ','',0,'?'),('HF)\\,b','wp-includes/js/jquery/ui/controlgroup.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/controlgroup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Q8o5j','Y<C*\'\\(6NrЛR','',0,'?'),('~%B\0z?o','wp-includes/IXR/class-IXR-message.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_!ՙŚ(2','CGxbM`\0?mBTnȮpx`','',0,'?'),('a5[45MepC','wp-includes/js/jquery/ui/effect-bounce.min.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-bounce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uJ}z.WUy','.bMm!@6$a|m8}A','',0,'?'),('SCRCl','wp-admin/css/colors/sunrise/colors.scss','/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$lYFR','kvY߁RTRN*!:aH','',0,'?'),('ym|=X9','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}/t\rB:i','yr1`C`T}}E?Y','',0,'?'),('߹u7[)h','wp-includes/blocks/embed/editor.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q(D;','B\Z|L$X\rhd^:?O','',0,'?'),('ki.\\','wp-includes/images/smilies/icon_neutral.gif','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_neutral.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VM3HU1!v','Ois8\0|z6]e@Ym49','',0,'?'),('/T\'qKh','wp-content/plugins/wp-rocket/assets/js/cpcss-removal.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/cpcss-removal.js',0,'+5\'r<Ic@','+5\'r<Ic@','uTU5`jڞ{NNsIP','',0,'?'),('ο5;\nAAq\r','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Activation/ServiceProvider.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Activation/ServiceProvider.php',0,'/Ѻ>?','/Ѻ>?','[<>a-~','',0,'?'),('45q-p,','wp-includes/blocks/file/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'=\02','gԘ^V{!`hBaԹN\"i','',0,'?'),('RJǰ{}','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ul)1bS','E3yCRg&&bP!N9EK','',0,'?'),('©6<\09ZiR','wp-includes/js/jquery/ui/effect-fade.js','/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-fade.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7V7A=B;','l0uV{gfw`XJ6','',0,'?'),('@~}cQ\'J','wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~vY꽊<Rv','ux_U(Ż0-Db9D5,3?:f','',0,'?'),('JOq1c','wp-content/plugins/userway-accessibility-widget/includes/assets/css/style.css','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/assets/css/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pT-	\rL0','O	`:NGGuMb','',0,'?'),('vÏ*TM<]','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Container.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Container.php',0,'bD8','bD8',' ,{\r\\_dx8d#w6d','',0,'?'),('hWY^d9;@','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php','/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php',0,',XA\ZH5IN',',XA\ZH5IN','gXC6OSM/Dj#\"\\NW:','',0,'?');
/*!40000 ALTER TABLE `hyu_wffilemods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfhits`
--

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

--
-- Dumping data for table `hyu_wfhits`
--

LOCK TABLES `hyu_wfhits` WRITE;
/*!40000 ALTER TABLE `hyu_wfhits` DISABLE KEYS */;
INSERT INTO `hyu_wfhits` VALUES (2096,0.000000,1726021632.778057,'$\"\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2097,0.000000,1726023077.691935,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://paliers95.org/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2098,0.000000,1726024280.844366,'\0\0\0\0\0\0\0\0\0\0|',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2099,0.000000,1726029136.896537,'&\0\0\0\0\0\0!P',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2100,0.000000,1726030571.428259,'\0\0\0\0\0\0\0\0\0\0gR#',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2101,0.000000,1726033859.341888,'*d@\0\0,\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2102,0.000000,1726034865.469826,'\0\0\0\0\0\0\0\0\0\0k',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2103,0.000000,1726035769.170194,'\0\0\0\0\0\0\0\0\0\0£K',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2104,0.000000,1726036643.860357,'*\0\0T\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2105,0.000000,1726037495.777532,'\0\0\0\0\0\0\0\0\0\0D\r',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2106,0.000000,1726038424.572398,'*d@\0\0,s\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2107,0.000000,1726039361.874595,'\0\0\0\0\0\0\0\0\0\03jp',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2108,0.000000,1726040336.126457,'\0\0\0\0\0\0\0\0\0\0C',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2109,0.000000,1726054536.080024,'&\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2110,0.000000,1726055767.600303,'\0\0\0\0\0\0\0\0\0\0A<&',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2111,1726060889.523806,1726060889.495500,'\0\0\0\0\0\0\0\0\0\0U',0,403,0,0,0,'https://atlantagynecomastia.com/','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":1}'),(2112,0.000000,1726063156.203528,'\0\0\0\0\0\0\0\0\0\0Ev',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2113,0.000000,1726065377.340754,'\0\0\0\0\0\0\0\0\0\0ٶ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2114,0.000000,1726066853.369435,'\0\0\0\0\0\0\0\0\0\0>H',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2115,0.000000,1726067594.962701,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2116,0.000000,1726068334.076009,' | p[\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2117,0.000000,1726069816.223055,'\0\0\0\0\0\0\0\0\0\0q\Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2118,0.000000,1726070552.198372,'*\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2119,0.000000,1726072030.204648,'$\0a\0\0\0\0\0\0\0v',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2120,0.000000,1726072753.383147,'&\0\0\0\0\0\0B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2121,0.000000,1726073479.048269,'*\0ր\0 \0P\0\0\0\0\0\0\"',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2122,0.000000,1726074924.725357,'\0\0\0\0\0\0\0\0\0\0JQ&\Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2123,0.000000,1726075654.773776,'*\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2124,0.000000,1726076386.434311,'\0\0\0\0\0\0\0\0\0\0νR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2125,0.000000,1726077112.975755,'\0\0\0\0\0\0\0\0\0\0 nI',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2126,0.000000,1726077833.410026,'\0\0\0\0\0\0\0\0\0\0#Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2127,0.000000,1726080715.373833,'\0\0\0\0\0\0\0\0\0\0d',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2128,0.000000,1726082148.481402,'\0\0\0\0\0\0\0\0\0\0d\n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2129,0.000000,1726084294.933790,'\0\0\0\0\0\0\0\0\0\0gR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2130,0.000000,1726085714.224012,'\0\0\0\0\0\0\0\0\0\0qj',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2131,0.000000,1726086419.451807,'*G\0)\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2132,0.000000,1726087124.768172,' A\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2133,0.000000,1726087833.735754,'\0\0\0\0\0\0\0\0\0\0gz',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2134,0.000000,1726088557.970667,'\0\0\0\0\0\0\0\0\0\0gv',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2135,0.000000,1726090854.346228,'\0\0\0\0\0\0\0\0\0\0n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2136,0.000000,1726091620.671253,'\0\0\0\0\0\0\0\0\0\0{',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2137,0.000000,1726092398.440628,'\0\0\0\0\0\0\0\0\0\03$w',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2138,0.000000,1726095505.914280,' | pI\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2139,0.000000,1726096288.915978,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2140,0.000000,1726097065.266102,'*\0ր\0 \0P\0\0\0\0\0\0\"',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2141,0.000000,1726098620.856057,'$\0a\0\0\0\0\0\0z ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2142,0.000000,1726100996.263161,' A\0 \0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2143,0.000000,1726101796.282364,' | pȓ\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2144,0.000000,1726104208.864693,'\0\0\0\0\0\0\0\0\0\0/t7|',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2145,0.000000,1726108242.364371,' A\0>\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2146,0.000000,1726109843.506864,'\0\0\0\0\0\0\0\0\0\04V',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2147,0.000000,1726110619.923400,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2148,0.000000,1726111387.946927,'&\0\0\0\0\0\r',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2149,0.000000,1726112136.823732,'\0\0\0\0\0\0\0\0\0\03J',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2150,0.000000,1726112880.284609,'\0\0\0\0\0\0\0\0\0\03',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2151,0.000000,1726114381.419160,' A.\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2152,0.000000,1726115075.355079,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2153,0.000000,1726115807.218495,'\0\0\0\0\0\0\0\0\0\0ǔ4',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2154,0.000000,1726140176.908959,'\0\0\0\0\0\0\0\0\0\0&Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://best5pro.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2155,0.000000,1726291235.023019,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://atlantagynecomastia.com//wp-login.php','https://atlantagynecomastia.com//wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(2156,0.000000,1726291235.670065,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com//wp-login.php','https://atlantagynecomastia.com//wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2157,0.000000,1726348743.165137,'\0\0\0\0\0\0\0\0\0\0Y',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','http://www.cre-art-tiv.de/admin/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2158,0.000000,1726403788.096756,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://conectacontusfinanzas.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2159,0.000000,1726488187.559335,'\0\0\0\0\0\0\0\0\0\03',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Gentoo; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2160,0.000000,1726489188.503106,'\0\0\0\0\0\0\0\0\0\0Q^',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2161,1726583590.308287,1726583590.263600,'\0\0\0\0\0\0\0\0\0\0Z',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/install.php?step=1&language=en_GB',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0','blocked:waf','WordPress New Install File Probing','{\"learningMode\":0,\"failedRules\":\"506\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2luc3RhbGwucGhw\",\"path\":\"L3dwLWFkbWluL2luc3RhbGwucGhw\",\"category\":\"discovery-and-probing\",\"ssl\":1}'),(2162,0.000000,1726808275.416004,'\0\0\0\0\0\0\0\0\0\0\n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2163,0.000000,1726819573.638043,'\0\0\0\0\0\0\0\0\0\0g_',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2164,0.000000,1726831180.314222,'\0\0\0\0\0\0\0\0\0\0gS{',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2165,0.000000,1726837677.220690,'\0\0\0\0\0\0\0\0\0\0\n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2166,1726858162.436945,1726858162.417500,'\0\0\0\0\0\0\0\0\0\0£',0,403,0,0,0,'https://38.65.227.103:443/index.php?lang=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Ftmp%2Findex1',NULL,'Custom-AsyncHttpClient','blocked:waf','Directory Traversal','{\"learningMode\":0,\"failedRules\":\"12\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tsYW5nXQ==\",\"paramValue\":\"Li4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vdG1wL2luZGV4MQ==\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"traversal\",\"ssl\":1}'),(2167,1726858161.647204,1726858161.639600,'\0\0\0\0\0\0\0\0\0\0£',0,403,0,0,0,'https://38.65.227.103:443/index.php?lang=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fusr%2Flocal%2Flib%2Fphp%2Fpearcmd&config-create_%2F=&%2F%3C%3Fecho%28md5%28%22hi%22%29%29%3B%3F%3E_%2Ftmp%2Findex1_php=',NULL,'Custom-AsyncHttpClient','blocked:waf','Directory Traversal','{\"learningMode\":0,\"failedRules\":\"12\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tsYW5nXQ==\",\"paramValue\":\"Li4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vdXNyL2xvY2FsL2xpYi9waHAvcGVhcmNtZA==\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"traversal\",\"ssl\":1}'),(2168,0.000000,1727014981.438641,'\0\0\0\0\0\0\0\0\0\0BF',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php?wpaas-standard-login=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2169,1727014982.255145,1727014982.233700,'\0\0\0\0\0\0\0\0\0\0BF',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php?wpaas-standard-login=1',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2170,1727014982.135609,1727014982.122200,'\0\0\0\0\0\0\0\0\0\0BF',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php?wpaas-standard-login=1',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2171,1727072012.179898,1727072012.172500,'\0\0\0\0\0\0\0\0\0\0~',0,403,0,0,0,'https://38.65.227.103:443/index.php?lang=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Ftmp%2Findex1',NULL,'Custom-AsyncHttpClient','blocked:waf','Directory Traversal','{\"learningMode\":0,\"failedRules\":\"12\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tsYW5nXQ==\",\"paramValue\":\"Li4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vdG1wL2luZGV4MQ==\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"traversal\",\"ssl\":1}'),(2172,1727072011.761376,1727072011.748400,'\0\0\0\0\0\0\0\0\0\0~',0,403,0,0,0,'https://38.65.227.103:443/index.php?lang=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fusr%2Flocal%2Flib%2Fphp%2Fpearcmd&config-create_%2F=&%2F%3C%3Fecho%28md5%28%22hi%22%29%29%3B%3F%3E_%2Ftmp%2Findex1_php=',NULL,'Custom-AsyncHttpClient','blocked:waf','Directory Traversal','{\"learningMode\":0,\"failedRules\":\"12\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tsYW5nXQ==\",\"paramValue\":\"Li4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vdXNyL2xvY2FsL2xpYi9waHAvcGVhcmNtZA==\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"traversal\",\"ssl\":1}'),(2173,1727147352.464902,1727147352.408900,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/network/index.php',NULL,'Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsvaW5kZXgucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(2174,1727147359.500581,1727147359.433400,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":1}'),(2175,0.000000,1727183739.348434,'\0\0\0\0\0\0\0\0\0\0+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','atlantagynecomastia.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2176,1727184669.912700,1727184669.900600,'\0\0\0\0\0\0\0\0\0\0[\\',0,403,0,0,0,'https://atlantagynecomastia.com/plugins/content/apismtp/apismtp.php.suspected?test=hello',NULL,'Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3BsdWdpbnMvY29udGVudC9hcGlzbXRwL2FwaXNtdHAucGhwLnN1c3BlY3RlZA==\",\"category\":\"brute-force\",\"ssl\":1}'),(2177,1727184669.696219,1727184669.676400,'\0\0\0\0\0\0\0\0\0\0[\\',0,403,0,0,0,'https://atlantagynecomastia.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello',NULL,'Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocC5zdXNwZWN0ZWQ=\",\"category\":\"brute-force\",\"ssl\":1}'),(2178,1727184669.532111,1727184669.512000,'\0\0\0\0\0\0\0\0\0\0[\\',0,403,0,0,0,'https://atlantagynecomastia.com/alfacgiapi/perl.alfa','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFjZ2lhcGkvcGVybC5hbGZh\",\"category\":\"brute-force\",\"ssl\":1}'),(2179,1727184669.168335,1727184669.156100,'\0\0\0\0\0\0\0\0\0\0[\\',0,403,0,0,0,'https://atlantagynecomastia.com/',NULL,'Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":1}'),(2180,1727184669.151363,1727184669.115000,'\0\0\0\0\0\0\0\0\0\0[\\',0,403,0,0,0,'https://atlantagynecomastia.com/ALFA_DATA/alfacgiapi/perl.alfa','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0FMRkFfREFUQS9hbGZhY2dpYXBpL3BlcmwuYWxmYQ==\",\"category\":\"brute-force\",\"ssl\":1}'),(2181,0.000000,1727186065.041263,'\0\0\0\0\0\0\0\0\0\0Dgy',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2182,0.000000,1727189868.447542,' | p[\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2183,0.000000,1727192148.510525,'\0\0\0\0\0\0\0\0\0\03',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2184,0.000000,1727192900.151496,'\0\0\0\0\0\0\0\0\0\0K5',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2185,0.000000,1727193657.216874,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2186,0.000000,1727194413.399750,'*!\"`\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2187,0.000000,1727195201.441646,' A.\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2188,0.000000,1727195981.372541,'\0\0\0\0\0\0\0\0\0\0\0_',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2189,0.000000,1727196754.811807,' A.\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2190,0.000000,1727199050.756636,'\0\0\0\0\0\0\0\0\0\03J',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2191,0.000000,1727199808.674146,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2192,0.000000,1727200561.423621,' A.\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2193,0.000000,1727201319.662698,'\0\0\0\0\0\0\0\0\0\0|ޤ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2194,0.000000,1727203560.517199,'\0\0\0\0\0\0\0\0\0\0Ev',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2195,0.000000,1727204303.843958,' A.\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2196,0.000000,1727205796.092011,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2197,0.000000,1727206539.432210,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2198,0.000000,1727208028.498721,'\0\0\0\0\0\0\0\0\0\0/i+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2199,0.000000,1727208772.749651,'\0\0\0\0\0\0\0\0\0\0/t7|',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2200,0.000000,1727209518.646778,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2201,0.000000,1727211020.711064,' A\0>\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2202,0.000000,1727211768.835931,'*K\0\0\0\0<W',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2203,0.000000,1727212522.474221,'&\0<\0\0\0\0<',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2204,0.000000,1727213272.097354,'\0\0\0\0\0\0\0\0\0\0/i+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2205,0.000000,1727214020.759929,'\0\0\0\0\0\0\0\0\0\03$w',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2206,0.000000,1727214769.980268,'&\0\0\0\0\0\0`',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2207,0.000000,1727215531.861455,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2208,0.000000,1727217816.974877,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2209,0.000000,1727218577.513187,'\0\0\0\0\0\0\0\0\0\0gR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2210,0.000000,1727219339.958257,'*d@\0\0,@\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2211,0.000000,1727220103.658414,'*d@\0\0,@\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2212,0.000000,1727222401.740085,'\0\0\0\0\0\0\0\0\0\0Ev',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2213,0.000000,1727223186.342231,'\0\0\0\0\0\0\0\0\0\0ٶ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2214,0.000000,1727224753.551838,'\0\0\0\0\0\0\0\0\0\09U)',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2215,0.000000,1727227157.944458,'\0\0\0\0\0\0\0\0\0\0#Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2216,0.000000,1727228773.667279,'\0\0\0\0\0\0\0\0\0\0gR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2217,0.000000,1727229580.018874,'\0\0\0\0\0\0\0\0\0\0JQ&\Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2218,0.000000,1727232947.408090,' | p.\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2219,0.000000,1727233790.794230,'\0\0\0\0\0\0\0\0\0\0gvO',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2220,0.000000,1727234637.047829,'\0\0\0\0\0\0\0\0\0\0gR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2221,0.000000,1727236338.542647,'\0\0\0\0\0\0\0\0\0\0D',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2222,0.000000,1727237190.356662,'\0\0\0\0\0\0\0\0\0\03',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2223,0.000000,1727238044.634813,'&\0\0\0\0\0\04\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2224,0.000000,1727239035.632558,'&\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2225,0.000000,1727239885.774895,' A\0 \0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2226,0.000000,1727242393.359501,'\0\0\0\0\0\0\0\0\0\0q\Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2227,0.000000,1727244028.853367,'*K\0\0\0\0<W',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2228,0.000000,1727244842.796966,'&\0\0\0\0\0\0`',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2229,0.000000,1727245660.017566,' | pI\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2230,0.000000,1727246477.735200,'\0\0\0\0\0\0\0\0\0\0jv',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2231,0.000000,1727247294.295475,'\0\0\0\0\0\0\0\0\0\0gv',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2232,0.000000,1727248103.379340,'\0\0\0\0\0\0\0\0\0\03J',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2233,0.000000,1727248916.747806,'*T\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2234,0.000000,1727251292.545535,'\0\0\0\0\0\0\0\0\0\02',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2235,0.000000,1727252071.491411,'&\0<\0\0\0\0<',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2236,0.000000,1727253634.274937,'$\0\0830\06',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2237,0.000000,1727255192.910299,'*d@\0\0,@\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2238,0.000000,1727255952.408592,'\0\0\0\0\0\0\0\0\0\021',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2239,0.000000,1727256702.035951,'\0\0\0\0\0\0\0\0\0\0-',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2240,0.000000,1727257470.171977,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2241,0.000000,1727259267.242520,'\0\0\0\0\0\0\0\0\0\0+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','atlantagynecomastia.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2242,0.000000,1727259803.503877,'\0\0\0\0\0\0\0\0\0\03$w',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2243,0.000000,1727260584.963305,'*o\0\0\0\0\0\0\0\0\\5`o',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2244,0.000000,1727262149.354517,'\0\0\0\0\0\0\0\0\0\0ٶ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2245,0.000000,1727262934.686910,'\0\0\0\0\0\0\0\0\0\03D{',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2246,0.000000,1727266084.367355,'\0\0\0\0\0\0\0\0\0\0#Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2247,0.000000,1727267741.734497,' A\0>\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2248,0.000000,1727413345.824261,'\0\0\0\0\0\0\0\0\0\0շ5',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://chicano-pizza.fr/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2249,0.000000,1727418787.768386,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2250,1727419148.779885,1727419148.741600,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2251,0.000000,1727422285.301868,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2252,1727422638.387829,1727422638.319700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2253,1727423090.146275,1727423090.132000,'\0\0\0\0\0\0\0\0\0\0Z',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/install.php?step=1&language=en_GB',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0','blocked:waf','WordPress New Install File Probing','{\"learningMode\":0,\"failedRules\":\"506\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2luc3RhbGwucGhw\",\"path\":\"L3dwLWFkbWluL2luc3RhbGwucGhw\",\"category\":\"discovery-and-probing\",\"ssl\":1}'),(2254,0.000000,1727425740.334956,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2255,1727426100.969233,1727426100.946700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2256,0.000000,1727429263.543878,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2257,1727429621.069314,1727429621.046500,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2258,0.000000,1727432753.883612,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2259,1727433100.047320,1727433100.009900,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2260,0.000000,1727436235.324229,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2261,1727436593.388936,1727436593.372500,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2262,0.000000,1727439720.191356,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2263,1727440072.639649,1727440072.613300,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2264,0.000000,1727443216.931456,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2265,1727443589.946277,1727443589.919400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2266,0.000000,1727446814.684821,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2267,1727447171.147420,1727447171.114300,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2268,0.000000,1727450324.924531,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2269,1727450683.130686,1727450683.065800,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2270,0.000000,1727453794.072155,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2271,1727454157.145548,1727454157.110800,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2272,0.000000,1727457220.272983,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2273,1727457574.449361,1727457574.410900,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2274,0.000000,1727460712.499322,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2275,1727461074.254819,1727461074.220400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2276,0.000000,1727465083.521176,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2277,1727465546.291387,1727465546.258700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2278,0.000000,1727469444.471075,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2279,1727469824.048558,1727469824.018000,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2280,0.000000,1727473030.908718,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2281,1727473396.627822,1727473396.596500,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2282,0.000000,1727476606.135896,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2283,1727476961.612155,1727476961.589300,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2284,0.000000,1727480114.143916,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2285,1727480474.337646,1727480474.319000,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2286,0.000000,1727483671.440958,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2287,1727484017.790919,1727484017.755700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2288,0.000000,1727487158.082720,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2289,1727487512.044028,1727487512.027100,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2290,0.000000,1727490674.136759,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2291,1727491026.415357,1727491026.395000,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2292,0.000000,1727494180.659918,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2293,1727494539.732013,1727494539.694500,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2294,0.000000,1727497741.633825,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2295,1727498108.083053,1727498108.059400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2296,0.000000,1727501319.368693,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2297,1727501685.475947,1727501685.459900,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2298,0.000000,1727504882.814927,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2299,1727505243.474568,1727505243.458200,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2300,0.000000,1727506236.401671,'\0\0\0\0\0\0\0\0\0\0\r',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://goldenspicesindonesia.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2301,0.000000,1727508458.850767,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2302,1727508818.959507,1727508818.944400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2303,0.000000,1727511945.225340,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2304,1727512299.464754,1727512299.426100,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2305,0.000000,1727515438.180198,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2306,1727515793.169748,1727515793.153400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2307,0.000000,1727519697.289816,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2308,1727520049.735963,1727520049.699900,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2309,0.000000,1727523220.226065,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2310,1727523574.824065,1727523574.804600,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2311,0.000000,1727526730.879659,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2312,1727527080.515545,1727527080.491500,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2313,0.000000,1727530221.700822,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2314,1727530616.001456,1727530615.962200,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2315,0.000000,1727533718.539944,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2316,1727534115.674455,1727534115.634700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2317,0.000000,1727537270.846091,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2318,1727537634.811058,1727537634.776100,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2319,0.000000,1727540920.851980,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2320,1727541283.487980,1727541283.472600,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2321,0.000000,1727544541.039211,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2322,1727544893.797740,1727544893.758700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2323,0.000000,1727547993.015737,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2324,1727548358.316825,1727548358.276900,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2325,0.000000,1727551505.215703,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2326,1727551900.904575,1727551900.829600,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2327,0.000000,1727555425.351125,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2328,1727555798.991577,1727555798.952700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2329,0.000000,1727558118.379627,'\0\0\0\0\0\0\0\0\0\0SF',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','http://losttosight.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2330,0.000000,1727558983.804929,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2331,1727559350.423139,1727559350.389200,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2332,0.000000,1727562543.496726,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2333,1727562907.251942,1727562907.234300,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2334,0.000000,1727566196.820267,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2335,1727566554.786797,1727566554.769700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2336,0.000000,1727569874.934593,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2337,1727570231.511816,1727570231.474200,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2338,0.000000,1727573460.378996,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2339,1727573823.064222,1727573823.021500,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2340,0.000000,1727577013.627593,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2341,1727577370.929957,1727577370.903800,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2342,0.000000,1727583183.357928,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2343,1727583539.318159,1727583539.292700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2344,0.000000,1727586718.575228,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2345,1727587076.230187,1727587076.212400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2346,0.000000,1727590283.721306,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2347,1727590634.380935,1727590634.363600,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2348,0.000000,1727593757.267205,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2349,1727594122.340779,1727594122.303300,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2350,0.000000,1727597347.728444,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2351,1727597734.178249,1727597734.160400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2352,0.000000,1727601076.113617,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2353,1727601486.182272,1727601486.157200,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2354,0.000000,1727604895.838885,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2355,1727605272.636428,1727605272.619700,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2356,0.000000,1727608593.891384,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2357,1727608977.864910,1727608977.829100,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2358,0.000000,1727611938.564782,'\0\0\0\0\0\0\0\0\0\0s`',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://www.power-mental.at/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2359,0.000000,1727612261.971945,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2360,1727612627.558734,1727612627.518900,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2361,0.000000,1727615913.905485,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2362,1727616276.593376,1727616276.557100,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2363,0.000000,1727620257.223556,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2364,1727620626.089590,1727620626.074400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2365,0.000000,1727624106.125835,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2366,1727624495.636498,1727624495.594600,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2367,0.000000,1727627865.032811,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2368,1727628250.147956,1727628250.129400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2369,0.000000,1727631562.318542,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2370,1727631999.041065,1727631999.007200,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2371,0.000000,1727635300.414032,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2372,1727635701.777966,1727635701.764300,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2373,0.000000,1727639102.604176,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2374,1727639484.915858,1727639484.875400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2375,0.000000,1727642998.401486,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2376,1727643381.159017,1727643381.142300,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2377,0.000000,1727646890.833820,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2378,1727647255.370894,1727647255.332300,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2379,0.000000,1727647609.190685,'\0\0\0\0\0\0\0\0\0\0BF',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php?wpaas-standard-login=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'wpadminns\' to try to sign in',NULL),(2380,1727647610.241043,1727647610.207500,'\0\0\0\0\0\0\0\0\0\0BF',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php?wpaas-standard-login=1',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','lockedOut','Used an invalid username \'wpadminns\' to try to sign in','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2381,1727647610.024349,1727647610.007000,'\0\0\0\0\0\0\0\0\0\0BF',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php?wpaas-standard-login=1',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','lockedOut','Used an invalid username \'wpadminns\' to try to sign in','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2382,0.000000,1727650419.785196,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2383,1727650790.978138,1727650790.939100,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2384,0.000000,1727653996.796443,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2385,1727654353.518344,1727654353.491400,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2386,0.000000,1727657575.544243,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2387,1727657943.807651,1727657943.769800,'\0\0\0\0\0\0\0\0\0\0^B',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php',NULL,'Mozilla/5.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(2388,0.000000,1727695642.348281,'\0\0\0\0\0\0\0\0\0\0Yug',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2389,0.000000,1727697659.726063,'\0\0\0\0\0\0\0\0\0\0tv3\n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2390,0.000000,1727742262.402366,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2391,0.000000,1727743023.618087,'*G\0u\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2392,0.000000,1727744543.480941,'$\0a0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2393,0.000000,1727745189.863218,'\0\0\0\0\0\0\0\0\0\0Uk6',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://upcdisplays.com/shop/admin/index.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2394,0.000000,1727746864.661274,' A\0\n,\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2395,0.000000,1727747644.015229,'\0\0\0\0\0\0\0\0\0\0gvO',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2396,0.000000,1727750094.663357,'\0\0\0\0\0\0\0\0\0\0gR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2397,1727750470.895480,1727750470.843300,'\0\0\0\0\0\0\0\0\0\0]]',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (iPhone; CPU iPhone OS 17_0_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1','blocked:waf','Malicious File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbZmlsZV0=\",\"paramValue\":\"d29yZHByZXNzLnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"file_upload\",\"ssl\":1}'),(2398,0.000000,1727750916.056945,'&\0<\0\0\0\0<',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2399,0.000000,1727751736.106075,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2400,0.000000,1727753384.734669,'\0\0\0\0\0\0\0\0\0\0/i+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2401,0.000000,1727758338.912401,'\0\0\0\0\0\0\0\0\0\03J',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2402,0.000000,1727759153.803966,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2403,0.000000,1727759968.708640,'\0\0\0\0\0\0\0\0\0\0|)',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2404,0.000000,1727760769.594178,'*\0@\0\0\0\0\0\0\0\'',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2405,0.000000,1727761563.527626,'\0\0\0\0\0\0\0\0\0\0>H',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2406,0.000000,1727762358.081669,'\0\0\0\0\0\0\0\0\0\0hc',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2407,0.000000,1727763165.350756,'&\0\0\0\0\0\04\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2408,0.000000,1727763967.404398,' A\0\0\0\0\0\0\0u',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2409,0.000000,1727764778.122615,' | pȓ\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2410,0.000000,1727765580.722723,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2411,0.000000,1727766389.944857,'\0\0\0\0\0\0\0\0\0\0Wb',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2412,0.000000,1727767193.675111,'\0\0\0\0\0\0\0\0\0\0jv',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2413,0.000000,1727769553.862698,'\0\0\0\0\0\0\0\0\0\0gR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2414,0.000000,1727770328.250405,'\0\0\0\0\0\0\0\0\0\04E',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2415,1727771027.049137,1727771026.971700,'\0\0\0\0\0\0\0\0\0\0&d',0,403,0,0,0,'https://atlantagynecomastia.com//?rest_route=%2Fwp%2Fv2%2Fusers','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly8=\",\"category\":\"brute-force\",\"ssl\":1}'),(2416,0.000000,1727771100.832675,'\0\0\0\0\0\0\0\0\0\0qj',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2417,0.000000,1727771877.013260,'\0\0\0\0\0\0\0\0\0\0νR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2418,0.000000,1727773396.409812,'\0\0\0\0\0\0\0\0\0\0d\n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2419,0.000000,1727776409.537606,'\0\0\0\0\0\0\0\0\0\0νR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2420,0.000000,1727777160.181492,'\0\0\0\0\0\0\0\0\0\0JQ&\Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2421,0.000000,1727780156.843125,'\0\0\0\0\0\0\0\0\0\0/i+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2422,0.000000,1727782405.670422,'\0\0\0\0\0\0\0\0\0\0gvO',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2423,0.000000,1727783154.550426,'\0\0\0\0\0\0\0\0\0\0K5',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2424,0.000000,1727786160.235214,'\0\0\0\0\0\0\0\0\0\06%@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2425,0.000000,1727786916.193960,'\0\0\0\0\0\0\0\0\0\02&',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2426,0.000000,1727790698.022465,'\0\0\0\0\0\0\0\0\0\0/i+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2427,0.000000,1727791453.703540,'*\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2428,0.000000,1727792214.486711,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2429,0.000000,1727792976.866145,'\0\0\0\0\0\0\0\0\0\0/t7|',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2430,0.000000,1727793740.659121,' A.\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2431,0.000000,1727794505.642977,'\0\0\0\0\0\0\0\0\0\06%@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2432,0.000000,1727826985.653568,'\0\0\0\0\0\0\0\0\0\0b',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://lodeka.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2433,1727837560.964890,1727837560.855300,'\0\0\0\0\0\0\0\0\0\0Y',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/admin-ajax.php','https://atlantagynecomastia.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0','blocked:waf','Reflected XSS via \\\'page\\\' parameter','{\"learningMode\":0,\"failedRules\":\"457\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbmdpbngvZG9tYWlucy9hdGxhbnRhZ3luZWNvbWFzdGlhLmNvbS9wdWJsaWMvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(2434,1727853210.713492,1727853210.609500,'\0\0\0\0\0\0\0\0\0\0#x',0,403,0,0,0,'https://atlantagynecomastia.com//?rest_route=%2Fwp%2Fv2%2Fusers','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly8=\",\"category\":\"brute-force\",\"ssl\":1}'),(2435,0.000000,1727927082.422872,'\0\0\0\0\0\0\0\0\0\0Vgh',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2436,0.000000,1727927907.672899,'\0\0\0\0\0\0\0\0\0\0{',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2437,0.000000,1727928734.747455,'\0\0\0\0\0\0\0\0\0\0K5',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2438,0.000000,1727929582.880104,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2439,0.000000,1727930435.481603,'\0\0\0\0\0\0\0\0\0\0zr=}',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2440,0.000000,1727931291.324777,'\0\0\0\0\0\0\0\0\0\0JQ&\Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2441,1727960274.134765,1727960274.102000,'\0\0\0\0\0\0\0\0\0\0+',0,403,0,0,0,'https://atlantagynecomastia.com/wp-json/litespeed/v1/cdn_status','https://atlantagynecomastia.com','Searcherxweb','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jlc3VsdF1bX21zZ10=\",\"paramValue\":\"PHNjcmlwdCBzcmM9aHR0cHM6Ly96ZXJvZGF5MjAyNC5jb20vYWRtaW4tYmFyLXJlbG9hZGVkLm1pbi5qcz48L3NjcmlwdD4=\",\"path\":\"L3dwLWpzb24vbGl0ZXNwZWVkL3YxL2Nkbl9zdGF0dXM=\",\"category\":\"xss\",\"ssl\":1}'),(2442,0.000000,1727970798.436088,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://modnipruvodce.cz/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2443,1728028703.085171,1728028703.013200,'\0\0\0\0\0\0\0\0\0\0+',0,403,0,0,0,'https://atlantagynecomastia.com/wp-json/litespeed/v1/cdn_status','https://atlantagynecomastia.com','Searcherxweb','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jlc3VsdF1bX21zZ10=\",\"paramValue\":\"PHNjcmlwdCBzcmM9aHR0cHM6Ly96ZXJvZGF5MjAyNC5jb20vYWRtaW4tYmFyLXJlbG9hZGVkLm1pbi5qcz48L3NjcmlwdD4=\",\"path\":\"L3dwLWpzb24vbGl0ZXNwZWVkL3YxL2Nkbl9zdGF0dXM=\",\"category\":\"xss\",\"ssl\":1}'),(2444,0.000000,1728038934.254360,'\0\0\0\0\0\0\0\0\0\0\'b,',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2445,0.000000,1728040382.888421,'\0\0\0\0\0\0\0\0\0\0D',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2446,0.000000,1728041115.327349,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2447,0.000000,1728041855.521729,' A\0\0\0\0\0\0\0u',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2448,0.000000,1728044090.346834,'&\0\0\0\0\0\0 w',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2449,0.000000,1728044836.050909,'\0\0\0\0\0\0\0\0\0\0Wb',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2450,0.000000,1728045583.847897,'\0\0\0\0\0\0\0\0\0\0Vgh',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2451,0.000000,1728046332.272338,' p?9T\0dJ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2452,0.000000,1728047835.486169,' A\0 \0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2453,0.000000,1728050092.156006,'\0\0\0\0\0\0\0\0\0\0ٶ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2454,0.000000,1728051601.328627,'\0\0\0\0\0\0\0\0\0\03s',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2455,0.000000,1728052354.251600,'\0\0\0\0\0\0\0\0\0\02*',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2456,0.000000,1728053099.978418,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2457,0.000000,1728053850.561576,'*\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2458,0.000000,1728054603.479972,'\0\0\0\0\0\0\0\0\0\0?!',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2459,0.000000,1728056112.770590,'$\0\0830\06',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2460,0.000000,1728058378.356496,'\0\0\0\0\0\0\0\0\0\03$w',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2461,0.000000,1728059113.793083,'\0\0\0\0\0\0\0\0\0\0Wb',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2462,0.000000,1728061346.923891,'\0\0\0\0\0\0\0\0\0\02*',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2463,0.000000,1728062092.842601,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2464,0.000000,1728064319.924763,'\0\0\0\0\0\0\0\0\0\04V',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2465,0.000000,1728065059.220340,'\0\0\0\0\0\0\0\0\0\0>H',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2466,1728067648.954849,1728067648.937500,'\0\0\0\0\0\0\0\0\0\0A',0,403,0,0,0,'https://atlantagynecomastia.com//wp-admin/install.php?step=1','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','WordPress New Install File Probing','{\"learningMode\":0,\"failedRules\":\"506\",\"paramKey\":\"cmVxdWVzdC51cmk=\",\"paramValue\":\"Ly93cC1hZG1pbi9pbnN0YWxsLnBocD9zdGVwPTE=\",\"path\":\"Ly93cC1hZG1pbi9pbnN0YWxsLnBocA==\",\"category\":\"discovery-and-probing\",\"ssl\":1}'),(2467,1728067647.774584,1728067647.745700,'\0\0\0\0\0\0\0\0\0\0A',0,403,0,0,0,'https://atlantagynecomastia.com//wp-admin/setup-config.php?step=1','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly93cC1hZG1pbi9zZXR1cC1jb25maWcucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(2468,0.000000,1728068725.739424,'$\0a0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2469,0.000000,1728069452.948761,'\0\0\0\0\0\0\0\0\0\0ٶ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2470,0.000000,1728070901.585345,'\0\0\0\0\0\0\0\0\0\03',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2471,0.000000,1728071625.239305,'\0\0\0\0\0\0\0\0\0\0ٶ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2472,0.000000,1728073822.160082,' A\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2473,0.000000,1728074554.376904,'\0\0\0\0\0\0\0\0\0\0Wb',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2474,0.000000,1728075276.250453,'\0\0\0\0\0\0\0\0\0\04E',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2475,0.000000,1728075670.186935,'\0\0\0\0\0\0\0\0\0\0BF',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php?wpaas-standard-login=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2476,0.000000,1728076733.134598,' | pȓ\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2477,0.000000,1728077459.043000,'\0\0\0\0\0\0\0\0\0\0d\n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2478,0.000000,1728078187.152610,'*\0@\0\0\0\0\0\0\0\'',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2479,0.000000,1728078915.913643,'&\0\0\0\0\0\0 w',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2480,0.000000,1728080367.260801,'\0\0\0\0\0\0\0\0\0\0-wT',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2481,0.000000,1728081092.479972,'*\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2482,0.000000,1728084000.847619,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2483,0.000000,1728085471.359823,'$\0a\0\0\0\0\0\0z ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2484,0.000000,1728086978.054731,' A0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2485,0.000000,1728089316.062982,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2486,0.000000,1728090106.968570,'*G\0u\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2487,0.000000,1728090441.309496,'\0\0\0\0\0\0\0\0\0\0k',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://vonswysolutions.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2488,0.000000,1728121034.779995,'\0\0\0\0\0\0\0\0\0\0?!',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2489,0.000000,1728122551.030298,'*\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2490,0.000000,1728123299.429331,'\0\0\0\0\0\0\0\0\0\0|)',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2491,0.000000,1728124060.499713,'\0\0\0\0\0\0\0\0\0\0=[',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2492,0.000000,1728125552.039463,'\0\0\0\0\0\0\0\0\0\0\'b,',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2493,0.000000,1728126298.510539,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2494,0.000000,1728127051.675575,'&\0\0\0\0\0\0 w',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2495,0.000000,1728128552.970225,'\0\0\0\0\0\0\0\0\0\0gz',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2496,0.000000,1728129298.580354,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2497,0.000000,1728130056.188463,'$\0c\0z0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2498,0.000000,1728130812.207159,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2499,0.000000,1728132298.267174,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2500,0.000000,1728144955.811142,'\0\0\0\0\0\0\0\0\0\0p',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','http://www.starallianz.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2501,1728160476.928852,1728160476.893300,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-login.php','http://atlantagynecomastia.com/wp-login.php','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":1}'),(2502,1728160475.639798,1728160475.608200,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-content/plugins/seox/randkeyword.PhP7','http://atlantagynecomastia.com/wp-content/plugins/seox/randkeyword.PhP7','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9zZW94L3JhbmRrZXl3b3JkLlBoUDc=\",\"category\":\"brute-force\",\"ssl\":1}'),(2503,1728160512.730687,1728160512.703800,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/admin/controller/extension/extension/','http://atlantagynecomastia.com/admin/controller/extension/extension/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FkbWluL2NvbnRyb2xsZXIvZXh0ZW5zaW9uL2V4dGVuc2lvbi8=\",\"category\":\"brute-force\",\"ssl\":1}'),(2504,1728160512.377851,1728160512.364300,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/sites/default/files/','http://atlantagynecomastia.com/sites/default/files/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpdGVzL2RlZmF1bHQvZmlsZXMv\",\"category\":\"brute-force\",\"ssl\":1}'),(2505,1728160512.033848,1728160512.017100,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/WordPress/wp-admin/includes/','http://atlantagynecomastia.com/WordPress/wp-admin/includes/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L1dvcmRQcmVzcy93cC1hZG1pbi9pbmNsdWRlcy8=\",\"category\":\"brute-force\",\"ssl\":1}'),(2506,1728160511.373535,1728160511.358300,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/blog/wp-includes/','http://atlantagynecomastia.com/blog/wp-includes/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Jsb2cvd3AtaW5jbHVkZXMv\",\"category\":\"brute-force\",\"ssl\":1}'),(2507,1728160511.035278,1728160511.022700,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wordpress/wp-includes/','http://atlantagynecomastia.com/wordpress/wp-includes/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dvcmRwcmVzcy93cC1pbmNsdWRlcy8=\",\"category\":\"brute-force\",\"ssl\":1}'),(2508,1728160510.697444,1728160510.672600,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wordpress/wp-content/uploads/','http://atlantagynecomastia.com/wordpress/wp-content/uploads/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dvcmRwcmVzcy93cC1jb250ZW50L3VwbG9hZHMv\",\"category\":\"brute-force\",\"ssl\":1}'),(2509,1728160510.349715,1728160510.330200,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/uploads/','http://atlantagynecomastia.com/uploads/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3VwbG9hZHMv\",\"category\":\"brute-force\",\"ssl\":1}'),(2510,1728160510.007779,1728160509.977000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/upload/image/','http://atlantagynecomastia.com/upload/image/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3VwbG9hZC9pbWFnZS8=\",\"category\":\"brute-force\",\"ssl\":1}'),(2511,1728160508.701267,1728160508.688700,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-content/plugins/elementor/','http://atlantagynecomastia.com/wp-content/plugins/elementor/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9lbGVtZW50b3Iv\",\"category\":\"brute-force\",\"ssl\":1}'),(2512,1728160508.055916,1728160508.033400,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-content/uploads/ao_ccss/','http://atlantagynecomastia.com/wp-content/uploads/ao_ccss/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdXBsb2Fkcy9hb19jY3NzLw==\",\"category\":\"brute-force\",\"ssl\":1}'),(2513,1728160507.396817,1728160507.367000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/user/','http://atlantagynecomastia.com/wp-admin/user/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3VzZXIv\",\"category\":\"brute-force\",\"ssl\":1}'),(2514,1728160507.025648,1728160507.001600,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/network/','http://atlantagynecomastia.com/wp-admin/network/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsv\",\"category\":\"brute-force\",\"ssl\":1}'),(2515,1728160506.679356,1728160506.660500,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/meta/','http://atlantagynecomastia.com/wp-admin/meta/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL21ldGEv\",\"category\":\"brute-force\",\"ssl\":1}'),(2516,1728160499.286628,1728160499.273700,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/ALFA_DATA/','http://atlantagynecomastia.com/ALFA_DATA/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0FMRkFfREFUQS8=\",\"category\":\"brute-force\",\"ssl\":1}'),(2517,1728160498.641091,1728160498.608400,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wordpress/wp-admin/includes','http://atlantagynecomastia.com/wordpress/wp-admin/includes','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dvcmRwcmVzcy93cC1hZG1pbi9pbmNsdWRlcw==\",\"category\":\"brute-force\",\"ssl\":1}'),(2518,1728160498.279557,1728160498.262700,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/','http://atlantagynecomastia.com/wp-admin/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluLw==\",\"category\":\"brute-force\",\"ssl\":1}'),(2519,1728160497.633523,1728160497.620300,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/vendor/phpunit/phpunit/src/Util/PHP/','http://atlantagynecomastia.com/vendor/phpunit/phpunit/src/Util/PHP/','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3ZlbmRvci9waHB1bml0L3BocHVuaXQvc3JjL1V0aWwvUEhQLw==\",\"category\":\"brute-force\",\"ssl\":1}'),(2520,1728160478.827190,1728160478.813200,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'https://atlantagynecomastia.com/ynz.PhP7','http://atlantagynecomastia.com/ynz.PhP7','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3luei5QaFA3\",\"category\":\"brute-force\",\"ssl\":1}'),(2521,0.000000,1728183217.944716,'\0\0\0\0\0\0\0\0\0\0^%9',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','http://leimeotery.com/admin/index.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2522,0.000000,1728222077.613387,'\0\0\0\0\0\0\0\0\0\0c',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2523,0.000000,1728223000.754916,'\0\0\0\0\0\0\0\0\0\0V0r',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2524,0.000000,1728274089.203858,'\0\0\0\0\0\0\0\0\0\0D',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2525,0.000000,1728277543.060612,' A\rE\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2526,0.000000,1728279084.896290,'\0\0\0\0\0\0\0\0\0\0o,',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2527,0.000000,1728280482.297590,' AE\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2528,0.000000,1728284782.764545,' AE\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2529,0.000000,1728285690.156588,'\0\0\0\0\0\0\0\0\0\0};',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2530,0.000000,1728286644.607578,'(D\0\0\0\0\0\0\0\0\0\0!',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2531,0.000000,1728287610.462329,'&\0\0\0\0\0gq',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2532,0.000000,1728288608.750737,'\0\0\0\0\0\0\0\0\0\0+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2533,0.000000,1728289689.020959,'\0\0\0\0\0\0\0\0\0\0o',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2534,0.000000,1728290670.914563,'$\0\0CP\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2535,0.000000,1728293766.924528,'\0\0\0\0\0\0\0\0\0\0w',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Gentoo; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2536,0.000000,1728309656.383709,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2537,0.000000,1728311389.231319,'\0\0\0\0\0\0\0\0\0\0W',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2538,0.000000,1728312314.610638,'\0\0\0\0\0\0\0\0\0\0Wb',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2539,0.000000,1728313231.484317,' A\0\0\0\0\0\0\0u',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2540,0.000000,1728317822.247028,'\0\0\0\0\0\0\0\0\0\03s',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2541,0.000000,1728318743.855203,'\0\0\0\0\0\0\0\0\0\0Wb',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2542,0.000000,1728321458.482060,'\0\0\0\0\0\0\0\0\0\0/i+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2543,0.000000,1728323287.477690,'$\0c\0z0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2544,0.000000,1728325090.515280,' | p.\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2545,0.000000,1728326887.877438,' p?9T\0dJ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2546,0.000000,1728327795.135988,'\0\0\0\0\0\0\0\0\0\0K5',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2547,0.000000,1728329606.440255,'\0\0\0\0\0\0\0\0\0\0Dgy',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2548,0.000000,1728330511.018682,'\0\0\0\0\0\0\0\0\0\03',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2549,0.000000,1728331408.754283,'\0\0\0\0\0\0\0\0\0\0gR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2550,0.000000,1728334985.659183,'\0\0\0\0\0\0\0\0\0\03s',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2551,0.000000,1728335879.093894,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2552,0.000000,1728336772.743722,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2553,0.000000,1728338579.506523,'*\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2554,0.000000,1728339492.264362,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2555,0.000000,1728340419.837979,'*G\0u\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2556,0.000000,1728342270.452010,'\0\0\0\0\0\0\0\0\0\0?!',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2557,0.000000,1728345073.299435,'\0\0\0\0\0\0\0\0\0\0-',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2558,0.000000,1728345539.491626,'\0\0\0\0\0\0\0\0\0\0\\/8e',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://bayerische-herbstakademie.de/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2559,0.000000,1728346994.539339,' p?9T\0dJ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2560,0.000000,1728349907.286607,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2561,0.000000,1728350883.002503,'\0\0\0\0\0\0\0\0\0\0-r',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2562,0.000000,1728352841.576352,'\0\0\0\0\0\0\0\0\0\0(U',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2563,0.000000,1728353846.571014,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2564,1728354182.296061,1728354182.231700,'\0\0\0\0\0\0\0\0\0\0Y',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W21hcFR5cGVzXQ==\",\"paramValue\":\"ZmFjZWJvb2t8dHdpdHRlcnxsaW5rZWRpbnxvbmV0d28iPjwvb3B0aW9uPjwvc2VsZWN0PjwvZGl2Plw8c2NyaXB0IHNyYz1odHRwczovL2FrYS5jbG91ZHN5bmRpY2F0aW9uLmRldi8+PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(2565,0.000000,1728354866.063296,'\0\0\0\0\0\0\0\0\0\0q\Z',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2566,0.000000,1728355885.027683,'&\0<\0\0\0\0<',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2567,0.000000,1728359958.310827,'*d@\0\0,@\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2568,0.000000,1728363024.466832,'&\0<\0\0\0\0<',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2569,0.000000,1728364014.289269,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2570,0.000000,1728364995.602303,' A\0>\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2571,0.000000,1728365962.875581,' | pȓ\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2572,0.000000,1728366935.020379,'\0\0\0\0\0\0\0\0\0\0-wT',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2573,0.000000,1728367920.001219,' A\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2574,0.000000,1728368905.978900,'\0\0\0\0\0\0\0\0\0\04E',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2575,0.000000,1728369874.005483,'\0\0\0\0\0\0\0\0\0\0d\n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2576,0.000000,1728373712.474162,'\0\0\0\0\0\0\0\0\0\0gR',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2577,0.000000,1728374687.693063,'&\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2578,0.000000,1728375610.539621,'\0\0\0\0\0\0\0\0\0\0Dgy',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2579,0.000000,1728378361.446811,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2580,0.000000,1728384123.302427,'\0\0\0\0\0\0\0\0\0\0+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','atlantagynecomastia.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2581,0.000000,1728387238.858246,'$\0a\0\0\0\0\0\0!0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2582,0.000000,1728388151.130533,'\0\0\0\0\0\0\0\0\0\0\'b,',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2583,0.000000,1728389056.720584,'\0\0\0\0\0\0\0\0\0\0\'b,',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2584,0.000000,1728389924.221617,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','http://johndavidmarshall.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2585,0.000000,1728393687.914645,'\0\0\0\0\0\0\0\0\0\03',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2586,0.000000,1728396498.413996,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2587,0.000000,1728397421.142487,'\0\0\0\0\0\0\0\0\0\06$',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2588,0.000000,1728400206.080828,'\0\0\0\0\0\0\0\0\0\0Dgy',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2589,0.000000,1728401142.692708,'\0\0\0\0\0\0\0\0\0\0d\n',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2590,0.000000,1728402118.825639,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2591,0.000000,1728403038.521902,'$\0a\0\0\0\0\0\0!0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2592,1728403560.754200,1728403560.748000,'\0\0\0\0\0\0\0\0\0\0Z',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/install.php?step=1&language=en_GB',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0','blocked:waf','WordPress New Install File Probing','{\"learningMode\":0,\"failedRules\":\"506\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2luc3RhbGwucGhw\",\"path\":\"L3dwLWFkbWluL2luc3RhbGwucGhw\",\"category\":\"discovery-and-probing\",\"ssl\":1}'),(2593,0.000000,1728405783.487522,'\0\0\0\0\0\0\0\0\0\0hc',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2594,0.000000,1728413571.060533,'*o\0\0\0\0\0\0\0\0\\5`o',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2595,0.000000,1728415394.740706,'\0\0\0\0\0\0\0\0\0\0ǔA',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2596,0.000000,1728416307.538411,'\0\0\0\0\0\0\0\0\0\0Ev',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2597,0.000000,1728417206.685221,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2598,0.000000,1728418101.587055,' A!\0\0\0\0\0\0\0,e',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2599,0.000000,1728420812.010664,'\0\0\0\0\0\0\0\0\0\0zr=}',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2600,0.000000,1728421723.394260,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2601,0.000000,1728424471.625762,' A\0\0\0\0\0\0\0u',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2602,0.000000,1728426318.813749,'*T\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2603,0.000000,1728428186.550993,'\0\0\0\0\0\0\0\0\0\0/j',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2604,0.000000,1728429118.622364,' A!\0\0\0\0\0\0\0,e',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2605,0.000000,1728430051.529056,' A!\0\0\0\0\0\0\0,e',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2606,0.000000,1728431924.301020,'\0\0\0\0\0\0\0\0\0\09U)',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2607,0.000000,1728432888.090466,'\0\0\0\0\0\0\0\0\0\0-r',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2608,0.000000,1728433856.554494,'*\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2609,0.000000,1728436774.025227,'\0\0\0\0\0\0\0\0\0\09U)',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2610,0.000000,1728437747.765057,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2611,0.000000,1728442816.591864,' | p.\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2612,1728443806.749378,1728443806.725600,'\0\0\0\0\0\0\0\0\0\0Y\\',0,403,0,0,0,'https://atlantagynecomastia.com/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36','blocked:waf','Malicious File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbZmlsZV0=\",\"paramValue\":\"d3Atd29yZHByZXNzLnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"file_upload\",\"ssl\":1}'),(2613,0.000000,1728445935.692181,'\0\0\0\0\0\0\0\0\0\0X',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2614,0.000000,1728447016.545850,'\0\0\0\0\0\0\0\0\0\0X',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2615,0.000000,1728449085.328549,' p?9T\0dJ',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2616,0.000000,1728450129.170754,'\0\0\0\0\0\0\0\0\0\0qj',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2617,0.000000,1728451170.035262,' | p.\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2618,0.000000,1728452245.493634,'*o\0\0\0\0\0\0\0\0\\5`o',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2619,0.000000,1728453239.537122,'$\0\0830\06',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2620,0.000000,1728455240.541563,'\0\0\0\0\0\0\0\0\0\0X',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2621,0.000000,1728457274.572975,'*\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2622,0.000000,1728458300.769299,'\0\0\0\0\0\0\0\0\0\0ǔ4',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2623,0.000000,1728460338.208341,'\0\0\0\0\0\0\0\0\0\0-wT',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2624,0.000000,1728461335.686480,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2625,0.000000,1728464277.979233,'\0\0\0\0\0\0\0\0\0\09U)',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2626,0.000000,1728467157.413146,'\0\0\0\0\0\0\0\0\0\0X',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2627,0.000000,1728468095.786117,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2628,1728471888.388830,1728471888.275700,'\0\0\0\0\0\0\0\0\0\0+',0,403,0,0,0,'https://atlantagynecomastia.com/wp-json/litespeed/v1/cdn_status','https://atlantagynecomastia.com','googlebot','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jlc3VsdF1bX21zZ10=\",\"paramValue\":\"PHNjcmlwdCBzcmM9aHR0cHM6Ly96ZXJvZGF5MjAyNC5jb20vYWRtaW4tYmFyLXJlbG9hZGVkLm1pbi5qcz48L3NjcmlwdD4=\",\"path\":\"L3dwLWpzb24vbGl0ZXNwZWVkL3YxL2Nkbl9zdGF0dXM=\",\"category\":\"xss\",\"ssl\":1}'),(2629,0.000000,1728472831.483620,'\0\0\0\0\0\0\0\0\0\0-',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2630,0.000000,1728475195.428098,'*\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2631,0.000000,1728476145.322796,'\0\0\0\0\0\0\0\0\0\0?!',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2632,0.000000,1728502234.586993,'\0\0\0\0\0\0\0\0\0\0_.h',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://www.foxandowl.co.uk/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2633,0.000000,1728510852.588145,'\0\0\0\0\0\0\0\0\0\0+',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','atlantagynecomastia.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(2634,0.000000,1728561161.475713,'\0\0\0\0\0\0\0\0\0\0%[',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://graymam.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL),(2635,1728592241.388509,1728592241.376500,'\0\0\0\0\0\0\0\0\0\0Y]',0,403,0,0,0,'https://atlantagynecomastia.com//wp-admin/install.php?step=1','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','WordPress New Install File Probing','{\"learningMode\":0,\"failedRules\":\"506\",\"paramKey\":\"cmVxdWVzdC51cmk=\",\"paramValue\":\"Ly93cC1hZG1pbi9pbnN0YWxsLnBocD9zdGVwPTE=\",\"path\":\"Ly93cC1hZG1pbi9pbnN0YWxsLnBocA==\",\"category\":\"discovery-and-probing\",\"ssl\":1}'),(2636,1728592240.131348,1728592240.109700,'\0\0\0\0\0\0\0\0\0\0Y]',0,403,0,0,0,'https://atlantagynecomastia.com//wp-admin/setup-config.php?step=1','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly93cC1hZG1pbi9zZXR1cC1jb25maWcucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(2637,1728613199.026433,1728613198.994800,'\0\0\0\0\0\0\0\0\0\0g;lL',0,403,0,0,0,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2tiX2ZpZWxkXzNd\",\"paramValue\":\"DQpIZWxsbyB0aGVyZSwNCg0KRXZlciBmZWVsIGxpa2UgeW91J3JlIHNwZW5kaW5nIG1vcmUgdGltZSB3cml0aW5nIGNvbnRlbnQgdGhhbiBncm93aW5nIHlvdXIgYnVzaW5lc3M/DQoNCkkgdXNlZCB0byBmZWVsIHRoZSBzYW1lIHdheSB1bnRpbCBJIGZvdW5kIGEgZ2FtZS1jaGFuZ2luZyBzb2x1dGlvbiB0aGF0IHRyYW5zZm9ybWVkIG15IGNvbnRlbnQgY3JlYXRpb24gcHJvY2Vzcy4NCg0KSW1hZ2luZSB0aGlzOiBZb3UgaW5wdXQgYSBzaW1wbGUga2V5d29yZCwgYW5kIHdpdGhpbiBtaW51dGVzLCB5b3UgaGF2ZSBhIHB1Ymxpc2gtcmVhZHksIFNFTy1vcHRpbWl6ZWQgYXJ0aWNsZSB0aGF0IHJhbmtzIGhpZ2ggYW5kIGVuZ2FnZXMgeW91ciBhdWRpZW5jZS4NCg0KU291bmRzIHRvbyBnb29kIHRvIGJlIHRydWU/IFdlbGwsIGl0J3Mgbm90IQ0KDQpIZXJlJ3Mgd2hhdCBtYWtlcyBpdCBzdGFuZCBvdXQ6DQrigKIgU3BlZWR5IENvbnRlbnQgQ3JlYXRpb246IFdyaXRlIGhpZ2gtcXVhbGl0eSwgU0VPLWZyaWVuZGx5IGNvbnRlbnQgZmFzdC4NCuKAoiBBdXRvbWF0aWMgU0VSUCBBbmFseXNpczogT3B0aW1pemVzIGZvciByYW5raW5nIHdpdGhvdXQgZXh0cmEgZWZmb3J0Lg0K4oCiIFN0cnVjdHVyZWQgQXJ0aWNsZXM6IEdlbmVyYXRlcyB3ZWxsLXN0cnVjdHVyZWQgcG9zdHMgd2l0aCBwcm9wZXIgaGVhZGluZ3MuDQrigKIgUmVhbC1UaW1lIERhdGE6IEVuc3VyZXMgeW91ciBjb250ZW50IGlzIGFsd2F5cyB1cC10by1kYXRlLg0K4oCiIEVhc3kgUHVibGlzaGluZzogQXV0by1wdWJsaXNoIHRvIFdvcmRQcmVzcywgU2hvcGlmeSwgYW5kIG1vcmUuDQrigKIgTWluaW1hbCBJbnB1dCBOZWVkZWQ6IFByb2R1Y2VzIGxvbmctZm9ybSBhcnRpY2xlcyBlZmZvcnRsZXNzbHkuDQrigKIgQnVsayBXcml0aW5nOiBQZXJmZWN0IGZvciBhdXRvLWJsb2dnaW5nIGFuZCBoYW5kbGluZyBkaXZlcnNlIGNvbnRlbnQgdHlwZXMuDQrigKIgRW5oYW5jZWQgQ3JlZGliaWxpdHk6IEF1dG9tYXRpYyBjaXRhdGlvbnMgYW5kIGludGVybmFsIGxpbmtzLg0K4oCiIFJpY2ggTWVkaWEgSW50ZWdyYXRpb246IFNlYW1sZXNzbHkgYWRkcyBZb3VUdWJlIHZpZGVvcyBhbmQgaW1hZ2VzLg0K4oCiIElkZWFsIGZvciBBbGw6IEZyb20gYmxvZ2dlcnMgdG8gYnVzaW5lc3NlcyBhbmQgY29udGVudCBhZ2VuY2llcy4NCg0KV2h5IHN0cnVnZ2xlIHdoZW4geW91IGNhbiBzdHJlYW1saW5lIHlvdXIgY29udGVudCBjcmVhdGlvbiBwcm9jZXNzIGFuZCBmb2N1cyBvbiB3aGF0IHRydWx5IG1hdHRlcnPigJRncm93aW5nIHlvdXIgYnVzaW5lc3M/DQoNCkN1cmlvdXMgdG8gc2VlIGhvdyBpdCB3b3Jrcz8gTGVhcm4gbW9yZSBoZXJlOiBodHRwczovL3Rpbnl1cmwuY29tL1RoZS1CZXN0LVdyaXRpbmctVG9vbA0KDQpUaGFuayB5b3UsDQpNYXJrDQoNClAuUy4gR2l2ZSBpdCBhIHRyeSBhbmQgd2F0Y2ggeW91ciBjb250ZW50IGdhbWUgcmVhY2ggbmV3IGhlaWdodHMh\",\"path\":\"L2NvbnRhY3Qv\",\"category\":\"xss\",\"ssl\":1}'),(2638,0.000000,1728623847.539558,'\0\0\0\0\0\0\0\0\0\0-',0,503,0,0,0,'https://atlantagynecomastia.com/wp-login.php','https://ogorod365.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailInvalidUsername','Used an invalid username \'admin\' to try to sign in',NULL);
/*!40000 ALTER TABLE `hyu_wfhits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfhoover`
--

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

--
-- Dumping data for table `hyu_wfhoover`
--

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

--
-- Table structure for table `hyu_wfissues`
--

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

--
-- Dumping data for table `hyu_wfissues`
--

LOCK TABLES `hyu_wfissues` WRITE;
/*!40000 ALTER TABLE `hyu_wfissues` DISABLE KEYS */;
INSERT INTO `hyu_wfissues` VALUES (830,1728571903,1728571903,'new','wfUpgrade',25,'75aca281aceccb1460c4809599f4689b','75aca281aceccb1460c4809599f4689b','Your WordPress version is out of date','WordPress version 6.6.2 is now available. Please upgrade immediately to get the latest fixes and compatibility updates from WordPress. <a href=\"https://www.wordfence.com/help/?query=scan-result-core-upgrade\" target=\"_blank\" rel=\"noopener noreferrer\">Learn more<span class=\"screen-reader-text\"> (opens in new tab)</span></a>','a:2:{s:14:\"currentVersion\";s:5:\"6.5.5\";s:10:\"newVersion\";s:5:\"6.6.2\";}'),(831,1728571903,1728571903,'new','wfPluginUpgrade',50,'0e50e221d86c79b9f9a43621249dbbc0','0e50e221d86c79b9f9a43621249dbbc0','The Plugin \"WP Rocket\" needs an upgrade (3.16.2.1 -> 3.17.0.2).','You need to upgrade \"WP Rocket\" to the newest version to ensure you have any security fixes the developer has released.','a:22:{s:18:\"Requires Yoast SEO\";s:0:\"\";s:4:\"Name\";s:9:\"WP Rocket\";s:9:\"PluginURI\";s:20:\"https://wp-rocket.me\";s:7:\"Version\";s:8:\"3.16.2.1\";s:11:\"Description\";s:38:\"The best WordPress performance plugin.\";s:6:\"Author\";s:8:\"WP Media\";s:9:\"AuthorURI\";s:19:\"https://wp-media.me\";s:10:\"TextDomain\";s:6:\"rocket\";s:10:\"DomainPath\";s:9:\"languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:3:\"5.8\";s:11:\"RequiresPHP\";s:3:\"7.3\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:9:\"WP Rocket\";s:10:\"AuthorName\";s:8:\"WP Media\";s:10:\"pluginFile\";s:93:\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/wp-rocket.php\";s:4:\"slug\";s:9:\"wp-rocket\";s:10:\"newVersion\";s:8:\"3.17.0.2\";s:5:\"wpURL\";s:20:\"https://wp-rocket.me\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),(832,1728571903,1728571903,'new','wfThemeUpgrade',50,'a1c3636feff3708aff1163a56370797f','a1c3636feff3708aff1163a56370797f','The Theme \"Kadence\" needs an upgrade (1.2.6 -> 1.2.9).','You need to upgrade \"Kadence\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.2.9\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/kadence.1.2.9.zip\";s:3:\"URL\";s:37:\"https://wordpress.org/themes/kadence/\";s:4:\"Name\";s:7:\"Kadence\";s:4:\"name\";s:7:\"Kadence\";s:7:\"version\";s:5:\"1.2.6\";s:10:\"vulnerable\";b:0;}'),(833,1728571903,1728571903,'new','wfThemeUpgrade',50,'044eedda5a9521a50a7f319f96235d14','044eedda5a9521a50a7f319f96235d14','The Theme \"Twenty Twenty-Four\" needs an upgrade (1.1 -> 1.2).','You need to upgrade \"Twenty Twenty-Four\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"1.2\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.2.zip\";s:3:\"URL\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:4:\"Name\";s:18:\"Twenty Twenty-Four\";s:4:\"name\";s:18:\"Twenty Twenty-Four\";s:7:\"version\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;}');
/*!40000 ALTER TABLE `hyu_wfissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfknownfilelist`
--

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

--
-- Dumping data for table `hyu_wfknownfilelist`
--

LOCK TABLES `hyu_wfknownfilelist` WRITE;
/*!40000 ALTER TABLE `hyu_wfknownfilelist` DISABLE KEYS */;
INSERT INTO `hyu_wfknownfilelist` VALUES (1,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/LICENSE','wp-content/plugins/all-in-one-wp-migration/LICENSE'),(2,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php','wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php'),(3,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/changelog.txt','wp-content/plugins/all-in-one-wp-migration/changelog.txt'),(4,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/constants.php','wp-content/plugins/all-in-one-wp-migration/constants.php'),(5,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/deprecated.php','wp-content/plugins/all-in-one-wp-migration/deprecated.php'),(6,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/exceptions.php','wp-content/plugins/all-in-one-wp-migration/exceptions.php'),(7,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/functions.php','wp-content/plugins/all-in-one-wp-migration/functions.php'),(8,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php'),(9,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php'),(10,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php'),(11,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php'),(12,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php'),(13,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-reset-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-reset-controller.php'),(14,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-schedules-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-schedules-controller.php'),(15,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php'),(16,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php'),(17,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php'),(18,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php'),(19,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php'),(20,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php'),(21,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php'),(22,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php'),(23,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php'),(24,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php'),(25,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php'),(26,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php'),(27,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php'),(28,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php'),(29,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php'),(30,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php'),(31,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php'),(32,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php'),(33,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php'),(34,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php'),(35,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php'),(36,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php'),(37,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php'),(38,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-content.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-content.php'),(39,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-media.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-media.php'),(40,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-plugins.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-plugins.php'),(41,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php'),(42,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-themes.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-themes.php'),(43,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php'),(44,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-media.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-media.php'),(45,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-plugins.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-plugins.php'),(46,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-themes.php','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-themes.php'),(47,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php'),(48,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-decryption-password.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-decryption-password.php'),(49,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-encryption.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-encryption.php'),(50,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php'),(51,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php'),(52,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php'),(53,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php'),(54,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php'),(55,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php'),(56,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php'),(57,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php'),(58,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-options.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-options.php'),(59,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-permalinks.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-permalinks.php'),(60,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php'),(61,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-users.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-users.php'),(62,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php'),(63,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE'),(64,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php'),(65,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php'),(66,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php'),(67,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php'),(68,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php'),(69,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php'),(70,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php'),(71,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php'),(72,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php'),(73,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php'),(74,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php'),(75,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php'),(76,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php'),(77,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php'),(78,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php'),(79,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php'),(80,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php'),(81,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php'),(82,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php'),(83,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php'),(84,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php'),(85,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php'),(86,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css'),(87,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css'),(88,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.css'),(89,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.rtl.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.rtl.css'),(90,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css'),(91,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css'),(92,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css'),(93,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css'),(94,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.css'),(95,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.rtl.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.rtl.css'),(96,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.css'),(97,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.rtl.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.rtl.css'),(98,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css'),(99,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css'),(100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css'),(101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css'),(102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot'),(103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg'),(104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf'),(105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff'),(106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif'),(107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png'),(108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png'),(109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png'),(110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg'),(111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/database.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/database.png'),(112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/media-files.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/media-files.png'),(113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/plugins.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/plugins.png'),(114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/reset-all.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/reset-all.png'),(115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/screen.jpg','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/screen.jpg'),(116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/star.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/star.png'),(117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/themes.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/themes.png'),(118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/backup-scheduler.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/backup-scheduler.png'),(119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/dropbox-storage.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/dropbox-storage.png'),(120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/ftp-storage.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/ftp-storage.png'),(121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/google-drive-storage.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/google-drive-storage.png'),(122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/more-storage-providers.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/more-storage-providers.png'),(123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/multisite-schedules.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/multisite-schedules.png'),(124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/notification-settings.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/notification-settings.png'),(125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/onedrive-storage.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/onedrive-storage.png'),(126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/retention-settings.png','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/retention-settings.png'),(127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js'),(128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js'),(129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js'),(130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/reset.min.js','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/reset.min.js'),(131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/schedules.min.js','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/schedules.min.js'),(132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js'),(133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/updater.min.js','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/updater.min.js'),(134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js'),(135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php'),(136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php'),(137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php'),(138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php','wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php'),(139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php','wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php'),(140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php','wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php'),(141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php','wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php'),(142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php','wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php'),(143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/common/sidebar-right.php','wp-content/plugins/all-in-one-wp-migration/lib/view/common/sidebar-right.php'),(144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php'),(145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php'),(146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php'),(147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php'),(148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php'),(149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php'),(150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php'),(151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php'),(152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php'),(153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php'),(154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php'),(155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php'),(156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php'),(157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php'),(158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php'),(159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php'),(160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php'),(161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php'),(162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php'),(163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php'),(164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php'),(165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php','wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php'),(166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/avada.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/avada.php'),(167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php'),(168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php'),(169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php'),(170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php'),(171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php'),(172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php'),(173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php'),(174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php'),(175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php'),(176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php'),(177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php'),(178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php'),(179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php'),(180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php'),(181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php'),(182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php'),(183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php'),(184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/done.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/done.php'),(185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php'),(186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php'),(187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php'),(188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/oxygen.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/oxygen.php'),(189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php','wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php'),(190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php'),(191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php'),(192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-html-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-html-notice.php'),(193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-php-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-php-notice.php'),(194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php'),(195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-robots-txt-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-robots-txt-notice.php'),(196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php'),(197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups.php'),(198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/contact-support.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/contact-support.php'),(199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php'),(200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php'),(201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/premium-badge.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/premium-badge.php'),(202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-html-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-html-notice.php'),(203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-php-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-php-notice.php'),(204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php'),(205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/translate.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/translate.php'),(206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php','wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php'),(207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/reset/index.php','wp-content/plugins/all-in-one-wp-migration/lib/view/reset/index.php'),(208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/schedules/index.php','wp-content/plugins/all-in-one-wp-migration/lib/view/schedules/index.php'),(209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php'),(210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/error.php','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/error.php'),(211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/modal.php','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/modal.php'),(212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/update.php','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/update.php'),(213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/loader.php','wp-content/plugins/all-in-one-wp-migration/loader.php'),(214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/readme.txt','wp-content/plugins/all-in-one-wp-migration/readme.txt'),(215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/storage/index.html','wp-content/plugins/all-in-one-wp-migration/storage/index.html'),(216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/storage/index.php','wp-content/plugins/all-in-one-wp-migration/storage/index.php'),(217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/all-in-one-wp-migration/uninstall.php','wp-content/plugins/all-in-one-wp-migration/uninstall.php'),(218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/admin-functions.php','wp-content/plugins/duplicate-post/admin-functions.php'),(219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/common-functions.php','wp-content/plugins/duplicate-post/common-functions.php'),(220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/compat/jetpack-functions.php','wp-content/plugins/duplicate-post/compat/jetpack-functions.php'),(221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/compat/wpml-functions.php','wp-content/plugins/duplicate-post/compat/wpml-functions.php'),(222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/css/duplicate-post-options.css','wp-content/plugins/duplicate-post/css/duplicate-post-options.css'),(223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/css/duplicate-post.css','wp-content/plugins/duplicate-post/css/duplicate-post.css'),(224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/duplicate-post.php','wp-content/plugins/duplicate-post/duplicate-post.php'),(225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/duplicate_post_yoast_icon-125x125.png','wp-content/plugins/duplicate-post/duplicate_post_yoast_icon-125x125.png'),(226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/gpl-2.0.txt','wp-content/plugins/duplicate-post/gpl-2.0.txt'),(227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-edit-450.js','wp-content/plugins/duplicate-post/js/dist/duplicate-post-edit-450.js'),(228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-elementor-450.js','wp-content/plugins/duplicate-post/js/dist/duplicate-post-elementor-450.js'),(229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-options-450.js','wp-content/plugins/duplicate-post/js/dist/duplicate-post-options-450.js'),(230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-quick-edit-450.js','wp-content/plugins/duplicate-post/js/dist/duplicate-post-quick-edit-450.js'),(231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/js/dist/duplicate-post-strings-450.js','wp-content/plugins/duplicate-post/js/dist/duplicate-post-strings-450.js'),(232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/options.php','wp-content/plugins/duplicate-post/options.php'),(233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/readme.txt','wp-content/plugins/duplicate-post/readme.txt'),(234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/options-form-generator.php','wp-content/plugins/duplicate-post/src/admin/options-form-generator.php'),(235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/options-inputs.php','wp-content/plugins/duplicate-post/src/admin/options-inputs.php'),(236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/options-page.php','wp-content/plugins/duplicate-post/src/admin/options-page.php'),(237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/options.php','wp-content/plugins/duplicate-post/src/admin/options.php'),(238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/admin/views/options.php','wp-content/plugins/duplicate-post/src/admin/views/options.php'),(239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/duplicate-post.php','wp-content/plugins/duplicate-post/src/duplicate-post.php'),(240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/bulk-handler.php','wp-content/plugins/duplicate-post/src/handlers/bulk-handler.php'),(241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/check-changes-handler.php','wp-content/plugins/duplicate-post/src/handlers/check-changes-handler.php'),(242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/handler.php','wp-content/plugins/duplicate-post/src/handlers/handler.php'),(243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/link-handler.php','wp-content/plugins/duplicate-post/src/handlers/link-handler.php'),(244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/handlers/save-post-handler.php','wp-content/plugins/duplicate-post/src/handlers/save-post-handler.php'),(245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/permissions-helper.php','wp-content/plugins/duplicate-post/src/permissions-helper.php'),(246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/post-duplicator.php','wp-content/plugins/duplicate-post/src/post-duplicator.php'),(247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/post-republisher.php','wp-content/plugins/duplicate-post/src/post-republisher.php'),(248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/revisions-migrator.php','wp-content/plugins/duplicate-post/src/revisions-migrator.php'),(249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/admin-bar.php','wp-content/plugins/duplicate-post/src/ui/admin-bar.php'),(250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/asset-manager.php','wp-content/plugins/duplicate-post/src/ui/asset-manager.php'),(251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/block-editor.php','wp-content/plugins/duplicate-post/src/ui/block-editor.php'),(252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/bulk-actions.php','wp-content/plugins/duplicate-post/src/ui/bulk-actions.php'),(253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/classic-editor.php','wp-content/plugins/duplicate-post/src/ui/classic-editor.php'),(254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/column.php','wp-content/plugins/duplicate-post/src/ui/column.php'),(255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/link-builder.php','wp-content/plugins/duplicate-post/src/ui/link-builder.php'),(256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/metabox.php','wp-content/plugins/duplicate-post/src/ui/metabox.php'),(257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/newsletter.php','wp-content/plugins/duplicate-post/src/ui/newsletter.php'),(258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/post-states.php','wp-content/plugins/duplicate-post/src/ui/post-states.php'),(259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/row-actions.php','wp-content/plugins/duplicate-post/src/ui/row-actions.php'),(260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/ui/user-interface.php','wp-content/plugins/duplicate-post/src/ui/user-interface.php'),(261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/utils.php','wp-content/plugins/duplicate-post/src/utils.php'),(262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/bulk-actions-watcher.php','wp-content/plugins/duplicate-post/src/watchers/bulk-actions-watcher.php'),(263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/copied-post-watcher.php','wp-content/plugins/duplicate-post/src/watchers/copied-post-watcher.php'),(264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/link-actions-watcher.php','wp-content/plugins/duplicate-post/src/watchers/link-actions-watcher.php'),(265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/original-post-watcher.php','wp-content/plugins/duplicate-post/src/watchers/original-post-watcher.php'),(266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/republished-post-watcher.php','wp-content/plugins/duplicate-post/src/watchers/republished-post-watcher.php'),(267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/src/watchers/watchers.php','wp-content/plugins/duplicate-post/src/watchers/watchers.php'),(268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/autoload.php','wp-content/plugins/duplicate-post/vendor/autoload.php'),(269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/ClassLoader.php','wp-content/plugins/duplicate-post/vendor/composer/ClassLoader.php'),(270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/InstalledVersions.php','wp-content/plugins/duplicate-post/vendor/composer/InstalledVersions.php'),(271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/LICENSE','wp-content/plugins/duplicate-post/vendor/composer/LICENSE'),(272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_classmap.php','wp-content/plugins/duplicate-post/vendor/composer/autoload_classmap.php'),(273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_namespaces.php','wp-content/plugins/duplicate-post/vendor/composer/autoload_namespaces.php'),(274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_psr4.php','wp-content/plugins/duplicate-post/vendor/composer/autoload_psr4.php'),(275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_real.php','wp-content/plugins/duplicate-post/vendor/composer/autoload_real.php'),(276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/autoload_static.php','wp-content/plugins/duplicate-post/vendor/composer/autoload_static.php'),(277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/installed.php','wp-content/plugins/duplicate-post/vendor/composer/installed.php'),(278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/duplicate-post/vendor/composer/platform_check.php','wp-content/plugins/duplicate-post/vendor/composer/platform_check.php'),(279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/index.php','wp-content/plugins/index.php'),(280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/admin-kadence-home.asset.php','wp-content/plugins/kadence-blocks/dist/admin-kadence-home.asset.php'),(281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/admin-kadence-home.js','wp-content/plugins/kadence-blocks/dist/admin-kadence-home.js'),(282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-accordion.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-accordion.asset.php'),(283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-accordion.js','wp-content/plugins/kadence-blocks/dist/blocks-accordion.js'),(284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advanced-form.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-advanced-form.asset.php'),(285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advanced-form.js','wp-content/plugins/kadence-blocks/dist/blocks-advanced-form.js'),(286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedbtn.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-advancedbtn.asset.php'),(287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedbtn.js','wp-content/plugins/kadence-blocks/dist/blocks-advancedbtn.js'),(288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedgallery.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-advancedgallery.asset.php'),(289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedgallery.js','wp-content/plugins/kadence-blocks/dist/blocks-advancedgallery.js'),(290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedheading.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-advancedheading.asset.php'),(291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-advancedheading.js','wp-content/plugins/kadence-blocks/dist/blocks-advancedheading.js'),(292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-column.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-column.asset.php'),(293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-column.js','wp-content/plugins/kadence-blocks/dist/blocks-column.js'),(294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-countdown.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-countdown.asset.php'),(295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-countdown.js','wp-content/plugins/kadence-blocks/dist/blocks-countdown.js'),(296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-countup.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-countup.asset.php'),(297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-countup.js','wp-content/plugins/kadence-blocks/dist/blocks-countup.js'),(298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-form.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-form.asset.php'),(299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-form.js','wp-content/plugins/kadence-blocks/dist/blocks-form.js'),(300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-googlemaps.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-googlemaps.asset.php'),(301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-googlemaps.js','wp-content/plugins/kadence-blocks/dist/blocks-googlemaps.js'),(302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-header.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-header.asset.php'),(303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-header.js','wp-content/plugins/kadence-blocks/dist/blocks-header.js'),(304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-icon.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-icon.asset.php'),(305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-icon.js','wp-content/plugins/kadence-blocks/dist/blocks-icon.js'),(306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-iconlist.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-iconlist.asset.php'),(307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-iconlist.js','wp-content/plugins/kadence-blocks/dist/blocks-iconlist.js'),(308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-identity.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-identity.asset.php'),(309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-identity.js','wp-content/plugins/kadence-blocks/dist/blocks-identity.js'),(310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-image.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-image.asset.php'),(311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-image.js','wp-content/plugins/kadence-blocks/dist/blocks-image.js'),(312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-infobox.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-infobox.asset.php'),(313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-infobox.js','wp-content/plugins/kadence-blocks/dist/blocks-infobox.js'),(314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-lottie.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-lottie.asset.php'),(315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-lottie.js','wp-content/plugins/kadence-blocks/dist/blocks-lottie.js'),(316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-navigation-link.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-navigation-link.asset.php'),(317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-navigation-link.js','wp-content/plugins/kadence-blocks/dist/blocks-navigation-link.js'),(318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-navigation.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-navigation.asset.php'),(319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-navigation.js','wp-content/plugins/kadence-blocks/dist/blocks-navigation.js'),(320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-posts.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-posts.asset.php'),(321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-posts.js','wp-content/plugins/kadence-blocks/dist/blocks-posts.js'),(322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-progress-bar.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-progress-bar.asset.php'),(323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-progress-bar.js','wp-content/plugins/kadence-blocks/dist/blocks-progress-bar.js'),(324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-rowlayout.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-rowlayout.asset.php'),(325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-rowlayout.js','wp-content/plugins/kadence-blocks/dist/blocks-rowlayout.js'),(326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-search.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-search.asset.php'),(327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-search.js','wp-content/plugins/kadence-blocks/dist/blocks-search.js'),(328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-show-more.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-show-more.asset.php'),(329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-show-more.js','wp-content/plugins/kadence-blocks/dist/blocks-show-more.js'),(330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-single-icon.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-single-icon.asset.php'),(331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-single-icon.js','wp-content/plugins/kadence-blocks/dist/blocks-single-icon.js'),(332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-singlebtn.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-singlebtn.asset.php'),(333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-singlebtn.js','wp-content/plugins/kadence-blocks/dist/blocks-singlebtn.js'),(334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-spacer.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-spacer.asset.php'),(335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-spacer.js','wp-content/plugins/kadence-blocks/dist/blocks-spacer.js'),(336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-tableofcontents.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-tableofcontents.asset.php'),(337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-tableofcontents.js','wp-content/plugins/kadence-blocks/dist/blocks-tableofcontents.js'),(338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-tabs.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-tabs.asset.php'),(339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-tabs.js','wp-content/plugins/kadence-blocks/dist/blocks-tabs.js'),(340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-testimonial.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-testimonial.asset.php'),(341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-testimonial.js','wp-content/plugins/kadence-blocks/dist/blocks-testimonial.js'),(342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-testimonials.asset.php','wp-content/plugins/kadence-blocks/dist/blocks-testimonials.asset.php'),(343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/blocks-testimonials.js','wp-content/plugins/kadence-blocks/dist/blocks-testimonials.js'),(344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/components.asset.php','wp-content/plugins/kadence-blocks/dist/components.asset.php'),(345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/components.js','wp-content/plugins/kadence-blocks/dist/components.js'),(346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/early-filters.asset.php','wp-content/plugins/kadence-blocks/dist/early-filters.asset.php'),(347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/early-filters.js','wp-content/plugins/kadence-blocks/dist/early-filters.js'),(348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-block-css.asset.php','wp-content/plugins/kadence-blocks/dist/extension-block-css.asset.php'),(349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-block-css.js','wp-content/plugins/kadence-blocks/dist/extension-block-css.js'),(350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-image-picker.asset.php','wp-content/plugins/kadence-blocks/dist/extension-image-picker.asset.php'),(351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-image-picker.js','wp-content/plugins/kadence-blocks/dist/extension-image-picker.js'),(352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-kadence-base.asset.php','wp-content/plugins/kadence-blocks/dist/extension-kadence-base.asset.php'),(353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-kadence-base.js','wp-content/plugins/kadence-blocks/dist/extension-kadence-base.js'),(354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-stores.asset.php','wp-content/plugins/kadence-blocks/dist/extension-stores.asset.php'),(355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/extension-stores.js','wp-content/plugins/kadence-blocks/dist/extension-stores.js'),(356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/header-visual-builder.asset.php','wp-content/plugins/kadence-blocks/dist/header-visual-builder.asset.php'),(357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/header-visual-builder.js','wp-content/plugins/kadence-blocks/dist/header-visual-builder.js'),(358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/helpers.asset.php','wp-content/plugins/kadence-blocks/dist/helpers.asset.php'),(359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/helpers.js','wp-content/plugins/kadence-blocks/dist/helpers.js'),(360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/icons.asset.php','wp-content/plugins/kadence-blocks/dist/icons.asset.php'),(361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/icons.js','wp-content/plugins/kadence-blocks/dist/icons.js'),(362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/plugin-kadence-control.asset.php','wp-content/plugins/kadence-blocks/dist/plugin-kadence-control.asset.php'),(363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/dist/plugin-kadence-control.js','wp-content/plugins/kadence-blocks/dist/plugin-kadence-control.js'),(364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/activecampaign-rest-api.php','wp-content/plugins/kadence-blocks/includes/advanced-form/activecampaign-rest-api.php'),(365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-ajax.php','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-ajax.php'),(366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-captcha-settings.php','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-captcha-settings.php'),(367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-captcha-verify.php','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-captcha-verify.php'),(368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-cpt.php','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-cpt.php'),(369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-init.php','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-init.php'),(370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-rest-api.php','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-rest-api.php'),(371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-submit-actions.php','wp-content/plugins/kadence-blocks/includes/advanced-form/advanced-form-submit-actions.php'),(372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/advanced-form/getresponse-rest-api.php','wp-content/plugins/kadence-blocks/includes/advanced-form/getresponse-rest-api.php'),(373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob1.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob1.svg'),(374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob2.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob2.svg'),(375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob3.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/blob3.svg'),(376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/cat.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/cat.svg'),(377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/circle.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/circle.svg'),(378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/diamond.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/diamond.svg'),(379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/dog.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/dog.svg'),(380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/heart.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/heart.svg'),(381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/hexagon.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/hexagon.svg'),(382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/mug-hot.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/mug-hot.svg'),(383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/rounded.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/rounded.svg'),(384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/smile-beam.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/smile-beam.svg'),(385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/star.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/star.svg'),(386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/thumbs-down.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/thumbs-down.svg'),(387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/images/masks/thumbs-up.svg','wp-content/plugins/kadence-blocks/includes/assets/images/masks/thumbs-up.svg'),(388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/admin-blocks-deregister.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/admin-blocks-deregister.min.js'),(389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/admin-scripts.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/admin-scripts.min.js'),(390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/countUp.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/countUp.min.js'),(391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/glightbox.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/glightbox.min.js'),(392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/gumshoe.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/gumshoe.min.js'),(393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/jarallax.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/jarallax.min.js'),(394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-advanced-form-block.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-advanced-form-block.min.js'),(395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-advanced-heading.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-advanced-heading.min.js'),(396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-countdown.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-countdown.min.js'),(397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-countup.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-countup.min.js'),(398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-form-block.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-form-block.min.js'),(399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-form.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-form.min.js'),(400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-glight-init.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-glight-init.min.js'),(401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-magnific-init.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-magnific-init.min.js'),(402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-simple-init.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-gallery-simple-init.min.js'),(403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-glight-video-init.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-glight-video-init.min.js'),(404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-header-block.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-header-block.min.js'),(405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-header-sticky-image.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-header-sticky-image.min.js'),(406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-image-block.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-image-block.min.js'),(407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-google-maps.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-google-maps.min.js'),(408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-html-bg-video.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-html-bg-video.min.js'),(409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-video-popup.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-init-video-popup.min.js'),(410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-masonry-init.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-masonry-init.min.js'),(411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-navigation-block.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-navigation-block.min.js'),(412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-off-canvas-trigger.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-off-canvas-trigger.min.js'),(413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-search.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-search.min.js'),(414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-show-more.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-show-more.min.js'),(415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-splide-init.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-splide-init.min.js'),(416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-table-of-contents.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-table-of-contents.min.js'),(417,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-tiny-init.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-tiny-init.min.js'),(418,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kb-tippy.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kb-tippy.min.js'),(419,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-accordion.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kt-accordion.min.js'),(420,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-init-parallax.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kt-init-parallax.min.js'),(421,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-init-video-popup.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kt-init-video-popup.min.js'),(422,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-slick-init.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kt-slick-init.min.js'),(423,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/kt-tabs.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/kt-tabs.min.js'),(424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/lottie-dotlottie.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/lottie-dotlottie.min.js'),(425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/lottie-interactivity.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/lottie-interactivity.min.js'),(426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/lottie-player.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/lottie-player.min.js'),(427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/magnific.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/magnific.min.js'),(428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/plyr.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/plyr.min.js'),(429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/popper.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/popper.min.js'),(430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/progressBar.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/progressBar.min.js'),(431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/scroll-magic.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/scroll-magic.min.js'),(432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/simplelightbox.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/simplelightbox.min.js'),(433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/slick.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/slick.min.js'),(434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/splide.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/splide.min.js'),(435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/tiny-slider.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/tiny-slider.min.js'),(436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/assets/js/typed.min.js','wp-content/plugins/kadence-blocks/includes/assets/js/typed.min.js'),(437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-abstract-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-abstract-block.php'),(438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-accordion-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-accordion-block.php'),(439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advanced-form-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advanced-form-block.php'),(440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advanced-heading-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advanced-heading-block.php'),(441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advancedbtn-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advancedbtn-block.php'),(442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advancedgallery-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-advancedgallery-block.php'),(443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-column-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-column-block.php'),(444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-countdown-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-countdown-block.php'),(445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-countup-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-countup-block.php'),(446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-form-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-form-block.php'),(447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-googlemaps-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-googlemaps-block.php'),(448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-header-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-header-block.php'),(449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-icon-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-icon-block.php'),(450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-icon-list-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-icon-list-block.php'),(451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-identity-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-identity-block.php'),(452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-image-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-image-block.php'),(453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-infobox-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-infobox-block.php'),(454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-lottie-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-lottie-block.php'),(455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-navigation-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-navigation-block.php'),(456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-navigation-link-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-navigation-link-block.php'),(457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-posts-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-posts-block.php'),(458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-progress-bar-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-progress-bar-block.php'),(459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-row-layout-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-row-layout-block.php'),(460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-search-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-search-block.php'),(461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-show-more-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-show-more-block.php'),(462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-single-icon-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-single-icon-block.php'),(463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-single-icon-list-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-single-icon-list-block.php'),(464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-singlebtn-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-singlebtn-block.php'),(465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-spacer-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-spacer-block.php'),(466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-table-of-contents-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-table-of-contents-block.php'),(467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-tabs-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-tabs-block.php'),(468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-testimonial-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-testimonial-block.php'),(469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-testimonials-block.php','wp-content/plugins/kadence-blocks/includes/blocks/class-kadence-blocks-testimonials-block.php'),(470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-accept-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-accept-block.php'),(471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-advanced-form-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-advanced-form-input-block.php'),(472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-captcha-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-captcha-block.php'),(473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-checkbox-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-checkbox-block.php'),(474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-date-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-date-input-block.php'),(475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-email-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-email-input-block.php'),(476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-file-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-file-block.php'),(477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-hidden-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-hidden-input-block.php'),(478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-number-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-number-input-block.php'),(479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-radio-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-radio-block.php'),(480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-select-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-select-block.php'),(481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-submit-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-submit-block.php'),(482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-telephone-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-telephone-input-block.php'),(483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-text-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-text-input-block.php'),(484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-textarea-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-textarea-input-block.php'),(485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-time-input-block.php','wp-content/plugins/kadence-blocks/includes/blocks/form/class-kadence-blocks-time-input-block.php'),(486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-column-block.php','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-column-block.php'),(487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-container-desktop-block.php','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-container-desktop-block.php'),(488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-container-tablet-block.php','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-container-tablet-block.php'),(489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-row-block.php','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-row-block.php'),(490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-section-block.php','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-header-section-block.php'),(491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-off-canvas-block.php','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-off-canvas-block.php'),(492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-off-canvas-trigger-block.php','wp-content/plugins/kadence-blocks/includes/blocks/header/class-kadence-blocks-off-canvas-trigger-block.php'),(493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-fluentcrm-form-rest-api.php','wp-content/plugins/kadence-blocks/includes/class-fluentcrm-form-rest-api.php'),(494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-ai-events.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-ai-events.php'),(495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-css.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-css.php'),(496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-duplicate-post.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-duplicate-post.php'),(497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-editor-assets.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-editor-assets.php'),(498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-frontend.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-frontend.php'),(499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-google-fonts.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-google-fonts.php'),(500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-image-picker-rest.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-image-picker-rest.php'),(501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-image-picker.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-image-picker.php'),(502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-posts-rest-api.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-posts-rest-api.php'),(503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-prebuilt-library-rest-api.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-prebuilt-library-rest-api.php'),(504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-prebuilt-library.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-prebuilt-library.php'),(505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-schema-updater.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-schema-updater.php'),(506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-svg.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-svg.php'),(507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-table-of-contents.php','wp-content/plugins/kadence-blocks/includes/class-kadence-blocks-table-of-contents.php'),(508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-local-gfonts.php','wp-content/plugins/kadence-blocks/includes/class-local-gfonts.php'),(509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-lottieanimation-get-rest-api.php','wp-content/plugins/kadence-blocks/includes/class-lottieanimation-get-rest-api.php'),(510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-lottieanimation-post-rest-api.php','wp-content/plugins/kadence-blocks/includes/class-lottieanimation-post-rest-api.php'),(511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/class-mailerlite-form-rest-api.php','wp-content/plugins/kadence-blocks/includes/class-mailerlite-form-rest-api.php'),(512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/form-ajax.php','wp-content/plugins/kadence-blocks/includes/form-ajax.php'),(513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/gfonts-array.php','wp-content/plugins/kadence-blocks/includes/gfonts-array.php'),(514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/gfonts-names-array.php','wp-content/plugins/kadence-blocks/includes/gfonts-names-array.php'),(515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/header/class-kadence-header-cpt.php','wp-content/plugins/kadence-blocks/includes/header/class-kadence-header-cpt.php'),(516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/header/class-kadence-header-rest.php','wp-content/plugins/kadence-blocks/includes/header/class-kadence-header-rest.php'),(517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/helper-functions.php','wp-content/plugins/kadence-blocks/includes/helper-functions.php'),(518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/icon-names-array.php','wp-content/plugins/kadence-blocks/includes/icon-names-array.php'),(519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/icons-array.php','wp-content/plugins/kadence-blocks/includes/icons-array.php'),(520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/icons-ico-array.php','wp-content/plugins/kadence-blocks/includes/icons-ico-array.php'),(521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/init.php','wp-content/plugins/kadence-blocks/includes/init.php'),(522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/navigation/class-kadence-navigation-cpt.php','wp-content/plugins/kadence-blocks/includes/navigation/class-kadence-navigation-cpt.php'),(523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/navigation/class-kadence-navigation-rest.php','wp-content/plugins/kadence-blocks/includes/navigation/class-kadence-navigation-rest.php'),(524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/App.php','wp-content/plugins/kadence-blocks/includes/resources/App.php'),(525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Cache/Ai_Cache.php','wp-content/plugins/kadence-blocks/includes/resources/Cache/Ai_Cache.php'),(526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Cache/Block_Library_Cache.php','wp-content/plugins/kadence-blocks/includes/resources/Cache/Block_Library_Cache.php'),(527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Cache/Cache_Provider.php','wp-content/plugins/kadence-blocks/includes/resources/Cache/Cache_Provider.php'),(528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Cache/Config.php','wp-content/plugins/kadence-blocks/includes/resources/Cache/Config.php'),(529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Container.php','wp-content/plugins/kadence-blocks/includes/resources/Container.php'),(530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Hasher.php','wp-content/plugins/kadence-blocks/includes/resources/Hasher.php'),(531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Health/Health_Provider.php','wp-content/plugins/kadence-blocks/includes/resources/Health/Health_Provider.php'),(532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Health/Required_Function_Verifier.php','wp-content/plugins/kadence-blocks/includes/resources/Health/Required_Function_Verifier.php'),(533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Cache_Primer.php','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Cache_Primer.php'),(534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Downloader.php','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Downloader.php'),(535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Downloader_Provider.php','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Downloader_Provider.php'),(536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Editor.php','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Image_Editor.php'),(537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Meta.php','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Meta.php'),(538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Pexels_ID_Registry.php','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/Pexels_ID_Registry.php'),(539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/WordPress_Importer.php','wp-content/plugins/kadence-blocks/includes/resources/Image_Downloader/WordPress_Importer.php'),(540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Notice/Notice_Handler.php','wp-content/plugins/kadence-blocks/includes/resources/Notice/Notice_Handler.php'),(541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Contracts/Terminable.php','wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Contracts/Terminable.php'),(542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Collection.php','wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Collection.php'),(543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Handler.php','wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Handler.php'),(544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Provider.php','wp-content/plugins/kadence-blocks/includes/resources/Shutdown/Shutdown_Provider.php'),(545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Traits/Image_Size_Trait.php','wp-content/plugins/kadence-blocks/includes/resources/Traits/Image_Size_Trait.php'),(546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Traits/Rest/Image_Trait.php','wp-content/plugins/kadence-blocks/includes/resources/Traits/Rest/Image_Trait.php'),(547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/resources/Uplink/Uplink_Provider.php','wp-content/plugins/kadence-blocks/includes/resources/Uplink/Uplink_Provider.php'),(548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-helper.php','wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-helper.php'),(549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-settings.php','wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-settings.php'),(550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-site-health.php','wp-content/plugins/kadence-blocks/includes/settings/class-kadence-blocks-site-health.php'),(551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-footer.php','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-footer.php'),(552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-header.php','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-header.php'),(553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-meta.php','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-meta.php'),(554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-taxonomies.php','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-taxonomies.php'),(555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-thumbnail.php','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-thumbnail.php'),(556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-loop-title.php','wp-content/plugins/kadence-blocks/includes/templates/entry-loop-title.php'),(557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry-summary.php','wp-content/plugins/kadence-blocks/includes/templates/entry-summary.php'),(558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/entry.php','wp-content/plugins/kadence-blocks/includes/templates/entry.php'),(559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/includes/templates/form-email.php','wp-content/plugins/kadence-blocks/includes/templates/form-email.php'),(560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/kadence-blocks.php','wp-content/plugins/kadence-blocks/kadence-blocks.php'),(561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/uninstall.php','wp-content/plugins/kadence-blocks/uninstall.php'),(562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/autoload.php','wp-content/plugins/kadence-blocks/vendor/autoload.php'),(563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/ClassLoader.php','wp-content/plugins/kadence-blocks/vendor/composer/ClassLoader.php'),(564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/InstalledVersions.php','wp-content/plugins/kadence-blocks/vendor/composer/InstalledVersions.php'),(565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_classmap.php','wp-content/plugins/kadence-blocks/vendor/composer/autoload_classmap.php'),(566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_namespaces.php','wp-content/plugins/kadence-blocks/vendor/composer/autoload_namespaces.php'),(567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_psr4.php','wp-content/plugins/kadence-blocks/vendor/composer/autoload_psr4.php'),(568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_real.php','wp-content/plugins/kadence-blocks/vendor/composer/autoload_real.php'),(569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/autoload_static.php','wp-content/plugins/kadence-blocks/vendor/composer/autoload_static.php'),(570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/composer/installed.php','wp-content/plugins/kadence-blocks/vendor/composer/installed.php'),(571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/adbario/php-dot-notation/src/Dot.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/adbario/php-dot-notation/src/Dot.php'),(572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/adbario/php-dot-notation/src/helpers.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/adbario/php-dot-notation/src/helpers.php'),(573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload-classmap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload-classmap.php'),(574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload-files.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload-files.php'),(575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/autoload.php'),(576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AglInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AglInstaller.php'),(577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AkauntingInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AkauntingInstaller.php'),(578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AsgardInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AttogramInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BaseInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BaseInstaller.php'),(582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BitrixInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BonefishInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BotbleInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/BotbleInstaller.php'),(585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CakePHPInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ChefInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ChefInstaller.php'),(587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CiviCrmInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CockpitInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Concrete5Installer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php'),(593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CroogoInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DecibelInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DframeInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DframeInstaller.php'),(596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DokuWikiInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DolibarrInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DrupalInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ElggInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ElggInstaller.php'),(600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/EliasisInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/EzPlatformInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ForkCMSInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ForkCMSInstaller.php'),(604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/FuelInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/FuelInstaller.php'),(605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/FuelphpInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/GravInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/GravInstaller.php'),(607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/HuradInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/HuradInstaller.php'),(608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ImageCMSInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Installer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Installer.php'),(610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ItopInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ItopInstaller.php'),(611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KanboardInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KnownInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KnownInstaller.php'),(613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KodiCMSInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KohanaInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LaravelInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LavaLiteInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LithiumInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MODXEvoInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MagentoInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MajimaInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MakoInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MakoInstaller.php'),(624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MantisBTInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MantisBTInstaller.php'),(625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MatomoInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MatomoInstaller.php'),(626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MauticInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MauticInstaller.php'),(627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MayaInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MayaInstaller.php'),(628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MediaWikiInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MiaoxingInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'),(630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MicroweberInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ModxInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ModxInstaller.php'),(632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MoodleInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OctoberInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OntoWikiInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OsclassInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OxidInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/OxidInstaller.php'),(637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PPIInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PPIInstaller.php'),(638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PantheonInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PantheonInstaller.php'),(639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PhiftyInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PhpBBInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PiwikInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Plugin.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Plugin.php'),(644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PortoInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PortoInstaller.php'),(645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PrestashopInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ProcessWireInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'),(647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PuppetInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PxcmsInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RadPHPInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ReIndexInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Redaxo5Installer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/Redaxo5Installer.php'),(652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RedaxoInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RoundcubeInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SMFInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SMFInstaller.php'),(655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ShopwareInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SilverStripeInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SiteDirectInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/StarbugInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/StarbugInstaller.php'),(659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SyDESInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SyliusInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/SyliusInstaller.php'),(661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TaoInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TaoInstaller.php'),(662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'),(663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TheliaInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TuskInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/TuskInstaller.php'),(665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/UserFrostingInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/VanillaInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/VgmcpInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WHMCSInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WinterInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WinterInstaller.php'),(670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WolfCMSInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WordPressInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/YawikInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/YawikInstaller.php'),(673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ZendInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ZendInstaller.php'),(674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ZikulaInstaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Error.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Error.php'),(676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Result.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Result.php'),(677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Success.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/graham-campbell/result-type/src/Success.php'),(678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/App.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/App.php'),(679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php'),(680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php'),(681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php'),(682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php'),(683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php'),(684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php'),(685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php'),(686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php'),(687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php'),(688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Container.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/Container.php'),(689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php'),(690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php'),(691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php'),(692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php'),(693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php'),(694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/DateTimeImmutable.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/DateTimeImmutable.php'),(695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ErrorHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ErrorHandler.php'),(696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php'),(697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php'),(698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php'),(699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php'),(700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php'),(701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php'),(702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php'),(703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php'),(704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php'),(705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php'),(706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php'),(707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php'),(708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php'),(709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php'),(710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php'),(711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php'),(712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php'),(713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php'),(714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php'),(715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php'),(716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php'),(717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php'),(718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php'),(719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php'),(720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php'),(721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php'),(722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php'),(723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php'),(724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php'),(725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php'),(726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php'),(727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php'),(728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php'),(729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php'),(730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php'),(731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php'),(732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php'),(733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php'),(734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php'),(735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php'),(736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php'),(737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php'),(738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php'),(739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php'),(740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php'),(741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php'),(742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php'),(743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Handler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Handler.php'),(744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php'),(745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php'),(746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php'),(747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php'),(748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php'),(749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php'),(750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php'),(751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php'),(752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php'),(753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php'),(754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php'),(755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php'),(756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php'),(757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NoopHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NoopHandler.php'),(758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php'),(759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/OverflowHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/OverflowHandler.php'),(760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php'),(761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessHandler.php'),(762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php'),(763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php'),(764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php'),(765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php'),(766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php'),(767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php'),(768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php'),(769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php'),(770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php'),(771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SendGridHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SendGridHandler.php'),(772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php'),(773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php'),(774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php'),(775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php'),(776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SqsHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SqsHandler.php'),(777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php'),(778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php'),(779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php'),(780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php'),(781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php'),(782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php'),(783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php'),(784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php'),(785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php'),(786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php'),(787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php'),(788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/LogRecord.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/LogRecord.php'),(789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Logger.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Logger.php'),(790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php'),(791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php'),(792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php'),(793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php'),(794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php'),(795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php'),(796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php'),(797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php'),(798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php'),(799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php'),(800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php'),(801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php'),(802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php'),(803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Registry.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Registry.php'),(804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ResettableInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ResettableInterface.php'),(805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/SignalHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/SignalHandler.php'),(806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Test/TestCase.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Test/TestCase.php'),(807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Utils.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Utils.php'),(808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/LazyOption.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/LazyOption.php'),(809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/None.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/None.php'),(810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Option.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Option.php'),(811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Some.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Some.php'),(812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php'),(813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php'),(814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php'),(815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php'),(816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/InvalidArgumentException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/InvalidArgumentException.php'),(817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LogLevel.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LogLevel.php'),(818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php'),(819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareTrait.php'),(820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerInterface.php'),(821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php'),(822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/NullLogger.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/NullLogger.php'),(823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/DummyTest.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/DummyTest.php'),(824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/LoggerInterfaceTest.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/LoggerInterfaceTest.php'),(825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/TestLogger.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/psr/log/Psr/Log/Test/TestLogger.php'),(826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php'),(827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/ContainerAdapter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/ContainerAdapter.php'),(828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Container.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Container.php'),(829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Providable.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Providable.php'),(830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Provider.php'),(831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Exceptions/ImageDownloadException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Exceptions/ImageDownloadException.php'),(832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/FileNameProcessor.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/FileNameProcessor.php'),(833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageDownloader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageDownloader.php'),(834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageProvider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageProvider.php'),(835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/DownloadedImage.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/DownloadedImage.php'),(836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/ResponseAdapter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/ResponseAdapter.php'),(837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Contracts/Sanitizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Contracts/Sanitizer.php'),(838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/FileNameSanitizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/FileNameSanitizer.php'),(839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/DefaultFileNameSanitizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/DefaultFileNameSanitizer.php'),(840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/WPFileNameSanitizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/WPFileNameSanitizer.php'),(841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/Formatters/ColoredLineFormatter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/Formatters/ColoredLineFormatter.php'),(842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/Handlers/NullHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/Handlers/NullHandler.php'),(843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/LogLevel.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/LogLevel.php'),(844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/LogProvider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-log/LogProvider.php'),(845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Contracts/Storage.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Contracts/Storage.php'),(846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Drivers/LocalStorage.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Drivers/LocalStorage.php'),(847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/NotFoundException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/NotFoundException.php'),(848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/StorageException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/StorageException.php'),(849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Admin/Admin_Subscriber.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Admin/Admin_Subscriber.php'),(850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Admin/Resources.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Admin/Resources.php'),(851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Config.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Config.php'),(852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Abstract_Subscriber.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Abstract_Subscriber.php'),(853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Data_Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Data_Provider.php'),(854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Runnable.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Runnable.php'),(855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Subscriber_Interface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Subscriber_Interface.php'),(856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Template_Interface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Contracts/Template_Interface.php'),(857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Core.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Core.php'),(858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Data_Providers/Debug_Data.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Data_Providers/Debug_Data.php'),(859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Data_Providers/Null_Data_Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Data_Providers/Null_Data_Provider.php'),(860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Events/Event.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Events/Event.php'),(861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Events/Event_Subscriber.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Events/Event_Subscriber.php'),(862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Exit_Interview/Exit_Interview_Subscriber.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Exit_Interview/Exit_Interview_Subscriber.php'),(863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Exit_Interview/Template.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Exit_Interview/Template.php'),(864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Last_Send/Last_Send.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Last_Send/Last_Send.php'),(865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Last_Send/Last_Send_Subscriber.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Last_Send/Last_Send_Subscriber.php'),(866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Subscriber.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Subscriber.php'),(867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Template.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Template.php'),(868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Status.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Status.php'),(869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Telemetry/Telemetry.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Telemetry/Telemetry.php'),(870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Telemetry/Telemetry_Subscriber.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Telemetry/Telemetry_Subscriber.php'),(871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Uninstall.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Uninstall.php'),(872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/resources/images/stellar-logo.svg','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/resources/images/stellar-logo.svg'),(873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/resources/js/scripts.js','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/resources/js/scripts.js'),(874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/views/exit-interview.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/views/exit-interview.php'),(875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/views/optin.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/telemetry/src/views/optin.php'),(876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php'),(877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php'),(878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php'),(879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php'),(880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php'),(881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php'),(882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php'),(883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php'),(884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php'),(885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php'),(886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php'),(887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php'),(888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php'),(889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php'),(890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php'),(891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php'),(892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php'),(893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php'),(894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php'),(895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php'),(896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php'),(897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php'),(898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php'),(899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php'),(900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php'),(901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php'),(902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php'),(903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php'),(904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php'),(905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php'),(906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php'),(907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php'),(908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php'),(909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php'),(910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php'),(911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php'),(912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php'),(913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php'),(914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php'),(915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php'),(916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php'),(917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php'),(918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php'),(919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php'),(920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php'),(921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php'),(922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php'),(923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php'),(924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php'),(925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php'),(926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php'),(927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php'),(928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php'),(929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php'),(930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php'),(931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php'),(932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php'),(933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php'),(934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php'),(935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php'),(936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php'),(937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php'),(938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php'),(939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php'),(940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php'),(941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php'),(942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php'),(943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php'),(944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php'),(945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php'),(946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php'),(947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php'),(948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php'),(949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php'),(950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php'),(951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php'),(952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php'),(953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php'),(954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php'),(955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php'),(956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php'),(957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js'),(958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php'),(959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php'),(960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php'),(961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php'),(962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/deprecation-contracts/function.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/deprecation-contracts/function.php'),(963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/ExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/ExceptionInterface.php'),(964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/FileNotFoundException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/FileNotFoundException.php'),(965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/IOException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/IOException.php'),(966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/IOExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/IOExceptionInterface.php'),(967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/InvalidArgumentException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/InvalidArgumentException.php'),(968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/RuntimeException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Exception/RuntimeException.php'),(969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Filesystem.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Filesystem.php'),(970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Path.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/filesystem/Path.php'),(971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/AmpHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/AmpHttpClient.php'),(972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/AsyncDecoratorTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/AsyncDecoratorTrait.php'),(973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/CachingHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/CachingHttpClient.php'),(974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/DataChunk.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/DataChunk.php'),(975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/ErrorChunk.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/ErrorChunk.php'),(976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/FirstChunk.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/FirstChunk.php'),(977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/InformationalChunk.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/InformationalChunk.php'),(978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/LastChunk.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/LastChunk.php'),(979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/ServerSentEvent.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Chunk/ServerSentEvent.php'),(980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/CurlHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/CurlHttpClient.php'),(981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DataCollector/HttpClientDataCollector.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DataCollector/HttpClientDataCollector.php'),(982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DecoratorTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DecoratorTrait.php'),(983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DependencyInjection/HttpClientPass.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/DependencyInjection/HttpClientPass.php'),(984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/EventSourceHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/EventSourceHttpClient.php'),(985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/ClientException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/ClientException.php'),(986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/EventSourceException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/EventSourceException.php'),(987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/HttpExceptionTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/HttpExceptionTrait.php'),(988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/InvalidArgumentException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/InvalidArgumentException.php'),(989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/JsonException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/JsonException.php'),(990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/RedirectionException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/RedirectionException.php'),(991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/ServerException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/ServerException.php'),(992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/TimeoutException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/TimeoutException.php'),(993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/TransportException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Exception/TransportException.php'),(994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpClient.php'),(995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpClientTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpClientTrait.php'),(996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpOptions.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttpOptions.php'),(997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttplugClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/HttplugClient.php'),(998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpBody.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpBody.php'),(999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpClientState.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpClientState.php'),(1000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpListener.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpListener.php'),(1001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpResolver.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/AmpResolver.php'),(1002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/Canary.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/Canary.php'),(1003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/ClientState.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/ClientState.php'),(1004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/CurlClientState.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/CurlClientState.php'),(1005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/DnsCache.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/DnsCache.php'),(1006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/HttplugWaitLoop.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/HttplugWaitLoop.php'),(1007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/NativeClientState.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/NativeClientState.php'),(1008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/PushedResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Internal/PushedResponse.php'),(1009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/MockHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/MockHttpClient.php'),(1010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/NativeHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/NativeHttpClient.php'),(1011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/NoPrivateNetworkHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/NoPrivateNetworkHttpClient.php'),(1012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Psr18Client.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Psr18Client.php'),(1013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AmpResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AmpResponse.php'),(1014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AsyncContext.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AsyncContext.php'),(1015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AsyncResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/AsyncResponse.php'),(1016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/CommonResponseTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/CommonResponseTrait.php'),(1017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/CurlResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/CurlResponse.php'),(1018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/HttplugPromise.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/HttplugPromise.php'),(1019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/MockResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/MockResponse.php'),(1020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/NativeResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/NativeResponse.php'),(1021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/ResponseStream.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/ResponseStream.php'),(1022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/StreamWrapper.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/StreamWrapper.php'),(1023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/StreamableInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/StreamableInterface.php'),(1024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/TraceableResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/TraceableResponse.php'),(1025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/TransportResponseTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Response/TransportResponseTrait.php'),(1026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Retry/GenericRetryStrategy.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Retry/GenericRetryStrategy.php'),(1027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Retry/RetryStrategyInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/Retry/RetryStrategyInterface.php'),(1028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/RetryableHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/RetryableHttpClient.php'),(1029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/ScopingHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/ScopingHttpClient.php'),(1030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/TraceableHttpClient.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client/TraceableHttpClient.php'),(1031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ChunkInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ChunkInterface.php'),(1032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ClientExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ClientExceptionInterface.php'),(1033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php'),(1034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ExceptionInterface.php'),(1035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/HttpExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/HttpExceptionInterface.php'),(1036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php'),(1037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ServerExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ServerExceptionInterface.php'),(1038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php'),(1039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TransportExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TransportExceptionInterface.php'),(1040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/HttpClientInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/HttpClientInterface.php'),(1041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseInterface.php'),(1042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseStreamInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseStreamInterface.php'),(1043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/Fixtures/web/index.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/Fixtures/web/index.php'),(1044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/HttpClientTestCase.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/HttpClientTestCase.php'),(1045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/TestHttpServer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-client-contracts/Test/TestHttpServer.php'),(1046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeader.php'),(1047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeaderItem.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeaderItem.php'),(1048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/BinaryFileResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/BinaryFileResponse.php'),(1049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Cookie.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Cookie.php'),(1050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/BadRequestException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/BadRequestException.php'),(1051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/ConflictingHeadersException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/ConflictingHeadersException.php'),(1052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/JsonException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/JsonException.php'),(1053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/RequestExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/RequestExceptionInterface.php'),(1054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/SessionNotFoundException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/SessionNotFoundException.php'),(1055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/SuspiciousOperationException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Exception/SuspiciousOperationException.php'),(1056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ExpressionRequestMatcher.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ExpressionRequestMatcher.php'),(1057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/AccessDeniedException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/AccessDeniedException.php'),(1058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/CannotWriteFileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/CannotWriteFileException.php'),(1059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/ExtensionFileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/ExtensionFileException.php'),(1060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileException.php'),(1061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileNotFoundException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileNotFoundException.php'),(1062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FormSizeFileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FormSizeFileException.php'),(1063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/IniSizeFileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/IniSizeFileException.php'),(1064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoFileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoFileException.php'),(1065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoTmpDirFileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoTmpDirFileException.php'),(1066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/PartialFileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/PartialFileException.php'),(1067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UnexpectedTypeException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UnexpectedTypeException.php'),(1068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UploadException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UploadException.php'),(1069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/File.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/File.php'),(1070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Stream.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/Stream.php'),(1071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/UploadedFile.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/File/UploadedFile.php'),(1072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/FileBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/FileBag.php'),(1073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/HeaderBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/HeaderBag.php'),(1074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/HeaderUtils.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/HeaderUtils.php'),(1075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/InputBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/InputBag.php'),(1076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/IpUtils.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/IpUtils.php'),(1077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/JsonResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/JsonResponse.php'),(1078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ParameterBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ParameterBag.php'),(1079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php'),(1080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php'),(1081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RedirectResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RedirectResponse.php'),(1082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Request.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Request.php'),(1083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcher.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcher.php'),(1084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcherInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcherInterface.php'),(1085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestStack.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/RequestStack.php'),(1086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Response.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Response.php'),(1087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ResponseHeaderBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ResponseHeaderBag.php'),(1088,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ServerBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/ServerBag.php'),(1089,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBag.php'),(1090,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php'),(1091,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php'),(1092,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php'),(1093,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBag.php'),(1094,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBagInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBagInterface.php'),(1095,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Session.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Session.php'),(1096,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagInterface.php'),(1097,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagProxy.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagProxy.php'),(1098,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactory.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactory.php'),(1099,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactoryInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactoryInterface.php'),(1100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionInterface.php'),(1101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionUtils.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionUtils.php'),(1102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php'),(1103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php'),(1104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php'),(1105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php'),(1106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php'),(1107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php'),(1108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php'),(1109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php'),(1110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php'),(1111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php'),(1112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php'),(1113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php'),(1114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MetadataBag.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MetadataBag.php'),(1115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php'),(1116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php'),(1117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php'),(1118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorage.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorage.php'),(1119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php'),(1120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php'),(1121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php'),(1122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php'),(1123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php'),(1124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/ServiceSessionFactory.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/ServiceSessionFactory.php'),(1125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php'),(1126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageInterface.php'),(1127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/StreamedResponse.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/StreamedResponse.php'),(1128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php'),(1129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php'),(1130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php'),(1131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php'),(1132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php'),(1133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php'),(1134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php'),(1135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php'),(1136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php'),(1137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php'),(1138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/UrlHelper.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/http-foundation/UrlHelper.php'),(1139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Address.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Address.php'),(1140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/BodyRendererInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/BodyRendererInterface.php'),(1141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/CharacterStream.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/CharacterStream.php'),(1142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/DkimOptions.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/DkimOptions.php'),(1143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/DkimSigner.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/DkimSigner.php'),(1144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMime.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMime.php'),(1145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeEncrypter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeEncrypter.php'),(1146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeSigner.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeSigner.php'),(1147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php'),(1148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Email.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Email.php'),(1149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/AddressEncoderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/AddressEncoderInterface.php'),(1150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64ContentEncoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64ContentEncoder.php'),(1151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64Encoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64Encoder.php'),(1152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64MimeHeaderEncoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Base64MimeHeaderEncoder.php'),(1153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/ContentEncoderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/ContentEncoderInterface.php'),(1154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/EightBitContentEncoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/EightBitContentEncoder.php'),(1155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/EncoderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/EncoderInterface.php'),(1156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/IdnAddressEncoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/IdnAddressEncoder.php'),(1157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/MimeHeaderEncoderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/MimeHeaderEncoderInterface.php'),(1158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpContentEncoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpContentEncoder.php'),(1159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpEncoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpEncoder.php'),(1160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpMimeHeaderEncoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/QpMimeHeaderEncoder.php'),(1161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Rfc2231Encoder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Encoder/Rfc2231Encoder.php'),(1162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/AddressEncoderException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/AddressEncoderException.php'),(1163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/ExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/ExceptionInterface.php'),(1164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/InvalidArgumentException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/InvalidArgumentException.php'),(1165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/LogicException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/LogicException.php'),(1166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/RfcComplianceException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/RfcComplianceException.php'),(1167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/RuntimeException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Exception/RuntimeException.php'),(1168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/FileBinaryMimeTypeGuesser.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/FileBinaryMimeTypeGuesser.php'),(1169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/FileinfoMimeTypeGuesser.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/FileinfoMimeTypeGuesser.php'),(1170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/AbstractHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/AbstractHeader.php'),(1171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/DateHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/DateHeader.php'),(1172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/HeaderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/HeaderInterface.php'),(1173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/Headers.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/Headers.php'),(1174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/IdentificationHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/IdentificationHeader.php'),(1175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/MailboxHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/MailboxHeader.php'),(1176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/MailboxListHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/MailboxListHeader.php'),(1177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/ParameterizedHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/ParameterizedHeader.php'),(1178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/PathHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/PathHeader.php'),(1179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/UnstructuredHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Header/UnstructuredHeader.php'),(1180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Message.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Message.php'),(1181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MessageConverter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MessageConverter.php'),(1182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypeGuesserInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypeGuesserInterface.php'),(1183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypes.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypes.php'),(1184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypesInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/MimeTypesInterface.php'),(1185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/AbstractMultipartPart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/AbstractMultipartPart.php'),(1186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/AbstractPart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/AbstractPart.php'),(1187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/DataPart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/DataPart.php'),(1188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/MessagePart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/MessagePart.php'),(1189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/AlternativePart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/AlternativePart.php'),(1190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/DigestPart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/DigestPart.php'),(1191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/FormDataPart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/FormDataPart.php'),(1192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/MixedPart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/MixedPart.php'),(1193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/RelatedPart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/Multipart/RelatedPart.php'),(1194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/SMimePart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/SMimePart.php'),(1195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/TextPart.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Part/TextPart.php'),(1196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/RawMessage.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/RawMessage.php'),(1197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Resources/bin/update_mime_types.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Resources/bin/update_mime_types.php'),(1198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAddressContains.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAddressContains.php'),(1199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAttachmentCount.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAttachmentCount.php'),(1200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHasHeader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHasHeader.php'),(1201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHeaderSame.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHeaderSame.php'),(1202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php'),(1203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailTextBodyContains.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailTextBodyContains.php'),(1204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/Ctype.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/Ctype.php'),(1205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php'),(1206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap80.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap80.php'),(1207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/Grapheme.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/Grapheme.php'),(1208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap.php'),(1209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap80.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap80.php'),(1210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Idn.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Idn.php'),(1211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Info.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Info.php'),(1212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php'),(1213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/Regex.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/Regex.php'),(1214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/deviation.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/deviation.php'),(1215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php'),(1216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php'),(1217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php'),(1218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/ignored.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/ignored.php'),(1219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/mapped.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/mapped.php'),(1220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/virama.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/virama.php'),(1221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap.php'),(1222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap80.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap80.php'),(1223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Normalizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Normalizer.php'),(1224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php'),(1225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php'),(1226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php'),(1227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php'),(1228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php'),(1229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap.php'),(1230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap80.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap80.php'),(1231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Mbstring.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Mbstring.php'),(1232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php'),(1233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php'),(1234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php'),(1235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php'),(1236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php'),(1237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap80.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap80.php'),(1238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php72/Php72.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php72/Php72.php'),(1239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php72/bootstrap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php72/bootstrap.php'),(1240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/Php73.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/Php73.php'),(1241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/Resources/stubs/JsonException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/Resources/stubs/JsonException.php'),(1242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/bootstrap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php73/bootstrap.php'),(1243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Php80.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Php80.php'),(1244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/PhpToken.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/PhpToken.php'),(1245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Attribute.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Attribute.php'),(1246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/PhpToken.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/PhpToken.php'),(1247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Stringable.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Stringable.php'),(1248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php'),(1249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/ValueError.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/ValueError.php'),(1250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php'),(1251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Attribute/Required.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Attribute/Required.php'),(1252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Attribute/SubscribedService.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Attribute/SubscribedService.php'),(1253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ResetInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ResetInterface.php'),(1254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceLocatorTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceLocatorTrait.php'),(1255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceProviderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceProviderInterface.php'),(1256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberInterface.php'),(1257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberTrait.php'),(1258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTest.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTest.php'),(1259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTestCase.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTestCase.php'),(1260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/AbstractString.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/AbstractString.php'),(1261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/AbstractUnicodeString.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/AbstractUnicodeString.php'),(1262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/ByteString.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/ByteString.php'),(1263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/CodePointString.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/CodePointString.php'),(1264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/ExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/ExceptionInterface.php'),(1265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/InvalidArgumentException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/InvalidArgumentException.php'),(1266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/RuntimeException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Exception/RuntimeException.php'),(1267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/EnglishInflector.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/EnglishInflector.php'),(1268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/FrenchInflector.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/FrenchInflector.php'),(1269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/InflectorInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Inflector/InflectorInterface.php'),(1270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/LazyString.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/LazyString.php'),(1271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_wide.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_wide.php'),(1272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_zero.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_zero.php'),(1273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/functions.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Resources/functions.php'),(1274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Slugger/AsciiSlugger.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Slugger/AsciiSlugger.php'),(1275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Slugger/SluggerInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/Slugger/SluggerInterface.php'),(1276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/UnicodeString.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/string/UnicodeString.php'),(1277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/LocaleAwareInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/LocaleAwareInterface.php'),(1278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/Test/TranslatorTest.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/Test/TranslatorTest.php'),(1279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatableInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatableInterface.php'),(1280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorInterface.php'),(1281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorTrait.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorTrait.php'),(1282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Dotenv.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Dotenv.php'),(1283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ExceptionInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ExceptionInterface.php'),(1284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php'),(1285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidFileException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidFileException.php'),(1286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidPathException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidPathException.php'),(1287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ValidationException.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ValidationException.php'),(1288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Loader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Loader.php'),(1289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php'),(1290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Resolver.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Resolver.php'),(1291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Entry.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Entry.php'),(1292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/EntryParser.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/EntryParser.php'),(1293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lexer.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lexer.php'),(1294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lines.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lines.php'),(1295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Parser.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Parser.php'),(1296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/ParserInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/ParserInterface.php'),(1297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Value.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Value.php'),(1298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php'),(1299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php'),(1300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php'),(1301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php'),(1302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php'),(1303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php'),(1304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php'),(1305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php'),(1306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php'),(1307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php'),(1308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php'),(1309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php'),(1310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php'),(1311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/AdapterRepository.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/AdapterRepository.php'),(1312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php'),(1313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryInterface.php'),(1314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Paths.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Paths.php'),(1315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Reader.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Reader.php'),(1316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/FileStore.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/FileStore.php'),(1317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreBuilder.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreBuilder.php'),(1318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreInterface.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreInterface.php'),(1319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StringStore.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StringStore.php'),(1320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Regex.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Regex.php'),(1321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Str.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Str.php'),(1322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Validator.php','wp-content/plugins/kadence-blocks/vendor/vendor-prefixed/vlucas/phpdotenv/src/Validator.php'),(1323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/class-kadence-blocks-pro-plugin-check.php','wp-content/plugins/kadence-blocks-pro/class-kadence-blocks-pro-plugin-check.php'),(1324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/class-kadence-blocks-pro.php','wp-content/plugins/kadence-blocks-pro/class-kadence-blocks-pro.php'),(1325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamichtml.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamichtml.asset.php'),(1326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamichtml.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamichtml.js'),(1327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamiclist.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamiclist.asset.php'),(1328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamiclist.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-dynamiclist.js'),(1329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-imageoverlay.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-imageoverlay.asset.php'),(1330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-imageoverlay.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-imageoverlay.js'),(1331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-modal.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-modal.asset.php'),(1332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-modal.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-modal.js'),(1333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-portfoliogrid.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-portfoliogrid.asset.php'),(1334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-portfoliogrid.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-portfoliogrid.js'),(1335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-postgrid.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-postgrid.asset.php'),(1336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-postgrid.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-postgrid.js'),(1337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-productcarousel.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-productcarousel.asset.php'),(1338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-productcarousel.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-productcarousel.js'),(1339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-query-pagination.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-query-pagination.asset.php'),(1340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-query-pagination.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-query-pagination.js'),(1341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-query.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-query.asset.php'),(1342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-query.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-query.js'),(1343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-repeater.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-repeater.asset.php'),(1344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-repeater.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-repeater.js'),(1345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-repeatertemplate.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-repeatertemplate.asset.php'),(1346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-repeatertemplate.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-repeatertemplate.js'),(1347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-slide.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-slide.asset.php'),(1348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-slide.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-slide.js'),(1349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-slider.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-slider.asset.php'),(1350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-slider.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-slider.js'),(1351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-splitcontent.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-splitcontent.asset.php'),(1352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-splitcontent.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-splitcontent.js'),(1353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-userinfo.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-userinfo.asset.php'),(1354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-userinfo.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-userinfo.js'),(1355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-videopopup.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks-videopopup.asset.php'),(1356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks-videopopup.js','wp-content/plugins/kadence-blocks-pro/dist/blocks-videopopup.js'),(1357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks.asset.php','wp-content/plugins/kadence-blocks-pro/dist/blocks.asset.php'),(1358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/blocks.js','wp-content/plugins/kadence-blocks-pro/dist/blocks.js'),(1359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/early-filters.asset.php','wp-content/plugins/kadence-blocks-pro/dist/early-filters.asset.php'),(1360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/early-filters.js','wp-content/plugins/kadence-blocks-pro/dist/early-filters.js'),(1361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/form-analytics.asset.php','wp-content/plugins/kadence-blocks-pro/dist/form-analytics.asset.php'),(1362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/form-analytics.js','wp-content/plugins/kadence-blocks-pro/dist/form-analytics.js'),(1363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/gallery-styles.asset.php','wp-content/plugins/kadence-blocks-pro/dist/gallery-styles.asset.php'),(1364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/gallery-styles.js','wp-content/plugins/kadence-blocks-pro/dist/gallery-styles.js'),(1365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/icon-upload.asset.php','wp-content/plugins/kadence-blocks-pro/dist/icon-upload.asset.php'),(1366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/icon-upload.js','wp-content/plugins/kadence-blocks-pro/dist/icon-upload.js'),(1367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/query.asset.php','wp-content/plugins/kadence-blocks-pro/dist/query.asset.php'),(1368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/dist/query.js','wp-content/plugins/kadence-blocks-pro/dist/query.js'),(1369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-ajax.php','wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-ajax.php'),(1370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-init.php','wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-init.php'),(1371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-submit-actions.php','wp-content/plugins/kadence-blocks-pro/includes/advanced-form/advanced-form-submit-actions.php'),(1372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/advanced-form/kbp-advanced-form-analytics.php','wp-content/plugins/kadence-blocks-pro/includes/advanced-form/kbp-advanced-form-analytics.php'),(1373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/aos.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/aos.min.js'),(1374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/aos.min.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/aos.min.min.js'),(1375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/glightbox.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/glightbox.min.js'),(1376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/isotope.pkgd.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/isotope.pkgd.min.js'),(1377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-conditional-fields.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-conditional-fields.min.js'),(1378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-custom-icons-admin.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-custom-icons-admin.min.js'),(1379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-custom-icons.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-custom-icons.min.js'),(1380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-glight-video-pop-init.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-glight-video-pop-init.min.js'),(1381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-iso-init.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-iso-init.min.js'),(1382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-iso-post-init.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-iso-post-init.min.js'),(1383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-slider-init.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-slider-init.min.js'),(1384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-splide-init.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-splide-init.min.js'),(1385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-splide-slider-init.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kb-splide-slider-init.min.js'),(1386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kt-masonry-init.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kt-masonry-init.min.js'),(1387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/kt-modal-init.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/kt-modal-init.min.js'),(1388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/plyr.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/plyr.min.js'),(1389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/simplelightbox.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/simplelightbox.min.js'),(1390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/slick.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/slick.min.js'),(1391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/splide-auto-scroll.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/splide-auto-scroll.min.js'),(1392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/assets/js/splide.min.js','wp-content/plugins/kadence-blocks-pro/includes/assets/js/splide.min.js'),(1393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-abstract-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-abstract-block.php'),(1394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-dynamichtml-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-dynamichtml-block.php'),(1395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-dynamiclist-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-dynamiclist-block.php'),(1396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-imageoverlay-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-imageoverlay-block.php'),(1397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-modal-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-modal-block.php'),(1398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-portfoliogrid-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-portfoliogrid-block.php'),(1399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-postgrid-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-postgrid-block.php'),(1400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-productcarousel-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-productcarousel-block.php'),(1401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-query-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-query-block.php'),(1402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-repeater-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-repeater-block.php'),(1403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-repeatertemplate-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-repeatertemplate-block.php'),(1404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-slide-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-slide-block.php'),(1405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-slider-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-slider-block.php'),(1406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-splitcontent-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-splitcontent-block.php'),(1407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-userinfo-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-userinfo-block.php'),(1408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-videopopup-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/class-kadence-blocks-pro-videopopup-block.php'),(1409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/form-activecampaign-rest-api.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/form-activecampaign-rest-api.php'),(1410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/form-convertkit-rest-api.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/form-convertkit-rest-api.php'),(1411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/form-mailchimp-rest-api.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/form-mailchimp-rest-api.php'),(1412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/form-sendinblue-rest-api.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/form-sendinblue-rest-api.php'),(1413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/kadence-animate-on-scroll.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/kadence-animate-on-scroll.php'),(1414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/product-carousel-categories-rest-api.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/product-carousel-categories-rest-api.php'),(1415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/product-carousel-products-rest-api.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/product-carousel-products-rest-api.php'),(1416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-abstract-query-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-abstract-query-block.php'),(1417,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-card-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-card-block.php'),(1418,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-block.php'),(1419,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-buttons-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-buttons-block.php'),(1420,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-checkbox-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-checkbox-block.php'),(1421,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-date-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-date-block.php'),(1422,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-range-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-range-block.php'),(1423,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-rating-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-rating-block.php'),(1424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-reset-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-reset-block.php'),(1425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-search-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-search-block.php'),(1426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-woo-attribute-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-filter-woo-attribute-block.php'),(1427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-noresults-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-noresults-block.php'),(1428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-pagination-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-pagination-block.php'),(1429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-query-children-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-query-children-block.php'),(1430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-result-count-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-result-count-block.php'),(1431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-sort-block.php','wp-content/plugins/kadence-blocks-pro/includes/blocks/query/class-kadence-blocks-pro-sort-block.php'),(1432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-custom-svg-controller.php','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-custom-svg-controller.php'),(1433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-dynamic-content-controller.php','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-dynamic-content-controller.php'),(1434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-post-select-controller.php','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-post-select-controller.php'),(1435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-backend.php','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-backend.php'),(1436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-css.php','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-css.php'),(1437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-custom-icons.php','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-custom-icons.php'),(1438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-frontend.php','wp-content/plugins/kadence-blocks-pro/includes/class-kadence-blocks-pro-frontend.php'),(1439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/class-kadence-blocks-pro-countdown-cleanup.php','wp-content/plugins/kadence-blocks-pro/includes/countdown/class-kadence-blocks-pro-countdown-cleanup.php'),(1440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/class-kadence-blocks-pro-countdown.php','wp-content/plugins/kadence-blocks-pro/includes/countdown/class-kadence-blocks-pro-countdown.php'),(1441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-query.php','wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-query.php'),(1442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-schema.php','wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-schema.php'),(1443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-table.php','wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entries-table.php'),(1444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entry.php','wp-content/plugins/kadence-blocks-pro/includes/countdown/countdown-entry.php'),(1445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/custom-svg/kadence-svg-cpt.php','wp-content/plugins/kadence-blocks-pro/includes/custom-svg/kadence-svg-cpt.php'),(1446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/class-kadence-blocks-pro-dynamic-content.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/class-kadence-blocks-pro-dynamic-content.php'),(1447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/acf.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/acf.php'),(1448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/background-format.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/background-format.php'),(1449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/gallery-format.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/gallery-format.php'),(1450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/image-format.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/image-format.php'),(1451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/metabox.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/metabox.php'),(1452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/pods.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/pods.php'),(1453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/tec.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/tec.php'),(1454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/woo.php','wp-content/plugins/kadence-blocks-pro/includes/dynamic-content/inc/woo.php'),(1455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/base.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/base.php'),(1456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/column.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/column.php'),(1457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/compare.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/compare.php'),(1458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/date.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/date.php'),(1459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/query.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/query.php'),(1460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/row.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/row.php'),(1461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/schema.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/schema.php'),(1462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/table.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/berlindb/table.php'),(1463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/abstract-kb-csv-batch-exporter.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/abstract-kb-csv-batch-exporter.php'),(1464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/abstract-kb-csv-exporter.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/abstract-kb-csv-exporter.php'),(1465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/class-kb-entry-csv-exporter.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/class-kb-entry-csv-exporter.php'),(1466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/kb-form-export.js','wp-content/plugins/kadence-blocks-pro/includes/form/admin/export/kb-form-export.js'),(1467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-meta-table.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-meta-table.php'),(1468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-query.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-query.php'),(1469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-schema.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-schema.php'),(1470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-table.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entries-table.php'),(1471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entry.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/form-entry.php'),(1472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/kadence-admin-form-entries.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/kadence-admin-form-entries.php'),(1473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/admin/kb-form-admin-entries-table-list.php','wp-content/plugins/kadence-blocks-pro/includes/form/admin/kb-form-admin-entries-table-list.php'),(1474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/kbp-form-actions.php','wp-content/plugins/kadence-blocks-pro/includes/form/kbp-form-actions.php'),(1475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/form/kbp-form-conditional.php','wp-content/plugins/kadence-blocks-pro/includes/form/kbp-form-conditional.php'),(1476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/helper-functions.php','wp-content/plugins/kadence-blocks-pro/includes/helper-functions.php'),(1477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/init.php','wp-content/plugins/kadence-blocks-pro/includes/init.php'),(1478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/kbp-active-campaign-controller.php','wp-content/plugins/kadence-blocks-pro/includes/kbp-active-campaign-controller.php'),(1479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/kbp-getresponse-controller.php','wp-content/plugins/kadence-blocks-pro/includes/kbp-getresponse-controller.php'),(1480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/kbp-installer.php','wp-content/plugins/kadence-blocks-pro/includes/kbp-installer.php'),(1481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/index-query-builder.php','wp-content/plugins/kadence-blocks-pro/includes/query/index-query-builder.php'),(1482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-card-cpt.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-card-cpt.php'),(1483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-cpt.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-cpt.php'),(1484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-facets.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-facets.php'),(1485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-frontend-filters.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-frontend-filters.php'),(1486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-frontend-pagination.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-frontend-pagination.php'),(1487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer-process.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer-process.php'),(1488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer-woo.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer-woo.php'),(1489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-indexer.php'),(1490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-init.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-init.php'),(1491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/query-rest-api.php','wp-content/plugins/kadence-blocks-pro/includes/query/query-rest-api.php'),(1492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/wp-async-request.php','wp-content/plugins/kadence-blocks-pro/includes/query/wp-async-request.php'),(1493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/query/wp-background-process.php','wp-content/plugins/kadence-blocks-pro/includes/query/wp-background-process.php'),(1494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/settings/admin-activate.js','wp-content/plugins/kadence-blocks-pro/includes/settings/admin-activate.js'),(1495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/templates/form-auto-email.php','wp-content/plugins/kadence-blocks-pro/includes/templates/form-auto-email.php'),(1496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/uplink/Connect.php','wp-content/plugins/kadence-blocks-pro/includes/uplink/Connect.php'),(1497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/uplink/Helper.php','wp-content/plugins/kadence-blocks-pro/includes/uplink/Helper.php'),(1498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/uplink/admin-views/field.php','wp-content/plugins/kadence-blocks-pro/includes/uplink/admin-views/field.php'),(1499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/uplink/admin-views/license-admin.js','wp-content/plugins/kadence-blocks-pro/includes/uplink/admin-views/license-admin.js'),(1500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/includes/vendor/Container.php','wp-content/plugins/kadence-blocks-pro/includes/vendor/Container.php'),(1501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-blocks-pro.php','wp-content/plugins/kadence-blocks-pro/kadence-blocks-pro.php'),(1502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-classes/kadence-activation/class-kadence-plugin-api-manager.php','wp-content/plugins/kadence-blocks-pro/kadence-classes/kadence-activation/class-kadence-plugin-api-manager.php'),(1503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-classes/kadence-activation/updater.php','wp-content/plugins/kadence-blocks-pro/kadence-classes/kadence-activation/updater.php'),(1504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Factory.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Factory.php'),(1505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/InstalledPackage.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/InstalledPackage.php'),(1506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Metadata.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Metadata.php'),(1507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/OAuthSignature.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/OAuthSignature.php'),(1508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Info.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Info.php'),(1509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Package.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Package.php'),(1510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Ui.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Ui.php'),(1511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Update.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/Update.php'),(1512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/UpdateChecker.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Plugin/UpdateChecker.php'),(1513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Scheduler.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Scheduler.php'),(1514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/StateStore.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/StateStore.php'),(1515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/Package.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/Package.php'),(1516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/Update.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/Update.php'),(1517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/UpdateChecker.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Theme/UpdateChecker.php'),(1518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Update.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Update.php'),(1519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/UpdateChecker.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/UpdateChecker.php'),(1520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/UpgraderStatus.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/UpgraderStatus.php'),(1521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Utils.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/Utils.php'),(1522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/KadencePucReadmeParser.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/KadencePucReadmeParser.php'),(1523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/Parsedown.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/Parsedown.php'),(1524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/ParsedownLegacy.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/ParsedownLegacy.php'),(1525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/ParsedownModern.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/inc/vendor/ParsedownModern.php'),(1526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/kadence-update-checker/kadence-update-checker.php','wp-content/plugins/kadence-blocks-pro/kadence-update-checker/kadence-update-checker.php'),(1527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/tables/KbpFormEventsIndex.php','wp-content/plugins/kadence-blocks-pro/tables/KbpFormEventsIndex.php'),(1528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/tables/KbpQueryIndex.php','wp-content/plugins/kadence-blocks-pro/tables/KbpQueryIndex.php'),(1529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/uninstall.php','wp-content/plugins/kadence-blocks-pro/uninstall.php'),(1530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/autoload.php','wp-content/plugins/kadence-blocks-pro/vendor/autoload.php'),(1531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/ClassLoader.php','wp-content/plugins/kadence-blocks-pro/vendor/composer/ClassLoader.php'),(1532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/InstalledVersions.php','wp-content/plugins/kadence-blocks-pro/vendor/composer/InstalledVersions.php'),(1533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_classmap.php','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_classmap.php'),(1534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_namespaces.php','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_namespaces.php'),(1535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_psr4.php','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_psr4.php'),(1536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_real.php','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_real.php'),(1537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_static.php','wp-content/plugins/kadence-blocks-pro/vendor/composer/autoload_static.php'),(1538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/composer/installed.php','wp-content/plugins/kadence-blocks-pro/vendor/composer/installed.php'),(1539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/autoload-classmap.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/autoload-classmap.php'),(1540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/autoload.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/autoload.php'),(1541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Resolver.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Resolver.php'),(1542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Subject.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Subject.php'),(1543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Usage.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/ElementReference/Usage.php'),(1544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Exceptions/NestingException.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Exceptions/NestingException.php'),(1545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Helper.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Helper.php'),(1546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Sanitizer.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/Sanitizer.php'),(1547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AllowedAttributes.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AllowedAttributes.php'),(1548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AllowedTags.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AllowedTags.php'),(1549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AttributeInterface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/AttributeInterface.php'),(1550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/TagInterface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/TagInterface.php'),(1551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/XPath.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/data/XPath.php'),(1552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/svg-scanner.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/enshrined/svg-sanitize/src/svg-scanner.php'),(1553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/App.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/App.php'),(1554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php'),(1555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php'),(1556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php'),(1557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php'),(1558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php'),(1559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php'),(1560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php'),(1561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php'),(1562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php'),(1563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Container.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/Container.php'),(1564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php'),(1565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php'),(1566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php'),(1567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php'),(1568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php'),(1569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php'),(1570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php'),(1571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php'),(1572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Config.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Config.php'),(1573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/DB.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/DB.php'),(1574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Actions/EnableBigSqlSelects.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Actions/EnableBigSqlSelects.php'),(1575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Exceptions/DatabaseQueryException.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Exceptions/DatabaseQueryException.php'),(1576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Provider.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/Database/Provider.php'),(1577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/From.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/From.php'),(1578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Having.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Having.php'),(1579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Join.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Join.php'),(1580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/JoinCondition.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/JoinCondition.php'),(1581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/MetaTable.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/MetaTable.php'),(1582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/OrderBy.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/OrderBy.php'),(1583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/RawSQL.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/RawSQL.php'),(1584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Select.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Select.php'),(1585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Union.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Union.php'),(1586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Where.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Clauses/Where.php'),(1587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/Aggregate.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/Aggregate.php'),(1588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/CRUD.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/CRUD.php'),(1589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/FromClause.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/FromClause.php'),(1590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/GroupByStatement.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/GroupByStatement.php'),(1591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/HavingClause.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/HavingClause.php'),(1592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/JoinClause.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/JoinClause.php'),(1593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/LimitStatement.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/LimitStatement.php'),(1594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/MetaQuery.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/MetaQuery.php'),(1595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/OffsetStatement.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/OffsetStatement.php'),(1596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/OrderByStatement.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/OrderByStatement.php'),(1597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/SelectStatement.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/SelectStatement.php'),(1598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/TablePrefix.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/TablePrefix.php'),(1599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/UnionOperator.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/UnionOperator.php'),(1600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/WhereClause.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Concerns/WhereClause.php'),(1601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/JoinQueryBuilder.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/JoinQueryBuilder.php'),(1602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/QueryBuilder.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/QueryBuilder.php'),(1603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/JoinType.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/JoinType.php'),(1604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Math.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Math.php'),(1605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Operator.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Operator.php'),(1606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Type.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/Types/Type.php'),(1607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/WhereQueryBuilder.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/db/src/DB/QueryBuilder/WhereQueryBuilder.php'),(1608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Activation.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Activation.php'),(1609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Builder.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Builder.php'),(1610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Config.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Config.php'),(1611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Collection.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Collection.php'),(1612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Contracts/Field.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Contracts/Field.php'),(1613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Contracts/Schema_Interface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Contracts/Schema_Interface.php'),(1614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Filters/Table_FilterIterator.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Fields/Filters/Table_FilterIterator.php'),(1615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Full_Activation_Provider.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Full_Activation_Provider.php'),(1616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Register.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Register.php'),(1617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Schema.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Schema.php'),(1618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Collection.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Collection.php'),(1619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Contracts/Schema_Interface.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Contracts/Schema_Interface.php'),(1620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Contracts/Table.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Contracts/Table.php'),(1621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Filters/Group_FilterIterator.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Filters/Group_FilterIterator.php'),(1622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Filters/Needs_Update_FilterIterator.php','wp-content/plugins/kadence-blocks-pro/vendor/vendor-prefixed/stellarwp/schema/src/Schema/Tables/Filters/Needs_Update_FilterIterator.php'),(1623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/ace-html.asset.php','wp-content/plugins/kadence-pro/build/ace-html.asset.php'),(1624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/ace-html.js','wp-content/plugins/kadence-pro/build/ace-html.js'),(1625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/classic-meta.asset.php','wp-content/plugins/kadence-pro/build/classic-meta.asset.php'),(1626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/classic-meta.js','wp-content/plugins/kadence-pro/build/classic-meta.js'),(1627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/customizer.asset.php','wp-content/plugins/kadence-pro/build/customizer.asset.php'),(1628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/customizer.js','wp-content/plugins/kadence-pro/build/customizer.js'),(1629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/dashboard.asset.php','wp-content/plugins/kadence-pro/build/dashboard.asset.php'),(1630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/dashboard.js','wp-content/plugins/kadence-pro/build/dashboard.js'),(1631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/mega-menu.asset.php','wp-content/plugins/kadence-pro/build/mega-menu.asset.php'),(1632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/mega-menu.js','wp-content/plugins/kadence-pro/build/mega-menu.js'),(1633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/meta.asset.php','wp-content/plugins/kadence-pro/build/meta.asset.php'),(1634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/build/meta.js','wp-content/plugins/kadence-pro/build/meta.js'),(1635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/class-kadence-theme-pro.php','wp-content/plugins/kadence-pro/class-kadence-theme-pro.php'),(1636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/archive-meta.php','wp-content/plugins/kadence-pro/dist/archive-meta.php'),(1637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional-heading.php','wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional-heading.php'),(1638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional-select.php','wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional-select.php'),(1639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional.php','wp-content/plugins/kadence-pro/dist/conditional-headers/class-kadence-control-conditional.php'),(1640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers/conditional-header-options.php','wp-content/plugins/kadence-pro/dist/conditional-headers/conditional-header-options.php'),(1641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/conditional-headers.php','wp-content/plugins/kadence-pro/dist/conditional-headers.php'),(1642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/dark-mode-options.php','wp-content/plugins/kadence-pro/dist/dark-mode/dark-mode-options.php'),(1643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/dark-mode.min.js','wp-content/plugins/kadence-pro/dist/dark-mode/dark-mode.min.js'),(1644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/footer-dark-mode-options.php','wp-content/plugins/kadence-pro/dist/dark-mode/footer-dark-mode-options.php'),(1645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/header-dark-mode-options.php','wp-content/plugins/kadence-pro/dist/dark-mode/header-dark-mode-options.php'),(1646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/hooks.php','wp-content/plugins/kadence-pro/dist/dark-mode/hooks.php'),(1647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/learndash-focus-header-options.php','wp-content/plugins/kadence-pro/dist/dark-mode/learndash-focus-header-options.php'),(1648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/mobile-dark-mode-options.php','wp-content/plugins/kadence-pro/dist/dark-mode/mobile-dark-mode-options.php'),(1649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/src/dark-mode.js','wp-content/plugins/kadence-pro/dist/dark-mode/src/dark-mode.js'),(1650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/templates/footer-dark-mode.php','wp-content/plugins/kadence-pro/dist/dark-mode/templates/footer-dark-mode.php'),(1651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/templates/header-dark-mode.php','wp-content/plugins/kadence-pro/dist/dark-mode/templates/header-dark-mode.php'),(1652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode/templates/mobile-dark-mode.php','wp-content/plugins/kadence-pro/dist/dark-mode/templates/mobile-dark-mode.php'),(1653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/dark-mode.php','wp-content/plugins/kadence-pro/dist/dark-mode.php'),(1654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/duplicate-elements.php','wp-content/plugins/kadence-pro/dist/elements/duplicate-elements.php'),(1655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/elements-init.php','wp-content/plugins/kadence-pro/dist/elements/elements-init.php'),(1656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/kadence-pro-element-post-admin.min.js','wp-content/plugins/kadence-pro/dist/elements/kadence-pro-element-post-admin.min.js'),(1657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/kadence-pro-sticky.min.js','wp-content/plugins/kadence-pro/dist/elements/kadence-pro-sticky.min.js'),(1658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/post-select-rest-controller.php','wp-content/plugins/kadence-pro/dist/elements/post-select-rest-controller.php'),(1659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/src/kadence-pro-element-post-admin.js','wp-content/plugins/kadence-pro/dist/elements/src/kadence-pro-element-post-admin.js'),(1660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/elements/src/kadence-pro-sticky.js','wp-content/plugins/kadence-pro/dist/elements/src/kadence-pro-sticky.js'),(1661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-account-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-account-options.php'),(1662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-button2-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-button2-options.php'),(1663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-contact-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-contact-options.php'),(1664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-divider-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-divider-options.php'),(1665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-divider2-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-divider2-options.php'),(1666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-divider3-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-divider3-options.php'),(1667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-html2-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-html2-options.php'),(1668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-account-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-account-options.php'),(1669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-button2-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-button2-options.php'),(1670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-contact-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-contact-options.php'),(1671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-divider-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-divider-options.php'),(1672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-divider2-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-divider2-options.php'),(1673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-html2-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-html2-options.php'),(1674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-nav2-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-nav2-options.php'),(1675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-search-bar-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-mobile-search-bar-options.php'),(1676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-quaternary-navigation-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-quaternary-navigation-options.php'),(1677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-search-bar-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-search-bar-options.php'),(1678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-tertiary-navigation-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-tertiary-navigation-options.php'),(1679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-toggle-widget-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-toggle-widget-options.php'),(1680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/header-widget-area-options.php','wp-content/plugins/kadence-pro/dist/header-addons/header-widget-area-options.php'),(1681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/hooks.php','wp-content/plugins/kadence-pro/dist/header-addons/hooks.php'),(1682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/account.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/account.php'),(1683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/button2.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/button2.php'),(1684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/contact.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/contact.php'),(1685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/divider.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/divider.php'),(1686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/divider2.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/divider2.php'),(1687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/divider3.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/divider3.php'),(1688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/html2.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/html2.php'),(1689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-account.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-account.php'),(1690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-button2.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-button2.php'),(1691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-contact.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-contact.php'),(1692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-divider.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-divider.php'),(1693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-divider2.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-divider2.php'),(1694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-html2.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-html2.php'),(1695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-search-bar.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-search-bar.php'),(1696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-secondary-navigation.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/mobile-secondary-navigation.php'),(1697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/navigation-3.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/navigation-3.php'),(1698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/navigation-4.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/navigation-4.php'),(1699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/search-bar.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/search-bar.php'),(1700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/toggle-widget.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/toggle-widget.php'),(1701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/widget1.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/widget1.php'),(1702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons/templates/widget2.php','wp-content/plugins/kadence-pro/dist/header-addons/templates/widget2.php'),(1703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/header-addons.php','wp-content/plugins/kadence-pro/dist/header-addons.php'),(1704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/hooks.php','wp-content/plugins/kadence-pro/dist/infinite-scroll/hooks.php'),(1705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/infinite-options.php','wp-content/plugins/kadence-pro/dist/infinite-scroll/infinite-options.php'),(1706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/infinite-scroll.min.js','wp-content/plugins/kadence-pro/dist/infinite-scroll/infinite-scroll.min.js'),(1707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/post-infinite-scroll.min.js','wp-content/plugins/kadence-pro/dist/infinite-scroll/post-infinite-scroll.min.js'),(1708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/src/infinite-scroll-events.js','wp-content/plugins/kadence-pro/dist/infinite-scroll/src/infinite-scroll-events.js'),(1709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/src/infinite-scroll.js','wp-content/plugins/kadence-pro/dist/infinite-scroll/src/infinite-scroll.js'),(1710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll/src/post-infinite-scroll.js','wp-content/plugins/kadence-pro/dist/infinite-scroll/src/post-infinite-scroll.js'),(1711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/infinite-scroll.php','wp-content/plugins/kadence-pro/dist/infinite-scroll.php'),(1712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/local-gravatars.php','wp-content/plugins/kadence-pro/dist/local-gravatars.php'),(1713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/fa-icons.php','wp-content/plugins/kadence-pro/dist/mega-menu/fa-icons.php'),(1714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/kadence-mega-menu.js','wp-content/plugins/kadence-pro/dist/mega-menu/kadence-mega-menu.js'),(1715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/kadence-mega-menu.min.js','wp-content/plugins/kadence-pro/dist/mega-menu/kadence-mega-menu.min.js'),(1716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/kadence-menu-walker.php','wp-content/plugins/kadence-pro/dist/mega-menu/kadence-menu-walker.php'),(1717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/mega-menu/mega-menu.php','wp-content/plugins/kadence-pro/dist/mega-menu/mega-menu.php'),(1718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/scripts-addon/hooks.php','wp-content/plugins/kadence-pro/dist/scripts-addon/hooks.php'),(1719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/scripts-addon/scripts-options.php','wp-content/plugins/kadence-pro/dist/scripts-addon/scripts-options.php'),(1720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/scripts-addon.php','wp-content/plugins/kadence-pro/dist/scripts-addon.php'),(1721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/cart-notice-options.php','wp-content/plugins/kadence-pro/dist/woocommerce-addons/cart-notice-options.php'),(1722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/cart-show-options.php','wp-content/plugins/kadence-pro/dist/woocommerce-addons/cart-show-options.php'),(1723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/hooks.php','wp-content/plugins/kadence-pro/dist/woocommerce-addons/hooks.php'),(1724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/kadence-sticky-add-to-cart.min.js','wp-content/plugins/kadence-pro/dist/woocommerce-addons/kadence-sticky-add-to-cart.min.js'),(1725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/pro-woocommerce.min.js','wp-content/plugins/kadence-pro/dist/woocommerce-addons/pro-woocommerce.min.js'),(1726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/product-archive-options.php','wp-content/plugins/kadence-pro/dist/woocommerce-addons/product-archive-options.php'),(1727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/single-ajax-add-to-cart.min.js','wp-content/plugins/kadence-pro/dist/woocommerce-addons/single-ajax-add-to-cart.min.js'),(1728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/single-product-options.php','wp-content/plugins/kadence-pro/dist/woocommerce-addons/single-product-options.php'),(1729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/kadence-sticky-add-to-cart.js','wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/kadence-sticky-add-to-cart.js'),(1730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/pro-woocommerce.js','wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/pro-woocommerce.js'),(1731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/single-ajax-add-to-cart.js','wp-content/plugins/kadence-pro/dist/woocommerce-addons/src/single-ajax-add-to-cart.js'),(1732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons/templates/archive-product.php','wp-content/plugins/kadence-pro/dist/woocommerce-addons/templates/archive-product.php'),(1733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/dist/woocommerce-addons.php','wp-content/plugins/kadence-pro/dist/woocommerce-addons.php'),(1734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/container/Container.php','wp-content/plugins/kadence-pro/includes/container/Container.php'),(1735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/uplink/Connect.php','wp-content/plugins/kadence-pro/includes/uplink/Connect.php'),(1736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/uplink/Helper.php','wp-content/plugins/kadence-pro/includes/uplink/Helper.php'),(1737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/uplink/admin-views/field.php','wp-content/plugins/kadence-pro/includes/uplink/admin-views/field.php'),(1738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/includes/uplink/admin-views/license-admin.js','wp-content/plugins/kadence-pro/includes/uplink/admin-views/license-admin.js'),(1739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/kadence-pro.php','wp-content/plugins/kadence-pro/kadence-pro.php'),(1740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/autoload.php','wp-content/plugins/kadence-pro/vendor/autoload.php'),(1741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/ClassLoader.php','wp-content/plugins/kadence-pro/vendor/composer/ClassLoader.php'),(1742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/InstalledVersions.php','wp-content/plugins/kadence-pro/vendor/composer/InstalledVersions.php'),(1743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_classmap.php','wp-content/plugins/kadence-pro/vendor/composer/autoload_classmap.php'),(1744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_namespaces.php','wp-content/plugins/kadence-pro/vendor/composer/autoload_namespaces.php'),(1745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_psr4.php','wp-content/plugins/kadence-pro/vendor/composer/autoload_psr4.php'),(1746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_real.php','wp-content/plugins/kadence-pro/vendor/composer/autoload_real.php'),(1747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/autoload_static.php','wp-content/plugins/kadence-pro/vendor/composer/autoload_static.php'),(1748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/composer/installed.php','wp-content/plugins/kadence-pro/vendor/composer/installed.php'),(1749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/autoload-classmap.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/autoload-classmap.php'),(1750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/autoload.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/autoload.php'),(1751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/App.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/App.php'),(1752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php'),(1753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php'),(1754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php'),(1755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php'),(1756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php'),(1757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php'),(1758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php'),(1759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php'),(1760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php'),(1761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Container.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/Container.php'),(1762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php'),(1763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php'),(1764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php'),(1765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php'),(1766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php'),(1767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php'),(1768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php'),(1769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php'),(1770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php'),(1771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php'),(1772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php'),(1773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php'),(1774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php'),(1775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php'),(1776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php'),(1777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php'),(1778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php'),(1779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php'),(1780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php'),(1781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php'),(1782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php'),(1783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php'),(1784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php'),(1785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php'),(1786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php'),(1787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php'),(1788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php'),(1789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php'),(1790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php'),(1791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php'),(1792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php'),(1793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php'),(1794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php'),(1795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php'),(1796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php'),(1797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php'),(1798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php'),(1799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php'),(1800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php'),(1801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php'),(1802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php'),(1803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php'),(1804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php'),(1805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php'),(1806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php'),(1807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php'),(1808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php'),(1809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php'),(1810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php'),(1811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php'),(1812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php'),(1813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php'),(1814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php'),(1815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php'),(1816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php'),(1817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php'),(1818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php'),(1819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php'),(1820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php'),(1821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php'),(1822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php'),(1823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php'),(1824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php'),(1825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php'),(1826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php'),(1827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php'),(1828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php'),(1829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php'),(1830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php'),(1831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php'),(1832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php'),(1833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php'),(1834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php'),(1835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php'),(1836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php'),(1837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php'),(1838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php'),(1839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php'),(1840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php'),(1841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php'),(1842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php'),(1843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php'),(1844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php'),(1845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php'),(1846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php'),(1847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php'),(1848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php'),(1849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php'),(1850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php'),(1851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js'),(1852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php'),(1853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php'),(1854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php'),(1855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php','wp-content/plugins/kadence-pro/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php'),(1856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/admin-starter-notice.js','wp-content/plugins/kadence-starter-templates/assets/admin-starter-notice.js'),(1857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/live-preview-base.css','wp-content/plugins/kadence-starter-templates/assets/css/live-preview-base.css'),(1858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/main.css','wp-content/plugins/kadence-starter-templates/assets/css/main.css'),(1859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/src/starter-import-export.scss','wp-content/plugins/kadence-starter-templates/assets/css/src/starter-import-export.scss'),(1860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/starter-import-export.css','wp-content/plugins/kadence-starter-templates/assets/css/starter-import-export.css'),(1861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/css/starter-templates.css','wp-content/plugins/kadence-starter-templates/assets/css/starter-templates.css'),(1862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/export/src/starter-import-export.js','wp-content/plugins/kadence-starter-templates/assets/export/src/starter-import-export.js'),(1863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/export/starter-import-export.min.js','wp-content/plugins/kadence-starter-templates/assets/export/starter-import-export.min.js'),(1864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/antic.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/antic.jpg'),(1865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/cormorant.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/cormorant.jpg'),(1866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/gilda.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/gilda.jpg'),(1867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/josefin.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/josefin.jpg'),(1868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/libre.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/libre.jpg'),(1869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/lora.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/lora.jpg'),(1870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/montserrat.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/montserrat.jpg'),(1871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/nunito.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/nunito.jpg'),(1872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/oswald.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/oswald.jpg'),(1873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/playfair.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/playfair.jpg'),(1874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/proza.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/proza.jpg'),(1875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/rubik.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/rubik.jpg'),(1876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/fonts/worksans.jpg','wp-content/plugins/kadence-starter-templates/assets/images/fonts/worksans.jpg'),(1877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/kadence_logo.png','wp-content/plugins/kadence-starter-templates/assets/images/kadence_logo.png'),(1878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/blob1.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/blob1.svg'),(1879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/blob2.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/blob2.svg'),(1880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/blob3.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/blob3.svg'),(1881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/cat-solid.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/cat-solid.svg'),(1882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/circle.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/circle.svg'),(1883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/diamond.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/diamond.svg'),(1884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/dog-solid.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/dog-solid.svg'),(1885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/face-smile-beam-solid.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/face-smile-beam-solid.svg'),(1886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/heart-solid.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/heart-solid.svg'),(1887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/hexagon.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/hexagon.svg'),(1888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/mug-hot-solid.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/mug-hot-solid.svg'),(1889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/rounded.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/rounded.svg'),(1890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/star.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/star.svg'),(1891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/thumbs-down-solid.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/thumbs-down-solid.svg'),(1892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/assets/images/masks/thumbs-up-solid.svg','wp-content/plugins/kadence-starter-templates/assets/images/masks/thumbs-up-solid.svg'),(1893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/class-kadence-starter-templates.php','wp-content/plugins/kadence-starter-templates/class-kadence-starter-templates.php'),(1894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/ai-modal-starter-intro.e746a316.jpg','wp-content/plugins/kadence-starter-templates/dist/images/ai-modal-starter-intro.e746a316.jpg'),(1895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/business-bg.3e0a5bf3.jpg','wp-content/plugins/kadence-starter-templates/dist/images/business-bg.3e0a5bf3.jpg'),(1896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/education-bg.c0fcc788.jpg','wp-content/plugins/kadence-starter-templates/dist/images/education-bg.c0fcc788.jpg'),(1897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/spa-bg.31525996.jpg','wp-content/plugins/kadence-starter-templates/dist/images/spa-bg.31525996.jpg'),(1898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/images/taxes-bg.fe6cba5c.jpg','wp-content/plugins/kadence-starter-templates/dist/images/taxes-bg.fe6cba5c.jpg'),(1899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/starter-templates.asset.php','wp-content/plugins/kadence-starter-templates/dist/starter-templates.asset.php'),(1900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/starter-templates.css','wp-content/plugins/kadence-starter-templates/dist/starter-templates.css'),(1901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/dist/starter-templates.js','wp-content/plugins/kadence-starter-templates/dist/starter-templates.js'),(1902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-author-meta.php','wp-content/plugins/kadence-starter-templates/inc/class-author-meta.php'),(1903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-customizer-importer.php','wp-content/plugins/kadence-starter-templates/inc/class-customizer-importer.php'),(1904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-customizer-option.php','wp-content/plugins/kadence-starter-templates/inc/class-customizer-option.php'),(1905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-downloader.php','wp-content/plugins/kadence-starter-templates/inc/class-downloader.php'),(1906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-helpers.php','wp-content/plugins/kadence-starter-templates/inc/class-helpers.php'),(1907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-actions.php','wp-content/plugins/kadence-starter-templates/inc/class-import-actions.php'),(1908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-customizer-option.php','wp-content/plugins/kadence-starter-templates/inc/class-import-customizer-option.php'),(1909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-depicter.php','wp-content/plugins/kadence-starter-templates/inc/class-import-depicter.php'),(1910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-elementor.php','wp-content/plugins/kadence-starter-templates/inc/class-import-elementor.php'),(1911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-export-control.php','wp-content/plugins/kadence-starter-templates/inc/class-import-export-control.php'),(1912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-export-option.php','wp-content/plugins/kadence-starter-templates/inc/class-import-export-option.php'),(1913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-fluent.php','wp-content/plugins/kadence-starter-templates/inc/class-import-fluent.php'),(1914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-import-give.php','wp-content/plugins/kadence-starter-templates/inc/class-import-give.php'),(1915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-importer.php','wp-content/plugins/kadence-starter-templates/inc/class-importer.php'),(1916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-logger-cli.php','wp-content/plugins/kadence-starter-templates/inc/class-logger-cli.php'),(1917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-logger.php','wp-content/plugins/kadence-starter-templates/inc/class-logger.php'),(1918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-plugin-check.php','wp-content/plugins/kadence-starter-templates/inc/class-plugin-check.php'),(1919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-starter-ai-events.php','wp-content/plugins/kadence-starter-templates/inc/class-starter-ai-events.php'),(1920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-template-database-importer.php','wp-content/plugins/kadence-starter-templates/inc/class-template-database-importer.php'),(1921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-template-library-rest-api.php','wp-content/plugins/kadence-starter-templates/inc/class-template-library-rest-api.php'),(1922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-widget-importer.php','wp-content/plugins/kadence-starter-templates/inc/class-widget-importer.php'),(1923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/class-wxr-importer.php','wp-content/plugins/kadence-starter-templates/inc/class-wxr-importer.php'),(1924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/App.php','wp-content/plugins/kadence-starter-templates/inc/resources/App.php'),(1925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Ai_Cache.php','wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Ai_Cache.php'),(1926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Block_Library_Cache.php','wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Block_Library_Cache.php'),(1927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Cache_Provider.php','wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Cache_Provider.php'),(1928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Config.php','wp-content/plugins/kadence-starter-templates/inc/resources/Cache/Config.php'),(1929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Container.php','wp-content/plugins/kadence-starter-templates/inc/resources/Container.php'),(1930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Hasher.php','wp-content/plugins/kadence-starter-templates/inc/resources/Hasher.php'),(1931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Cache_Primer.php','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Cache_Primer.php'),(1932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Downloader.php','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Downloader.php'),(1933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Downloader_Provider.php','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Downloader_Provider.php'),(1934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Editor.php','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Image_Editor.php'),(1935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Meta.php','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Meta.php'),(1936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Pexels_ID_Registry.php','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/Pexels_ID_Registry.php'),(1937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/WordPress_Importer.php','wp-content/plugins/kadence-starter-templates/inc/resources/Image_Downloader/WordPress_Importer.php'),(1938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Contracts/Terminable.php','wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Contracts/Terminable.php'),(1939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Collection.php','wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Collection.php'),(1940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Handler.php','wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Handler.php'),(1941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Provider.php','wp-content/plugins/kadence-starter-templates/inc/resources/Shutdown/Shutdown_Provider.php'),(1942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Traits/Image_Size_Trait.php','wp-content/plugins/kadence-starter-templates/inc/resources/Traits/Image_Size_Trait.php'),(1943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/inc/resources/Traits/Rest/Image_Trait.php','wp-content/plugins/kadence-starter-templates/inc/resources/Traits/Rest/Image_Trait.php'),(1944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/kadence-starter-templates.php','wp-content/plugins/kadence-starter-templates/kadence-starter-templates.php'),(1945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/languages/kadence-starter-templates.pot','wp-content/plugins/kadence-starter-templates/languages/kadence-starter-templates.pot'),(1946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/readme.txt','wp-content/plugins/kadence-starter-templates/readme.txt'),(1947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/autoload.php','wp-content/plugins/kadence-starter-templates/vendor/autoload.php'),(1948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/bin/stellar-uplink','wp-content/plugins/kadence-starter-templates/vendor/bin/stellar-uplink'),(1949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/ClassLoader.php','wp-content/plugins/kadence-starter-templates/vendor/composer/ClassLoader.php'),(1950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/InstalledVersions.php','wp-content/plugins/kadence-starter-templates/vendor/composer/InstalledVersions.php'),(1951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/composer/LICENSE'),(1952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_classmap.php','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_classmap.php'),(1953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_namespaces.php','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_namespaces.php'),(1954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_psr4.php','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_psr4.php'),(1955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_real.php','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_real.php'),(1956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_static.php','wp-content/plugins/kadence-starter-templates/vendor/composer/autoload_static.php'),(1957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/installed.json','wp-content/plugins/kadence-starter-templates/vendor/composer/installed.json'),(1958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/composer/installed.php','wp-content/plugins/kadence-starter-templates/vendor/composer/installed.php'),(1959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/adbario/php-dot-notation/src/Dot.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/adbario/php-dot-notation/src/Dot.php'),(1960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/adbario/php-dot-notation/src/helpers.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/adbario/php-dot-notation/src/helpers.php'),(1961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload-classmap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload-classmap.php'),(1962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload-files.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload-files.php'),(1963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/autoload.php'),(1964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Error.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Error.php'),(1965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Result.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Result.php'),(1966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Success.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/graham-campbell/result-type/src/Success.php'),(1967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/App.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/App.php'),(1968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/BuilderInterface.php'),(1969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/CallableBuilder.php'),(1970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClassBuilder.php'),(1971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ClosureBuilder.php'),(1972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Factory.php'),(1973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Parameter.php'),(1974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ReinitializableBuilderInterface.php'),(1975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/Resolver.php'),(1976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Builders/ValueBuilder.php'),(1977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Container.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/Container.php'),(1978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/ContainerException.php'),(1979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/NestedParseError.php'),(1980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/NotFoundException.php'),(1981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/lucatume/di52/src/ServiceProvider.php'),(1982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php'),(1983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/DateTimeImmutable.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/DateTimeImmutable.php'),(1984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ErrorHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ErrorHandler.php'),(1985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php'),(1986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php'),(1987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php'),(1988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php'),(1989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php'),(1990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php'),(1991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php'),(1992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php'),(1993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php'),(1994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php'),(1995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php'),(1996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php'),(1997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php'),(1998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php'),(1999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php'),(2000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php'),(2001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php'),(2002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php'),(2003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php'),(2004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php'),(2005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php'),(2006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php'),(2007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php'),(2008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php'),(2009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php'),(2010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php'),(2011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php'),(2012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php'),(2013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php'),(2014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php'),(2015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php'),(2016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php'),(2017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php'),(2018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php'),(2019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php'),(2020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php'),(2021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php'),(2022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php'),(2023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php'),(2024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php'),(2025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php'),(2026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php'),(2027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php'),(2028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php'),(2029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php'),(2030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php'),(2031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php'),(2032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Handler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Handler.php'),(2033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php'),(2034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php'),(2035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php'),(2036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php'),(2037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php'),(2038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php'),(2039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php'),(2040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php'),(2041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php'),(2042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php'),(2043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php'),(2044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php'),(2045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php'),(2046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NoopHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NoopHandler.php'),(2047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php'),(2048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/OverflowHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/OverflowHandler.php'),(2049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php'),(2050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessHandler.php'),(2051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php'),(2052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php'),(2053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php'),(2054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php'),(2055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php'),(2056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php'),(2057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php'),(2058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php'),(2059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php'),(2060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SendGridHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SendGridHandler.php'),(2061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php'),(2062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php'),(2063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php'),(2064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php'),(2065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SqsHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SqsHandler.php'),(2066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php'),(2067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php'),(2068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php'),(2069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php'),(2070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php'),(2071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php'),(2072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php'),(2073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php'),(2074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php'),(2075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php'),(2076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php'),(2077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/LogRecord.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/LogRecord.php'),(2078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Logger.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Logger.php'),(2079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php'),(2080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php'),(2081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php'),(2082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php'),(2083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php'),(2084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php'),(2085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php'),(2086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php'),(2087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php'),(2088,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php'),(2089,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php'),(2090,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php'),(2091,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php'),(2092,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Registry.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Registry.php'),(2093,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ResettableInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/ResettableInterface.php'),(2094,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/SignalHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/SignalHandler.php'),(2095,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Test/TestCase.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Test/TestCase.php'),(2096,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Utils.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/monolog/monolog/src/Monolog/Utils.php'),(2097,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/LazyOption.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/LazyOption.php'),(2098,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/None.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/None.php'),(2099,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Option.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Option.php'),(2100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Some.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/phpoption/phpoption/src/PhpOption/Some.php'),(2101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/ContainerExceptionInterface.php'),(2102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/ContainerInterface.php'),(2103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/container/src/NotFoundExceptionInterface.php'),(2104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/AbstractLogger.php'),(2105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/InvalidArgumentException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/InvalidArgumentException.php'),(2106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LogLevel.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LogLevel.php'),(2107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php'),(2108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareTrait.php'),(2109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerInterface.php'),(2110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerTrait.php'),(2111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/NullLogger.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/NullLogger.php'),(2112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/DummyTest.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/DummyTest.php'),(2113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/LoggerInterfaceTest.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/LoggerInterfaceTest.php'),(2114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/TestLogger.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/Test/TestLogger.php'),(2115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php'),(2116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/ContainerAdapter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/ContainerAdapter.php'),(2117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Container.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Container.php'),(2118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Providable.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Providable.php'),(2119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Provider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/Contracts/Provider.php'),(2120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/README.md'),(2121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-container/composer.json'),(2122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Exceptions/ImageDownloadException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Exceptions/ImageDownloadException.php'),(2123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/FileNameProcessor.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/FileNameProcessor.php'),(2124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageDownloader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageDownloader.php'),(2125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageProvider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/ImageProvider.php'),(2126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/DownloadedImage.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/DownloadedImage.php'),(2127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/ResponseAdapter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Models/ResponseAdapter.php'),(2128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/README.md'),(2129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Contracts/Sanitizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Contracts/Sanitizer.php'),(2130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/FileNameSanitizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/FileNameSanitizer.php'),(2131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/DefaultFileNameSanitizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/DefaultFileNameSanitizer.php'),(2132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/WPFileNameSanitizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/Sanitization/Sanitizers/WPFileNameSanitizer.php'),(2133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-image-downloader/composer.json'),(2134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/Formatters/ColoredLineFormatter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/Formatters/ColoredLineFormatter.php'),(2135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/Handlers/NullHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/Handlers/NullHandler.php'),(2136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/LogLevel.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/LogLevel.php'),(2137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/LogProvider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/LogProvider.php'),(2138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/README.md'),(2139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-log/composer.json'),(2140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Contracts/Storage.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Contracts/Storage.php'),(2141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Drivers/LocalStorage.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Drivers/LocalStorage.php'),(2142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/NotFoundException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/NotFoundException.php'),(2143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/StorageException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/Exceptions/StorageException.php'),(2144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/README.md'),(2145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/prophecy-storage/composer.json'),(2146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Client.php'),(2147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url.php'),(2148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Auth_Url_Cache_Decorator.php'),(2149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Auth_Url.php'),(2150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Contracts/Token_Authorizer.php'),(2151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer.php'),(2152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Auth/Token_Authorizer_Cache_Decorator.php'),(2153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Client.php'),(2154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Contracts/Client_V3.php'),(2155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/V3/Provider.php'),(2156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/API/Validation_Response.php'),(2157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Ajax.php'),(2158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Field.php'),(2159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/License_Field.php'),(2160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Notice.php'),(2161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Package_Handler.php'),(2162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Plugins_Page.php'),(2163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Provider.php'),(2164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Admin/Update_Prevention.php'),(2165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Action_Manager.php'),(2166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Connect_Controller.php'),(2167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Admin/Disconnect_Controller.php'),(2168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Auth_Url_Builder.php'),(2169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Authorizer.php'),(2170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/License_Manager.php'),(2171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Domain_Mapping.php'),(2172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Main_Site.php'),(2173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subdomain.php'),(2174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Processors/Multisite_Subfolder.php'),(2175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/License/Pipeline/Traits/Multisite_Trait.php'),(2176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Nonce.php'),(2177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Provider.php'),(2178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Connector.php'),(2179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Contracts/Token_Manager.php'),(2180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Disconnector.php'),(2181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Exceptions/InvalidTokenException.php'),(2182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Network_Token_Manager.php'),(2183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Managers/Token_Manager.php'),(2184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Auth/Token/Token_Factory.php'),(2185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Admin/Authorize_Button_Controller.php'),(2186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Components/Controller.php'),(2187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Config.php'),(2188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Abstract_Provider.php'),(2189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Contracts/Provider_Interface.php'),(2190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Exceptions/ResourceAlreadyRegisteredException.php'),(2191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/API.php'),(2192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Expired_Key.php'),(2193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Message_Abstract.php'),(2194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Licensed.php'),(2195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Network_Unlicensed.php'),(2196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Nework_Expired.php'),(2197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unlicensed.php'),(2198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Unreachable.php'),(2199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Available.php'),(2200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Update_Now.php'),(2201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Messages/Valid_Key.php'),(2202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice.php'),(2203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Controller.php'),(2204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Notice_Handler.php'),(2205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Notice/Provider.php'),(2206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Pipeline/Pipeline.php'),(2207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Register.php'),(2208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Collection.php'),(2209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Path_FilterIterator.php'),(2210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Plugin_FilterIterator.php'),(2211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Filters/Service_FilterIterator.php'),(2212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/License.php'),(2213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Plugin.php'),(2214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Resource.php'),(2215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Resources/Service.php'),(2216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Site/Data.php'),(2217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Traits/With_Debugging.php'),(2218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Uplink.php'),(2219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Checks.php'),(2220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/Utils/Sanitize.php'),(2221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Contracts/View.php'),(2222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Exceptions/FileNotFoundException.php'),(2223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/Provider.php'),(2224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/View/WordPress_View.php'),(2225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/Uplink/functions.php'),(2226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/admin-views/fields/settings.php'),(2227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/assets/css/main.css','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/assets/css/main.css'),(2228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/assets/js/key-admin.js'),(2229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/authorize-button.php'),(2230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/index.php'),(2231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/admin/notice.php'),(2232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/stellarwp/uplink/src/views/index.php'),(2233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/deprecation-contracts/function.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/deprecation-contracts/function.php'),(2234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/CHANGELOG.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/CHANGELOG.md'),(2235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/ExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/ExceptionInterface.php'),(2236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/FileNotFoundException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/FileNotFoundException.php'),(2237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/IOException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/IOException.php'),(2238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/IOExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/IOExceptionInterface.php'),(2239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/InvalidArgumentException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/InvalidArgumentException.php'),(2240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/RuntimeException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Exception/RuntimeException.php'),(2241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Filesystem.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Filesystem.php'),(2242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/LICENSE'),(2243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Path.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/Path.php'),(2244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/README.md'),(2245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/filesystem/composer.json'),(2246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/AmpHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/AmpHttpClient.php'),(2247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/AsyncDecoratorTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/AsyncDecoratorTrait.php'),(2248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CHANGELOG.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CHANGELOG.md'),(2249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CachingHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CachingHttpClient.php'),(2250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/DataChunk.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/DataChunk.php'),(2251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/ErrorChunk.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/ErrorChunk.php'),(2252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/FirstChunk.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/FirstChunk.php'),(2253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/InformationalChunk.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/InformationalChunk.php'),(2254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/LastChunk.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/LastChunk.php'),(2255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/ServerSentEvent.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Chunk/ServerSentEvent.php'),(2256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CurlHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/CurlHttpClient.php'),(2257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DataCollector/HttpClientDataCollector.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DataCollector/HttpClientDataCollector.php'),(2258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DecoratorTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DecoratorTrait.php'),(2259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DependencyInjection/HttpClientPass.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/DependencyInjection/HttpClientPass.php'),(2260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/EventSourceHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/EventSourceHttpClient.php'),(2261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/ClientException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/ClientException.php'),(2262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/EventSourceException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/EventSourceException.php'),(2263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/HttpExceptionTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/HttpExceptionTrait.php'),(2264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/InvalidArgumentException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/InvalidArgumentException.php'),(2265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/JsonException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/JsonException.php'),(2266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/RedirectionException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/RedirectionException.php'),(2267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/ServerException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/ServerException.php'),(2268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/TimeoutException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/TimeoutException.php'),(2269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/TransportException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Exception/TransportException.php'),(2270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpClient.php'),(2271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpClientTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpClientTrait.php'),(2272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpOptions.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttpOptions.php'),(2273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttplugClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/HttplugClient.php'),(2274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpBody.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpBody.php'),(2275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpClientState.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpClientState.php'),(2276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpListener.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpListener.php'),(2277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpResolver.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/AmpResolver.php'),(2278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/Canary.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/Canary.php'),(2279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/ClientState.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/ClientState.php'),(2280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/CurlClientState.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/CurlClientState.php'),(2281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/DnsCache.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/DnsCache.php'),(2282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/HttplugWaitLoop.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/HttplugWaitLoop.php'),(2283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/NativeClientState.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/NativeClientState.php'),(2284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/PushedResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Internal/PushedResponse.php'),(2285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/LICENSE'),(2286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/MockHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/MockHttpClient.php'),(2287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/NativeHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/NativeHttpClient.php'),(2288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/NoPrivateNetworkHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/NoPrivateNetworkHttpClient.php'),(2289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Psr18Client.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Psr18Client.php'),(2290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/README.md'),(2291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AmpResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AmpResponse.php'),(2292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AsyncContext.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AsyncContext.php'),(2293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AsyncResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/AsyncResponse.php'),(2294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/CommonResponseTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/CommonResponseTrait.php'),(2295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/CurlResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/CurlResponse.php'),(2296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/HttplugPromise.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/HttplugPromise.php'),(2297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/MockResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/MockResponse.php'),(2298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/NativeResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/NativeResponse.php'),(2299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/ResponseStream.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/ResponseStream.php'),(2300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/StreamWrapper.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/StreamWrapper.php'),(2301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/StreamableInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/StreamableInterface.php'),(2302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/TraceableResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/TraceableResponse.php'),(2303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/TransportResponseTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Response/TransportResponseTrait.php'),(2304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Retry/GenericRetryStrategy.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Retry/GenericRetryStrategy.php'),(2305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Retry/RetryStrategyInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/Retry/RetryStrategyInterface.php'),(2306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/RetryableHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/RetryableHttpClient.php'),(2307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/ScopingHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/ScopingHttpClient.php'),(2308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/TraceableHttpClient.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/TraceableHttpClient.php'),(2309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client/composer.json'),(2310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/CHANGELOG.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/CHANGELOG.md'),(2311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ChunkInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ChunkInterface.php'),(2312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ClientExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ClientExceptionInterface.php'),(2313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php'),(2314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ExceptionInterface.php'),(2315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/HttpExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/HttpExceptionInterface.php'),(2316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php'),(2317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ServerExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/ServerExceptionInterface.php'),(2318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php'),(2319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TransportExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Exception/TransportExceptionInterface.php'),(2320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/HttpClientInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/HttpClientInterface.php'),(2321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/LICENSE'),(2322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/README.md'),(2323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseInterface.php'),(2324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseStreamInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/ResponseStreamInterface.php'),(2325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/Fixtures/web/index.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/Fixtures/web/index.php'),(2326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/HttpClientTestCase.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/HttpClientTestCase.php'),(2327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/TestHttpServer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/Test/TestHttpServer.php'),(2328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-client-contracts/composer.json'),(2329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeader.php'),(2330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeaderItem.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/AcceptHeaderItem.php'),(2331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/BinaryFileResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/BinaryFileResponse.php'),(2332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/CHANGELOG.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/CHANGELOG.md'),(2333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Cookie.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Cookie.php'),(2334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/BadRequestException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/BadRequestException.php'),(2335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/ConflictingHeadersException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/ConflictingHeadersException.php'),(2336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/JsonException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/JsonException.php'),(2337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/RequestExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/RequestExceptionInterface.php'),(2338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/SessionNotFoundException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/SessionNotFoundException.php'),(2339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/SuspiciousOperationException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Exception/SuspiciousOperationException.php'),(2340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ExpressionRequestMatcher.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ExpressionRequestMatcher.php'),(2341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/AccessDeniedException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/AccessDeniedException.php'),(2342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/CannotWriteFileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/CannotWriteFileException.php'),(2343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/ExtensionFileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/ExtensionFileException.php'),(2344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileException.php'),(2345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileNotFoundException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FileNotFoundException.php'),(2346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FormSizeFileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/FormSizeFileException.php'),(2347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/IniSizeFileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/IniSizeFileException.php'),(2348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoFileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoFileException.php'),(2349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoTmpDirFileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/NoTmpDirFileException.php'),(2350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/PartialFileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/PartialFileException.php'),(2351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UnexpectedTypeException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UnexpectedTypeException.php'),(2352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UploadException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Exception/UploadException.php'),(2353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/File.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/File.php'),(2354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Stream.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/Stream.php'),(2355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/UploadedFile.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/File/UploadedFile.php'),(2356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/FileBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/FileBag.php'),(2357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/HeaderBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/HeaderBag.php'),(2358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/HeaderUtils.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/HeaderUtils.php'),(2359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/InputBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/InputBag.php'),(2360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/IpUtils.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/IpUtils.php'),(2361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/JsonResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/JsonResponse.php'),(2362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/LICENSE'),(2363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ParameterBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ParameterBag.php'),(2364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/README.md'),(2365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php'),(2366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php'),(2367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RedirectResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RedirectResponse.php'),(2368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Request.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Request.php'),(2369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcher.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcher.php'),(2370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcherInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestMatcherInterface.php'),(2371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestStack.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/RequestStack.php'),(2372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Response.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Response.php'),(2373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ResponseHeaderBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ResponseHeaderBag.php'),(2374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ServerBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/ServerBag.php'),(2375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBag.php'),(2376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php'),(2377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php'),(2378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php'),(2379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBag.php'),(2380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBagInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Flash/FlashBagInterface.php'),(2381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Session.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Session.php'),(2382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagInterface.php'),(2383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagProxy.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionBagProxy.php'),(2384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactory.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactory.php'),(2385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactoryInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionFactoryInterface.php'),(2386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionInterface.php'),(2387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionUtils.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/SessionUtils.php'),(2388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php'),(2389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php'),(2390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php'),(2391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php'),(2392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php'),(2393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php'),(2394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php'),(2395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php'),(2396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php'),(2397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php'),(2398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php'),(2399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php'),(2400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MetadataBag.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MetadataBag.php'),(2401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php'),(2402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php'),(2403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php'),(2404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorage.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorage.php'),(2405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php'),(2406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php'),(2407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php'),(2408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php'),(2409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php'),(2410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/ServiceSessionFactory.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/ServiceSessionFactory.php'),(2411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php'),(2412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Session/Storage/SessionStorageInterface.php'),(2413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/StreamedResponse.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/StreamedResponse.php'),(2414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php'),(2415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php'),(2416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php'),(2417,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php'),(2418,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php'),(2419,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php'),(2420,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php'),(2421,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php'),(2422,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php'),(2423,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php'),(2424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/UrlHelper.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/UrlHelper.php'),(2425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/http-foundation/composer.json'),(2426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Address.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Address.php'),(2427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/BodyRendererInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/BodyRendererInterface.php'),(2428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/CHANGELOG.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/CHANGELOG.md'),(2429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/CharacterStream.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/CharacterStream.php'),(2430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/DkimOptions.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/DkimOptions.php'),(2431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/DkimSigner.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/DkimSigner.php'),(2432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMime.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMime.php'),(2433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeEncrypter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeEncrypter.php'),(2434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeSigner.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Crypto/SMimeSigner.php'),(2435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php'),(2436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Email.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Email.php'),(2437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/AddressEncoderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/AddressEncoderInterface.php'),(2438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64ContentEncoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64ContentEncoder.php'),(2439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64Encoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64Encoder.php'),(2440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64MimeHeaderEncoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Base64MimeHeaderEncoder.php'),(2441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/ContentEncoderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/ContentEncoderInterface.php'),(2442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/EightBitContentEncoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/EightBitContentEncoder.php'),(2443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/EncoderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/EncoderInterface.php'),(2444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/IdnAddressEncoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/IdnAddressEncoder.php'),(2445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/MimeHeaderEncoderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/MimeHeaderEncoderInterface.php'),(2446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpContentEncoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpContentEncoder.php'),(2447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpEncoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpEncoder.php'),(2448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpMimeHeaderEncoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/QpMimeHeaderEncoder.php'),(2449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Rfc2231Encoder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Encoder/Rfc2231Encoder.php'),(2450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/AddressEncoderException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/AddressEncoderException.php'),(2451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/ExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/ExceptionInterface.php'),(2452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/InvalidArgumentException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/InvalidArgumentException.php'),(2453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/LogicException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/LogicException.php'),(2454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/RfcComplianceException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/RfcComplianceException.php'),(2455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/RuntimeException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Exception/RuntimeException.php'),(2456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/FileBinaryMimeTypeGuesser.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/FileBinaryMimeTypeGuesser.php'),(2457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/FileinfoMimeTypeGuesser.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/FileinfoMimeTypeGuesser.php'),(2458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/AbstractHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/AbstractHeader.php'),(2459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/DateHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/DateHeader.php'),(2460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/HeaderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/HeaderInterface.php'),(2461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/Headers.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/Headers.php'),(2462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/IdentificationHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/IdentificationHeader.php'),(2463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/MailboxHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/MailboxHeader.php'),(2464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/MailboxListHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/MailboxListHeader.php'),(2465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/ParameterizedHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/ParameterizedHeader.php'),(2466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/PathHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/PathHeader.php'),(2467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/UnstructuredHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Header/UnstructuredHeader.php'),(2468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/LICENSE'),(2469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Message.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Message.php'),(2470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MessageConverter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MessageConverter.php'),(2471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypeGuesserInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypeGuesserInterface.php'),(2472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypes.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypes.php'),(2473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypesInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/MimeTypesInterface.php'),(2474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/AbstractMultipartPart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/AbstractMultipartPart.php'),(2475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/AbstractPart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/AbstractPart.php'),(2476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/DataPart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/DataPart.php'),(2477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/MessagePart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/MessagePart.php'),(2478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/AlternativePart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/AlternativePart.php'),(2479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/DigestPart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/DigestPart.php'),(2480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/FormDataPart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/FormDataPart.php'),(2481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/MixedPart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/MixedPart.php'),(2482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/RelatedPart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/Multipart/RelatedPart.php'),(2483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/SMimePart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/SMimePart.php'),(2484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/TextPart.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Part/TextPart.php'),(2485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/README.md'),(2486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/RawMessage.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/RawMessage.php'),(2487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Resources/bin/update_mime_types.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Resources/bin/update_mime_types.php'),(2488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAddressContains.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAddressContains.php'),(2489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAttachmentCount.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailAttachmentCount.php'),(2490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHasHeader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHasHeader.php'),(2491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHeaderSame.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHeaderSame.php'),(2492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php'),(2493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailTextBodyContains.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/Test/Constraint/EmailTextBodyContains.php'),(2494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/mime/composer.json'),(2495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/Ctype.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/Ctype.php'),(2496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/LICENSE'),(2497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/README.md'),(2498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php'),(2499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap80.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap80.php'),(2500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-ctype/composer.json'),(2501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/Grapheme.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/Grapheme.php'),(2502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/LICENSE'),(2503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/README.md'),(2504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap.php'),(2505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap80.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/bootstrap80.php'),(2506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-grapheme/composer.json'),(2507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Idn.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Idn.php'),(2508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Info.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Info.php'),(2509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/LICENSE'),(2510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/README.md'),(2511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php'),(2512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/Regex.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/Regex.php'),(2513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/deviation.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/deviation.php'),(2514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php'),(2515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php'),(2516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php'),(2517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/ignored.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/ignored.php'),(2518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/mapped.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/mapped.php'),(2519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/virama.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/Resources/unidata/virama.php'),(2520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap.php'),(2521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap80.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/bootstrap80.php'),(2522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-idn/composer.json'),(2523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/LICENSE'),(2524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Normalizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Normalizer.php'),(2525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/README.md'),(2526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php'),(2527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php'),(2528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php'),(2529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php'),(2530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php'),(2531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap.php'),(2532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap80.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/bootstrap80.php'),(2533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-intl-normalizer/composer.json'),(2534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/LICENSE'),(2535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Mbstring.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Mbstring.php'),(2536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/README.md'),(2537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php'),(2538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php'),(2539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php'),(2540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php'),(2541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php'),(2542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap80.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap80.php'),(2543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-mbstring/composer.json'),(2544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/LICENSE'),(2545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/Php72.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/Php72.php'),(2546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/README.md'),(2547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/bootstrap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/bootstrap.php'),(2548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php72/composer.json'),(2549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/LICENSE'),(2550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/Php73.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/Php73.php'),(2551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/README.md'),(2552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/Resources/stubs/JsonException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/Resources/stubs/JsonException.php'),(2553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/bootstrap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/bootstrap.php'),(2554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php73/composer.json'),(2555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/LICENSE'),(2556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Php80.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Php80.php'),(2557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/PhpToken.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/PhpToken.php'),(2558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/README.md'),(2559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Attribute.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Attribute.php'),(2560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/PhpToken.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/PhpToken.php'),(2561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Stringable.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/Stringable.php'),(2562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php'),(2563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/ValueError.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/Resources/stubs/ValueError.php'),(2564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php'),(2565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/polyfill-php80/composer.json'),(2566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Attribute/Required.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Attribute/Required.php'),(2567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Attribute/SubscribedService.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Attribute/SubscribedService.php'),(2568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/CHANGELOG.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/CHANGELOG.md'),(2569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/LICENSE'),(2570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/README.md'),(2571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ResetInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ResetInterface.php'),(2572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceLocatorTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceLocatorTrait.php'),(2573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceProviderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceProviderInterface.php'),(2574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberInterface.php'),(2575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/ServiceSubscriberTrait.php'),(2576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTest.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/Test/ServiceLocatorTest.php'),(2577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/service-contracts/composer.json'),(2578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/AbstractString.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/AbstractString.php'),(2579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/AbstractUnicodeString.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/AbstractUnicodeString.php'),(2580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/ByteString.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/ByteString.php'),(2581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/CHANGELOG.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/CHANGELOG.md'),(2582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/CodePointString.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/CodePointString.php'),(2583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/ExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/ExceptionInterface.php'),(2584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/InvalidArgumentException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/InvalidArgumentException.php'),(2585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/RuntimeException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Exception/RuntimeException.php'),(2586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/EnglishInflector.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/EnglishInflector.php'),(2587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/FrenchInflector.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/FrenchInflector.php'),(2588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/InflectorInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Inflector/InflectorInterface.php'),(2589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/LICENSE'),(2590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/LazyString.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/LazyString.php'),(2591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/README.md'),(2592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_wide.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_wide.php'),(2593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_zero.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/data/wcswidth_table_zero.php'),(2594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/functions.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Resources/functions.php'),(2595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Slugger/AsciiSlugger.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Slugger/AsciiSlugger.php'),(2596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Slugger/SluggerInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/Slugger/SluggerInterface.php'),(2597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/UnicodeString.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/UnicodeString.php'),(2598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/string/composer.json'),(2599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/CHANGELOG.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/CHANGELOG.md'),(2600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/LICENSE','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/LICENSE'),(2601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/LocaleAwareInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/LocaleAwareInterface.php'),(2602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/README.md','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/README.md'),(2603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/Test/TranslatorTest.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/Test/TranslatorTest.php'),(2604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatableInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatableInterface.php'),(2605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorInterface.php'),(2606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorTrait.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/TranslatorTrait.php'),(2607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/composer.json','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/symfony/translation-contracts/composer.json'),(2608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Dotenv.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Dotenv.php'),(2609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ExceptionInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ExceptionInterface.php'),(2610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php'),(2611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidFileException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidFileException.php'),(2612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidPathException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/InvalidPathException.php'),(2613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ValidationException.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Exception/ValidationException.php'),(2614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Loader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Loader.php'),(2615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php'),(2616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Resolver.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/Resolver.php'),(2617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Entry.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Entry.php'),(2618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/EntryParser.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/EntryParser.php'),(2619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lexer.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lexer.php'),(2620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lines.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Lines.php'),(2621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Parser.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Parser.php'),(2622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/ParserInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/ParserInterface.php'),(2623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Value.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Parser/Value.php'),(2624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php'),(2625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php'),(2626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php'),(2627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php'),(2628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php'),(2629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php'),(2630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php'),(2631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php'),(2632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php'),(2633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php'),(2634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php'),(2635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php'),(2636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php'),(2637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/AdapterRepository.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/AdapterRepository.php'),(2638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php'),(2639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Repository/RepositoryInterface.php'),(2640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Paths.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Paths.php'),(2641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Reader.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/File/Reader.php'),(2642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/FileStore.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/FileStore.php'),(2643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreBuilder.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreBuilder.php'),(2644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreInterface.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StoreInterface.php'),(2645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StringStore.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Store/StringStore.php'),(2646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Regex.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Regex.php'),(2647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Str.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Util/Str.php'),(2648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Validator.php','wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Validator.php'),(2649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/Importer.php','wp-content/plugins/kadence-starter-templates/wxr-importer/Importer.php'),(2650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/WPImporterLogger.php','wp-content/plugins/kadence-starter-templates/wxr-importer/WPImporterLogger.php'),(2651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/WPImporterLoggerCLI.php','wp-content/plugins/kadence-starter-templates/wxr-importer/WPImporterLoggerCLI.php'),(2652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/WXRImportInfo.php','wp-content/plugins/kadence-starter-templates/wxr-importer/WXRImportInfo.php'),(2653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/kadence-starter-templates/wxr-importer/WXRImporter.php','wp-content/plugins/kadence-starter-templates/wxr-importer/WXRImporter.php'),(2654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/PackageLoader.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/PackageLoader.php'),(2655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/autoload.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/autoload.php'),(2656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/DebugItem.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/DebugItem.php'),(2657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/ShortPixelLogger.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/ShortPixelLogger.php'),(2658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/view-debug-box.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src/view-debug-box.php'),(2659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/NoticeController.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/NoticeController.php'),(2660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/NoticeModel.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/NoticeModel.php'),(2661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Libraries/Unserialize/DisallowedClassesSubstitutor.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Libraries/Unserialize/DisallowedClassesSubstitutor.php'),(2662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Libraries/Unserialize/Unserialize.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Libraries/Unserialize/Unserialize.php'),(2663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/Elementor.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/Elementor.php'),(2664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/WpBakery.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/WpBakery.php'),(2665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/YoastSeo.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Modules/YoastSeo.php'),(2666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Replacer.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/replacer/src/Replacer.php'),(2667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/DataProvider/DataProvider.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/DataProvider/DataProvider.php'),(2668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/DataProvider/MysqlDataProvider.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/DataProvider/MysqlDataProvider.php'),(2669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Item.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Item.php'),(2670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Queue/Queue.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Queue/Queue.php'),(2671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Queue/WPQ.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Queue/WPQ.php'),(2672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/ShortQ.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/ShortQ.php'),(2673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Status.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Status.php'),(2674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Tests/Tests.php','wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/shortq/src/Tests/Tests.php'),(2675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/BuildAutoLoader.php','wp-content/plugins/shortpixel-image-optimiser/class/BuildAutoLoader.php'),(2676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/AdminController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/AdminController.php'),(2677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/AdminNoticesController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/AdminNoticesController.php'),(2678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/AjaxController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/AjaxController.php'),(2679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ApiController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ApiController.php'),(2680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ApiKeyController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ApiKeyController.php'),(2681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/BulkController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/BulkController.php'),(2682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/CacheController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/CacheController.php'),(2683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/CronController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/CronController.php'),(2684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ErrorController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ErrorController.php'),(2685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/FileSystemController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/FileSystemController.php'),(2686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/FrontController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/FrontController.php'),(2687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ImageEditorController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ImageEditorController.php'),(2688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/OptimizeController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/OptimizeController.php'),(2689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/OtherMediaController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/OtherMediaController.php'),(2690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/CustomQueue.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/CustomQueue.php'),(2691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/MediaLibraryQueue.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/MediaLibraryQueue.php'),(2692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/Queue.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/Queue/Queue.php'),(2693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/QuotaController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/QuotaController.php'),(2694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/ResponseController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/ResponseController.php'),(2695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/SettingsController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/SettingsController.php'),(2696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/StatsController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/StatsController.php'),(2697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/BulkViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/BulkViewController.php'),(2698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/EditMediaViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/EditMediaViewController.php'),(2699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/ListMediaViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/ListMediaViewController.php'),(2700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/MultiSiteViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/MultiSiteViewController.php'),(2701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaFolderViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaFolderViewController.php'),(2702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaScanViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaScanViewController.php'),(2703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller/View/OtherMediaViewController.php'),(2704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Controller.php','wp-content/plugins/shortpixel-image-optimiser/class/Controller.php'),(2705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Helper/DownloadHelper.php','wp-content/plugins/shortpixel-image-optimiser/class/Helper/DownloadHelper.php'),(2706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Helper/InstallHelper.php','wp-content/plugins/shortpixel-image-optimiser/class/Helper/InstallHelper.php'),(2707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Helper/UiHelper.php','wp-content/plugins/shortpixel-image-optimiser/class/Helper/UiHelper.php'),(2708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Helper/UtilHelper.php','wp-content/plugins/shortpixel-image-optimiser/class/Helper/UtilHelper.php'),(2709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AccessModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AccessModel.php'),(2710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNoticeModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNoticeModel.php'),(2711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNotice.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNotice.php'),(2712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNoticeRepeat.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNoticeRepeat.php'),(2713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNoticeRepeatLong.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ApiNoticeRepeatLong.php'),(2714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/AvifNotice.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/AvifNotice.php'),(2715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/CompatNotice.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/CompatNotice.php'),(2716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/LegacyNotice.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/LegacyNotice.php'),(2717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ListviewNotice.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/ListviewNotice.php'),(2718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/LitespeedCache.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/LitespeedCache.php'),(2719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/NewExclusionFormat.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/NewExclusionFormat.php'),(2720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/NextgenNotice.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/NextgenNotice.php'),(2721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/QuotaNoticeMonth.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/QuotaNoticeMonth.php'),(2722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/QuotaNoticeReached.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/QuotaNoticeReached.php'),(2723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/UnlistedNotice.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/AdminNotices/UnlistedNotice.php'),(2724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/ApiKeyModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/ApiKeyModel.php'),(2725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/CacheModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/CacheModel.php'),(2726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/ApiConverter.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/ApiConverter.php'),(2727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/BMPConverter.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/BMPConverter.php'),(2728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/Converter.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/Converter.php'),(2729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/MediaLibraryConverter.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/MediaLibraryConverter.php'),(2730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/PNGConverter.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Converter/PNGConverter.php'),(2731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/EnvironmentModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/EnvironmentModel.php'),(2732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/File/DirectoryModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/File/DirectoryModel.php'),(2733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/File/DirectoryOtherMediaModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/File/DirectoryOtherMediaModel.php'),(2734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/File/FileModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/File/FileModel.php'),(2735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/FrontImage.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/FrontImage.php'),(2736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/CustomImageModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/CustomImageModel.php'),(2737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageConvertMeta.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageConvertMeta.php'),(2738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageMeta.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageMeta.php'),(2739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageModel.php'),(2740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageThumbnailMeta.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/ImageThumbnailMeta.php'),(2741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/MediaLibraryModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/MediaLibraryModel.php'),(2742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/MediaLibraryThumbnailModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/Image/MediaLibraryThumbnailModel.php'),(2743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/ResponseModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/ResponseModel.php'),(2744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/SettingsModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/SettingsModel.php'),(2745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model/StatsModel.php','wp-content/plugins/shortpixel-image-optimiser/class/Model/StatsModel.php'),(2746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/Model.php','wp-content/plugins/shortpixel-image-optimiser/class/Model.php'),(2747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/ViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/ViewController.php'),(2748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/MediaFileRenamer.php','wp-content/plugins/shortpixel-image-optimiser/class/external/MediaFileRenamer.php'),(2749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/Woocommerce.php','wp-content/plugins/shortpixel-image-optimiser/class/external/Woocommerce.php'),(2750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/cache.php','wp-content/plugins/shortpixel-image-optimiser/class/external/cache.php'),(2751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/cloudflare.php','wp-content/plugins/shortpixel-image-optimiser/class/external/cloudflare.php'),(2752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/formidable.php','wp-content/plugins/shortpixel-image-optimiser/class/external/formidable.php'),(2753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/gravityforms.php','wp-content/plugins/shortpixel-image-optimiser/class/external/gravityforms.php'),(2754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/image-galleries.php','wp-content/plugins/shortpixel-image-optimiser/class/external/image-galleries.php'),(2755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/nextgen/nextGenController.php','wp-content/plugins/shortpixel-image-optimiser/class/external/nextgen/nextGenController.php'),(2756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/nextgen/nextGenViewController.php','wp-content/plugins/shortpixel-image-optimiser/class/external/nextgen/nextGenViewController.php'),(2757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/offload/Offloader.php','wp-content/plugins/shortpixel-image-optimiser/class/external/offload/Offloader.php'),(2758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/offload/virtual-filesystem.php','wp-content/plugins/shortpixel-image-optimiser/class/external/offload/virtual-filesystem.php'),(2759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/offload/wp-offload-media.php','wp-content/plugins/shortpixel-image-optimiser/class/external/offload/wp-offload-media.php'),(2760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/pantheon.php','wp-content/plugins/shortpixel-image-optimiser/class/external/pantheon.php'),(2761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/query-monitor.php','wp-content/plugins/shortpixel-image-optimiser/class/external/query-monitor.php'),(2762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/spai.php','wp-content/plugins/shortpixel-image-optimiser/class/external/spai.php'),(2763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/themes/total-theme.php','wp-content/plugins/shortpixel-image-optimiser/class/external/themes/total-theme.php'),(2764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/uncode.php','wp-content/plugins/shortpixel-image-optimiser/class/external/uncode.php'),(2765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/visualcomposer.php','wp-content/plugins/shortpixel-image-optimiser/class/external/visualcomposer.php'),(2766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-base.php','wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-base.php'),(2767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-bulk.php','wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-bulk.php'),(2768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-single.php','wp-content/plugins/shortpixel-image-optimiser/class/external/wp-cli/wp-cli-single.php'),(2769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-bulk-special.php','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-bulk-special.php'),(2770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-dashboard.php','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-dashboard.php'),(2771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-finished.php','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-finished.php'),(2772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-process.php','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-process.php'),(2773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-progressbar.php','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-progressbar.php'),(2774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-selection.php','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-selection.php'),(2775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-summary.php','wp-content/plugins/shortpixel-image-optimiser/class/view/bulk/part-summary.php'),(2776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-othermedia-bottom.php','wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-othermedia-bottom.php'),(2777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-othermedia-top.php','wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-othermedia-top.php'),(2778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-single-folder.php','wp-content/plugins/shortpixel-image-optimiser/class/view/custom/part-single-folder.php'),(2779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-advanced.php','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-advanced.php'),(2780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-cloudflare.php','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-cloudflare.php'),(2781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-debug.php','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-debug.php'),(2782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-general.php','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-general.php'),(2783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-nokey.php','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-nokey.php'),(2784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-optpie.php','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-optpie.php'),(2785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-tools.php','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-tools.php'),(2786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-wso.php','wp-content/plugins/shortpixel-image-optimiser/class/view/settings/part-wso.php'),(2787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/shortpixel-feedback.php','wp-content/plugins/shortpixel-image-optimiser/class/view/shortpixel-feedback.php'),(2788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/shortpixel-plugin-request.php','wp-content/plugins/shortpixel-image-optimiser/class/view/shortpixel-plugin-request.php'),(2789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-comparer.php','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-comparer.php'),(2790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-inline-help.php','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-inline-help.php'),(2791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-inline-modal.php','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-inline-modal.php'),(2792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-single-actions.php','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-single-actions.php'),(2793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-svgloader.php','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-svgloader.php'),(2794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-upgrade-options.php','wp-content/plugins/shortpixel-image-optimiser/class/view/snippets/part-upgrade-options.php'),(2795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-bulk.php','wp-content/plugins/shortpixel-image-optimiser/class/view/view-bulk.php'),(2796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-edit-media.php','wp-content/plugins/shortpixel-image-optimiser/class/view/view-edit-media.php'),(2797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-list-media.php','wp-content/plugins/shortpixel-image-optimiser/class/view/view-list-media.php'),(2798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-network-settings.php','wp-content/plugins/shortpixel-image-optimiser/class/view/view-network-settings.php'),(2799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media-folder.php','wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media-folder.php'),(2800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media-scan.php','wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media-scan.php'),(2801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media.php','wp-content/plugins/shortpixel-image-optimiser/class/view/view-other-media.php'),(2802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/view/view-settings.php','wp-content/plugins/shortpixel-image-optimiser/class/view/view-settings.php'),(2803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/class/wp-shortpixel-settings.php','wp-content/plugins/shortpixel-image-optimiser/class/wp-shortpixel-settings.php'),(2804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/checkmark.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/checkmark.svg'),(2805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/dashboard-background.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/dashboard-background.svg'),(2806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/loading-hourglass.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/loading-hourglass.svg'),(2807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/optimize-arrow-right.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/optimize-arrow-right.svg'),(2808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/over-quota.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/over-quota.svg'),(2809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/placeholder.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/placeholder.svg'),(2810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/robot-book-summary.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/bulk/robot-book-summary.svg'),(2811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/fastpixel-logo.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/fastpixel-logo.svg'),(2812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/filebrowser/folder-closed.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/filebrowser/folder-closed.svg'),(2813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/filebrowser/folder-open.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/filebrowser/folder-open.svg'),(2814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/img/svg/sp-logo-regular.svg','wp-content/plugins/shortpixel-image-optimiser/res/img/svg/sp-logo-regular.svg'),(2815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/debug.js','wp-content/plugins/shortpixel-image-optimiser/res/js/debug.js'),(2816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.knob.js','wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.knob.js'),(2817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.knob.min.js','wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.knob.min.js'),(2818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.twentytwenty.js','wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.twentytwenty.js'),(2819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.twentytwenty.min.js','wp-content/plugins/shortpixel-image-optimiser/res/js/jquery.twentytwenty.min.js'),(2820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/punycode.js','wp-content/plugins/shortpixel-image-optimiser/res/js/punycode.js'),(2821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/punycode.min.js','wp-content/plugins/shortpixel-image-optimiser/res/js/punycode.min.js'),(2822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-base.js','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-base.js'),(2823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-bulk.js','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-bulk.js'),(2824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-custom.js','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-custom.js'),(2825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-item-base.js','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-item-base.js'),(2826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-media.js','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-media.js'),(2827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-nolist.js','wp-content/plugins/shortpixel-image-optimiser/res/js/screens/screen-nolist.js'),(2828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shift-select.js','wp-content/plugins/shortpixel-image-optimiser/res/js/shift-select.js'),(2829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-folderbrowser.js','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-folderbrowser.js'),(2830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-media.js','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-media.js'),(2831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-processor.js','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-processor.js'),(2832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-settings.js','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-settings.js'),(2833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-tooltip.js','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-tooltip.js'),(2834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-worker.js','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel-worker.js'),(2835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel.js','wp-content/plugins/shortpixel-image-optimiser/res/js/shortpixel.js'),(2836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/sp-file-tree.js','wp-content/plugins/shortpixel-image-optimiser/res/js/sp-file-tree.js'),(2837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/res/js/sp-file-tree.min.js','wp-content/plugins/shortpixel-image-optimiser/res/js/sp-file-tree.min.js'),(2838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/shortpixel-plugin.php','wp-content/plugins/shortpixel-image-optimiser/shortpixel-plugin.php'),(2839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/shortpixel-image-optimiser/wp-shortpixel.php','wp-content/plugins/shortpixel-image-optimiser/wp-shortpixel.php'),(2840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/admin.php','wp-content/plugins/userway-accessibility-widget/includes/admin.php'),(2841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/api-script.js','wp-content/plugins/userway-accessibility-widget/includes/api-script.js'),(2842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/assets/css/style.css','wp-content/plugins/userway-accessibility-widget/includes/assets/css/style.css'),(2843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/assets/images/arrow-right.svg','wp-content/plugins/userway-accessibility-widget/includes/assets/images/arrow-right.svg'),(2844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/assets/images/bg.png','wp-content/plugins/userway-accessibility-widget/includes/assets/images/bg.png'),(2845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/controller.php','wp-content/plugins/userway-accessibility-widget/includes/controller.php'),(2846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/functions.php','wp-content/plugins/userway-accessibility-widget/includes/functions.php'),(2847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/includes/notifications.php','wp-content/plugins/userway-accessibility-widget/includes/notifications.php'),(2848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/readme.txt','wp-content/plugins/userway-accessibility-widget/readme.txt'),(2849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/userway-accessibility-widget/userway.php','wp-content/plugins/userway-accessibility-widget/userway.php'),(2850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/autoload.php','wp-content/plugins/wordfence/crypto/vendor/autoload.php'),(2851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php','wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php'),(2852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php','wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php'),(2853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE','wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE'),(2854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php'),(2855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php'),(2856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php'),(2857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php'),(2858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php'),(2859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php'),(2860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/installed.json','wp-content/plugins/wordfence/crypto/vendor/composer/installed.json'),(2861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/installed.php','wp-content/plugins/wordfence/crypto/vendor/composer/installed.php'),(2862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php','wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php'),(2863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE'),(2864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),(2865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),(2866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),(2867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php'),(2868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php'),(2869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php'),(2870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),(2871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),(2872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),(2873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),(2874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),(2875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php'),(2876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE'),(2877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php'),(2878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php'),(2879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json'),(2880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php'),(2881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php'),(2882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php'),(2883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php'),(2884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php'),(2885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php'),(2886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php'),(2887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php'),(2888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php'),(2889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(2890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(2891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php'),(2892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(2893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(2894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(2895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(2896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(2897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(2898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php'),(2899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php'),(2900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php'),(2901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php'),(2902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php'),(2903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php'),(2904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php'),(2905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php'),(2906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php'),(2907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php'),(2908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php'),(2909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php'),(2910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php'),(2911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php'),(2912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php'),(2913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php'),(2914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php'),(2915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php'),(2916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php'),(2917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php'),(2918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(2919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php'),(2920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php'),(2921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(2922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(2923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(2924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(2925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(2926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php'),(2927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php'),(2928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php'),(2929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php'),(2930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php'),(2931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php'),(2932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php'),(2933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php'),(2934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php'),(2935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php'),(2936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php'),(2937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php'),(2938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php'),(2939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php'),(2940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php'),(2941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php'),(2942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(2943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(2944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php'),(2945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php'),(2946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(2947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(2948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(2949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(2950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(2951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php'),(2952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php'),(2953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php'),(2954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php'),(2955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php'),(2956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php'),(2957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php'),(2958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php'),(2959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php'),(2960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php'),(2961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php'),(2962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php'),(2963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php'),(2964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php'),(2965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php'),(2966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php'),(2967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php'),(2968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php'),(2969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php'),(2970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php'),(2971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php'),(2972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/activity-report-widget.1722265817.css','wp-content/plugins/wordfence/css/activity-report-widget.1722265817.css'),(2973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/diff.1722265817.css','wp-content/plugins/wordfence/css/diff.1722265817.css'),(2974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/fullLog.1722265817.css','wp-content/plugins/wordfence/css/fullLog.1722265817.css'),(2975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png','wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png'),(2976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png','wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png'),(2977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png','wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png'),(2978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png','wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png'),(2979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png','wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png'),(2980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png','wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png'),(2981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/iptraf.1722265817.css','wp-content/plugins/wordfence/css/iptraf.1722265817.css'),(2982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1722265817.css','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1722265817.css'),(2983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/jquery-ui.min.1722265817.css','wp-content/plugins/wordfence/css/jquery-ui.min.1722265817.css'),(2984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/jquery-ui.structure.min.1722265817.css','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1722265817.css'),(2985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/jquery-ui.theme.min.1722265817.css','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1722265817.css'),(2986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/care-global.1722265817.css','wp-content/plugins/wordfence/css/license/care-global.1722265817.css'),(2987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/care.1722265817.css','wp-content/plugins/wordfence/css/license/care.1722265817.css'),(2988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/free-global.1722265817.css','wp-content/plugins/wordfence/css/license/free-global.1722265817.css'),(2989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/free.1722265817.css','wp-content/plugins/wordfence/css/license/free.1722265817.css'),(2990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/premium-global.1722265817.css','wp-content/plugins/wordfence/css/license/premium-global.1722265817.css'),(2991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/premium.1722265817.css','wp-content/plugins/wordfence/css/license/premium.1722265817.css'),(2992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/response-global.1722265817.css','wp-content/plugins/wordfence/css/license/response-global.1722265817.css'),(2993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/response-variables.1722265817.css','wp-content/plugins/wordfence/css/license/response-variables.1722265817.css'),(2994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/license/response.1722265817.css','wp-content/plugins/wordfence/css/license/response.1722265817.css'),(2995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/main.1722265817.css','wp-content/plugins/wordfence/css/main.1722265817.css'),(2996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/phpinfo.1722265817.css','wp-content/plugins/wordfence/css/phpinfo.1722265817.css'),(2997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-adminbar.1722265817.css','wp-content/plugins/wordfence/css/wf-adminbar.1722265817.css'),(2998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-colorbox.1722265817.css','wp-content/plugins/wordfence/css/wf-colorbox.1722265817.css'),(2999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-font-awesome.1722265817.css','wp-content/plugins/wordfence/css/wf-font-awesome.1722265817.css'),(3000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-global.1722265817.css','wp-content/plugins/wordfence/css/wf-global.1722265817.css'),(3001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-ionicons.1722265817.css','wp-content/plugins/wordfence/css/wf-ionicons.1722265817.css'),(3002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-onboarding.1722265817.css','wp-content/plugins/wordfence/css/wf-onboarding.1722265817.css'),(3003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wf-roboto-font.1722265817.css','wp-content/plugins/wordfence/css/wf-roboto-font.1722265817.css'),(3004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wfselect2.min.1722265817.css','wp-content/plugins/wordfence/css/wfselect2.min.1722265817.css'),(3005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/css/wordfenceBox.1722265817.css','wp-content/plugins/wordfence/css/wordfenceBox.1722265817.css'),(3006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff','wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff'),(3007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/ionicons.woff','wp-content/plugins/wordfence/fonts/ionicons.woff'),(3008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff'),(3009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff'),(3010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff'),(3011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff'),(3012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff'),(3013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff'),(3014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff'),(3015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff'),(3016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff'),(3017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff'),(3018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/2fa-whole.svg','wp-content/plugins/wordfence/images/2fa-whole.svg'),(3019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/2fa1.svg','wp-content/plugins/wordfence/images/2fa1.svg'),(3020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/2fa2.svg','wp-content/plugins/wordfence/images/2fa2.svg'),(3021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/back_disabled.jpg','wp-content/plugins/wordfence/images/back_disabled.jpg'),(3022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/back_enabled.jpg','wp-content/plugins/wordfence/images/back_enabled.jpg'),(3023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/blocking.svg','wp-content/plugins/wordfence/images/blocking.svg'),(3024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/button-grad-grey.png','wp-content/plugins/wordfence/images/button-grad-grey.png'),(3025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/checkbox.png','wp-content/plugins/wordfence/images/checkbox.png'),(3026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/flags.png','wp-content/plugins/wordfence/images/flags.png'),(3027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/forward_disabled.jpg','wp-content/plugins/wordfence/images/forward_disabled.jpg'),(3028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/forward_enabled.jpg','wp-content/plugins/wordfence/images/forward_enabled.jpg'),(3029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/help.png','wp-content/plugins/wordfence/images/help.png'),(3030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajax24.gif','wp-content/plugins/wordfence/images/icons/ajax24.gif'),(3031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajax3.gif','wp-content/plugins/wordfence/images/icons/ajax3.gif'),(3032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajaxRed16.gif','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(3033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajaxScan.gif','wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(3034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(3035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/arrow_refresh.png','wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(3036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/bullet_yellow.png','wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(3037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/check-care.svg','wp-content/plugins/wordfence/images/icons/check-care.svg'),(3038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/check-premium.svg','wp-content/plugins/wordfence/images/icons/check-premium.svg'),(3039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/check-response.svg','wp-content/plugins/wordfence/images/icons/check-response.svg'),(3040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/check.svg','wp-content/plugins/wordfence/images/icons/check.svg'),(3041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/email_go.png','wp-content/plugins/wordfence/images/icons/email_go.png'),(3042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/error128.png','wp-content/plugins/wordfence/images/icons/error128.png'),(3043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/magnifier.png','wp-content/plugins/wordfence/images/icons/magnifier.png'),(3044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/tick128.png','wp-content/plugins/wordfence/images/icons/tick128.png'),(3045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/warning128.png','wp-content/plugins/wordfence/images/icons/warning128.png'),(3046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/icons/working-indicator.gif','wp-content/plugins/wordfence/images/icons/working-indicator.gif'),(3047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/lightbox-controls.png','wp-content/plugins/wordfence/images/lightbox-controls.png'),(3048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/loading.gif','wp-content/plugins/wordfence/images/loading.gif'),(3049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/loading_background.png','wp-content/plugins/wordfence/images/loading_background.png'),(3050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/loading_large.gif','wp-content/plugins/wordfence/images/loading_large.gif'),(3051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logo.png','wp-content/plugins/wordfence/images/logo.png'),(3052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-care.svg','wp-content/plugins/wordfence/images/logos/shield-care.svg'),(3053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-free.svg','wp-content/plugins/wordfence/images/logos/shield-free.svg'),(3054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-premium.svg','wp-content/plugins/wordfence/images/logos/shield-premium.svg'),(3055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-response.svg','wp-content/plugins/wordfence/images/logos/shield-response.svg'),(3056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/logos/shield-white.svg','wp-content/plugins/wordfence/images/logos/shield-white.svg'),(3057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/options.svg','wp-content/plugins/wordfence/images/options.svg'),(3058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/ratelimiting.svg','wp-content/plugins/wordfence/images/ratelimiting.svg'),(3059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_asc.gif','wp-content/plugins/wordfence/images/sort_asc.gif'),(3060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_asc.png','wp-content/plugins/wordfence/images/sort_asc.png'),(3061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_asc_disabled.gif','wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(3062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_asc_disabled.png','wp-content/plugins/wordfence/images/sort_asc_disabled.png'),(3063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_both.gif','wp-content/plugins/wordfence/images/sort_both.gif'),(3064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_both.png','wp-content/plugins/wordfence/images/sort_both.png'),(3065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_desc.gif','wp-content/plugins/wordfence/images/sort_desc.gif'),(3066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_desc.png','wp-content/plugins/wordfence/images/sort_desc.png'),(3067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_desc_disabled.gif','wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(3068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/sort_desc_disabled.png','wp-content/plugins/wordfence/images/sort_desc_disabled.png'),(3069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/support.svg','wp-content/plugins/wordfence/images/support.svg'),(3070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/tools.svg','wp-content/plugins/wordfence/images/tools.svg'),(3071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/wf-central-logo.svg','wp-content/plugins/wordfence/images/wf-central-logo.svg'),(3072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/wf-error-badge.svg','wp-content/plugins/wordfence/images/wf-error-badge.svg'),(3073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/wf-horizontal.svg','wp-content/plugins/wordfence/images/wf-horizontal.svg'),(3074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/images/wordfence-logo.svg','wp-content/plugins/wordfence/images/wordfence-logo.svg'),(3075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/index.php','wp-content/plugins/wordfence/index.php'),(3076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/admin.1722265817.js','wp-content/plugins/wordfence/js/admin.1722265817.js'),(3077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/admin.ajaxWatcher.1722265817.js','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1722265817.js'),(3078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/admin.liveTraffic.1722265817.js','wp-content/plugins/wordfence/js/admin.liveTraffic.1722265817.js'),(3079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/chart.umd.1722265817.js','wp-content/plugins/wordfence/js/chart.umd.1722265817.js'),(3080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/date.1722265817.js','wp-content/plugins/wordfence/js/date.1722265817.js'),(3081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1722265817.js','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1722265817.js'),(3082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery.colorbox-min.1722265817.js','wp-content/plugins/wordfence/js/jquery.colorbox-min.1722265817.js'),(3083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery.colorbox.1722265817.js','wp-content/plugins/wordfence/js/jquery.colorbox.1722265817.js'),(3084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery.qrcode.min.1722265817.js','wp-content/plugins/wordfence/js/jquery.qrcode.min.1722265817.js'),(3085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/jquery.tmpl.min.1722265817.js','wp-content/plugins/wordfence/js/jquery.tmpl.min.1722265817.js'),(3086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/knockout-3.5.1.1722265817.js','wp-content/plugins/wordfence/js/knockout-3.5.1.1722265817.js'),(3087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfdashboard.1722265817.js','wp-content/plugins/wordfence/js/wfdashboard.1722265817.js'),(3088,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfdropdown.1722265817.js','wp-content/plugins/wordfence/js/wfdropdown.1722265817.js'),(3089,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfglobal.1722265817.js','wp-content/plugins/wordfence/js/wfglobal.1722265817.js'),(3090,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfi18n.1722265817.js','wp-content/plugins/wordfence/js/wfi18n.1722265817.js'),(3091,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfonboarding.1722265817.js','wp-content/plugins/wordfence/js/wfonboarding.1722265817.js'),(3092,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfpopover.1722265817.js','wp-content/plugins/wordfence/js/wfpopover.1722265817.js'),(3093,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/js/wfselect2.min.1722265817.js','wp-content/plugins/wordfence/js/wfselect2.min.1722265817.js'),(3094,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/languages/wordfence.mo','wp-content/plugins/wordfence/languages/wordfence.mo'),(3095,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/languages/wordfence.pot','wp-content/plugins/wordfence/languages/wordfence.pot'),(3096,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/.htaccess','wp-content/plugins/wordfence/lib/.htaccess'),(3097,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(3098,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(3099,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(3100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(3101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/Diff.php','wp-content/plugins/wordfence/lib/Diff.php'),(3102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb','wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb'),(3103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/IPTraf.php','wp-content/plugins/wordfence/lib/IPTraf.php'),(3104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/IPTrafList.php','wp-content/plugins/wordfence/lib/IPTrafList.php'),(3105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php','wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php'),(3106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/compat.php','wp-content/plugins/wordfence/lib/compat.php'),(3107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),(3108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),(3109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),(3110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_countries.php','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),(3111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_ips.php','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),(3112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),(3113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_logins.php','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),(3114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),(3115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),(3116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/diffResult.php','wp-content/plugins/wordfence/lib/diffResult.php'),(3117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/email_genericAlert.php','wp-content/plugins/wordfence/lib/email_genericAlert.php'),(3118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/email_newIssues.php','wp-content/plugins/wordfence/lib/email_newIssues.php'),(3119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/email_unlockRequest.php','wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(3120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php','wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php'),(3121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/flags.php','wp-content/plugins/wordfence/lib/flags.php'),(3122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/live_activity.php','wp-content/plugins/wordfence/lib/live_activity.php'),(3123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_dashboard.php','wp-content/plugins/wordfence/lib/menu_dashboard.php'),(3124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_dashboard_options.php','wp-content/plugins/wordfence/lib/menu_dashboard_options.php'),(3125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall.php','wp-content/plugins/wordfence/lib/menu_firewall.php'),(3126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall_blocking.php','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php'),(3127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php','wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php'),(3128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall_waf.php','wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),(3129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php'),(3130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_install.php','wp-content/plugins/wordfence/lib/menu_install.php'),(3131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_options.php','wp-content/plugins/wordfence/lib/menu_options.php'),(3132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_scanner.php','wp-content/plugins/wordfence/lib/menu_scanner.php'),(3133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_scanner_credentials.php','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php'),(3134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_scanner_options.php','wp-content/plugins/wordfence/lib/menu_scanner_options.php'),(3135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_support.php','wp-content/plugins/wordfence/lib/menu_support.php'),(3136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools.php','wp-content/plugins/wordfence/lib/menu_tools.php'),(3137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),(3138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_importExport.php','wp-content/plugins/wordfence/lib/menu_tools_importExport.php'),(3139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php'),(3140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),(3141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_tools_whois.php','wp-content/plugins/wordfence/lib/menu_tools_whois.php'),(3142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/menu_wordfence_central.php','wp-content/plugins/wordfence/lib/menu_wordfence_central.php'),(3143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/noc1.key','wp-content/plugins/wordfence/lib/noc1.key'),(3144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php','wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php'),(3145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php','wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php'),(3146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php','wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php'),(3147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php','wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php'),(3148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/sodium_compat_fast.php','wp-content/plugins/wordfence/lib/sodium_compat_fast.php'),(3149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/sysinfo.php','wp-content/plugins/wordfence/lib/sysinfo.php'),(3150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/viewFullActivityLog.php','wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(3151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wf503.php','wp-content/plugins/wordfence/lib/wf503.php'),(3152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfAPI.php','wp-content/plugins/wordfence/lib/wfAPI.php'),(3153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfActivityReport.php','wp-content/plugins/wordfence/lib/wfActivityReport.php'),(3154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php'),(3155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfAlerts.php','wp-content/plugins/wordfence/lib/wfAlerts.php'),(3156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfArray.php','wp-content/plugins/wordfence/lib/wfArray.php'),(3157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfBrowscap.php','wp-content/plugins/wordfence/lib/wfBrowscap.php'),(3158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfBrowscapCache.php','wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(3159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfBulkCountries.php','wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(3160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCache.php','wp-content/plugins/wordfence/lib/wfCache.php'),(3161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCentralAPI.php','wp-content/plugins/wordfence/lib/wfCentralAPI.php'),(3162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfConfig.php','wp-content/plugins/wordfence/lib/wfConfig.php'),(3163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCrawl.php','wp-content/plugins/wordfence/lib/wfCrawl.php'),(3164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCredentialsController.php','wp-content/plugins/wordfence/lib/wfCredentialsController.php'),(3165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCrypt.php','wp-content/plugins/wordfence/lib/wfCrypt.php'),(3166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfCurlInterceptor.php','wp-content/plugins/wordfence/lib/wfCurlInterceptor.php'),(3167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDB.php','wp-content/plugins/wordfence/lib/wfDB.php'),(3168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDashboard.php','wp-content/plugins/wordfence/lib/wfDashboard.php'),(3169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDateLocalization.php','wp-content/plugins/wordfence/lib/wfDateLocalization.php'),(3170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDeactivationOption.php','wp-content/plugins/wordfence/lib/wfDeactivationOption.php'),(3171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDiagnostic.php','wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(3172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDict.php','wp-content/plugins/wordfence/lib/wfDict.php'),(3173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfDirectoryIterator.php','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(3174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfFileUtils.php','wp-content/plugins/wordfence/lib/wfFileUtils.php'),(3175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfHelperBin.php','wp-content/plugins/wordfence/lib/wfHelperBin.php'),(3176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfHelperString.php','wp-content/plugins/wordfence/lib/wfHelperString.php'),(3177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfIPWhitelist.php','wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(3178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfImportExportController.php','wp-content/plugins/wordfence/lib/wfImportExportController.php'),(3179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php','wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php'),(3180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfInvalidPathException.php','wp-content/plugins/wordfence/lib/wfInvalidPathException.php'),(3181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfIpLocation.php','wp-content/plugins/wordfence/lib/wfIpLocation.php'),(3182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfIpLocator.php','wp-content/plugins/wordfence/lib/wfIpLocator.php'),(3183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfIssues.php','wp-content/plugins/wordfence/lib/wfIssues.php'),(3184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfJWT.php','wp-content/plugins/wordfence/lib/wfJWT.php'),(3185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfLicense.php','wp-content/plugins/wordfence/lib/wfLicense.php'),(3186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfLockedOut.php','wp-content/plugins/wordfence/lib/wfLockedOut.php'),(3187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfLog.php','wp-content/plugins/wordfence/lib/wfLog.php'),(3188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(3189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfModuleController.php','wp-content/plugins/wordfence/lib/wfModuleController.php'),(3190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfNotification.php','wp-content/plugins/wordfence/lib/wfNotification.php'),(3191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfOnboardingController.php','wp-content/plugins/wordfence/lib/wfOnboardingController.php'),(3192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfPersistenceController.php','wp-content/plugins/wordfence/lib/wfPersistenceController.php'),(3193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfRESTAPI.php','wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(3194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScan.php','wp-content/plugins/wordfence/lib/wfScan.php'),(3195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanEngine.php','wp-content/plugins/wordfence/lib/wfScanEngine.php'),(3196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanEntrypoint.php','wp-content/plugins/wordfence/lib/wfScanEntrypoint.php'),(3197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanFile.php','wp-content/plugins/wordfence/lib/wfScanFile.php'),(3198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanFileLink.php','wp-content/plugins/wordfence/lib/wfScanFileLink.php'),(3199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanFileListItem.php','wp-content/plugins/wordfence/lib/wfScanFileListItem.php'),(3200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanFileProperties.php','wp-content/plugins/wordfence/lib/wfScanFileProperties.php'),(3201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanMonitor.php','wp-content/plugins/wordfence/lib/wfScanMonitor.php'),(3202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfScanPath.php','wp-content/plugins/wordfence/lib/wfScanPath.php'),(3203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfSchema.php','wp-content/plugins/wordfence/lib/wfSchema.php'),(3204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfStyle.php','wp-content/plugins/wordfence/lib/wfStyle.php'),(3205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfSupportController.php','wp-content/plugins/wordfence/lib/wfSupportController.php'),(3206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfUnlockMsg.php','wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(3207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfUpdateCheck.php','wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(3208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfUtils.php','wp-content/plugins/wordfence/lib/wfUtils.php'),(3209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfVersionCheckController.php','wp-content/plugins/wordfence/lib/wfVersionCheckController.php'),(3210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfVersionSupport.php','wp-content/plugins/wordfence/lib/wfVersionSupport.php'),(3211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfView.php','wp-content/plugins/wordfence/lib/wfView.php'),(3212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfViewResult.php','wp-content/plugins/wordfence/lib/wfViewResult.php'),(3213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wfWebsite.php','wp-content/plugins/wordfence/lib/wfWebsite.php'),(3214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceClass.php','wp-content/plugins/wordfence/lib/wordfenceClass.php'),(3215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceConstants.php','wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(3216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceHash.php','wp-content/plugins/wordfence/lib/wordfenceHash.php'),(3217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceScanner.php','wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(3218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/lib/wordfenceURLHoover.php','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(3219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/license.txt','wp-content/plugins/wordfence/license.txt'),(3220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/.htaccess','wp-content/plugins/wordfence/models/.htaccess'),(3221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/block/wfBlock.php','wp-content/plugins/wordfence/models/block/wfBlock.php'),(3222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/block/wfRateLimit.php','wp-content/plugins/wordfence/models/block/wfRateLimit.php'),(3223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/common/wfTab.php','wp-content/plugins/wordfence/models/common/wfTab.php'),(3224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/firewall/wfFirewall.php','wp-content/plugins/wordfence/models/firewall/wfFirewall.php'),(3225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/page/wfPage.php','wp-content/plugins/wordfence/models/page/wfPage.php'),(3226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/models/scanner/wfScanner.php','wp-content/plugins/wordfence/models/scanner/wfScanner.php'),(3227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/.htaccess','wp-content/plugins/wordfence/modules/login-security/classes/.htaccess'),(3228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php'),(3229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php'),(3230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php'),(3231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php'),(3232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php'),(3233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php'),(3234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php'),(3235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php'),(3236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php'),(3237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php'),(3238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php'),(3239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php'),(3240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php','wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php'),(3241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php','wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php'),(3242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php','wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php'),(3243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php','wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php'),(3244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php'),(3245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php'),(3246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php'),(3247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php'),(3248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php','wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php'),(3249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php','wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php'),(3250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/request.php','wp-content/plugins/wordfence/modules/login-security/classes/model/request.php'),(3251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/script.php','wp-content/plugins/wordfence/modules/login-security/classes/model/script.php'),(3252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php'),(3253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php'),(3254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php','wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php'),(3255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/style.php','wp-content/plugins/wordfence/modules/login-security/classes/model/style.php'),(3256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php','wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php'),(3257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php','wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php'),(3258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php','wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php'),(3259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php','wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php'),(3260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php','wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php'),(3261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/model/view.php','wp-content/plugins/wordfence/modules/login-security/classes/model/view.php'),(3262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php'),(3263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php'),(3264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php'),(3265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php'),(3266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php'),(3267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php'),(3268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php'),(3269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php'),(3270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/number.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/number.php'),(3271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php'),(3272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php'),(3273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/classes/utility/url.php','wp-content/plugins/wordfence/modules/login-security/classes/utility/url.php'),(3274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/admin-global.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/admin-global.1722265817.css'),(3275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/admin.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/admin.1722265817.css'),(3276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/colorbox.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/colorbox.1722265817.css'),(3277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/embedded.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/embedded.1722265817.css'),(3278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1722265817.css'),(3279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/ionicons.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/ionicons.1722265817.css'),(3280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1722265817.css'),(3281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1722265817.css'),(3282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1722265817.css'),(3283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/login.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/login.1722265817.css'),(3284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1722265817.css','wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1722265817.css'),(3285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/header.svg','wp-content/plugins/wordfence/modules/login-security/img/header.svg'),(3286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png','wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png'),(3287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/loading.gif','wp-content/plugins/wordfence/modules/login-security/img/loading.gif'),(3288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/loading_background.png','wp-content/plugins/wordfence/modules/login-security/img/loading_background.png'),(3289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/menu.svg','wp-content/plugins/wordfence/modules/login-security/img/menu.svg'),(3290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png'),(3291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png'),(3292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png'),(3293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png'),(3294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png'),(3295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png'),(3296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/admin-global.1722265817.js','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1722265817.js'),(3297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/admin.1722265817.js','wp-content/plugins/wordfence/modules/login-security/js/admin.1722265817.js'),(3298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1722265817.js','wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1722265817.js'),(3299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1722265817.js','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1722265817.js'),(3300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1722265817.js','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1722265817.js'),(3301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1722265817.js','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1722265817.js'),(3302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1722265817.js','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1722265817.js'),(3303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/js/login.1722265817.js','wp-content/plugins/wordfence/modules/login-security/js/login.1722265817.js'),(3304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/.htaccess','wp-content/plugins/wordfence/modules/login-security/views/.htaccess'),(3305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php','wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php'),(3306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php','wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php'),(3307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php','wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php'),(3308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php','wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php'),(3309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php','wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php'),(3310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/code.php','wp-content/plugins/wordfence/modules/login-security/views/manage/code.php'),(3311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php','wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php'),(3312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php','wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php'),(3313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php','wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php'),(3314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php','wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php'),(3315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php'),(3316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php'),(3317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php'),(3318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php'),(3319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php'),(3320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php'),(3321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php'),(3322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php'),(3323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php'),(3324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php'),(3325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php'),(3326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php'),(3327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php'),(3328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php'),(3329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php'),(3330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php'),(3331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php'),(3332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php','wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php'),(3333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php','wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php'),(3334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/manage.php','wp-content/plugins/wordfence/modules/login-security/views/page/manage.php'),(3335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/page.php','wp-content/plugins/wordfence/modules/login-security/views/page/page.php'),(3336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php','wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php'),(3337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/role.php','wp-content/plugins/wordfence/modules/login-security/views/page/role.php'),(3338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php','wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php'),(3339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/settings.php','wp-content/plugins/wordfence/modules/login-security/views/page/settings.php'),(3340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php','wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php'),(3341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/settings/options.php','wp-content/plugins/wordfence/modules/login-security/views/settings/options.php'),(3342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php','wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php'),(3343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php','wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php'),(3344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php','wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php'),(3345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/readme.txt','wp-content/plugins/wordfence/readme.txt'),(3346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/tmp/.htaccess','wp-content/plugins/wordfence/tmp/.htaccess'),(3347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/.htaccess','wp-content/plugins/wordfence/vendor/.htaccess'),(3348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/autoload.php','wp-content/plugins/wordfence/vendor/autoload.php'),(3349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/ClassLoader.php','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(3350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php','wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php'),(3351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/LICENSE','wp-content/plugins/wordfence/vendor/composer/LICENSE'),(3352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(3353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(3354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(3355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_real.php','wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(3356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/autoload_static.php','wp-content/plugins/wordfence/vendor/composer/autoload_static.php'),(3357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/installed.json','wp-content/plugins/wordfence/vendor/composer/installed.json'),(3358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/composer/installed.php','wp-content/plugins/wordfence/vendor/composer/installed.php'),(3359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/ControlByte.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/ControlByte.php'),(3360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php'),(3361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php'),(3362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DatabaseMetadata.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DatabaseMetadata.php'),(3363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php'),(3364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php'),(3365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php'),(3366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php'),(3367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php'),(3368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php'),(3369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php'),(3370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IoException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IoException.php'),(3371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php'),(3372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbThrowable.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbThrowable.php'),(3373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php'),(3374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php'),(3375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php'),(3376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php'),(3377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php'),(3378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php'),(3379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeReader.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeReader.php'),(3380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeRecord.php','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeRecord.php'),(3381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(3382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),(3383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(3384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php'),(3385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(3386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(3387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php'),(3388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(3389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(3390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(3391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(3392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(3393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(3394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/shutdown.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/shutdown.php'),(3395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(3396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php'),(3397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(3398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(3399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(3400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(3401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php'),(3402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(3403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),(3404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(3405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(3406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),(3407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(3408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/.htaccess','wp-content/plugins/wordfence/views/.htaccess'),(3409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/block-list.php','wp-content/plugins/wordfence/views/blocking/block-list.php'),(3410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/blocking-create.php','wp-content/plugins/wordfence/views/blocking/blocking-create.php'),(3411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/blocking-status.php','wp-content/plugins/wordfence/views/blocking/blocking-status.php'),(3412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/country-block-map.php','wp-content/plugins/wordfence/views/blocking/country-block-map.php'),(3413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/country-modal.php','wp-content/plugins/wordfence/views/blocking/country-modal.php'),(3414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php','wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php'),(3415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php'),(3416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php'),(3417,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/block-navigation-option.php','wp-content/plugins/wordfence/views/common/block-navigation-option.php'),(3418,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/indeterminate-progress.php','wp-content/plugins/wordfence/views/common/indeterminate-progress.php'),(3419,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/license.php','wp-content/plugins/wordfence/views/common/license.php'),(3420,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/modal-prompt.php','wp-content/plugins/wordfence/views/common/modal-prompt.php'),(3421,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php','wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php'),(3422,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/page-help.php','wp-content/plugins/wordfence/views/common/page-help.php'),(3423,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/page-tabbar.php','wp-content/plugins/wordfence/views/common/page-tabbar.php'),(3424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/page-title.php','wp-content/plugins/wordfence/views/common/page-title.php'),(3425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/section-subtitle.php','wp-content/plugins/wordfence/views/common/section-subtitle.php'),(3426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/section-title.php','wp-content/plugins/wordfence/views/common/section-title.php'),(3427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-circular.php','wp-content/plugins/wordfence/views/common/status-circular.php'),(3428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-critical.php','wp-content/plugins/wordfence/views/common/status-critical.php'),(3429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-detail.php','wp-content/plugins/wordfence/views/common/status-detail.php'),(3430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-tooltip.php','wp-content/plugins/wordfence/views/common/status-tooltip.php'),(3431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/status-warning.php','wp-content/plugins/wordfence/views/common/status-warning.php'),(3432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/common/unsubscribe.php','wp-content/plugins/wordfence/views/common/unsubscribe.php'),(3433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/global-status.php','wp-content/plugins/wordfence/views/dashboard/global-status.php'),(3434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/option-howgetips.php','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php'),(3435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-alert.php','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php'),(3436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php'),(3437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php','wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php'),(3438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-general.php','wp-content/plugins/wordfence/views/dashboard/options-group-general.php'),(3439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-import.php','wp-content/plugins/wordfence/views/dashboard/options-group-import.php'),(3440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-license.php','wp-content/plugins/wordfence/views/dashboard/options-group-license.php'),(3441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php'),(3442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php'),(3443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/dashboard/status-renewing.php','wp-content/plugins/wordfence/views/dashboard/status-renewing.php'),(3444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/diagnostics/text.php','wp-content/plugins/wordfence/views/diagnostics/text.php'),(3445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/gdpr/banner.php','wp-content/plugins/wordfence/views/gdpr/banner.php'),(3446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php','wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php'),(3447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php','wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php'),(3448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/banner.php','wp-content/plugins/wordfence/views/onboarding/banner.php'),(3449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php','wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php'),(3450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/fresh-install.php','wp-content/plugins/wordfence/views/onboarding/fresh-install.php'),(3451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php','wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php'),(3452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/overlay.php','wp-content/plugins/wordfence/views/onboarding/overlay.php'),(3453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/plugin-header.php','wp-content/plugins/wordfence/views/onboarding/plugin-header.php'),(3454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/registration-prompt.php','wp-content/plugins/wordfence/views/onboarding/registration-prompt.php'),(3455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/onboarding/tour-overlay.php','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php'),(3456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/block-all-options-controls.php','wp-content/plugins/wordfence/views/options/block-all-options-controls.php'),(3457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/block-controls.php','wp-content/plugins/wordfence/views/options/block-controls.php'),(3458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-label.php','wp-content/plugins/wordfence/views/options/option-label.php'),(3459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-select.php','wp-content/plugins/wordfence/views/options/option-select.php'),(3460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-switch.php','wp-content/plugins/wordfence/views/options/option-switch.php'),(3461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-text.php','wp-content/plugins/wordfence/views/options/option-text.php'),(3462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-textarea.php','wp-content/plugins/wordfence/views/options/option-textarea.php'),(3463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php'),(3464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-multiple.php','wp-content/plugins/wordfence/views/options/option-toggled-multiple.php'),(3465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-segmented.php','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php'),(3466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-select.php','wp-content/plugins/wordfence/views/options/option-toggled-select.php'),(3467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-sub.php','wp-content/plugins/wordfence/views/options/option-toggled-sub.php'),(3468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled-textarea.php','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php'),(3469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-toggled.php','wp-content/plugins/wordfence/views/options/option-toggled.php'),(3470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/option-token.php','wp-content/plugins/wordfence/views/options/option-token.php'),(3471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/options/options-title.php','wp-content/plugins/wordfence/views/options/options-title.php'),(3472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(3473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/reports/activity-report.php','wp-content/plugins/wordfence/views/reports/activity-report.php'),(3474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-base.php','wp-content/plugins/wordfence/views/scanner/issue-base.php'),(3475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php','wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php'),(3476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php','wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php'),(3477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php'),(3478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php'),(3479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-configReadable.php','wp-content/plugins/wordfence/views/scanner/issue-configReadable.php'),(3480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php'),(3481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php','wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php'),(3482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php'),(3483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php','wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php'),(3484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php','wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php'),(3485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-repair.php','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php'),(3486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php','wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php'),(3487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php'),(3488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-database.php','wp-content/plugins/wordfence/views/scanner/issue-database.php'),(3489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php'),(3490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php'),(3491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-file.php','wp-content/plugins/wordfence/views/scanner/issue-file.php'),(3492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php'),(3493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-knownfile.php','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php'),(3494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php','wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php'),(3495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php','wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php'),(3496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php','wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php'),(3497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php'),(3498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php','wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php'),(3499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php'),(3500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php'),(3501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-timelimit.php','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php'),(3502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php','wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php'),(3503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php','wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php'),(3504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php'),(3505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php','wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php'),(3506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php','wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php'),(3507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php'),(3508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php'),(3509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php','wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php'),(3510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php','wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php'),(3511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php','wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php'),(3512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/no-issues.php','wp-content/plugins/wordfence/views/scanner/no-issues.php'),(3513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php','wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php'),(3514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-advanced.php','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php'),(3515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-basic.php','wp-content/plugins/wordfence/views/scanner/options-group-basic.php'),(3516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-general.php','wp-content/plugins/wordfence/views/scanner/options-group-general.php'),(3517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-performance.php','wp-content/plugins/wordfence/views/scanner/options-group-performance.php'),(3518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php','wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php'),(3519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-failed.php','wp-content/plugins/wordfence/views/scanner/scan-failed.php'),(3520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php'),(3521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-progress-element.php','wp-content/plugins/wordfence/views/scanner/scan-progress-element.php'),(3522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-progress.php','wp-content/plugins/wordfence/views/scanner/scan-progress.php'),(3523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-results.php','wp-content/plugins/wordfence/views/scanner/scan-results.php'),(3524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-scheduling.php','wp-content/plugins/wordfence/views/scanner/scan-scheduling.php'),(3525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-starter.php','wp-content/plugins/wordfence/views/scanner/scan-starter.php'),(3526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scan-type.php','wp-content/plugins/wordfence/views/scanner/scan-type.php'),(3527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/scanner-status.php','wp-content/plugins/wordfence/views/scanner/scanner-status.php'),(3528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php'),(3529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php'),(3530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php'),(3531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/scanner/site-cleaning.php','wp-content/plugins/wordfence/views/scanner/site-cleaning.php'),(3532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/tools/options-group-2fa.php','wp-content/plugins/wordfence/views/tools/options-group-2fa.php'),(3533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php'),(3534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/tours/login-security.php','wp-content/plugins/wordfence/views/tours/login-security.php'),(3535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/unsupported-php/admin-message.php','wp-content/plugins/wordfence/views/unsupported-php/admin-message.php'),(3536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/user/disabled-application-passwords.php','wp-content/plugins/wordfence/views/user/disabled-application-passwords.php'),(3537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/debug.php','wp-content/plugins/wordfence/views/waf/debug.php'),(3538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/firewall-status.php','wp-content/plugins/wordfence/views/waf/firewall-status.php'),(3539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/option-rate-limit.php','wp-content/plugins/wordfence/views/waf/option-rate-limit.php'),(3540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/option-rules.php','wp-content/plugins/wordfence/views/waf/option-rules.php'),(3541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/option-whitelist.php','wp-content/plugins/wordfence/views/waf/option-whitelist.php'),(3542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php'),(3543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php','wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php'),(3544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-brute-force.php','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php'),(3545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php'),(3546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php'),(3547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php'),(3548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-install-manual.php','wp-content/plugins/wordfence/views/waf/waf-install-manual.php'),(3549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-install-success.php','wp-content/plugins/wordfence/views/waf/waf-install-success.php'),(3550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-install.php','wp-content/plugins/wordfence/views/waf/waf-install.php'),(3551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php'),(3552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php'),(3553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/views/waf/waf-uninstall.php','wp-content/plugins/wordfence/views/waf/waf-uninstall.php'),(3554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/.htaccess','wp-content/plugins/wordfence/waf/.htaccess'),(3555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/bootstrap.php','wp-content/plugins/wordfence/waf/bootstrap.php'),(3556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/dummy.php','wp-content/plugins/wordfence/waf/dummy.php'),(3557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/entry.php','wp-content/plugins/wordfence/waf/pomo/entry.php'),(3558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/mo.php','wp-content/plugins/wordfence/waf/pomo/mo.php'),(3559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/plural-forms.php','wp-content/plugins/wordfence/waf/pomo/plural-forms.php'),(3560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/po.php','wp-content/plugins/wordfence/waf/pomo/po.php'),(3561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/streams.php','wp-content/plugins/wordfence/waf/pomo/streams.php'),(3562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/pomo/translations.php','wp-content/plugins/wordfence/waf/pomo/translations.php'),(3563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(3564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(3565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordfence/wordfence.php','wp-content/plugins/wordfence/wordfence.php'),(3566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/admin-settings-changed-listener.php','wp-content/plugins/wordpress-seo/admin/admin-settings-changed-listener.php'),(3567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/ajax/class-shortcode-filter.php','wp-content/plugins/wordpress-seo/admin/ajax/class-shortcode-filter.php'),(3568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-dismissable-notice.php','wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-dismissable-notice.php'),(3569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-plugin-conflict-ajax.php','wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-plugin-conflict-ajax.php'),(3570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/ajax.php','wp-content/plugins/wordpress-seo/admin/ajax.php'),(3571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-abstract-capability-manager.php','wp-content/plugins/wordpress-seo/admin/capabilities/class-abstract-capability-manager.php'),(3572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-factory.php','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-factory.php'),(3573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-integration.php','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-integration.php'),(3574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-vip.php','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-vip.php'),(3575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-wp.php','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-wp.php'),(3576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager.php','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager.php'),(3577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-utils.php','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-utils.php'),(3578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/capabilities/class-register-capabilities.php','wp-content/plugins/wordpress-seo/admin/capabilities/class-register-capabilities.php'),(3579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-analysis-worker-location.php','wp-content/plugins/wordpress-seo/admin/class-admin-asset-analysis-worker-location.php'),(3580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-dev-server-location.php','wp-content/plugins/wordpress-seo/admin/class-admin-asset-dev-server-location.php'),(3581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-location.php','wp-content/plugins/wordpress-seo/admin/class-admin-asset-location.php'),(3582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-manager.php','wp-content/plugins/wordpress-seo/admin/class-admin-asset-manager.php'),(3583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-asset-seo-location.php','wp-content/plugins/wordpress-seo/admin/class-admin-asset-seo-location.php'),(3584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-editor-specific-replace-vars.php','wp-content/plugins/wordpress-seo/admin/class-admin-editor-specific-replace-vars.php'),(3585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-gutenberg-compatibility-notification.php','wp-content/plugins/wordpress-seo/admin/class-admin-gutenberg-compatibility-notification.php'),(3586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-help-panel.php','wp-content/plugins/wordpress-seo/admin/class-admin-help-panel.php'),(3587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-init.php','wp-content/plugins/wordpress-seo/admin/class-admin-init.php'),(3588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-recommended-replace-vars.php','wp-content/plugins/wordpress-seo/admin/class-admin-recommended-replace-vars.php'),(3589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-user-profile.php','wp-content/plugins/wordpress-seo/admin/class-admin-user-profile.php'),(3590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin-utils.php','wp-content/plugins/wordpress-seo/admin/class-admin-utils.php'),(3591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-admin.php','wp-content/plugins/wordpress-seo/admin/class-admin.php'),(3592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-asset.php','wp-content/plugins/wordpress-seo/admin/class-asset.php'),(3593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-bulk-description-editor-list-table.php','wp-content/plugins/wordpress-seo/admin/class-bulk-description-editor-list-table.php'),(3594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-bulk-editor-list-table.php','wp-content/plugins/wordpress-seo/admin/class-bulk-editor-list-table.php'),(3595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-bulk-title-editor-list-table.php','wp-content/plugins/wordpress-seo/admin/class-bulk-title-editor-list-table.php'),(3596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-collector.php','wp-content/plugins/wordpress-seo/admin/class-collector.php'),(3597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-config.php','wp-content/plugins/wordpress-seo/admin/class-config.php'),(3598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-database-proxy.php','wp-content/plugins/wordpress-seo/admin/class-database-proxy.php'),(3599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-export.php','wp-content/plugins/wordpress-seo/admin/class-export.php'),(3600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-expose-shortlinks.php','wp-content/plugins/wordpress-seo/admin/class-expose-shortlinks.php'),(3601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-gutenberg-compatibility.php','wp-content/plugins/wordpress-seo/admin/class-gutenberg-compatibility.php'),(3602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-meta-columns.php','wp-content/plugins/wordpress-seo/admin/class-meta-columns.php'),(3603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-my-yoast-proxy.php','wp-content/plugins/wordpress-seo/admin/class-my-yoast-proxy.php'),(3604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-option-tab.php','wp-content/plugins/wordpress-seo/admin/class-option-tab.php'),(3605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-option-tabs-formatter.php','wp-content/plugins/wordpress-seo/admin/class-option-tabs-formatter.php'),(3606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-option-tabs.php','wp-content/plugins/wordpress-seo/admin/class-option-tabs.php'),(3607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-paper-presenter.php','wp-content/plugins/wordpress-seo/admin/class-paper-presenter.php'),(3608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-plugin-availability.php','wp-content/plugins/wordpress-seo/admin/class-plugin-availability.php'),(3609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-plugin-conflict.php','wp-content/plugins/wordpress-seo/admin/class-plugin-conflict.php'),(3610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-premium-popup.php','wp-content/plugins/wordpress-seo/admin/class-premium-popup.php'),(3611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-premium-upsell-admin-block.php','wp-content/plugins/wordpress-seo/admin/class-premium-upsell-admin-block.php'),(3612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-primary-term-admin.php','wp-content/plugins/wordpress-seo/admin/class-primary-term-admin.php'),(3613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-product-upsell-notice.php','wp-content/plugins/wordpress-seo/admin/class-product-upsell-notice.php'),(3614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-remote-request.php','wp-content/plugins/wordpress-seo/admin/class-remote-request.php'),(3615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-schema-person-upgrade-notification.php','wp-content/plugins/wordpress-seo/admin/class-schema-person-upgrade-notification.php'),(3616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-suggested-plugins.php','wp-content/plugins/wordpress-seo/admin/class-suggested-plugins.php'),(3617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-wincher-dashboard-widget.php','wp-content/plugins/wordpress-seo/admin/class-wincher-dashboard-widget.php'),(3618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-columns.php','wp-content/plugins/wordpress-seo/admin/class-yoast-columns.php'),(3619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-dashboard-widget.php','wp-content/plugins/wordpress-seo/admin/class-yoast-dashboard-widget.php'),(3620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-form.php','wp-content/plugins/wordpress-seo/admin/class-yoast-form.php'),(3621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-input-validation.php','wp-content/plugins/wordpress-seo/admin/class-yoast-input-validation.php'),(3622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-network-admin.php','wp-content/plugins/wordpress-seo/admin/class-yoast-network-admin.php'),(3623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-network-settings-api.php','wp-content/plugins/wordpress-seo/admin/class-yoast-network-settings-api.php'),(3624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php','wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php'),(3625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-notification.php','wp-content/plugins/wordpress-seo/admin/class-yoast-notification.php'),(3626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-notifications.php','wp-content/plugins/wordpress-seo/admin/class-yoast-notifications.php'),(3627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/class-yoast-plugin-conflict.php','wp-content/plugins/wordpress-seo/admin/class-yoast-plugin-conflict.php'),(3628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint-file-size.php','wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint-file-size.php'),(3629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint-statistics.php','wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint-statistics.php'),(3630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint.php','wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint.php'),(3631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/exceptions/class-file-size-exception.php','wp-content/plugins/wordpress-seo/admin/exceptions/class-file-size-exception.php'),(3632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/filters/class-abstract-post-filter.php','wp-content/plugins/wordpress-seo/admin/filters/class-abstract-post-filter.php'),(3633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/filters/class-cornerstone-filter.php','wp-content/plugins/wordpress-seo/admin/filters/class-cornerstone-filter.php'),(3634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/formatter/class-metabox-formatter.php','wp-content/plugins/wordpress-seo/admin/formatter/class-metabox-formatter.php'),(3635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/formatter/class-post-metabox-formatter.php','wp-content/plugins/wordpress-seo/admin/formatter/class-post-metabox-formatter.php'),(3636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/formatter/class-term-metabox-formatter.php','wp-content/plugins/wordpress-seo/admin/formatter/class-term-metabox-formatter.php'),(3637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/formatter/interface-metabox-formatter.php','wp-content/plugins/wordpress-seo/admin/formatter/interface-metabox-formatter.php'),(3638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc.php','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc.php'),(3639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-display.php','wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-display.php'),(3640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-redirect-nopremium.php','wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-redirect-nopremium.php'),(3641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/class-import-detector.php','wp-content/plugins/wordpress-seo/admin/import/class-import-detector.php'),(3642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/class-import-plugin.php','wp-content/plugins/wordpress-seo/admin/import/class-import-plugin.php'),(3643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/class-import-settings.php','wp-content/plugins/wordpress-seo/admin/import/class-import-settings.php'),(3644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/class-import-status.php','wp-content/plugins/wordpress-seo/admin/import/class-import-status.php'),(3645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-abstract-plugin-importer.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-abstract-plugin-importer.php'),(3646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo-v4.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo-v4.php'),(3647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo.php'),(3648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-greg-high-performance-seo.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-greg-high-performance-seo.php'),(3649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-headspace.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-headspace.php'),(3650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-jetpack.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-jetpack.php'),(3651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-platinum-seo-pack.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-platinum-seo-pack.php'),(3652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-premium-seo-pack.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-premium-seo-pack.php'),(3653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-rankmath.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-rankmath.php'),(3654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seo-framework.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seo-framework.php'),(3655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seopressor.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seopressor.php'),(3656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-smartcrawl.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-smartcrawl.php'),(3657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-squirrly.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-squirrly.php'),(3658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-ultimate-seo.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-ultimate-seo.php'),(3659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-woothemes-seo.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-woothemes-seo.php'),(3660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wp-meta-seo.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wp-meta-seo.php'),(3661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wpseo.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wpseo.php'),(3662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/import/plugins/class-importers.php','wp-content/plugins/wordpress-seo/admin/import/plugins/class-importers.php'),(3663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/index.php','wp-content/plugins/wordpress-seo/admin/index.php'),(3664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/interface-collection.php','wp-content/plugins/wordpress-seo/admin/interface-collection.php'),(3665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/interface-installable.php','wp-content/plugins/wordpress-seo/admin/interface-installable.php'),(3666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/listeners/class-listener.php','wp-content/plugins/wordpress-seo/admin/listeners/class-listener.php'),(3667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-admin-menu.php','wp-content/plugins/wordpress-seo/admin/menu/class-admin-menu.php'),(3668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-base-menu.php','wp-content/plugins/wordpress-seo/admin/menu/class-base-menu.php'),(3669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-menu.php','wp-content/plugins/wordpress-seo/admin/menu/class-menu.php'),(3670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-network-admin-menu.php','wp-content/plugins/wordpress-seo/admin/menu/class-network-admin-menu.php'),(3671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-editor.php','wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-editor.php'),(3672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-field.php','wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-field.php'),(3673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/menu/class-submenu-capability-normalize.php','wp-content/plugins/wordpress-seo/admin/menu/class-submenu-capability-normalize.php'),(3674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-abstract-sectioned-metabox-tab.php','wp-content/plugins/wordpress-seo/admin/metabox/class-abstract-sectioned-metabox-tab.php'),(3675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-inclusive-language.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-inclusive-language.php'),(3676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-readability.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-readability.php'),(3677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-seo.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-seo.php'),(3678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsible.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsible.php'),(3679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsibles-section.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsibles-section.php'),(3680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-editor.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-editor.php'),(3681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-form-tab.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-form-tab.php'),(3682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-null-tab.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-null-tab.php'),(3683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-additional.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-additional.php'),(3684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-inclusive-language.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-inclusive-language.php'),(3685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-react.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-react.php'),(3686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-readability.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-readability.php'),(3687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox.php','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox.php'),(3688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-analysis.php','wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-analysis.php'),(3689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php','wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php'),(3690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-tab.php','wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-tab.php'),(3691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/notifiers/dismissible-notification.php','wp-content/plugins/wordpress-seo/admin/notifiers/dismissible-notification.php'),(3692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/notifiers/interface-notification-handler.php','wp-content/plugins/wordpress-seo/admin/notifiers/interface-notification-handler.php'),(3693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/dashboard.php','wp-content/plugins/wordpress-seo/admin/pages/dashboard.php'),(3694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/licenses.php','wp-content/plugins/wordpress-seo/admin/pages/licenses.php'),(3695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/network.php','wp-content/plugins/wordpress-seo/admin/pages/network.php'),(3696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/redirects.php','wp-content/plugins/wordpress-seo/admin/pages/redirects.php'),(3697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/pages/tools.php','wp-content/plugins/wordpress-seo/admin/pages/tools.php'),(3698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-abstract-role-manager.php','wp-content/plugins/wordpress-seo/admin/roles/class-abstract-role-manager.php'),(3699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-register-roles.php','wp-content/plugins/wordpress-seo/admin/roles/class-register-roles.php'),(3700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-factory.php','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-factory.php'),(3701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-wp.php','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-wp.php'),(3702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager.php','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager.php'),(3703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/services/class-file-size.php','wp-content/plugins/wordpress-seo/admin/services/class-file-size.php'),(3704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-integration.php','wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-integration.php'),(3705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-service.php','wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-service.php'),(3706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-columns.php','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-columns.php'),(3707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields-presenter.php','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields-presenter.php'),(3708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields.php','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields.php'),(3709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-metabox.php','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-metabox.php'),(3710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy.php','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy.php'),(3711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-addon-data.php','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-addon-data.php'),(3712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-default-data.php','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-default-data.php'),(3713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-plugin-data.php','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-plugin-data.php'),(3714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-server-data.php','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-server-data.php'),(3715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-settings-data.php','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-settings-data.php'),(3716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-theme-data.php','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-theme-data.php'),(3717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking.php','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking.php'),(3718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/class-yoast-feature-toggle.php','wp-content/plugins/wordpress-seo/admin/views/class-yoast-feature-toggle.php'),(3719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/class-yoast-feature-toggles.php','wp-content/plugins/wordpress-seo/admin/views/class-yoast-feature-toggles.php'),(3720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/class-yoast-input-select.php','wp-content/plugins/wordpress-seo/admin/views/class-yoast-input-select.php'),(3721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/class-yoast-integration-toggles.php','wp-content/plugins/wordpress-seo/admin/views/class-yoast-integration-toggles.php'),(3722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/form/select.php','wp-content/plugins/wordpress-seo/admin/views/form/select.php'),(3723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/interface-yoast-form-element.php','wp-content/plugins/wordpress-seo/admin/views/interface-yoast-form-element.php'),(3724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/js-templates-primary-term.php','wp-content/plugins/wordpress-seo/admin/views/js-templates-primary-term.php'),(3725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/licenses.php','wp-content/plugins/wordpress-seo/admin/views/licenses.php'),(3726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/paper-collapsible.php','wp-content/plugins/wordpress-seo/admin/views/paper-collapsible.php'),(3727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-errors.php','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-errors.php'),(3728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-template.php','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-template.php'),(3729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-warnings.php','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-warnings.php'),(3730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/redirects.php','wp-content/plugins/wordpress-seo/admin/views/redirects.php'),(3731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/dashboard.php','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/dashboard.php'),(3732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/first-time-configuration.php','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/first-time-configuration.php'),(3733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/site-analysis.php','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/site-analysis.php'),(3734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/crawl-settings.php','wp-content/plugins/wordpress-seo/admin/views/tabs/network/crawl-settings.php'),(3735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/features.php','wp-content/plugins/wordpress-seo/admin/views/tabs/network/features.php'),(3736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/general.php','wp-content/plugins/wordpress-seo/admin/views/tabs/network/general.php'),(3737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/integrations.php','wp-content/plugins/wordpress-seo/admin/views/tabs/network/integrations.php'),(3738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/network/restore-site.php','wp-content/plugins/wordpress-seo/admin/views/tabs/network/restore-site.php'),(3739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/tool/import-seo.php','wp-content/plugins/wordpress-seo/admin/views/tabs/tool/import-seo.php'),(3740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-export.php','wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-export.php'),(3741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-import.php','wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-import.php'),(3742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tool-bulk-editor.php','wp-content/plugins/wordpress-seo/admin/views/tool-bulk-editor.php'),(3743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tool-file-editor.php','wp-content/plugins/wordpress-seo/admin/views/tool-file-editor.php'),(3744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/tool-import-export.php','wp-content/plugins/wordpress-seo/admin/views/tool-import-export.php'),(3745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/views/user-profile.php','wp-content/plugins/wordpress-seo/admin/views/user-profile.php'),(3746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/admin/watchers/class-slug-change-watcher.php','wp-content/plugins/wordpress-seo/admin/watchers/class-slug-change-watcher.php'),(3747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/Yoast_SEO_negative_icon.svg','wp-content/plugins/wordpress-seo/images/Yoast_SEO_negative_icon.svg'),(3748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/alert-error-icon.svg','wp-content/plugins/wordpress-seo/images/alert-error-icon.svg'),(3749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/alert-info-icon.svg','wp-content/plugins/wordpress-seo/images/alert-info-icon.svg'),(3750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/alert-success-icon.svg','wp-content/plugins/wordpress-seo/images/alert-success-icon.svg'),(3751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/alert-warning-icon.svg','wp-content/plugins/wordpress-seo/images/alert-warning-icon.svg'),(3752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/error-icon.svg','wp-content/plugins/wordpress-seo/images/error-icon.svg'),(3753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/index.php','wp-content/plugins/wordpress-seo/images/index.php'),(3754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/indexables_3_left_bubble_optm.svg','wp-content/plugins/wordpress-seo/images/indexables_3_left_bubble_optm.svg'),(3755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/link-in-icon.svg','wp-content/plugins/wordpress-seo/images/link-in-icon.svg'),(3756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/link-out-icon.svg','wp-content/plugins/wordpress-seo/images/link-out-icon.svg'),(3757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/local_plugin_assistant.svg','wp-content/plugins/wordpress-seo/images/local_plugin_assistant.svg'),(3758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_man_1_optim.svg','wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_man_1_optim.svg'),(3759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_1_optim.svg','wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_1_optim.svg'),(3760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_2_optim.svg','wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_2_optim.svg'),(3761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/new-to-configuration-notice.svg','wp-content/plugins/wordpress-seo/images/new-to-configuration-notice.svg'),(3762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/news_plugin_assistant.svg','wp-content/plugins/wordpress-seo/images/news_plugin_assistant.svg'),(3763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/plugin_subscription.svg','wp-content/plugins/wordpress-seo/images/plugin_subscription.svg'),(3764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/readability-icon.svg','wp-content/plugins/wordpress-seo/images/readability-icon.svg'),(3765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/succes_marieke_bubble_optm.svg','wp-content/plugins/wordpress-seo/images/succes_marieke_bubble_optm.svg'),(3766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/support-team.svg','wp-content/plugins/wordpress-seo/images/support-team.svg'),(3767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/video_plugin_assistant.svg','wp-content/plugins/wordpress-seo/images/video_plugin_assistant.svg'),(3768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/images/woo_plugin_assistant.svg','wp-content/plugins/wordpress-seo/images/woo_plugin_assistant.svg'),(3769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-addon-manager.php','wp-content/plugins/wordpress-seo/inc/class-addon-manager.php'),(3770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-my-yoast-api-request.php','wp-content/plugins/wordpress-seo/inc/class-my-yoast-api-request.php'),(3771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-post-type.php','wp-content/plugins/wordpress-seo/inc/class-post-type.php'),(3772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-rewrite.php','wp-content/plugins/wordpress-seo/inc/class-rewrite.php'),(3773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-upgrade-history.php','wp-content/plugins/wordpress-seo/inc/class-upgrade-history.php'),(3774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-upgrade.php','wp-content/plugins/wordpress-seo/inc/class-upgrade.php'),(3775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-admin-bar-menu.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-admin-bar-menu.php'),(3776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-content-images.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-content-images.php'),(3777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-fields.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-fields.php'),(3778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-taxonomies.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-taxonomies.php'),(3779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-image-utils.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-image-utils.php'),(3780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-installation.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-installation.php'),(3781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.php'),(3782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-primary-term.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-primary-term.php'),(3783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-rank.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-rank.php'),(3784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-replace-vars.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-replace-vars.php'),(3785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-replacement-variable.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-replacement-variable.php'),(3786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-shortlinker.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-shortlinker.php'),(3787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-statistics.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-statistics.php'),(3788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-wpseo-utils.php','wp-content/plugins/wordpress-seo/inc/class-wpseo-utils.php'),(3789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/class-yoast-dynamic-rewrites.php','wp-content/plugins/wordpress-seo/inc/class-yoast-dynamic-rewrites.php'),(3790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/date-helper.php','wp-content/plugins/wordpress-seo/inc/date-helper.php'),(3791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-bad-request-exception.php','wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-bad-request-exception.php'),(3792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-invalid-json-exception.php','wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-invalid-json-exception.php'),(3793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/index.php','wp-content/plugins/wordpress-seo/inc/index.php'),(3794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-ajax-integration.php','wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-ajax-integration.php'),(3795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-integration.php','wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-integration.php'),(3796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/language-utils.php','wp-content/plugins/wordpress-seo/inc/language-utils.php'),(3797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.php','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.php'),(3798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php'),(3799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php'),(3800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-wpseo.php','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-wpseo.php'),(3801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option.php','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option.php'),(3802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-options.php','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-options.php'),(3803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-taxonomy-meta.php','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-taxonomy-meta.php'),(3804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-author-sitemap-provider.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-author-sitemap-provider.php'),(3805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-post-type-sitemap-provider.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-post-type-sitemap-provider.php'),(3806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-cache-data.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-cache-data.php'),(3807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-image-parser.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-image-parser.php'),(3808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-admin.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-admin.php'),(3809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache-validator.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache-validator.php'),(3810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache.php'),(3811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-renderer.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-renderer.php'),(3812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-router.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-router.php'),(3813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps.php'),(3814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/class-taxonomy-sitemap-provider.php','wp-content/plugins/wordpress-seo/inc/sitemaps/class-taxonomy-sitemap-provider.php'),(3815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-cache-data.php','wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-cache-data.php'),(3816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-provider.php','wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-provider.php'),(3817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/wpseo-functions-deprecated.php','wp-content/plugins/wordpress-seo/inc/wpseo-functions-deprecated.php'),(3818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/wpseo-functions.php','wp-content/plugins/wordpress-seo/inc/wpseo-functions.php'),(3819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php','wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php'),(3820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/index.php','wp-content/plugins/wordpress-seo/index.php'),(3821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/academy.js','wp-content/plugins/wordpress-seo/js/dist/academy.js'),(3822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/addon-installation.js','wp-content/plugins/wordpress-seo/js/dist/addon-installation.js'),(3823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/admin-global.js','wp-content/plugins/wordpress-seo/js/dist/admin-global.js'),(3824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/admin-modules.js','wp-content/plugins/wordpress-seo/js/dist/admin-modules.js'),(3825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/analysis-worker.js','wp-content/plugins/wordpress-seo/js/dist/analysis-worker.js'),(3826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/api-client.js','wp-content/plugins/wordpress-seo/js/dist/api-client.js'),(3827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/block-editor.js','wp-content/plugins/wordpress-seo/js/dist/block-editor.js'),(3828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/bulk-editor.js','wp-content/plugins/wordpress-seo/js/dist/bulk-editor.js'),(3829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/classic-editor.js','wp-content/plugins/wordpress-seo/js/dist/classic-editor.js'),(3830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/crawl-settings.js','wp-content/plugins/wordpress-seo/js/dist/crawl-settings.js'),(3831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/dashboard-widget.js','wp-content/plugins/wordpress-seo/js/dist/dashboard-widget.js'),(3832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/dynamic-blocks.js','wp-content/plugins/wordpress-seo/js/dist/dynamic-blocks.js'),(3833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/edit-page.js','wp-content/plugins/wordpress-seo/js/dist/edit-page.js'),(3834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/editor-modules.js','wp-content/plugins/wordpress-seo/js/dist/editor-modules.js'),(3835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/elementor.js','wp-content/plugins/wordpress-seo/js/dist/elementor.js'),(3836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/analysis.js','wp-content/plugins/wordpress-seo/js/dist/externals/analysis.js'),(3837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/analysisReport.js','wp-content/plugins/wordpress-seo/js/dist/externals/analysisReport.js'),(3838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/chart.js.js','wp-content/plugins/wordpress-seo/js/dist/externals/chart.js.js'),(3839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/componentsNew.js','wp-content/plugins/wordpress-seo/js/dist/externals/componentsNew.js'),(3840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/draftJs.js','wp-content/plugins/wordpress-seo/js/dist/externals/draftJs.js'),(3841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/featureFlag.js','wp-content/plugins/wordpress-seo/js/dist/externals/featureFlag.js'),(3842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/helpers.js','wp-content/plugins/wordpress-seo/js/dist/externals/helpers.js'),(3843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/jed.js','wp-content/plugins/wordpress-seo/js/dist/externals/jed.js'),(3844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/propTypes.js','wp-content/plugins/wordpress-seo/js/dist/externals/propTypes.js'),(3845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/reactHelmet.js','wp-content/plugins/wordpress-seo/js/dist/externals/reactHelmet.js'),(3846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/redux.js','wp-content/plugins/wordpress-seo/js/dist/externals/redux.js'),(3847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/reduxJsToolkit.js','wp-content/plugins/wordpress-seo/js/dist/externals/reduxJsToolkit.js'),(3848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/replacementVariableEditor.js','wp-content/plugins/wordpress-seo/js/dist/externals/replacementVariableEditor.js'),(3849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/searchMetadataPreviews.js','wp-content/plugins/wordpress-seo/js/dist/externals/searchMetadataPreviews.js'),(3850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/socialMetadataForms.js','wp-content/plugins/wordpress-seo/js/dist/externals/socialMetadataForms.js'),(3851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/styleGuide.js','wp-content/plugins/wordpress-seo/js/dist/externals/styleGuide.js'),(3852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/styledComponents.js','wp-content/plugins/wordpress-seo/js/dist/externals/styledComponents.js'),(3853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals/uiLibrary.js','wp-content/plugins/wordpress-seo/js/dist/externals/uiLibrary.js'),(3854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals-components.js','wp-content/plugins/wordpress-seo/js/dist/externals-components.js'),(3855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals-contexts.js','wp-content/plugins/wordpress-seo/js/dist/externals-contexts.js'),(3856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/externals-redux.js','wp-content/plugins/wordpress-seo/js/dist/externals-redux.js'),(3857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/faq-block.js','wp-content/plugins/wordpress-seo/js/dist/faq-block.js'),(3858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/filter-explanation.js','wp-content/plugins/wordpress-seo/js/dist/filter-explanation.js'),(3859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/first-time-configuration.js','wp-content/plugins/wordpress-seo/js/dist/first-time-configuration.js'),(3860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/frontend-inspector-resources.js','wp-content/plugins/wordpress-seo/js/dist/frontend-inspector-resources.js'),(3861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/help-scout-beacon.js','wp-content/plugins/wordpress-seo/js/dist/help-scout-beacon.js'),(3862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/how-to-block.js','wp-content/plugins/wordpress-seo/js/dist/how-to-block.js'),(3863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/import.js','wp-content/plugins/wordpress-seo/js/dist/import.js'),(3864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/indexation.js','wp-content/plugins/wordpress-seo/js/dist/indexation.js'),(3865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/installation-success.js','wp-content/plugins/wordpress-seo/js/dist/installation-success.js'),(3866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/integrations-page.js','wp-content/plugins/wordpress-seo/js/dist/integrations-page.js'),(3867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/introductions.js','wp-content/plugins/wordpress-seo/js/dist/introductions.js'),(3868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/ar.js','wp-content/plugins/wordpress-seo/js/dist/languages/ar.js'),(3869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/ca.js','wp-content/plugins/wordpress-seo/js/dist/languages/ca.js'),(3870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/cs.js','wp-content/plugins/wordpress-seo/js/dist/languages/cs.js'),(3871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/de.js','wp-content/plugins/wordpress-seo/js/dist/languages/de.js'),(3872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/default.js','wp-content/plugins/wordpress-seo/js/dist/languages/default.js'),(3873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/el.js','wp-content/plugins/wordpress-seo/js/dist/languages/el.js'),(3874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/en.js','wp-content/plugins/wordpress-seo/js/dist/languages/en.js'),(3875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/es.js','wp-content/plugins/wordpress-seo/js/dist/languages/es.js'),(3876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/fa.js','wp-content/plugins/wordpress-seo/js/dist/languages/fa.js'),(3877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/fr.js','wp-content/plugins/wordpress-seo/js/dist/languages/fr.js'),(3878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/he.js','wp-content/plugins/wordpress-seo/js/dist/languages/he.js'),(3879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/hu.js','wp-content/plugins/wordpress-seo/js/dist/languages/hu.js'),(3880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/id.js','wp-content/plugins/wordpress-seo/js/dist/languages/id.js'),(3881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/it.js','wp-content/plugins/wordpress-seo/js/dist/languages/it.js'),(3882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/ja.js','wp-content/plugins/wordpress-seo/js/dist/languages/ja.js'),(3883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/nb.js','wp-content/plugins/wordpress-seo/js/dist/languages/nb.js'),(3884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/nl.js','wp-content/plugins/wordpress-seo/js/dist/languages/nl.js'),(3885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/pl.js','wp-content/plugins/wordpress-seo/js/dist/languages/pl.js'),(3886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/pt.js','wp-content/plugins/wordpress-seo/js/dist/languages/pt.js'),(3887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/ru.js','wp-content/plugins/wordpress-seo/js/dist/languages/ru.js'),(3888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/sk.js','wp-content/plugins/wordpress-seo/js/dist/languages/sk.js'),(3889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/sv.js','wp-content/plugins/wordpress-seo/js/dist/languages/sv.js'),(3890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/languages/tr.js','wp-content/plugins/wordpress-seo/js/dist/languages/tr.js'),(3891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/network-admin.js','wp-content/plugins/wordpress-seo/js/dist/network-admin.js'),(3892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/new-dashboard.js','wp-content/plugins/wordpress-seo/js/dist/new-dashboard.js'),(3893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/new-settings.js','wp-content/plugins/wordpress-seo/js/dist/new-settings.js'),(3894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/post-edit.js','wp-content/plugins/wordpress-seo/js/dist/post-edit.js'),(3895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/quick-edit-handler.js','wp-content/plugins/wordpress-seo/js/dist/quick-edit-handler.js'),(3896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/react-select.js','wp-content/plugins/wordpress-seo/js/dist/react-select.js'),(3897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/redirect-old-features-tab.js','wp-content/plugins/wordpress-seo/js/dist/redirect-old-features-tab.js'),(3898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/reindex-links.js','wp-content/plugins/wordpress-seo/js/dist/reindex-links.js'),(3899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/settings.js','wp-content/plugins/wordpress-seo/js/dist/settings.js'),(3900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/support.js','wp-content/plugins/wordpress-seo/js/dist/support.js'),(3901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/term-edit.js','wp-content/plugins/wordpress-seo/js/dist/term-edit.js'),(3902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/used-keywords-assessment.js','wp-content/plugins/wordpress-seo/js/dist/used-keywords-assessment.js'),(3903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/wincher-dashboard-widget.js','wp-content/plugins/wordpress-seo/js/dist/wincher-dashboard-widget.js'),(3904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/js/dist/workouts.js','wp-content/plugins/wordpress-seo/js/dist/workouts.js'),(3905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/abstract-main.php','wp-content/plugins/wordpress-seo/lib/abstract-main.php'),(3906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/dependency-injection/container-registry.php','wp-content/plugins/wordpress-seo/lib/dependency-injection/container-registry.php'),(3907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/adapter.php','wp-content/plugins/wordpress-seo/lib/migrations/adapter.php'),(3908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/column.php','wp-content/plugins/wordpress-seo/lib/migrations/column.php'),(3909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/constants.php','wp-content/plugins/wordpress-seo/lib/migrations/constants.php'),(3910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/migration.php','wp-content/plugins/wordpress-seo/lib/migrations/migration.php'),(3911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/migrations/table.php','wp-content/plugins/wordpress-seo/lib/migrations/table.php'),(3912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/model.php','wp-content/plugins/wordpress-seo/lib/model.php'),(3913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/lib/orm.php','wp-content/plugins/wordpress-seo/lib/orm.php'),(3914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/Yoast_SEO_Icon.svg','wp-content/plugins/wordpress-seo/packages/js/images/Yoast_SEO_Icon.svg'),(3915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/Yoast_icon_kader.svg','wp-content/plugins/wordpress-seo/packages/js/images/Yoast_icon_kader.svg'),(3916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/algolia-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/algolia-logo.svg'),(3917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/connection-assistant.svg','wp-content/plugins/wordpress-seo/packages/js/images/connection-assistant.svg'),(3918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/edd-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/edd-logo.svg'),(3919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/elementor-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/elementor-logo.svg'),(3920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/g2_logo_white_optm.svg','wp-content/plugins/wordpress-seo/packages/js/images/g2_logo_white_optm.svg'),(3921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/icon-arrow-down.svg','wp-content/plugins/wordpress-seo/packages/js/images/icon-arrow-down.svg'),(3922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/icon-facebook.svg','wp-content/plugins/wordpress-seo/packages/js/images/icon-facebook.svg'),(3923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/icon-twitter.svg','wp-content/plugins/wordpress-seo/packages/js/images/icon-twitter.svg'),(3924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/indexables_1_left_bubble_optm.svg','wp-content/plugins/wordpress-seo/packages/js/images/indexables_1_left_bubble_optm.svg'),(3925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/indexables_2_left_bubble_optm.svg','wp-content/plugins/wordpress-seo/packages/js/images/indexables_2_left_bubble_optm.svg'),(3926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/jetpack-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/jetpack-logo.svg'),(3927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/logo-g2-white.svg','wp-content/plugins/wordpress-seo/packages/js/images/logo-g2-white.svg'),(3928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/mastodon-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/mastodon-logo.svg'),(3929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/motivated_bubble_woman_1_optim.svg','wp-content/plugins/wordpress-seo/packages/js/images/motivated_bubble_woman_1_optim.svg'),(3930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/semrush-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/semrush-logo.svg'),(3931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/ssp-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/ssp-logo.svg'),(3932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/star-rating-half.svg','wp-content/plugins/wordpress-seo/packages/js/images/star-rating-half.svg'),(3933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/star-rating-star.svg','wp-content/plugins/wordpress-seo/packages/js/images/star-rating-star.svg'),(3934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/succes_marieke_bubble_optm.svg','wp-content/plugins/wordpress-seo/packages/js/images/succes_marieke_bubble_optm.svg'),(3935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/tec-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/tec-logo.svg'),(3936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/wincher-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/wincher-logo.svg'),(3937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/woocommerce-seo-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/woocommerce-seo-logo.svg'),(3938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/wordproof-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/wordproof-logo.svg'),(3939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/wp-recipe-maker-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/wp-recipe-maker-logo.svg'),(3940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/x-logo.svg','wp-content/plugins/wordpress-seo/packages/js/images/x-logo.svg'),(3941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/packages/js/images/yoast_loading_spinner.svg','wp-content/plugins/wordpress-seo/packages/js/images/yoast_loading_spinner.svg'),(3942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/addon-installation/addon-activate-action.php','wp-content/plugins/wordpress-seo/src/actions/addon-installation/addon-activate-action.php'),(3943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/addon-installation/addon-install-action.php','wp-content/plugins/wordpress-seo/src/actions/addon-installation/addon-install-action.php'),(3944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/alert-dismissal-action.php','wp-content/plugins/wordpress-seo/src/actions/alert-dismissal-action.php'),(3945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/configuration/first-time-configuration-action.php','wp-content/plugins/wordpress-seo/src/actions/configuration/first-time-configuration-action.php'),(3946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/abstract-aioseo-importing-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/abstract-aioseo-importing-action.php'),(3947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/abstract-aioseo-settings-importing-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/abstract-aioseo-settings-importing-action.php'),(3948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-cleanup-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-cleanup-action.php'),(3949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-custom-archive-settings-importing-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-custom-archive-settings-importing-action.php'),(3950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-default-archive-settings-importing-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-default-archive-settings-importing-action.php'),(3951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-general-settings-importing-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-general-settings-importing-action.php'),(3952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posts-importing-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posts-importing-action.php'),(3953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posttype-defaults-settings-importing-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posttype-defaults-settings-importing-action.php'),(3954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-taxonomy-settings-importing-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-taxonomy-settings-importing-action.php'),(3955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-validate-data-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-validate-data-action.php'),(3956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/deactivate-conflicting-plugins-action.php','wp-content/plugins/wordpress-seo/src/actions/importing/deactivate-conflicting-plugins-action.php'),(3957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/importing-action-interface.php','wp-content/plugins/wordpress-seo/src/actions/importing/importing-action-interface.php'),(3958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/importing/importing-indexation-action-interface.php','wp-content/plugins/wordpress-seo/src/actions/importing/importing-indexation-action-interface.php'),(3959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexables/indexable-head-action.php','wp-content/plugins/wordpress-seo/src/actions/indexables/indexable-head-action.php'),(3960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-indexing-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-indexing-action.php'),(3961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php'),(3962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-general-indexation-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-general-indexation-action.php'),(3963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-indexing-complete-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-indexing-complete-action.php'),(3964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-indexation-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-indexation-action.php'),(3965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-type-archive-indexation-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-type-archive-indexation-action.php'),(3966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-term-indexation-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-term-indexation-action.php'),(3967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php','wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php'),(3968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-complete-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-complete-action.php'),(3969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-prepare-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-prepare-action.php'),(3970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/limited-indexing-action-interface.php','wp-content/plugins/wordpress-seo/src/actions/indexing/limited-indexing-action-interface.php'),(3971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/post-link-indexing-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/post-link-indexing-action.php'),(3972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/indexing/term-link-indexing-action.php','wp-content/plugins/wordpress-seo/src/actions/indexing/term-link-indexing-action.php'),(3973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/integrations-action.php','wp-content/plugins/wordpress-seo/src/actions/integrations-action.php'),(3974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-login-action.php','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-login-action.php'),(3975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-options-action.php','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-options-action.php'),(3976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-phrases-action.php','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-phrases-action.php'),(3977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-account-action.php','wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-account-action.php'),(3978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-keyphrases-action.php','wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-keyphrases-action.php'),(3979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-login-action.php','wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-login-action.php'),(3980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/application/missing-indexables-collector.php','wp-content/plugins/wordpress-seo/src/analytics/application/missing-indexables-collector.php'),(3981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/application/to-be-cleaned-indexables-collector.php','wp-content/plugins/wordpress-seo/src/analytics/application/to-be-cleaned-indexables-collector.php'),(3982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-bucket.php','wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-bucket.php'),(3983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-count.php','wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-count.php'),(3984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-bucket.php','wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-bucket.php'),(3985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-count.php','wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-count.php'),(3986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/analytics/user-interface/last-completed-indexation-integration.php','wp-content/plugins/wordpress-seo/src/analytics/user-interface/last-completed-indexation-integration.php'),(3987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-author-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-author-builder.php'),(3988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-builder.php'),(3989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-date-archive-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-date-archive-builder.php'),(3990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-hierarchy-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-hierarchy-builder.php'),(3991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-home-page-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-home-page-builder.php'),(3992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-link-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-link-builder.php'),(3993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-post-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-post-builder.php'),(3994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-post-type-archive-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-post-type-archive-builder.php'),(3995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-social-image-trait.php','wp-content/plugins/wordpress-seo/src/builders/indexable-social-image-trait.php'),(3996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-system-page-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-system-page-builder.php'),(3997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/indexable-term-builder.php','wp-content/plugins/wordpress-seo/src/builders/indexable-term-builder.php'),(3998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/builders/primary-term-builder.php','wp-content/plugins/wordpress-seo/src/builders/primary-term-builder.php'),(3999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/commands/cleanup-command.php','wp-content/plugins/wordpress-seo/src/commands/cleanup-command.php'),(4000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/commands/command-interface.php','wp-content/plugins/wordpress-seo/src/commands/command-interface.php'),(4001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/commands/index-command.php','wp-content/plugins/wordpress-seo/src/commands/index-command.php'),(4002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/addon-installation-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/addon-installation-conditional.php'),(4003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/doing-post-quick-edit-save-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/admin/doing-post-quick-edit-save-conditional.php'),(4004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/estimated-reading-time-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/admin/estimated-reading-time-conditional.php'),(4005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/licenses-page-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/admin/licenses-page-conditional.php'),(4006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/non-network-admin-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/admin/non-network-admin-conditional.php'),(4007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/post-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/admin/post-conditional.php'),(4008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/posts-overview-or-ajax-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/admin/posts-overview-or-ajax-conditional.php'),(4009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin/yoast-admin-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/admin/yoast-admin-conditional.php'),(4010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/admin-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/admin-conditional.php'),(4011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/attachment-redirections-enabled-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/attachment-redirections-enabled-conditional.php'),(4012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/check-required-version-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/check-required-version-conditional.php'),(4013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/conditional-interface.php','wp-content/plugins/wordpress-seo/src/conditionals/conditional-interface.php'),(4014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/deactivating-yoast-seo-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/deactivating-yoast-seo-conditional.php'),(4015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/development-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/development-conditional.php'),(4016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/feature-flag-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/feature-flag-conditional.php'),(4017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/front-end-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/front-end-conditional.php'),(4018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/get-request-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/get-request-conditional.php'),(4019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/headless-rest-endpoints-enabled-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/headless-rest-endpoints-enabled-conditional.php'),(4020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/import-tool-selected-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/import-tool-selected-conditional.php'),(4021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/jetpack-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/jetpack-conditional.php'),(4022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/migrations-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/migrations-conditional.php'),(4023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/new-dashboard-ui-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/new-dashboard-ui-conditional.php'),(4024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/new-settings-ui-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/new-settings-ui-conditional.php'),(4025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/news-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/news-conditional.php'),(4026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/no-conditionals-trait.php','wp-content/plugins/wordpress-seo/src/conditionals/no-conditionals-trait.php'),(4027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/no-tool-selected-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/no-tool-selected-conditional.php'),(4028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/non-multisite-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/non-multisite-conditional.php'),(4029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/not-admin-ajax-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/not-admin-ajax-conditional.php'),(4030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/open-graph-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/open-graph-conditional.php'),(4031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/premium-active-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/premium-active-conditional.php'),(4032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/premium-inactive-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/premium-inactive-conditional.php'),(4033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/primary-category-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/primary-category-conditional.php'),(4034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/robots-txt-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/robots-txt-conditional.php'),(4035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/semrush-enabled-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/semrush-enabled-conditional.php'),(4036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/settings-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/settings-conditional.php'),(4037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/should-index-links-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/should-index-links-conditional.php'),(4038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/text-formality-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/text-formality-conditional.php'),(4039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-activated-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-activated-conditional.php'),(4040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-edit-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-edit-conditional.php'),(4041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/polylang-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/third-party/polylang-conditional.php'),(4042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/translatepress-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/third-party/translatepress-conditional.php'),(4043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/w3-total-cache-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/third-party/w3-total-cache-conditional.php'),(4044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-conditional.php'),(4045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-wpseo-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-wpseo-conditional.php'),(4046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/traits/admin-conditional-trait.php','wp-content/plugins/wordpress-seo/src/conditionals/traits/admin-conditional-trait.php'),(4047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/updated-importer-framework-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/updated-importer-framework-conditional.php'),(4048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-can-edit-users-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/user-can-edit-users-conditional.php'),(4049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-can-manage-wpseo-options-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/user-can-manage-wpseo-options-conditional.php'),(4050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-can-publish-posts-and-pages-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/user-can-publish-posts-and-pages-conditional.php'),(4051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-edit-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/user-edit-conditional.php'),(4052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/user-profile-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/user-profile-conditional.php'),(4053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/web-stories-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/web-stories-conditional.php'),(4054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wincher-automatically-track-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/wincher-automatically-track-conditional.php'),(4055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wincher-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/wincher-conditional.php'),(4056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wincher-enabled-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/wincher-enabled-conditional.php'),(4057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wincher-token-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/wincher-token-conditional.php'),(4058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/woocommerce-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/woocommerce-conditional.php'),(4059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wp-cron-enabled-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/wp-cron-enabled-conditional.php'),(4060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/wp-robots-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/wp-robots-conditional.php'),(4061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/xmlrpc-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/xmlrpc-conditional.php'),(4062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/yoast-admin-and-dashboard-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/yoast-admin-and-dashboard-conditional.php'),(4063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/conditionals/yoast-tools-page-conditional.php','wp-content/plugins/wordpress-seo/src/conditionals/yoast-tools-page-conditional.php'),(4064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/badge-group-names.php','wp-content/plugins/wordpress-seo/src/config/badge-group-names.php'),(4065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/conflicting-plugins.php','wp-content/plugins/wordpress-seo/src/config/conflicting-plugins.php'),(4066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/indexing-reasons.php','wp-content/plugins/wordpress-seo/src/config/indexing-reasons.php'),(4067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migration-status.php','wp-content/plugins/wordpress-seo/src/config/migration-status.php'),(4068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20171228151840_WpYoastIndexable.php','wp-content/plugins/wordpress-seo/src/config/migrations/20171228151840_WpYoastIndexable.php'),(4069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20171228151841_WpYoastPrimaryTerm.php','wp-content/plugins/wordpress-seo/src/config/migrations/20171228151841_WpYoastPrimaryTerm.php'),(4070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20190529075038_WpYoastDropIndexableMetaTableIfExists.php','wp-content/plugins/wordpress-seo/src/config/migrations/20190529075038_WpYoastDropIndexableMetaTableIfExists.php'),(4071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20191011111109_WpYoastIndexableHierarchy.php','wp-content/plugins/wordpress-seo/src/config/migrations/20191011111109_WpYoastIndexableHierarchy.php'),(4072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200408101900_AddCollationToTables.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200408101900_AddCollationToTables.php'),(4073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200420073606_AddColumnsToIndexables.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200420073606_AddColumnsToIndexables.php'),(4074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200428123747_BreadcrumbTitleAndHierarchyReset.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200428123747_BreadcrumbTitleAndHierarchyReset.php'),(4075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200428194858_ExpandIndexableColumnLengths.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200428194858_ExpandIndexableColumnLengths.php'),(4076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200429105310_TruncateIndexableTables.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200429105310_TruncateIndexableTables.php'),(4077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200430075614_AddIndexableObjectIdAndTypeIndex.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200430075614_AddIndexableObjectIdAndTypeIndex.php'),(4078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200430150130_ClearIndexableTables.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200430150130_ClearIndexableTables.php'),(4079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200507054848_DeleteDuplicateIndexables.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200507054848_DeleteDuplicateIndexables.php'),(4080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200513133401_ResetIndexableHierarchyTable.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200513133401_ResetIndexableHierarchyTable.php'),(4081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200609154515_AddHasAncestorsColumn.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200609154515_AddHasAncestorsColumn.php'),(4082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200616130143_ReplacePermalinkHashIndex.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200616130143_ReplacePermalinkHashIndex.php'),(4083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200617122511_CreateSEOLinksTable.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200617122511_CreateSEOLinksTable.php'),(4084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200702141921_CreateIndexableSubpagesIndex.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200702141921_CreateIndexableSubpagesIndex.php'),(4085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20200728095334_AddIndexesForProminentWordsOnIndexables.php','wp-content/plugins/wordpress-seo/src/config/migrations/20200728095334_AddIndexesForProminentWordsOnIndexables.php'),(4086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20201202144329_AddEstimatedReadingTime.php','wp-content/plugins/wordpress-seo/src/config/migrations/20201202144329_AddEstimatedReadingTime.php'),(4087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20201216124002_ExpandIndexableIDColumnLengths.php','wp-content/plugins/wordpress-seo/src/config/migrations/20201216124002_ExpandIndexableIDColumnLengths.php'),(4088,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20201216141134_ExpandPrimaryTermIDColumnLengths.php','wp-content/plugins/wordpress-seo/src/config/migrations/20201216141134_ExpandPrimaryTermIDColumnLengths.php'),(4089,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20210817092415_AddVersionColumnToIndexables.php','wp-content/plugins/wordpress-seo/src/config/migrations/20210817092415_AddVersionColumnToIndexables.php'),(4090,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20211020091404_AddObjectTimestamps.php','wp-content/plugins/wordpress-seo/src/config/migrations/20211020091404_AddObjectTimestamps.php'),(4091,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/migrations/20230417083836_AddInclusiveLanguageScore.php','wp-content/plugins/wordpress-seo/src/config/migrations/20230417083836_AddInclusiveLanguageScore.php'),(4092,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/oauth-client.php','wp-content/plugins/wordpress-seo/src/config/oauth-client.php'),(4093,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/researcher-languages.php','wp-content/plugins/wordpress-seo/src/config/researcher-languages.php'),(4094,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/schema-ids.php','wp-content/plugins/wordpress-seo/src/config/schema-ids.php'),(4095,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/schema-types.php','wp-content/plugins/wordpress-seo/src/config/schema-types.php'),(4096,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/semrush-client.php','wp-content/plugins/wordpress-seo/src/config/semrush-client.php'),(4097,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/wincher-client.php','wp-content/plugins/wordpress-seo/src/config/wincher-client.php'),(4098,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/config/wincher-pkce-provider.php','wp-content/plugins/wordpress-seo/src/config/wincher-pkce-provider.php'),(4099,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-dismiss-notifications.php','wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-dismiss-notifications.php'),(4100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-watcher-actions.php','wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-watcher-actions.php'),(4101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/content-type-visibility/user-interface/content-type-visibility-dismiss-new-route.php','wp-content/plugins/wordpress-seo/src/content-type-visibility/user-interface/content-type-visibility-dismiss-new-route.php'),(4102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/context/meta-tags-context.php','wp-content/plugins/wordpress-seo/src/context/meta-tags-context.php'),(4103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/dashboard/user-interface/new-dashboard-page-integration.php','wp-content/plugins/wordpress-seo/src/dashboard/user-interface/new-dashboard-page-integration.php'),(4104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/admin/class-customizer.php','wp-content/plugins/wordpress-seo/src/deprecated/admin/class-customizer.php'),(4105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/frontend/breadcrumbs.php','wp-content/plugins/wordpress-seo/src/deprecated/frontend/breadcrumbs.php'),(4106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/frontend/frontend.php','wp-content/plugins/wordpress-seo/src/deprecated/frontend/frontend.php'),(4107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/index.php','wp-content/plugins/wordpress-seo/src/deprecated/index.php'),(4108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-integration-active-conditional.php','wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-integration-active-conditional.php'),(4109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-plugin-inactive-conditional.php','wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-plugin-inactive-conditional.php'),(4110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/config/wordproof-app-config.php','wp-content/plugins/wordpress-seo/src/deprecated/src/config/wordproof-app-config.php'),(4111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/config/wordproof-translations.php','wp-content/plugins/wordpress-seo/src/deprecated/src/config/wordproof-translations.php'),(4112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/wordproof-helper.php','wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/wordproof-helper.php'),(4113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/disable-concatenate-scripts-integration.php','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/disable-concatenate-scripts-integration.php'),(4114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/old-premium-integration.php','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/old-premium-integration.php'),(4115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/duplicate-post-integration.php','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/duplicate-post-integration.php'),(4116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wincher.php','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wincher.php'),(4117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof-integration-toggle.php','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof-integration-toggle.php'),(4118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof.php','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof.php'),(4119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/deprecated/src/introductions/application/ai-generate-titles-and-descriptions-introduction-upsell.php','wp-content/plugins/wordpress-seo/src/deprecated/src/introductions/application/ai-generate-titles-and-descriptions-introduction-upsell.php'),(4120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/analysis-features/enabled-analysis-features-repository.php','wp-content/plugins/wordpress-seo/src/editors/application/analysis-features/enabled-analysis-features-repository.php'),(4121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/integrations/integration-information-repository.php','wp-content/plugins/wordpress-seo/src/editors/application/integrations/integration-information-repository.php'),(4122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/seo/post-seo-information-repository.php','wp-content/plugins/wordpress-seo/src/editors/application/seo/post-seo-information-repository.php'),(4123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/seo/term-seo-information-repository.php','wp-content/plugins/wordpress-seo/src/editors/application/seo/term-seo-information-repository.php'),(4124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/application/site/website-information-repository.php','wp-content/plugins/wordpress-seo/src/editors/application/site/website-information-repository.php'),(4125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature-interface.php','wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature-interface.php'),(4126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature.php','wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature.php'),(4127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-features-list.php','wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-features-list.php'),(4128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/integrations/integration-data-provider-interface.php','wp-content/plugins/wordpress-seo/src/editors/domain/integrations/integration-data-provider-interface.php'),(4129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/description.php','wp-content/plugins/wordpress-seo/src/editors/domain/seo/description.php'),(4130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/keyphrase.php','wp-content/plugins/wordpress-seo/src/editors/domain/seo/keyphrase.php'),(4131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/seo-plugin-data-interface.php','wp-content/plugins/wordpress-seo/src/editors/domain/seo/seo-plugin-data-interface.php'),(4132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/social.php','wp-content/plugins/wordpress-seo/src/editors/domain/seo/social.php'),(4133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/domain/seo/title.php','wp-content/plugins/wordpress-seo/src/editors/domain/seo/title.php'),(4134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/cornerstone-content.php','wp-content/plugins/wordpress-seo/src/editors/framework/cornerstone-content.php'),(4135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/inclusive-language-analysis.php','wp-content/plugins/wordpress-seo/src/editors/framework/inclusive-language-analysis.php'),(4136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/jetpack-markdown.php','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/jetpack-markdown.php'),(4137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/multilingual.php','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/multilingual.php'),(4138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/news-seo.php','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/news-seo.php'),(4139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/semrush.php','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/semrush.php'),(4140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/wincher.php','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/wincher.php'),(4141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce-seo.php','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce-seo.php'),(4142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce.php','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce.php'),(4143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/keyphrase-analysis.php','wp-content/plugins/wordpress-seo/src/editors/framework/keyphrase-analysis.php'),(4144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/previously-used-keyphrase.php','wp-content/plugins/wordpress-seo/src/editors/framework/previously-used-keyphrase.php'),(4145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/readability-analysis.php','wp-content/plugins/wordpress-seo/src/editors/framework/readability-analysis.php'),(4146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/description-data-provider-interface.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/description-data-provider-interface.php'),(4147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/keyphrase-interface.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/keyphrase-interface.php'),(4148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/abstract-post-seo-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/abstract-post-seo-data-provider.php'),(4149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/description-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/description-data-provider.php'),(4150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/keyphrase-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/keyphrase-data-provider.php'),(4151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/social-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/social-data-provider.php'),(4152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/title-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/title-data-provider.php'),(4153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/social-data-provider-interface.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/social-data-provider-interface.php'),(4154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/abstract-term-seo-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/abstract-term-seo-data-provider.php'),(4155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/description-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/description-data-provider.php'),(4156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/keyphrase-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/keyphrase-data-provider.php'),(4157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/social-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/social-data-provider.php'),(4158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/title-data-provider.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/title-data-provider.php'),(4159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/seo/title-data-provider-interface.php','wp-content/plugins/wordpress-seo/src/editors/framework/seo/title-data-provider-interface.php'),(4160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/site/base-site-information.php','wp-content/plugins/wordpress-seo/src/editors/framework/site/base-site-information.php'),(4161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/site/post-site-information.php','wp-content/plugins/wordpress-seo/src/editors/framework/site/post-site-information.php'),(4162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/site/term-site-information.php','wp-content/plugins/wordpress-seo/src/editors/framework/site/term-site-information.php'),(4163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/editors/framework/word-form-recognition.php','wp-content/plugins/wordpress-seo/src/editors/framework/word-form-recognition.php'),(4164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/elementor/infrastructure/request-post.php','wp-content/plugins/wordpress-seo/src/elementor/infrastructure/request-post.php'),(4165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-activation-error-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-activation-error-exception.php'),(4166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-already-installed-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-already-installed-exception.php'),(4167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-installation-error-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-installation-error-exception.php'),(4168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-activate-plugins-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-activate-plugins-exception.php'),(4169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-install-plugins-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-install-plugins-exception.php'),(4170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/forbidden-property-mutation-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/forbidden-property-mutation-exception.php'),(4171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/importing/aioseo-validation-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/importing/aioseo-validation-exception.php'),(4172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/author-not-built-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/author-not-built-exception.php'),(4173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/indexable-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/indexable-exception.php'),(4174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/invalid-term-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/invalid-term-exception.php'),(4175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/not-built-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/not-built-exception.php'),(4176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-built-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-built-exception.php'),(4177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-found-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-found-exception.php'),(4178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-type-not-built-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-type-not-built-exception.php'),(4179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/source-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/source-exception.php'),(4180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-built-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-built-exception.php'),(4181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-found-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-found-exception.php'),(4182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/missing-method.php','wp-content/plugins/wordpress-seo/src/exceptions/missing-method.php'),(4183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/oauth/authentication-failed-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/oauth/authentication-failed-exception.php'),(4184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/empty-property-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/empty-property-exception.php'),(4185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/empty-token-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/empty-token-exception.php'),(4186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/failed-storage-exception.php','wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/failed-storage-exception.php'),(4187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/functions.php','wp-content/plugins/wordpress-seo/src/functions.php'),(4188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generated/assets/externals.php','wp-content/plugins/wordpress-seo/src/generated/assets/externals.php'),(4189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generated/assets/languages.php','wp-content/plugins/wordpress-seo/src/generated/assets/languages.php'),(4190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generated/assets/plugin.php','wp-content/plugins/wordpress-seo/src/generated/assets/plugin.php'),(4191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generated/container.php','wp-content/plugins/wordpress-seo/src/generated/container.php'),(4192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/breadcrumbs-generator.php','wp-content/plugins/wordpress-seo/src/generators/breadcrumbs-generator.php'),(4193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/generator-interface.php','wp-content/plugins/wordpress-seo/src/generators/generator-interface.php'),(4194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/open-graph-image-generator.php','wp-content/plugins/wordpress-seo/src/generators/open-graph-image-generator.php'),(4195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/open-graph-locale-generator.php','wp-content/plugins/wordpress-seo/src/generators/open-graph-locale-generator.php'),(4196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/abstract-schema-piece.php','wp-content/plugins/wordpress-seo/src/generators/schema/abstract-schema-piece.php'),(4197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/article.php','wp-content/plugins/wordpress-seo/src/generators/schema/article.php'),(4198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/author.php','wp-content/plugins/wordpress-seo/src/generators/schema/author.php'),(4199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/breadcrumb.php','wp-content/plugins/wordpress-seo/src/generators/schema/breadcrumb.php'),(4200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/faq.php','wp-content/plugins/wordpress-seo/src/generators/schema/faq.php'),(4201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/howto.php','wp-content/plugins/wordpress-seo/src/generators/schema/howto.php'),(4202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/main-image.php','wp-content/plugins/wordpress-seo/src/generators/schema/main-image.php'),(4203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/organization.php','wp-content/plugins/wordpress-seo/src/generators/schema/organization.php'),(4204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/person.php','wp-content/plugins/wordpress-seo/src/generators/schema/person.php'),(4205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/webpage.php','wp-content/plugins/wordpress-seo/src/generators/schema/webpage.php'),(4206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema/website.php','wp-content/plugins/wordpress-seo/src/generators/schema/website.php'),(4207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/schema-generator.php','wp-content/plugins/wordpress-seo/src/generators/schema-generator.php'),(4208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/generators/twitter-image-generator.php','wp-content/plugins/wordpress-seo/src/generators/twitter-image-generator.php'),(4209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/aioseo-helper.php','wp-content/plugins/wordpress-seo/src/helpers/aioseo-helper.php'),(4210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/asset-helper.php','wp-content/plugins/wordpress-seo/src/helpers/asset-helper.php'),(4211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/attachment-cleanup-helper.php','wp-content/plugins/wordpress-seo/src/helpers/attachment-cleanup-helper.php'),(4212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/author-archive-helper.php','wp-content/plugins/wordpress-seo/src/helpers/author-archive-helper.php'),(4213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/blocks-helper.php','wp-content/plugins/wordpress-seo/src/helpers/blocks-helper.php'),(4214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/capability-helper.php','wp-content/plugins/wordpress-seo/src/helpers/capability-helper.php'),(4215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/crawl-cleanup-helper.php','wp-content/plugins/wordpress-seo/src/helpers/crawl-cleanup-helper.php'),(4216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/curl-helper.php','wp-content/plugins/wordpress-seo/src/helpers/curl-helper.php'),(4217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/current-page-helper.php','wp-content/plugins/wordpress-seo/src/helpers/current-page-helper.php'),(4218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/date-helper.php','wp-content/plugins/wordpress-seo/src/helpers/date-helper.php'),(4219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/environment-helper.php','wp-content/plugins/wordpress-seo/src/helpers/environment-helper.php'),(4220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/first-time-configuration-notice-helper.php','wp-content/plugins/wordpress-seo/src/helpers/first-time-configuration-notice-helper.php'),(4221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/home-url-helper.php','wp-content/plugins/wordpress-seo/src/helpers/home-url-helper.php'),(4222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/image-helper.php','wp-content/plugins/wordpress-seo/src/helpers/image-helper.php'),(4223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/import-cursor-helper.php','wp-content/plugins/wordpress-seo/src/helpers/import-cursor-helper.php'),(4224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/import-helper.php','wp-content/plugins/wordpress-seo/src/helpers/import-helper.php'),(4225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/indexable-helper.php','wp-content/plugins/wordpress-seo/src/helpers/indexable-helper.php'),(4226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/indexable-to-postmeta-helper.php','wp-content/plugins/wordpress-seo/src/helpers/indexable-to-postmeta-helper.php'),(4227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/indexing-helper.php','wp-content/plugins/wordpress-seo/src/helpers/indexing-helper.php'),(4228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/language-helper.php','wp-content/plugins/wordpress-seo/src/helpers/language-helper.php'),(4229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/meta-helper.php','wp-content/plugins/wordpress-seo/src/helpers/meta-helper.php'),(4230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/notification-helper.php','wp-content/plugins/wordpress-seo/src/helpers/notification-helper.php'),(4231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/open-graph/image-helper.php','wp-content/plugins/wordpress-seo/src/helpers/open-graph/image-helper.php'),(4232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/open-graph/values-helper.php','wp-content/plugins/wordpress-seo/src/helpers/open-graph/values-helper.php'),(4233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/options-helper.php','wp-content/plugins/wordpress-seo/src/helpers/options-helper.php'),(4234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/pagination-helper.php','wp-content/plugins/wordpress-seo/src/helpers/pagination-helper.php'),(4235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/permalink-helper.php','wp-content/plugins/wordpress-seo/src/helpers/permalink-helper.php'),(4236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/post-helper.php','wp-content/plugins/wordpress-seo/src/helpers/post-helper.php'),(4237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/post-type-helper.php','wp-content/plugins/wordpress-seo/src/helpers/post-type-helper.php'),(4238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/primary-term-helper.php','wp-content/plugins/wordpress-seo/src/helpers/primary-term-helper.php'),(4239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/product-helper.php','wp-content/plugins/wordpress-seo/src/helpers/product-helper.php'),(4240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/redirect-helper.php','wp-content/plugins/wordpress-seo/src/helpers/redirect-helper.php'),(4241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/request-helper.php','wp-content/plugins/wordpress-seo/src/helpers/request-helper.php'),(4242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/require-file-helper.php','wp-content/plugins/wordpress-seo/src/helpers/require-file-helper.php'),(4243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/robots-helper.php','wp-content/plugins/wordpress-seo/src/helpers/robots-helper.php'),(4244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/robots-txt-helper.php','wp-content/plugins/wordpress-seo/src/helpers/robots-txt-helper.php'),(4245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/sanitization-helper.php','wp-content/plugins/wordpress-seo/src/helpers/sanitization-helper.php'),(4246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/article-helper.php','wp-content/plugins/wordpress-seo/src/helpers/schema/article-helper.php'),(4247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/html-helper.php','wp-content/plugins/wordpress-seo/src/helpers/schema/html-helper.php'),(4248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/id-helper.php','wp-content/plugins/wordpress-seo/src/helpers/schema/id-helper.php'),(4249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/image-helper.php','wp-content/plugins/wordpress-seo/src/helpers/schema/image-helper.php'),(4250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/language-helper.php','wp-content/plugins/wordpress-seo/src/helpers/schema/language-helper.php'),(4251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/schema/replace-vars-helper.php','wp-content/plugins/wordpress-seo/src/helpers/schema/replace-vars-helper.php'),(4252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/score-icon-helper.php','wp-content/plugins/wordpress-seo/src/helpers/score-icon-helper.php'),(4253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/short-link-helper.php','wp-content/plugins/wordpress-seo/src/helpers/short-link-helper.php'),(4254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/site-helper.php','wp-content/plugins/wordpress-seo/src/helpers/site-helper.php'),(4255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/social-profiles-helper.php','wp-content/plugins/wordpress-seo/src/helpers/social-profiles-helper.php'),(4256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/string-helper.php','wp-content/plugins/wordpress-seo/src/helpers/string-helper.php'),(4257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/taxonomy-helper.php','wp-content/plugins/wordpress-seo/src/helpers/taxonomy-helper.php'),(4258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/twitter/image-helper.php','wp-content/plugins/wordpress-seo/src/helpers/twitter/image-helper.php'),(4259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/url-helper.php','wp-content/plugins/wordpress-seo/src/helpers/url-helper.php'),(4260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/user-helper.php','wp-content/plugins/wordpress-seo/src/helpers/user-helper.php'),(4261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/wincher-helper.php','wp-content/plugins/wordpress-seo/src/helpers/wincher-helper.php'),(4262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/woocommerce-helper.php','wp-content/plugins/wordpress-seo/src/helpers/woocommerce-helper.php'),(4263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/wordpress-helper.php','wp-content/plugins/wordpress-seo/src/helpers/wordpress-helper.php'),(4264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/helpers/wpdb-helper.php','wp-content/plugins/wordpress-seo/src/helpers/wpdb-helper.php'),(4265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/images/Application/image-content-extractor.php','wp-content/plugins/wordpress-seo/src/images/Application/image-content-extractor.php'),(4266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/crawl-cleanup-permalinks.php','wp-content/plugins/wordpress-seo/src/initializers/crawl-cleanup-permalinks.php'),(4267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/disable-core-sitemaps.php','wp-content/plugins/wordpress-seo/src/initializers/disable-core-sitemaps.php'),(4268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/initializer-interface.php','wp-content/plugins/wordpress-seo/src/initializers/initializer-interface.php'),(4269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/migration-runner.php','wp-content/plugins/wordpress-seo/src/initializers/migration-runner.php'),(4270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/plugin-headers.php','wp-content/plugins/wordpress-seo/src/initializers/plugin-headers.php'),(4271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/initializers/woocommerce.php','wp-content/plugins/wordpress-seo/src/initializers/woocommerce.php'),(4272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/abstract-exclude-post-type.php','wp-content/plugins/wordpress-seo/src/integrations/abstract-exclude-post-type.php'),(4273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/academy-integration.php','wp-content/plugins/wordpress-seo/src/integrations/academy-integration.php'),(4274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/activation-cleanup-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/activation-cleanup-integration.php'),(4275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/dialog-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/dialog-integration.php'),(4276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/installation-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/installation-integration.php'),(4277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/admin-columns-cache-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/admin-columns-cache-integration.php'),(4278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/background-indexing-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/background-indexing-integration.php'),(4279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/check-required-version.php','wp-content/plugins/wordpress-seo/src/integrations/admin/check-required-version.php'),(4280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/crawl-settings-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/crawl-settings-integration.php'),(4281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/cron-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/cron-integration.php'),(4282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/deactivated-premium-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/deactivated-premium-integration.php'),(4283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/first-time-configuration-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/first-time-configuration-integration.php'),(4284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/first-time-configuration-notice-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/first-time-configuration-notice-integration.php'),(4285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/fix-news-dependencies-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/fix-news-dependencies-integration.php'),(4286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/health-check-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/health-check-integration.php'),(4287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/helpscout-beacon.php','wp-content/plugins/wordpress-seo/src/integrations/admin/helpscout-beacon.php'),(4288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/import-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/import-integration.php'),(4289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/indexables-exclude-taxonomy-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/indexables-exclude-taxonomy-integration.php'),(4290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-notification-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-notification-integration.php'),(4291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-tool-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-tool-integration.php'),(4292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/installation-success-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/installation-success-integration.php'),(4293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/integrations-page.php','wp-content/plugins/wordpress-seo/src/integrations/admin/integrations-page.php'),(4294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/link-count-columns-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/link-count-columns-integration.php'),(4295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/menu-badge-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/menu-badge-integration.php'),(4296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/migration-error-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/migration-error-integration.php'),(4297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/old-configuration-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/old-configuration-integration.php'),(4298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/redirect-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/redirect-integration.php'),(4299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/redirects-page-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/redirects-page-integration.php'),(4300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/unsupported-php-version-notice.php','wp-content/plugins/wordpress-seo/src/integrations/admin/unsupported-php-version-notice.php'),(4301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/admin/workouts-integration.php','wp-content/plugins/wordpress-seo/src/integrations/admin/workouts-integration.php'),(4302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/abstract-dismissable-alert.php','wp-content/plugins/wordpress-seo/src/integrations/alerts/abstract-dismissable-alert.php'),(4303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-product-editor-checklist-notification.php','wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-product-editor-checklist-notification.php'),(4304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-promotion-notification.php','wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-promotion-notification.php'),(4305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-sidebar-checklist-notification.php','wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-sidebar-checklist-notification.php'),(4306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/trustpilot-review-notification.php','wp-content/plugins/wordpress-seo/src/integrations/alerts/trustpilot-review-notification.php'),(4307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/alerts/webinar-promo-notification.php','wp-content/plugins/wordpress-seo/src/integrations/alerts/webinar-promo-notification.php'),(4308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block-v3.php','wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block-v3.php'),(4309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block.php','wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block.php'),(4310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/block-categories.php','wp-content/plugins/wordpress-seo/src/integrations/blocks/block-categories.php');
INSERT INTO `hyu_wfknownfilelist` VALUES (4311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/breadcrumbs-block.php','wp-content/plugins/wordpress-seo/src/integrations/blocks/breadcrumbs-block.php'),(4312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/blocks/structured-data-blocks.php','wp-content/plugins/wordpress-seo/src/integrations/blocks/structured-data-blocks.php'),(4313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/breadcrumbs-integration.php','wp-content/plugins/wordpress-seo/src/integrations/breadcrumbs-integration.php'),(4314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/cleanup-integration.php','wp-content/plugins/wordpress-seo/src/integrations/cleanup-integration.php'),(4315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/estimated-reading-time.php','wp-content/plugins/wordpress-seo/src/integrations/estimated-reading-time.php'),(4316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/exclude-attachment-post-type.php','wp-content/plugins/wordpress-seo/src/integrations/exclude-attachment-post-type.php'),(4317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/exclude-oembed-cache-post-type.php','wp-content/plugins/wordpress-seo/src/integrations/exclude-oembed-cache-post-type.php'),(4318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/feature-flag-integration.php','wp-content/plugins/wordpress-seo/src/integrations/feature-flag-integration.php'),(4319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/backwards-compatibility.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/backwards-compatibility.php'),(4320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/category-term-description.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/category-term-description.php'),(4321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/comment-link-fixer.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/comment-link-fixer.php'),(4322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-basic.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-basic.php'),(4323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-rss.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-rss.php'),(4324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-searches.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-searches.php'),(4325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/feed-improvements.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/feed-improvements.php'),(4326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/force-rewrite-title.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/force-rewrite-title.php'),(4327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/handle-404.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/handle-404.php'),(4328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/indexing-controls.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/indexing-controls.php'),(4329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/open-graph-oembed.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/open-graph-oembed.php'),(4330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/redirects.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/redirects.php'),(4331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/robots-txt-integration.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/robots-txt-integration.php'),(4332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/rss-footer-embed.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/rss-footer-embed.php'),(4333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/schema-accessibility-feature.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/schema-accessibility-feature.php'),(4334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end/wp-robots-integration.php','wp-content/plugins/wordpress-seo/src/integrations/front-end/wp-robots-integration.php'),(4335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/front-end-integration.php','wp-content/plugins/wordpress-seo/src/integrations/front-end-integration.php'),(4336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/integration-interface.php','wp-content/plugins/wordpress-seo/src/integrations/integration-interface.php'),(4337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/primary-category.php','wp-content/plugins/wordpress-seo/src/integrations/primary-category.php'),(4338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/settings-integration.php','wp-content/plugins/wordpress-seo/src/integrations/settings-integration.php'),(4339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/support-integration.php','wp-content/plugins/wordpress-seo/src/integrations/support-integration.php'),(4340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/amp.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/amp.php'),(4341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/bbpress.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/bbpress.php'),(4342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/elementor.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/elementor.php'),(4343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-elementor-post-types.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-elementor-post-types.php'),(4344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-woocommerce-post-types.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-woocommerce-post-types.php'),(4345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/jetpack.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/jetpack.php'),(4346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/w3-total-cache.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/w3-total-cache.php'),(4347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories-post-edit.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories-post-edit.php'),(4348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories.php'),(4349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/wincher-publish.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/wincher-publish.php'),(4350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-permalinks.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-permalinks.php'),(4351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-post-edit.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-post-edit.php'),(4352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce.php'),(4353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml-wpseo-notification.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml-wpseo-notification.php'),(4354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml.php','wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml.php'),(4355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/uninstall-integration.php','wp-content/plugins/wordpress-seo/src/integrations/uninstall-integration.php'),(4356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/addon-update-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/addon-update-watcher.php'),(4357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/auto-update-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/auto-update-watcher.php'),(4358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-ancestor-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-ancestor-watcher.php'),(4359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-attachment-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-attachment-watcher.php'),(4360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-archive-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-archive-watcher.php'),(4361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-watcher.php'),(4362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-category-permalink-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-category-permalink-watcher.php'),(4363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-date-archive-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-date-archive-watcher.php'),(4364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-home-page-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-home-page-watcher.php'),(4365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-homeurl-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-homeurl-watcher.php'),(4366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-permalink-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-permalink-watcher.php'),(4367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-meta-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-meta-watcher.php'),(4368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-type-archive-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-type-archive-watcher.php'),(4369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-type-change-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-type-change-watcher.php'),(4370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-watcher.php'),(4371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-static-home-page-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-static-home-page-watcher.php'),(4372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-system-page-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-system-page-watcher.php'),(4373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-taxonomy-change-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-taxonomy-change-watcher.php'),(4374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-term-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-term-watcher.php'),(4375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/option-titles-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/option-titles-watcher.php'),(4376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/option-wpseo-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/option-wpseo-watcher.php'),(4377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-category-quick-edit-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-category-quick-edit-watcher.php'),(4378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-term-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-term-watcher.php'),(4379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/search-engines-discouraged-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/search-engines-discouraged-watcher.php'),(4380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/watchers/woocommerce-beta-editor-watcher.php','wp-content/plugins/wordpress-seo/src/integrations/watchers/woocommerce-beta-editor-watcher.php'),(4381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/integrations/xmlrpc.php','wp-content/plugins/wordpress-seo/src/integrations/xmlrpc.php'),(4382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/ai-fix-assessments-upsell.php','wp-content/plugins/wordpress-seo/src/introductions/application/ai-fix-assessments-upsell.php'),(4383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/current-page-trait.php','wp-content/plugins/wordpress-seo/src/introductions/application/current-page-trait.php'),(4384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/introductions-collector.php','wp-content/plugins/wordpress-seo/src/introductions/application/introductions-collector.php'),(4385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/user-allowed-trait.php','wp-content/plugins/wordpress-seo/src/introductions/application/user-allowed-trait.php'),(4386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/application/version-trait.php','wp-content/plugins/wordpress-seo/src/introductions/application/version-trait.php'),(4387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-interface.php','wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-interface.php'),(4388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-item.php','wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-item.php'),(4389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/domain/introductions-bucket.php','wp-content/plugins/wordpress-seo/src/introductions/domain/introductions-bucket.php'),(4390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/domain/invalid-user-id-exception.php','wp-content/plugins/wordpress-seo/src/introductions/domain/invalid-user-id-exception.php'),(4391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/infrastructure/introductions-seen-repository.php','wp-content/plugins/wordpress-seo/src/introductions/infrastructure/introductions-seen-repository.php'),(4392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/infrastructure/wistia-embed-permission-repository.php','wp-content/plugins/wordpress-seo/src/introductions/infrastructure/wistia-embed-permission-repository.php'),(4393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-integration.php','wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-integration.php'),(4394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-seen-route.php','wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-seen-route.php'),(4395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/introductions/user-interface/wistia-embed-permission-route.php','wp-content/plugins/wordpress-seo/src/introductions/user-interface/wistia-embed-permission-route.php'),(4396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/loadable-interface.php','wp-content/plugins/wordpress-seo/src/loadable-interface.php'),(4397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/loader.php','wp-content/plugins/wordpress-seo/src/loader.php'),(4398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/loggers/logger.php','wp-content/plugins/wordpress-seo/src/loggers/logger.php'),(4399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/main.php','wp-content/plugins/wordpress-seo/src/main.php'),(4400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/memoizers/meta-tags-context-memoizer.php','wp-content/plugins/wordpress-seo/src/memoizers/meta-tags-context-memoizer.php'),(4401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/memoizers/presentation-memoizer.php','wp-content/plugins/wordpress-seo/src/memoizers/presentation-memoizer.php'),(4402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/indexable-extension.php','wp-content/plugins/wordpress-seo/src/models/indexable-extension.php'),(4403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/indexable-hierarchy.php','wp-content/plugins/wordpress-seo/src/models/indexable-hierarchy.php'),(4404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/indexable.php','wp-content/plugins/wordpress-seo/src/models/indexable.php'),(4405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/primary-term.php','wp-content/plugins/wordpress-seo/src/models/primary-term.php'),(4406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/seo-links.php','wp-content/plugins/wordpress-seo/src/models/seo-links.php'),(4407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/models/seo-meta.php','wp-content/plugins/wordpress-seo/src/models/seo-meta.php'),(4408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/abstract-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/abstract-presentation.php'),(4409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/archive-adjacent-trait.php','wp-content/plugins/wordpress-seo/src/presentations/archive-adjacent-trait.php'),(4410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-author-archive-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-author-archive-presentation.php'),(4411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-date-archive-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-date-archive-presentation.php'),(4412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-error-page-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-error-page-presentation.php'),(4413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-home-page-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-home-page-presentation.php'),(4414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-archive-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-archive-presentation.php'),(4415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-presentation.php'),(4416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-presentation.php'),(4417,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-search-result-page-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-search-result-page-presentation.php'),(4418,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-static-home-page-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-static-home-page-presentation.php'),(4419,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-static-posts-page-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-static-posts-page-presentation.php'),(4420,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presentations/indexable-term-archive-presentation.php','wp-content/plugins/wordpress-seo/src/presentations/indexable-term-archive-presentation.php'),(4421,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-presenter.php'),(4422,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php'),(4423,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/abstract-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/abstract-presenter.php'),(4424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/alert-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/alert-presenter.php'),(4425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/badge-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/badge-presenter.php'),(4426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/beta-badge-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/beta-badge-presenter.php'),(4427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/help-link-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/help-link-presenter.php'),(4428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-error-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-error-presenter.php'),(4429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-failed-notification-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-failed-notification-presenter.php'),(4430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-list-item-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-list-item-presenter.php'),(4431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-notification-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-notification-presenter.php'),(4432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/light-switch-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/light-switch-presenter.php'),(4433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/meta-fields-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/meta-fields-presenter.php'),(4434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/migration-error-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/migration-error-presenter.php'),(4435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/notice-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/notice-presenter.php'),(4436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/premium-badge-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/premium-badge-presenter.php'),(4437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/search-engines-discouraged-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/search-engines-discouraged-presenter.php'),(4438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/sidebar-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/sidebar-presenter.php'),(4439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/admin/woocommerce-beta-editor-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/admin/woocommerce-beta-editor-presenter.php'),(4440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/breadcrumbs-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/breadcrumbs-presenter.php'),(4441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/canonical-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/canonical-presenter.php'),(4442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/debug/marker-close-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/debug/marker-close-presenter.php'),(4443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/debug/marker-open-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/debug/marker-open-presenter.php'),(4444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/meta-author-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/meta-author-presenter.php'),(4445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/meta-description-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/meta-description-presenter.php'),(4446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-author-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-author-presenter.php'),(4447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-modified-time-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-modified-time-presenter.php'),(4448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-published-time-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-published-time-presenter.php'),(4449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-publisher-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-publisher-presenter.php'),(4450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/description-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/description-presenter.php'),(4451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/image-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/image-presenter.php'),(4452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/locale-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/locale-presenter.php'),(4453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/site-name-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/site-name-presenter.php'),(4454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/title-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/title-presenter.php'),(4455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/type-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/type-presenter.php'),(4456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/open-graph/url-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/open-graph/url-presenter.php'),(4457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/rel-next-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/rel-next-presenter.php'),(4458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/rel-prev-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/rel-prev-presenter.php'),(4459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/robots-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/robots-presenter.php'),(4460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/robots-txt-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/robots-txt-presenter.php'),(4461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/schema-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/schema-presenter.php'),(4462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/score-icon-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/score-icon-presenter.php'),(4463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/slack/enhanced-data-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/slack/enhanced-data-presenter.php'),(4464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/title-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/title-presenter.php'),(4465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/card-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/twitter/card-presenter.php'),(4466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/creator-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/twitter/creator-presenter.php'),(4467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/description-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/twitter/description-presenter.php'),(4468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/image-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/twitter/image-presenter.php'),(4469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/site-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/twitter/site-presenter.php'),(4470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/twitter/title-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/twitter/title-presenter.php'),(4471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/url-list-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/url-list-presenter.php'),(4472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/baidu-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/webmaster/baidu-presenter.php'),(4473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/bing-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/webmaster/bing-presenter.php'),(4474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/google-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/webmaster/google-presenter.php'),(4475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/pinterest-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/webmaster/pinterest-presenter.php'),(4476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/presenters/webmaster/yandex-presenter.php','wp-content/plugins/wordpress-seo/src/presenters/webmaster/yandex-presenter.php'),(4477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager-interface.php','wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager-interface.php'),(4478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager.php','wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager.php'),(4479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/abstract-promotion.php','wp-content/plugins/wordpress-seo/src/promotions/domain/abstract-promotion.php'),(4480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-checklist-promotion.php','wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-checklist-promotion.php'),(4481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-promotion.php','wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-promotion.php'),(4482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/promotion-interface.php','wp-content/plugins/wordpress-seo/src/promotions/domain/promotion-interface.php'),(4483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/promotions/domain/time-interval.php','wp-content/plugins/wordpress-seo/src/promotions/domain/time-interval.php'),(4484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/indexable-cleanup-repository.php','wp-content/plugins/wordpress-seo/src/repositories/indexable-cleanup-repository.php'),(4485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/indexable-hierarchy-repository.php','wp-content/plugins/wordpress-seo/src/repositories/indexable-hierarchy-repository.php'),(4486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/indexable-repository.php','wp-content/plugins/wordpress-seo/src/repositories/indexable-repository.php'),(4487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/primary-term-repository.php','wp-content/plugins/wordpress-seo/src/repositories/primary-term-repository.php'),(4488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/repositories/seo-links-repository.php','wp-content/plugins/wordpress-seo/src/repositories/seo-links-repository.php'),(4489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/abstract-action-route.php','wp-content/plugins/wordpress-seo/src/routes/abstract-action-route.php'),(4490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/abstract-indexation-route.php','wp-content/plugins/wordpress-seo/src/routes/abstract-indexation-route.php'),(4491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/alert-dismissal-route.php','wp-content/plugins/wordpress-seo/src/routes/alert-dismissal-route.php'),(4492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/first-time-configuration-route.php','wp-content/plugins/wordpress-seo/src/routes/first-time-configuration-route.php'),(4493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/importing-route.php','wp-content/plugins/wordpress-seo/src/routes/importing-route.php'),(4494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/indexables-head-route.php','wp-content/plugins/wordpress-seo/src/routes/indexables-head-route.php'),(4495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/indexing-route.php','wp-content/plugins/wordpress-seo/src/routes/indexing-route.php'),(4496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/integrations-route.php','wp-content/plugins/wordpress-seo/src/routes/integrations-route.php'),(4497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/meta-search-route.php','wp-content/plugins/wordpress-seo/src/routes/meta-search-route.php'),(4498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/route-interface.php','wp-content/plugins/wordpress-seo/src/routes/route-interface.php'),(4499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/semrush-route.php','wp-content/plugins/wordpress-seo/src/routes/semrush-route.php'),(4500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/supported-features-route.php','wp-content/plugins/wordpress-seo/src/routes/supported-features-route.php'),(4501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/wincher-route.php','wp-content/plugins/wordpress-seo/src/routes/wincher-route.php'),(4502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/workouts-route.php','wp-content/plugins/wordpress-seo/src/routes/workouts-route.php'),(4503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/routes/yoast-head-rest-field.php','wp-content/plugins/wordpress-seo/src/routes/yoast-head-rest-field.php'),(4504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-check.php','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-check.php'),(4505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-reports.php','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-reports.php'),(4506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-runner.php','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-runner.php'),(4507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/health-check.php','wp-content/plugins/wordpress-seo/src/services/health-check/health-check.php'),(4508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/links-table-check.php','wp-content/plugins/wordpress-seo/src/services/health-check/links-table-check.php'),(4509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/links-table-reports.php','wp-content/plugins/wordpress-seo/src/services/health-check/links-table-reports.php'),(4510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/links-table-runner.php','wp-content/plugins/wordpress-seo/src/services/health-check/links-table-runner.php'),(4511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/myyoast-api-request-factory.php','wp-content/plugins/wordpress-seo/src/services/health-check/myyoast-api-request-factory.php'),(4512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-check.php','wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-check.php'),(4513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-reports.php','wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-reports.php'),(4514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-runner.php','wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-runner.php'),(4515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-check.php','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-check.php'),(4516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-reports.php','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-reports.php'),(4517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-runner.php','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-runner.php'),(4518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/report-builder-factory.php','wp-content/plugins/wordpress-seo/src/services/health-check/report-builder-factory.php'),(4519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/report-builder.php','wp-content/plugins/wordpress-seo/src/services/health-check/report-builder.php'),(4520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/reports-trait.php','wp-content/plugins/wordpress-seo/src/services/health-check/reports-trait.php'),(4521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/health-check/runner-interface.php','wp-content/plugins/wordpress-seo/src/services/health-check/runner-interface.php'),(4522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-replacevar-service.php','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-replacevar-service.php'),(4523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-provider-service.php','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-provider-service.php'),(4524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-transformer-service.php','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-transformer-service.php'),(4525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-social-images-provider-service.php','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-social-images-provider-service.php'),(4526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/conflicting-plugins-service.php','wp-content/plugins/wordpress-seo/src/services/importing/conflicting-plugins-service.php'),(4527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/importing/importable-detector-service.php','wp-content/plugins/wordpress-seo/src/services/importing/importable-detector-service.php'),(4528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/services/indexables/indexable-version-manager.php','wp-content/plugins/wordpress-seo/src/services/indexables/indexable-version-manager.php'),(4529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/classes-surface.php','wp-content/plugins/wordpress-seo/src/surfaces/classes-surface.php'),(4530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/helpers-surface.php','wp-content/plugins/wordpress-seo/src/surfaces/helpers-surface.php'),(4531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/meta-surface.php','wp-content/plugins/wordpress-seo/src/surfaces/meta-surface.php'),(4532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/open-graph-helpers-surface.php','wp-content/plugins/wordpress-seo/src/surfaces/open-graph-helpers-surface.php'),(4533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/schema-helpers-surface.php','wp-content/plugins/wordpress-seo/src/surfaces/schema-helpers-surface.php'),(4534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/twitter-helpers-surface.php','wp-content/plugins/wordpress-seo/src/surfaces/twitter-helpers-surface.php'),(4535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/surfaces/values/meta.php','wp-content/plugins/wordpress-seo/src/surfaces/values/meta.php'),(4536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/application/additional-contactmethods-collector.php','wp-content/plugins/wordpress-seo/src/user-meta/application/additional-contactmethods-collector.php'),(4537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/application/cleanup-service.php','wp-content/plugins/wordpress-seo/src/user-meta/application/cleanup-service.php'),(4538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/application/custom-meta-collector.php','wp-content/plugins/wordpress-seo/src/user-meta/application/custom-meta-collector.php'),(4539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/domain/additional-contactmethod-interface.php','wp-content/plugins/wordpress-seo/src/user-meta/domain/additional-contactmethod-interface.php'),(4540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/domain/custom-meta-interface.php','wp-content/plugins/wordpress-seo/src/user-meta/domain/custom-meta-interface.php'),(4541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/facebook.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/facebook.php'),(4542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/instagram.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/instagram.php'),(4543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/linkedin.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/linkedin.php'),(4544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/myspace.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/myspace.php'),(4545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/pinterest.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/pinterest.php'),(4546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/soundcloud.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/soundcloud.php'),(4547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/tumblr.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/tumblr.php'),(4548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/wikipedia.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/wikipedia.php'),(4549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/x.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/x.php'),(4550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/youtube.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/youtube.php'),(4551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-metadesc.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-metadesc.php'),(4552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-title.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-title.php'),(4553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/content-analysis-disable.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/content-analysis-disable.php'),(4554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/inclusive-language-analysis-disable.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/inclusive-language-analysis-disable.php'),(4555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/keyword-analysis-disable.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/keyword-analysis-disable.php'),(4556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/noindex-author.php','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/noindex-author.php'),(4557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/infrastructure/cleanup-repository.php','wp-content/plugins/wordpress-seo/src/user-meta/infrastructure/cleanup-repository.php'),(4558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/user-interface/additional-contactmethods-integration.php','wp-content/plugins/wordpress-seo/src/user-meta/user-interface/additional-contactmethods-integration.php'),(4559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/user-interface/cleanup-integration.php','wp-content/plugins/wordpress-seo/src/user-meta/user-interface/cleanup-integration.php'),(4560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-meta/user-interface/custom-meta-integration.php','wp-content/plugins/wordpress-seo/src/user-meta/user-interface/custom-meta-integration.php'),(4561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/user-profiles-additions/user-interface/user-profiles-additions-ui.php','wp-content/plugins/wordpress-seo/src/user-profiles-additions/user-interface/user-profiles-additions-ui.php'),(4562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/images.php','wp-content/plugins/wordpress-seo/src/values/images.php'),(4563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/indexables/indexable-builder-versions.php','wp-content/plugins/wordpress-seo/src/values/indexables/indexable-builder-versions.php'),(4564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/oauth/oauth-token.php','wp-content/plugins/wordpress-seo/src/values/oauth/oauth-token.php'),(4565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/open-graph/images.php','wp-content/plugins/wordpress-seo/src/values/open-graph/images.php'),(4566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/robots/directive.php','wp-content/plugins/wordpress-seo/src/values/robots/directive.php'),(4567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/robots/user-agent-list.php','wp-content/plugins/wordpress-seo/src/values/robots/user-agent-list.php'),(4568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/robots/user-agent.php','wp-content/plugins/wordpress-seo/src/values/robots/user-agent.php'),(4569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/values/twitter/images.php','wp-content/plugins/wordpress-seo/src/values/twitter/images.php'),(4570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/wordpress/wrapper.php','wp-content/plugins/wordpress-seo/src/wordpress/wrapper.php'),(4571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/wrappers/wp-query-wrapper.php','wp-content/plugins/wordpress-seo/src/wrappers/wp-query-wrapper.php'),(4572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/wrappers/wp-remote-handler.php','wp-content/plugins/wordpress-seo/src/wrappers/wp-remote-handler.php'),(4573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/src/wrappers/wp-rewrite-wrapper.php','wp-content/plugins/wordpress-seo/src/wrappers/wp-rewrite-wrapper.php'),(4574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/autoload.php','wp-content/plugins/wordpress-seo/vendor/autoload.php'),(4575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader.php','wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader.php'),(4576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/InstalledVersions.php','wp-content/plugins/wordpress-seo/vendor/composer/InstalledVersions.php'),(4577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_classmap.php','wp-content/plugins/wordpress-seo/vendor/composer/autoload_classmap.php'),(4578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_files.php','wp-content/plugins/wordpress-seo/vendor/composer/autoload_files.php'),(4579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_namespaces.php','wp-content/plugins/wordpress-seo/vendor/composer/autoload_namespaces.php'),(4580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_psr4.php','wp-content/plugins/wordpress-seo/vendor/composer/autoload_psr4.php'),(4581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php','wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php'),(4582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/autoload_static.php','wp-content/plugins/wordpress-seo/vendor/composer/autoload_static.php'),(4583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/installed.php','wp-content/plugins/wordpress-seo/vendor/composer/installed.php'),(4584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php','wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php'),(4585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/default.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/default.php'),(4586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/version.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/version.php'),(4587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configuration.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configuration.php'),(4588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/EmptyProperty.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/EmptyProperty.php'),(4589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidOperatorType.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidOperatorType.php'),(4590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidType.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidType.php'),(4591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidVersionComparisonString.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidVersionComparisonString.php'),(4592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Facades/wordpress.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Facades/wordpress.php'),(4593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Host.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Host.php'),(4594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/DismissStorage.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/DismissStorage.php'),(4595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Listener.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Listener.php'),(4596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Message.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Message.php'),(4597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/MessagePresenter.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/MessagePresenter.php'),(4598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Requirement.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Requirement.php'),(4599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/VersionDetector.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/VersionDetector.php'),(4600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageDismisser.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageDismisser.php'),(4601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageFormatter.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageFormatter.php'),(4602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/BasicMessage.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/BasicMessage.php'),(4603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/HostMessage.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/HostMessage.php'),(4604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/InvalidVersionRequirementMessage.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/InvalidVersionRequirementMessage.php'),(4605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/NullMessage.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/NullMessage.php'),(4606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/UpgradePhpMessage.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/UpgradePhpMessage.php'),(4607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessagesManager.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessagesManager.php'),(4608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Presenters/WPMessagePresenter.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Presenters/WPMessagePresenter.php'),(4609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/RequirementsChecker.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/RequirementsChecker.php'),(4610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/VersionRequirement.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/VersionRequirement.php'),(4611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPDismissOption.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPDismissOption.php'),(4612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPMessageDismissListener.php','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPMessageDismissListener.php'),(4613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/BodySummarizer.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/BodySummarizer.php'),(4614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/BodySummarizerInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/BodySummarizerInterface.php'),(4615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Client.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Client.php'),(4616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php'),(4617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientTrait.php'),(4618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJar.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJar.php'),(4619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php'),(4620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php'),(4621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php'),(4622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SetCookie.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SetCookie.php'),(4623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/BadResponseException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/BadResponseException.php'),(4624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ClientException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ClientException.php'),(4625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ConnectException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ConnectException.php'),(4626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/GuzzleException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/GuzzleException.php'),(4627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php'),(4628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/RequestException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/RequestException.php'),(4629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ServerException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ServerException.php'),(4630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php'),(4631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TransferException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TransferException.php'),(4632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactory.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactory.php'),(4633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php'),(4634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlHandler.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlHandler.php'),(4635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php'),(4636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/EasyHandle.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/EasyHandle.php'),(4637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php'),(4638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/MockHandler.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/MockHandler.php'),(4639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/Proxy.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/Proxy.php'),(4640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/StreamHandler.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/StreamHandler.php'),(4641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/HandlerStack.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/HandlerStack.php'),(4642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatter.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatter.php'),(4643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatterInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatterInterface.php'),(4644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Middleware.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Middleware.php'),(4645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Pool.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Pool.php'),(4646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php'),(4647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RedirectMiddleware.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RedirectMiddleware.php'),(4648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RequestOptions.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RequestOptions.php'),(4649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RetryMiddleware.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RetryMiddleware.php'),(4650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/TransferStats.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/TransferStats.php'),(4651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Utils.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Utils.php'),(4652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions.php'),(4653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions_include.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions_include.php'),(4654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/AggregateException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/AggregateException.php'),(4655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/CancellationException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/CancellationException.php'),(4656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Coroutine.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Coroutine.php'),(4657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Create.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Create.php'),(4658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Each.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Each.php'),(4659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/EachPromise.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/EachPromise.php'),(4660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/FulfilledPromise.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/FulfilledPromise.php'),(4661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Is.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Is.php'),(4662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Promise.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Promise.php'),(4663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromiseInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromiseInterface.php'),(4664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromisorInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromisorInterface.php'),(4665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectedPromise.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectedPromise.php'),(4666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectionException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectionException.php'),(4667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueue.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueue.php'),(4668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueueInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueueInterface.php'),(4669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Utils.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Utils.php'),(4670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/AppendStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/AppendStream.php'),(4671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/BufferStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/BufferStream.php'),(4672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/CachingStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/CachingStream.php'),(4673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/DroppingStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/DroppingStream.php'),(4674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Exception/MalformedUriException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Exception/MalformedUriException.php'),(4675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/FnStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/FnStream.php'),(4676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Header.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Header.php'),(4677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/HttpFactory.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/HttpFactory.php'),(4678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/InflateStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/InflateStream.php'),(4679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LazyOpenStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LazyOpenStream.php'),(4680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LimitStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LimitStream.php'),(4681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Message.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Message.php'),(4682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MessageTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MessageTrait.php'),(4683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MimeType.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MimeType.php'),(4684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MultipartStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MultipartStream.php'),(4685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/NoSeekStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/NoSeekStream.php'),(4686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/PumpStream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/PumpStream.php'),(4687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Query.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Query.php'),(4688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Request.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Request.php'),(4689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Response.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Response.php'),(4690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Rfc7230.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Rfc7230.php'),(4691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/ServerRequest.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/ServerRequest.php'),(4692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Stream.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Stream.php'),(4693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamDecoratorTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamDecoratorTrait.php'),(4694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamWrapper.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamWrapper.php'),(4695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UploadedFile.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UploadedFile.php'),(4696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Uri.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Uri.php'),(4697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriComparator.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriComparator.php'),(4698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriNormalizer.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriNormalizer.php'),(4699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriResolver.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriResolver.php'),(4700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Utils.php','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Utils.php'),(4701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AbstractGrant.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AbstractGrant.php'),(4702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AuthorizationCode.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AuthorizationCode.php'),(4703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/ClientCredentials.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/ClientCredentials.php'),(4704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php'),(4705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/GrantFactory.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/GrantFactory.php'),(4706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Password.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Password.php'),(4707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/RefreshToken.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/RefreshToken.php'),(4708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php'),(4709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/OptionProviderInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/OptionProviderInterface.php'),(4710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php'),(4711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/AbstractProvider.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/AbstractProvider.php'),(4712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php'),(4713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericProvider.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericProvider.php'),(4714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericResourceOwner.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericResourceOwner.php'),(4715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/ResourceOwnerInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/ResourceOwnerInterface.php'),(4716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/AccessToken.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/AccessToken.php'),(4717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/AccessTokenInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/AccessTokenInterface.php'),(4718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php'),(4719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ArrayAccessorTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ArrayAccessorTrait.php'),(4720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/BearerAuthorizationTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/BearerAuthorizationTrait.php'),(4721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/GuardedPropertyTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/GuardedPropertyTrait.php'),(4722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/MacAuthorizationTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/MacAuthorizationTrait.php'),(4723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ProviderRedirectTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ProviderRedirectTrait.php'),(4724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/QueryBuilderTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/QueryBuilderTrait.php'),(4725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequestFactory.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequestFactory.php'),(4726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequiredParameterTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequiredParameterTrait.php'),(4727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php'),(4728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerInterface.php'),(4729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php'),(4730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientExceptionInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientExceptionInterface.php'),(4731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientInterface.php'),(4732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/NetworkExceptionInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/NetworkExceptionInterface.php'),(4733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/RequestExceptionInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/RequestExceptionInterface.php'),(4734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/RequestFactoryInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/RequestFactoryInterface.php'),(4735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ResponseFactoryInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ResponseFactoryInterface.php'),(4736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ServerRequestFactoryInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ServerRequestFactoryInterface.php'),(4737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/StreamFactoryInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/StreamFactoryInterface.php'),(4738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UploadedFileFactoryInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UploadedFileFactoryInterface.php'),(4739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UriFactoryInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UriFactoryInterface.php'),(4740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/MessageInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/MessageInterface.php'),(4741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/RequestInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/RequestInterface.php'),(4742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ResponseInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ResponseInterface.php'),(4743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ServerRequestInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ServerRequestInterface.php'),(4744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/StreamInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/StreamInterface.php'),(4745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UploadedFileInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UploadedFileInterface.php'),(4746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UriInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UriInterface.php'),(4747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/AbstractLogger.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/AbstractLogger.php'),(4748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php'),(4749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LogLevel.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LogLevel.php'),(4750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareInterface.php'),(4751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareTrait.php'),(4752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php'),(4753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerTrait.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerTrait.php'),(4754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/NullLogger.php','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/NullLogger.php'),(4755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument/RewindableGenerator.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument/RewindableGenerator.php'),(4756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php'),(4757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ContainerInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ContainerInterface.php'),(4758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/EnvNotFoundException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/EnvNotFoundException.php'),(4759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ExceptionInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ExceptionInterface.php'),(4760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/InvalidArgumentException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/InvalidArgumentException.php'),(4761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/LogicException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/LogicException.php'),(4762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php'),(4763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/RuntimeException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/RuntimeException.php'),(4764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php'),(4765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceNotFoundException.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceNotFoundException.php'),(4766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php'),(4767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php'),(4768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBag.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBag.php'),(4769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php'),(4770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ResettableContainerInterface.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ResettableContainerInterface.php'),(4771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/deprecation-contracts/function.php','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/deprecation-contracts/function.php'),(4772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/wp-seo-main.php','wp-content/plugins/wordpress-seo/wp-seo-main.php'),(4773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wordpress-seo/wp-seo.php','wp-content/plugins/wordpress-seo/wp-seo.php'),(4774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/fonts/icomoon.svg','wp-content/plugins/wp-rocket/assets/fonts/icomoon.svg'),(4775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/automatic.svg','wp-content/plugins/wp-rocket/assets/img/automatic.svg'),(4776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/bandwidth.svg','wp-content/plugins/wp-rocket/assets/img/bandwidth.svg'),(4777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/bg-activated.svg','wp-content/plugins/wp-rocket/assets/img/bg-activated.svg'),(4778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/configuration.svg','wp-content/plugins/wp-rocket/assets/img/configuration.svg'),(4779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/heartbeat-hover.svg','wp-content/plugins/wp-rocket/assets/img/heartbeat-hover.svg'),(4780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/heartbeat.svg','wp-content/plugins/wp-rocket/assets/img/heartbeat.svg'),(4781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/icon-i-circle.svg','wp-content/plugins/wp-rocket/assets/img/icon-i-circle.svg'),(4782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/icon-user-cache.svg','wp-content/plugins/wp-rocket/assets/img/icon-user-cache.svg'),(4783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/imagify-hover.svg','wp-content/plugins/wp-rocket/assets/img/imagify-hover.svg'),(4784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/imagify-info.svg','wp-content/plugins/wp-rocket/assets/img/imagify-info.svg'),(4785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/imagify-install.svg','wp-content/plugins/wp-rocket/assets/img/imagify-install.svg'),(4786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/imagify.svg','wp-content/plugins/wp-rocket/assets/img/imagify.svg'),(4787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/infinite.svg','wp-content/plugins/wp-rocket/assets/img/infinite.svg'),(4788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-cloudflare.svg','wp-content/plugins/wp-rocket/assets/img/logo-cloudflare.svg'),(4789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-cloudflare2.svg','wp-content/plugins/wp-rocket/assets/img/logo-cloudflare2.svg'),(4790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-varnish.svg','wp-content/plugins/wp-rocket/assets/img/logo-varnish.svg'),(4791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-webp.svg','wp-content/plugins/wp-rocket/assets/img/logo-webp.svg'),(4792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/logo-wprocket-dark.svg','wp-content/plugins/wp-rocket/assets/img/logo-wprocket-dark.svg'),(4793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/one-com-logo.svg','wp-content/plugins/wp-rocket/assets/img/one-com-logo.svg'),(4794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/picto-wprocket-dark.svg','wp-content/plugins/wp-rocket/assets/img/picto-wprocket-dark.svg'),(4795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/play-alt.svg','wp-content/plugins/wp-rocket/assets/img/play-alt.svg'),(4796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/play-hover.svg','wp-content/plugins/wp-rocket/assets/img/play-hover.svg'),(4797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/play.svg','wp-content/plugins/wp-rocket/assets/img/play.svg'),(4798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/plus.svg','wp-content/plugins/wp-rocket/assets/img/plus.svg'),(4799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/img/warning.svg','wp-content/plugins/wp-rocket/assets/img/warning.svg'),(4800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/browser-checker.js','wp-content/plugins/wp-rocket/assets/js/browser-checker.js'),(4801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/browser-checker.min.js','wp-content/plugins/wp-rocket/assets/js/browser-checker.min.js'),(4802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/cpcss-removal.js','wp-content/plugins/wp-rocket/assets/js/cpcss-removal.js'),(4803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/cpcss-removal.min.js','wp-content/plugins/wp-rocket/assets/js/cpcss-removal.min.js'),(4804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/elementor-animation.js','wp-content/plugins/wp-rocket/assets/js/elementor-animation.js'),(4805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/heartbeat.js','wp-content/plugins/wp-rocket/assets/js/heartbeat.js'),(4806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.js','wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.js'),(4807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.min.js','wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.min.js'),(4808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.min.js.map','wp-content/plugins/wp-rocket/assets/js/lazyload/11.0.6/lazyload.min.js.map'),(4809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.js','wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.js'),(4810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.min.js','wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.min.js'),(4811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.min.js.map','wp-content/plugins/wp-rocket/assets/js/lazyload/12.0/lazyload.min.js.map'),(4812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.js','wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.js'),(4813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.min.js','wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.min.js'),(4814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.js','wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.js'),(4815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.min.js','wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.min.js'),(4816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.js','wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.js'),(4817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js','wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js'),(4818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-css.js','wp-content/plugins/wp-rocket/assets/js/lazyload-css.js'),(4819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-css.js.min.map','wp-content/plugins/wp-rocket/assets/js/lazyload-css.js.min.map'),(4820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-css.min.js','wp-content/plugins/wp-rocket/assets/js/lazyload-css.min.js'),(4821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-css.min.js.map','wp-content/plugins/wp-rocket/assets/js/lazyload-css.min.js.map'),(4822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lazyload-scripts.min.js','wp-content/plugins/wp-rocket/assets/js/lazyload-scripts.min.js'),(4823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lcp-beacon.js','wp-content/plugins/wp-rocket/assets/js/lcp-beacon.js'),(4824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lcp-beacon.min.js','wp-content/plugins/wp-rocket/assets/js/lcp-beacon.min.js'),(4825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/lcp-beacon.min.js.map','wp-content/plugins/wp-rocket/assets/js/lcp-beacon.min.js.map'),(4826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/micromodal.min.js','wp-content/plugins/wp-rocket/assets/js/micromodal.min.js'),(4827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/preload-links.js','wp-content/plugins/wp-rocket/assets/js/preload-links.js'),(4828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/preload-links.min.js','wp-content/plugins/wp-rocket/assets/js/preload-links.min.js'),(4829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin-common.js','wp-content/plugins/wp-rocket/assets/js/wpr-admin-common.js'),(4830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.js','wp-content/plugins/wp-rocket/assets/js/wpr-admin.js'),(4831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.js.map','wp-content/plugins/wp-rocket/assets/js/wpr-admin.js.map'),(4832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.js.min.map','wp-content/plugins/wp-rocket/assets/js/wpr-admin.js.min.map'),(4833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.min.js','wp-content/plugins/wp-rocket/assets/js/wpr-admin.min.js'),(4834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-admin.min.js.map','wp-content/plugins/wp-rocket/assets/js/wpr-admin.min.js.map'),(4835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-cpcss-heartbeat.js','wp-content/plugins/wp-rocket/assets/js/wpr-cpcss-heartbeat.js'),(4836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/assets/js/wpr-cpcss.js','wp-content/plugins/wp-rocket/assets/js/wpr-cpcss.js'),(4837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/3rd-party.php','wp-content/plugins/wp-rocket/inc/3rd-party/3rd-party.php'),(4838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/flywheel.php','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/flywheel.php'),(4839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/nginx.php','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/nginx.php'),(4840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/pagely.php','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/pagely.php'),(4841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/presslabs.php','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/presslabs.php'),(4842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/siteground.php','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/siteground.php'),(4843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/wp-serveur.php','wp-content/plugins/wp-rocket/inc/3rd-party/hosting/wp-serveur.php'),(4844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/advanced-custom-fields.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/advanced-custom-fields.php'),(4845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/autoptimize.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/autoptimize.php'),(4846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/buddypress.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/buddypress.php'),(4847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/cookie-notice.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/cookie-notice.php'),(4848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/eu-cookie-law.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/eu-cookie-law.php'),(4849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/gdpr.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/gdpr.php'),(4850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/uk-cookie-consent.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/uk-cookie-consent.php'),(4851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/weepie-cookie-allow.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/cookies/weepie-cookie-allow.php'),(4852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/custom-login.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/custom-login.php'),(4853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/disqus.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/disqus.php'),(4854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-currencyswitcher.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-currencyswitcher.php'),(4855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-prices-by-country.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-prices-by-country.php'),(4856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-tax-display-by-country.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/aelia-tax-display-by-country.php'),(4857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/easy-digital-downloads.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/easy-digital-downloads.php'),(4858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/edd-software-licencing.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/edd-software-licencing.php'),(4859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/give.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/give.php'),(4860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/ithemes-exchange.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/ithemes-exchange.php'),(4861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/jigoshop.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/jigoshop.php'),(4862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/woocommerce-currency-converter-widget.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/woocommerce-currency-converter-widget.php'),(4863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/woocommerce-multilingual.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/woocommerce-multilingual.php'),(4864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/wpshop.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/wpshop.php'),(4865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/envira-gallery.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/envira-gallery.php'),(4866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/i18n/polylang.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/i18n/polylang.php'),(4867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/mailchimp.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/mailchimp.php'),(4868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/mobile/wp-appkit.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/mobile/wp-appkit.php'),(4869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/nginx-helper.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/nginx-helper.php'),(4870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/page-builder/thrive-visual-editor.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/page-builder/thrive-visual-editor.php'),(4871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/page-builder/visual-composer.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/page-builder/visual-composer.php'),(4872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/rating/kk-star-ratings.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/rating/kk-star-ratings.php'),(4873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/rating/wp-postratings.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/rating/wp-postratings.php'),(4874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/s2member.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/s2member.php'),(4875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/secupress.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/secupress.php'),(4876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/sf-move-login.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/sf-move-login.php'),(4877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/wps-hide-login.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/security/wps-hide-login.php'),(4878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/seo/premium-seo-pack.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/seo/premium-seo-pack.php'),(4879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/slider/meta-slider.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/slider/meta-slider.php'),(4880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/slider/soliloquy.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/slider/soliloquy.php'),(4881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/sumome.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/sumome.php'),(4882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/thrive-leads.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/thrive-leads.php'),(4883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/varnish-http-purge.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/varnish-http-purge.php'),(4884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-offload-s3-assets.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-offload-s3-assets.php'),(4885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-offload-s3.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-offload-s3.php'),(4886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-print.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-print.php'),(4887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-rest-api.php','wp-content/plugins/wp-rocket/inc/3rd-party/plugins/wp-rest-api.php'),(4888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/3rd-party/themes/studiopress.php','wp-content/plugins/wp-rocket/inc/3rd-party/themes/studiopress.php'),(4889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/API/bypass.php','wp-content/plugins/wp-rocket/inc/API/bypass.php'),(4890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/API/Client.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/API/Client.php'),(4891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/API/Endpoints.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/API/Endpoints.php'),(4892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Admin/Subscriber.php'),(4893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/APIKey.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/APIKey.php'),(4894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/APIKeyFactory.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/APIKeyFactory.php'),(4895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/AuthFactoryInterface.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/AuthFactoryInterface.php'),(4896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/AuthInterface.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Auth/AuthInterface.php'),(4897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Cloudflare.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Cloudflare.php'),(4898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/ServiceProvider.php'),(4899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Subscriber.php','wp-content/plugins/wp-rocket/inc/Addon/Cloudflare/Subscriber.php'),(4900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Addon/ServiceProvider.php'),(4901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Sucuri/Subscriber.php','wp-content/plugins/wp-rocket/inc/Addon/Sucuri/Subscriber.php'),(4902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Varnish/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Addon/Varnish/ServiceProvider.php'),(4903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Varnish/Subscriber.php','wp-content/plugins/wp-rocket/inc/Addon/Varnish/Subscriber.php'),(4904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/Varnish/Varnish.php','wp-content/plugins/wp-rocket/inc/Addon/Varnish/Varnish.php'),(4905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/WebP/AbstractWebp.php','wp-content/plugins/wp-rocket/inc/Addon/WebP/AbstractWebp.php'),(4906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/WebP/AdminSubscriber.php','wp-content/plugins/wp-rocket/inc/Addon/WebP/AdminSubscriber.php'),(4907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Addon/WebP/Subscriber.php','wp-content/plugins/wp-rocket/inc/Addon/WebP/Subscriber.php'),(4908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/action-scheduler.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/action-scheduler.php'),(4909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ActionClaim.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ActionClaim.php'),(4910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ActionFactory.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ActionFactory.php'),(4911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_AdminView.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_AdminView.php'),(4912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php'),(4913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Compatibility.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Compatibility.php'),(4914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_DataController.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_DataController.php'),(4915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_DateTime.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_DateTime.php'),(4916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Exception.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Exception.php'),(4917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_FatalErrorMonitor.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_FatalErrorMonitor.php'),(4918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_InvalidActionException.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_InvalidActionException.php'),(4919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ListTable.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_ListTable.php'),(4920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_LogEntry.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_LogEntry.php'),(4921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_NullLogEntry.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_NullLogEntry.php'),(4922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_OptionLock.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_OptionLock.php'),(4923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_QueueCleaner.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_QueueCleaner.php'),(4924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_QueueRunner.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_QueueRunner.php'),(4925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Versions.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_Versions.php'),(4926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_WPCommentCleaner.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_WPCommentCleaner.php'),(4927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_wcSystemStatus.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/ActionScheduler_wcSystemStatus.php'),(4928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php'),(4929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php'),(4930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/Migration_Command.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/Migration_Command.php'),(4931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ProgressBar.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/WP_CLI/ProgressBar.php'),(4932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler.php'),(4933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php'),(4934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php'),(4935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_RecurringSchedule.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_RecurringSchedule.php'),(4936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php'),(4937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php'),(4938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Lock.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Lock.php'),(4939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Logger.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Logger.php'),(4940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Store.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_Store.php'),(4941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_TimezoneHelper.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/abstracts/ActionScheduler_TimezoneHelper.php'),(4942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_Action.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_Action.php'),(4943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_CanceledAction.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_CanceledAction.php'),(4944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_FinishedAction.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_FinishedAction.php'),(4945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_NullAction.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/actions/ActionScheduler_NullAction.php'),(4946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_DBLogger.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_DBLogger.php'),(4947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_DBStore.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_DBStore.php'),(4948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_HybridStore.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_HybridStore.php'),(4949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpCommentLogger.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpCommentLogger.php'),(4950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore.php'),(4951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php'),(4952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php'),(4953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php'),(4954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/ActionMigrator.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/ActionMigrator.php'),(4955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/ActionScheduler_DBStoreMigrator.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/ActionScheduler_DBStoreMigrator.php'),(4956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/BatchFetcher.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/BatchFetcher.php'),(4957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Config.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Config.php'),(4958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Controller.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Controller.php'),(4959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/DryRun_ActionMigrator.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/DryRun_ActionMigrator.php'),(4960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/DryRun_LogMigrator.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/DryRun_LogMigrator.php'),(4961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/LogMigrator.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/LogMigrator.php'),(4962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Runner.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Runner.php'),(4963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Scheduler.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/migration/Scheduler.php'),(4964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_CanceledSchedule.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_CanceledSchedule.php'),(4965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_CronSchedule.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_CronSchedule.php'),(4966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_IntervalSchedule.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_IntervalSchedule.php'),(4967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_NullSchedule.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_NullSchedule.php'),(4968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_Schedule.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_Schedule.php'),(4969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_SimpleSchedule.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schedules/ActionScheduler_SimpleSchedule.php'),(4970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schema/ActionScheduler_LoggerSchema.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schema/ActionScheduler_LoggerSchema.php'),(4971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schema/ActionScheduler_StoreSchema.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/classes/schema/ActionScheduler_StoreSchema.php'),(4972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php'),(4973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_AdminView_Deprecated.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_AdminView_Deprecated.php'),(4974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Schedule_Deprecated.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Schedule_Deprecated.php'),(4975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Store_Deprecated.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/ActionScheduler_Store_Deprecated.php'),(4976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/functions.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/deprecated/functions.php'),(4977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/functions.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/functions.php'),(4978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/WP_Async_Request.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/WP_Async_Request.php'),(4979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression.php'),(4980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_AbstractField.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_AbstractField.php'),(4981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_DayOfMonthField.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_DayOfMonthField.php'),(4982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_DayOfWeekField.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_DayOfWeekField.php'),(4983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_FieldFactory.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_FieldFactory.php'),(4984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_FieldInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_FieldInterface.php'),(4985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_HoursField.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_HoursField.php'),(4986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_MinutesField.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_MinutesField.php'),(4987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_MonthField.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_MonthField.php'),(4988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_YearField.php','wp-content/plugins/wp-rocket/inc/Dependencies/ActionScheduler/lib/cron-expression/CronExpression_YearField.php'),(4989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Base.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Base.php'),(4990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Column.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Column.php'),(4991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Compare.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Compare.php'),(4992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Date.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Date.php'),(4993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Meta.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Queries/Meta.php'),(4994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Query.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Query.php'),(4995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Row.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Row.php'),(4996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Schema.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Schema.php'),(4997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Database/Table.php','wp-content/plugins/wp-rocket/inc/Dependencies/Database/Table.php'),(4998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentInterface.php'),(4999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentResolverInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentResolverInterface.php'),(5000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentResolverTrait.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ArgumentResolverTrait.php'),(5001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/DefaultValueArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/DefaultValueArgument.php'),(5002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/DefaultValueInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/DefaultValueInterface.php'),(5003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/ArrayArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/ArrayArgument.php'),(5004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/BooleanArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/BooleanArgument.php'),(5005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/CallableArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/CallableArgument.php'),(5006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/FloatArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/FloatArgument.php'),(5007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/IntegerArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/IntegerArgument.php'),(5008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/ObjectArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/ObjectArgument.php'),(5009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/StringArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/Literal/StringArgument.php'),(5010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/LiteralArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/LiteralArgument.php'),(5011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/LiteralArgumentInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/LiteralArgumentInterface.php'),(5012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ResolvableArgument.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ResolvableArgument.php'),(5013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ResolvableArgumentInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Argument/ResolvableArgumentInterface.php'),(5014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Container.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Container.php'),(5015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ContainerAwareInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ContainerAwareInterface.php'),(5016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ContainerAwareTrait.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ContainerAwareTrait.php'),(5017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/Definition.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/Definition.php'),(5018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionAggregate.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionAggregate.php'),(5019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionAggregateInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionAggregateInterface.php'),(5020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Definition/DefinitionInterface.php'),(5021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/DefinitionContainerInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/DefinitionContainerInterface.php'),(5022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Exception/ContainerException.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Exception/ContainerException.php'),(5023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Exception/NotFoundException.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Exception/NotFoundException.php'),(5024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/Inflector.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/Inflector.php'),(5025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorAggregate.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorAggregate.php'),(5026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorAggregateInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorAggregateInterface.php'),(5027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/Inflector/InflectorInterface.php'),(5028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ReflectionContainer.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ReflectionContainer.php'),(5029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/AbstractServiceProvider.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/AbstractServiceProvider.php'),(5030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/BootableServiceProviderInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/BootableServiceProviderInterface.php'),(5031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderAggregate.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderAggregate.php'),(5032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'),(5033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/League/Container/ServiceProvider/ServiceProviderInterface.php'),(5034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/CSS.php','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/CSS.php'),(5035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exception.php','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exception.php'),(5036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/BasicException.php','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/BasicException.php'),(5037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/FileImportException.php','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/FileImportException.php'),(5038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/IOException.php','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Exceptions/IOException.php'),(5039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/JS.php','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/JS.php'),(5040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Minify.php','wp-content/plugins/wp-rocket/inc/Dependencies/Minify/Minify.php'),(5041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/ErrorHandler.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/ErrorHandler.php'),(5042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/FormatterInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/FormatterInterface.php'),(5043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/HtmlFormatter.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/HtmlFormatter.php'),(5044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/LineFormatter.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/LineFormatter.php'),(5045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/NormalizerFormatter.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Formatter/NormalizerFormatter.php'),(5046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/AbstractHandler.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/AbstractHandler.php'),(5047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/AbstractProcessingHandler.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/AbstractProcessingHandler.php'),(5048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/FormattableHandlerInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/FormattableHandlerInterface.php'),(5049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/FormattableHandlerTrait.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/FormattableHandlerTrait.php'),(5050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/HandlerInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/HandlerInterface.php'),(5051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/ProcessableHandlerInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/ProcessableHandlerInterface.php'),(5052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/ProcessableHandlerTrait.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/ProcessableHandlerTrait.php'),(5053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/StreamHandler.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Handler/StreamHandler.php'),(5054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Logger.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Logger.php'),(5055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Processor/IntrospectionProcessor.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Processor/IntrospectionProcessor.php'),(5056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Processor/ProcessorInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Processor/ProcessorInterface.php'),(5057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Registry.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Registry.php'),(5058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/ResettableInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/ResettableInterface.php'),(5059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/SignalHandler.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/SignalHandler.php'),(5060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Utils.php','wp-content/plugins/wp-rocket/inc/Dependencies/Monolog/Utils.php'),(5061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/Converter.php','wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/Converter.php'),(5062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/ConverterInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/ConverterInterface.php'),(5063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/NoConverter.php','wp-content/plugins/wp-rocket/inc/Dependencies/PathConverter/NoConverter.php'),(5064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/ContainerExceptionInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/ContainerExceptionInterface.php'),(5065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/ContainerInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/ContainerInterface.php'),(5066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/NotFoundExceptionInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Container/NotFoundExceptionInterface.php'),(5067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/AbstractLogger.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/AbstractLogger.php'),(5068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/InvalidArgumentException.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/InvalidArgumentException.php'),(5069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LogLevel.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LogLevel.php'),(5070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerAwareInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerAwareInterface.php'),(5071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerAwareTrait.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerAwareTrait.php'),(5072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerInterface.php'),(5073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerTrait.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/LoggerTrait.php'),(5074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/NullLogger.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/Log/NullLogger.php'),(5075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/CacheException.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/CacheException.php'),(5076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/CacheInterface.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/CacheInterface.php'),(5077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/InvalidArgumentException.php','wp-content/plugins/wp-rocket/inc/Dependencies/Psr/SimpleCache/InvalidArgumentException.php'),(5078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Assets.php','wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Assets.php'),(5079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Iframe.php','wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Iframe.php'),(5080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Image.php','wp-content/plugins/wp-rocket/inc/Dependencies/RocketLazyload/Image.php'),(5081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Activation/Activation.php','wp-content/plugins/wp-rocket/inc/Engine/Activation/Activation.php'),(5082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Activation/ActivationInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Activation/ActivationInterface.php'),(5083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Activation/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Activation/ServiceProvider.php'),(5084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/API/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/API/ServiceProvider.php'),(5085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/API/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/API/Subscriber.php'),(5086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/ActionSchedulerSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/ActionSchedulerSubscriber.php'),(5087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/Beacon.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/Beacon.php'),(5088,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/ServiceProvider.php'),(5089,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/Optimization.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/Optimization.php'),(5090,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/OptimizationProcess.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/OptimizationProcess.php'),(5091,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/ServiceProvider.php'),(5092,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Database/Subscriber.php'),(5093,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Deactivation/DeactivationIntent.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Deactivation/DeactivationIntent.php'),(5094,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Deactivation/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Deactivation/Subscriber.php'),(5095,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/DomainChange/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/DomainChange/ServiceProvider.php'),(5096,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/DomainChange/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/DomainChange/Subscriber.php'),(5097,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Metaboxes/PostEditOptionsSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Metaboxes/PostEditOptionsSubscriber.php'),(5098,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/ServiceProvider.php'),(5099,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Page.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Page.php'),(5100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Render.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Render.php'),(5101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/ServiceProvider.php'),(5102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Settings.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Settings.php'),(5103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Subscriber.php'),(5104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/Admin/Subscriber.php'),(5105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/CDN.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/CDN.php'),(5106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/APIClient.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/APIClient.php'),(5107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/AdminPageSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/AdminPageSubscriber.php'),(5108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/CDNOptionsManager.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/CDNOptionsManager.php'),(5109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/DataManagerSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/DataManagerSubscriber.php'),(5110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/NoticesSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/NoticesSubscriber.php'),(5111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/RESTSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/RESTSubscriber.php'),(5112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/ServiceProvider.php'),(5113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/cta-big.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/cta-big.php'),(5114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/cta-small.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/cta-small.php'),(5115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/dashboard-status.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/dashboard-status.php'),(5116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/promote-notice.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/RocketCDN/views/promote-notice.php'),(5117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/ServiceProvider.php'),(5118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CDN/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CDN/Subscriber.php'),(5119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/AdminSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/AdminSubscriber.php'),(5120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/AdvancedCache.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/AdvancedCache.php'),(5121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/Config/ConfigSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/Config/ConfigSubscriber.php'),(5122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/Config/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/Config/Subscriber.php'),(5123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/Purge.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/Purge.php'),(5124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeActionsSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeActionsSubscriber.php'),(5125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeExpired/PurgeExpiredCache.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeExpired/PurgeExpiredCache.php'),(5126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeExpired/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/PurgeExpired/Subscriber.php'),(5127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/ServiceProvider.php'),(5128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Cache/WPCache.php','wp-content/plugins/wp-rocket/inc/Engine/Cache/WPCache.php'),(5129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Capabilities/Manager.php','wp-content/plugins/wp-rocket/inc/Engine/Capabilities/Manager.php'),(5130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Capabilities/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Capabilities/ServiceProvider.php'),(5131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Capabilities/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Capabilities/Subscriber.php'),(5132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Ajax/AjaxHandler.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Ajax/AjaxHandler.php'),(5133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Cache/CacheInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Cache/CacheInterface.php'),(5134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Cache/FilesystemCache.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Cache/FilesystemCache.php'),(5135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Clock/ClockInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Clock/ClockInterface.php'),(5136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Clock/WPRClock.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Clock/WPRClock.php'),(5137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Context/AbstractContext.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Context/AbstractContext.php'),(5138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Context/ContextInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Context/ContextInterface.php'),(5139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Database/Queries/AbstractQuery.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Database/Queries/AbstractQuery.php'),(5140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Database/TableInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Database/TableInterface.php'),(5141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Database/Tables/AbstractTable.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Database/Tables/AbstractTable.php'),(5142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/ExtractCSS/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Common/ExtractCSS/ServiceProvider.php'),(5143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/ExtractCSS/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Common/ExtractCSS/Subscriber.php'),(5144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/APIClient.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/APIClient.php'),(5145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/AbstractAPIClient.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/AbstractAPIClient.php'),(5146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/AbstractSafeAPIClient.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/APIHandler/AbstractSafeAPIClient.php'),(5147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/AbstractFactory/SaasFactory.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/AbstractFactory/SaasFactory.php'),(5148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Cron/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Cron/Subscriber.php'),(5149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/JobProcessor.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/JobProcessor.php'),(5150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Managers/AbstractManager.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Managers/AbstractManager.php'),(5151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Managers/ManagerInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Managers/ManagerInterface.php'),(5152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Queue/Queue.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Queue/Queue.php'),(5153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/ServiceProvider.php'),(5154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Context/RetryContext.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Context/RetryContext.php'),(5155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Factory/StrategyFactory.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Factory/StrategyFactory.php'),(5156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/DefaultProcess.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/DefaultProcess.php'),(5157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/JobSetFail.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/JobSetFail.php'),(5158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/ResetRetryProcess.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/ResetRetryProcess.php'),(5159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/StrategyInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Common/JobManager/Strategy/Strategies/StrategyInterface.php'),(5160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/AbstractASQueue.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/AbstractASQueue.php'),(5161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/Cleaner.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/Cleaner.php'),(5162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/QueueInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/QueueInterface.php'),(5163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/RUCSSQueueRunner.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Queue/RUCSSQueueRunner.php'),(5164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Common/Utils.php','wp-content/plugins/wp-rocket/inc/Engine/Common/Utils.php'),(5165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/APIClient.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/APIClient.php'),(5166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Admin.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Admin.php'),(5167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Post.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Post.php'),(5168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Settings.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Settings.php'),(5169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/Admin/Subscriber.php'),(5170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSS.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSS.php'),(5171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSSGeneration.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSSGeneration.php'),(5172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSSSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/CriticalCSSSubscriber.php'),(5173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/DataManager.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/DataManager.php'),(5174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/ProcessorService.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/ProcessorService.php'),(5175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTCSSSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTCSSSubscriber.php'),(5176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWP.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWP.php'),(5177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWPInterface.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWPInterface.php'),(5178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWPPost.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/RESTWPPost.php'),(5179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/ServiceProvider.php'),(5180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/TransientTrait.php','wp-content/plugins/wp-rocket/inc/Engine/CriticalPath/TransientTrait.php'),(5181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Deactivation/Deactivation.php','wp-content/plugins/wp-rocket/inc/Engine/Deactivation/Deactivation.php'),(5182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Deactivation/DeactivationInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Deactivation/DeactivationInterface.php'),(5183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Deactivation/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Deactivation/ServiceProvider.php'),(5184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Debug/DebugSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Debug/DebugSubscriber.php'),(5185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Debug/RUCSS/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Debug/RUCSS/Subscriber.php'),(5186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Debug/Resolver.php','wp-content/plugins/wp-rocket/inc/Engine/Debug/Resolver.php'),(5187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Debug/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Debug/ServiceProvider.php'),(5188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ActionSchedulerCheck.php','wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ActionSchedulerCheck.php'),(5189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/HealthCheck.php','wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/HealthCheck.php'),(5190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ServiceProvider.php'),(5191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Heartbeat/HeartbeatSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Heartbeat/HeartbeatSubscriber.php'),(5192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Heartbeat/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Heartbeat/ServiceProvider.php'),(5193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/API/Pricing.php','wp-content/plugins/wp-rocket/inc/Engine/License/API/Pricing.php'),(5194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/API/PricingClient.php','wp-content/plugins/wp-rocket/inc/Engine/License/API/PricingClient.php'),(5195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/API/User.php','wp-content/plugins/wp-rocket/inc/Engine/License/API/User.php'),(5196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/API/UserClient.php','wp-content/plugins/wp-rocket/inc/Engine/License/API/UserClient.php'),(5197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/Renewal.php','wp-content/plugins/wp-rocket/inc/Engine/License/Renewal.php'),(5198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/License/ServiceProvider.php'),(5199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/License/Subscriber.php'),(5200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/Upgrade.php','wp-content/plugins/wp-rocket/inc/Engine/License/Upgrade.php'),(5201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/promo-banner.php','wp-content/plugins/wp-rocket/inc/Engine/License/views/promo-banner.php'),(5202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner-ocd-disabled.php','wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner-ocd-disabled.php'),(5203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner-ocd.php','wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner-ocd.php'),(5204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner.php','wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-expired-banner.php'),(5205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-soon-banner.php','wp-content/plugins/wp-rocket/inc/Engine/License/views/renewal-soon-banner.php'),(5206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/upgrade-popin.php','wp-content/plugins/wp-rocket/inc/Engine/License/views/upgrade-popin.php'),(5207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/License/views/upgrade-section.php','wp-content/plugins/wp-rocket/inc/Engine/License/views/upgrade-section.php'),(5208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/AJAX/Controller.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/AJAX/Controller.php'),(5209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/AJAX/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/AJAX/Subscriber.php'),(5210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Activation/Activation.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Activation/Activation.php'),(5211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Activation/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Activation/ServiceProvider.php'),(5212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Admin/Controller.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Admin/Controller.php'),(5213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Admin/Subscriber.php'),(5214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Context/Context.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Context/Context.php'),(5215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Cron/Controller.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Cron/Controller.php'),(5216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Cron/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Cron/Subscriber.php'),(5217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Queries/AboveTheFold.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Queries/AboveTheFold.php'),(5218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Rows/AboveTheFold.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Rows/AboveTheFold.php'),(5219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Schemas/AboveTheFold.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Schemas/AboveTheFold.php'),(5220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Tables/AboveTheFold.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Database/Tables/AboveTheFold.php'),(5221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Frontend/Controller.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Frontend/Controller.php'),(5222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Frontend/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/Frontend/Subscriber.php'),(5223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/ServiceProvider.php'),(5224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/APIClient.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/APIClient.php'),(5225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Controller.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Controller.php'),(5226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Queue.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Queue.php'),(5227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/AboveTheFold/WarmUp/Subscriber.php'),(5228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Emojis/EmojisSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Emojis/EmojisSubscriber.php'),(5229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/AdminSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/AdminSubscriber.php'),(5230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/ImageDimensions.php','wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/ImageDimensions.php'),(5231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/ImageDimensions/Subscriber.php'),(5232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/AdminSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/AdminSubscriber.php'),(5233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Admin/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Admin/ServiceProvider.php'),(5234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Admin/Subscriber.php'),(5235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Context/LazyloadCSSContext.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Context/LazyloadCSSContext.php'),(5236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/LazyloadCSSContentFactory.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/LazyloadCSSContentFactory.php'),(5237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/LazyloadedContent.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/LazyloadedContent.php'),(5238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/ProtectedContent.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Data/ProtectedContent.php'),(5239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/ContentFetcher.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/ContentFetcher.php'),(5240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/Extractor.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/Extractor.php'),(5241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/FileResolver.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/FileResolver.php'),(5242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/MappingFormatter.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/MappingFormatter.php'),(5243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/RuleFormatter.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/RuleFormatter.php'),(5244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/TagGenerator.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Front/TagGenerator.php'),(5245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/ServiceProvider.php'),(5246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CSS/Subscriber.php'),(5247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CanLazyloadTrait.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CanLazyloadTrait.php'),(5248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/Subscriber.php'),(5249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Media/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Media/ServiceProvider.php'),(5250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/AbstractOptimization.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/AbstractOptimization.php'),(5251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/AdminServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/AdminServiceProvider.php'),(5252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/AssetsLocalCache.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/AssetsLocalCache.php'),(5253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Buffer/Optimization.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Buffer/Optimization.php'),(5254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Buffer/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Buffer/Subscriber.php'),(5255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/CSSTrait.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/CSSTrait.php'),(5256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/CacheDynamicResource.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/CacheDynamicResource.php'),(5257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/ContentTrait.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/ContentTrait.php'),(5258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/AdminSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/AdminSubscriber.php'),(5259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/DeferJS.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/DeferJS.php'),(5260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/ServiceProvider.php'),(5261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DeferJS/Subscriber.php'),(5262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/Settings.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/Settings.php'),(5263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/SiteList.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/SiteList.php'),(5264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Admin/Subscriber.php'),(5265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/HTML.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/HTML.php'),(5266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/ServiceProvider.php'),(5267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DelayJS/Subscriber.php'),(5268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractAPIClient.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractAPIClient.php'),(5269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractDataManager.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractDataManager.php'),(5270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DefaultLists/APIClient.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DefaultLists/APIClient.php'),(5271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DefaultLists/DataManager.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DefaultLists/DataManager.php'),(5272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DelayJSLists/APIClient.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DelayJSLists/APIClient.php'),(5273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DelayJSLists/DataManager.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DelayJSLists/DataManager.php'),(5274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DynamicLists.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DynamicLists.php'),(5275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/IncompatiblePluginsLists/APIClient.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/IncompatiblePluginsLists/APIClient.php'),(5276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/IncompatiblePluginsLists/DataManager.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/IncompatiblePluginsLists/DataManager.php'),(5277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/ServiceProvider.php'),(5278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/Subscriber.php'),(5279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/AbstractGFOptimization.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/AbstractGFOptimization.php'),(5280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Admin/Settings.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Admin/Settings.php'),(5281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Admin/Subscriber.php'),(5282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Combine.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Combine.php'),(5283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/CombineV2.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/CombineV2.php'),(5284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/Subscriber.php'),(5285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/IEConditionalSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/IEConditionalSubscriber.php'),(5286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/AbstractMinifySubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/AbstractMinifySubscriber.php'),(5287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/AdminSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/AdminSubscriber.php'),(5288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/AbstractCSSOptimization.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/AbstractCSSOptimization.php'),(5289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/AdminSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/AdminSubscriber.php'),(5290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/Minify.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/Minify.php'),(5291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/CSS/Subscriber.php'),(5292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/AbstractJSOptimization.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/AbstractJSOptimization.php'),(5293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Combine.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Combine.php'),(5294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Minify.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Minify.php'),(5295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/JS/Subscriber.php'),(5296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/ProcessorInterface.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/ProcessorInterface.php'),(5297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Database.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Database.php'),(5298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/OptionSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/OptionSubscriber.php'),(5299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Settings.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Settings.php'),(5300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Admin/Subscriber.php'),(5301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSContext.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSContext.php'),(5302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSContextSaas.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSContextSaas.php'),(5303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSOptimizeContext.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Context/RUCSSOptimizeContext.php'),(5304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Controller/Filesystem.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Controller/Filesystem.php'),(5305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Controller/UsedCSS.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Controller/UsedCSS.php'),(5306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Cron/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Cron/Subscriber.php'),(5307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Queries/UsedCSS.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Queries/UsedCSS.php'),(5308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Row/UsedCSS.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Row/UsedCSS.php'),(5309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Schemas/UsedCSS.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Schemas/UsedCSS.php'),(5310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Tables/UsedCSS.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Database/Tables/UsedCSS.php'),(5311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Frontend/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Frontend/Subscriber.php'),(5312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Jobs/Factory.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Jobs/Factory.php'),(5313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Jobs/Manager.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/Jobs/Manager.php'),(5314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RUCSS/ServiceProvider.php'),(5315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/RegexTrait.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/RegexTrait.php'),(5316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/ServiceProvider.php'),(5317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Optimization/UrlTrait.php','wp-content/plugins/wp-rocket/inc/Engine/Optimization/UrlTrait.php'),(5318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/InformationSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Plugin/InformationSubscriber.php'),(5319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/RenewalNotice.php','wp-content/plugins/wp-rocket/inc/Engine/Plugin/RenewalNotice.php'),(5320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Plugin/ServiceProvider.php'),(5321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterApiCommonSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterApiCommonSubscriber.php'),(5322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterApiTools.php','wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterApiTools.php'),(5323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Plugin/UpdaterSubscriber.php'),(5324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Activation/Activation.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Activation/Activation.php'),(5325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Activation/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Activation/ServiceProvider.php'),(5326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Admin/Settings.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Admin/Settings.php'),(5327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Admin/Subscriber.php'),(5328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CheckExcludedTrait.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CheckExcludedTrait.php'),(5329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CheckFinished.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CheckFinished.php'),(5330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/ClearCache.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/ClearCache.php'),(5331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CrawlHomepage.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/CrawlHomepage.php'),(5332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/LoadInitialSitemap.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/LoadInitialSitemap.php'),(5333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/PreloadUrl.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/PreloadUrl.php'),(5334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/Queue.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Controller/Queue.php'),(5335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Cron/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Cron/Subscriber.php'),(5336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Queries/Cache.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Queries/Cache.php'),(5337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Rows/CacheRow.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Rows/CacheRow.php'),(5338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Schemas/Cache.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Schemas/Cache.php'),(5339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Tables/Cache.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Database/Tables/Cache.php'),(5340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Fonts.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Fonts.php'),(5341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/FetchSitemap.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/FetchSitemap.php'),(5342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/SitemapParser.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/SitemapParser.php'),(5343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Frontend/Subscriber.php'),(5344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/AdminSubscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/AdminSubscriber.php'),(5345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/ServiceProvider.php'),(5346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Links/Subscriber.php'),(5347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/ServiceProvider.php'),(5348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Preload/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Preload/Subscriber.php'),(5349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/AdminBar.php','wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/AdminBar.php'),(5350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Clean.php','wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Clean.php'),(5351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Notices.php','wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Notices.php'),(5352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/Subscriber.php'),(5353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Saas/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Saas/ServiceProvider.php'),(5354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Support/Data.php','wp-content/plugins/wp-rocket/inc/Engine/Support/Data.php'),(5355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Support/Rest.php','wp-content/plugins/wp-rocket/inc/Engine/Support/Rest.php'),(5356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Support/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Engine/Support/ServiceProvider.php'),(5357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/Support/Subscriber.php','wp-content/plugins/wp-rocket/inc/Engine/Support/Subscriber.php'),(5358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Engine/WPRocketUninstall.php','wp-content/plugins/wp-rocket/inc/Engine/WPRocketUninstall.php'),(5359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/HTMLFormatter.php','wp-content/plugins/wp-rocket/inc/Logger/HTMLFormatter.php'),(5360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/Logger.php','wp-content/plugins/wp-rocket/inc/Logger/Logger.php'),(5361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/LoggerAware.php','wp-content/plugins/wp-rocket/inc/Logger/LoggerAware.php'),(5362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/LoggerAwareInterface.php','wp-content/plugins/wp-rocket/inc/Logger/LoggerAwareInterface.php'),(5363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/Logger/ServiceProvider.php'),(5364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Logger/StreamHandler.php','wp-content/plugins/wp-rocket/inc/Logger/StreamHandler.php'),(5365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/Plugin.php','wp-content/plugins/wp-rocket/inc/Plugin.php'),(5366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/AbstractNoCacheHost.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/AbstractNoCacheHost.php'),(5367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Cloudways.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Cloudways.php'),(5368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Dreampress.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Dreampress.php'),(5369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Godaddy.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Godaddy.php'),(5370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/HostResolver.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/HostResolver.php'),(5371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/HostSubscriberFactory.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/HostSubscriberFactory.php'),(5372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Kinsta.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Kinsta.php'),(5373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/LiteSpeed.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/LiteSpeed.php'),(5374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/O2Switch.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/O2Switch.php'),(5375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/OneCom.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/OneCom.php'),(5376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Pressable.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Pressable.php'),(5377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Pressidium.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Pressidium.php'),(5378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/ProIsp.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/ProIsp.php'),(5379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Savvii.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/Savvii.php'),(5380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/ServiceProvider.php'),(5381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/SpinUpWP.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/SpinUpWP.php'),(5382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WPEngine.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WPEngine.php'),(5383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WPXCloud.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WPXCloud.php'),(5384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WordPressCom.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Hostings/WordPressCom.php'),(5385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/NullSubscriber.php','wp-content/plugins/wp-rocket/inc/ThirdParty/NullSubscriber.php'),(5386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ads/Adthrive.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ads/Adthrive.php'),(5387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/CDN/Cloudflare.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/CDN/Cloudflare.php'),(5388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/CDN/CloudflareFacade.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/CDN/CloudflareFacade.php'),(5389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ContactForm7.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ContactForm7.php'),(5390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ConvertPlug.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ConvertPlug.php'),(5391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ecommerce/BigCommerce.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ecommerce/BigCommerce.php'),(5392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ecommerce/WooCommerceSubscriber.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Ecommerce/WooCommerceSubscriber.php'),(5393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/TranslatePress.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/TranslatePress.php'),(5394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/WPML.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/WPML.php'),(5395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/Weglot.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/I18n/Weglot.php'),(5396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/InlineRelatedPosts.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/InlineRelatedPosts.php'),(5397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Jetpack.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Jetpack.php'),(5398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ModPagespeed.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ModPagespeed.php'),(5399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/AMP.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/AMP.php'),(5400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Autoptimize.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Autoptimize.php'),(5401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Ezoic.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Ezoic.php'),(5402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Hummingbird.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Hummingbird.php'),(5403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Perfmatters.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/Perfmatters.php'),(5404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/RapidLoad.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/RapidLoad.php'),(5405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/RocketLazyLoad.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/RocketLazyLoad.php'),(5406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/WPMeteor.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization/WPMeteor.php'),(5407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PDFEmbedder.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PDFEmbedder.php'),(5408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PWA.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PWA.php'),(5409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PageBuilder/BeaverBuilder.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PageBuilder/BeaverBuilder.php'),(5410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PageBuilder/Elementor.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PageBuilder/Elementor.php'),(5411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/RevolutionSlider.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/RevolutionSlider.php'),(5412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/AllInOneSEOPack.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/AllInOneSEOPack.php'),(5413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/RankMathSEO.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/RankMathSEO.php'),(5414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/SEOPress.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/SEOPress.php'),(5415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/TheSEOFramework.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/TheSEOFramework.php'),(5416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/Yoast.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/Yoast.php'),(5417,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Security/WordFenceCompatibility.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Security/WordFenceCompatibility.php'),(5418,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SimpleCustomCss.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SimpleCustomCss.php'),(5419,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Smush.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Smush.php'),(5420,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/TheEventsCalendar.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/TheEventsCalendar.php'),(5421,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ThirstyAffiliates.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/ThirstyAffiliates.php'),(5422,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/UnlimitedElements.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/UnlimitedElements.php'),(5423,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/WPGeotargeting.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/WPGeotargeting.php'),(5424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/ReturnTypesTrait.php','wp-content/plugins/wp-rocket/inc/ThirdParty/ReturnTypesTrait.php'),(5425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/ThirdParty/ServiceProvider.php'),(5426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/SubscriberFactoryInterface.php','wp-content/plugins/wp-rocket/inc/ThirdParty/SubscriberFactoryInterface.php'),(5427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Avada.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Avada.php'),(5428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Bridge.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Bridge.php'),(5429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Divi.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Divi.php'),(5430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Flatsome.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Flatsome.php'),(5431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Jevelin.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Jevelin.php'),(5432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/MinimalistBlogger.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/MinimalistBlogger.php'),(5433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Polygon.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Polygon.php'),(5434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/ServiceProvider.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/ServiceProvider.php'),(5435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Shoptimizer.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Shoptimizer.php'),(5436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/SubscriberFactory.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/SubscriberFactory.php'),(5437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/ThemeResolver.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/ThemeResolver.php'),(5438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Themify.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Themify.php'),(5439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Uncode.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Uncode.php'),(5440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Xstore.php','wp-content/plugins/wp-rocket/inc/ThirdParty/Themes/Xstore.php'),(5441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/admin.php','wp-content/plugins/wp-rocket/inc/admin/admin.php'),(5442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/options.php','wp-content/plugins/wp-rocket/inc/admin/options.php'),(5443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/ui/enqueue.php','wp-content/plugins/wp-rocket/inc/admin/ui/enqueue.php'),(5444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/ui/meta-boxes.php','wp-content/plugins/wp-rocket/inc/admin/ui/meta-boxes.php'),(5445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/ui/notices.php','wp-content/plugins/wp-rocket/inc/admin/ui/notices.php'),(5446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/admin/upgrader.php','wp-content/plugins/wp-rocket/inc/admin/upgrader.php'),(5447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/Buffer/class-abstract-buffer.php','wp-content/plugins/wp-rocket/inc/classes/Buffer/class-abstract-buffer.php'),(5448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/Buffer/class-cache.php','wp-content/plugins/wp-rocket/inc/classes/Buffer/class-cache.php'),(5449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/Buffer/class-config.php','wp-content/plugins/wp-rocket/inc/classes/Buffer/class-config.php'),(5450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/Buffer/class-tests.php','wp-content/plugins/wp-rocket/inc/classes/Buffer/class-tests.php'),(5451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/ServiceProvider/class-common-subscribers.php','wp-content/plugins/wp-rocket/inc/classes/ServiceProvider/class-common-subscribers.php'),(5452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/ServiceProvider/class-options.php','wp-content/plugins/wp-rocket/inc/classes/ServiceProvider/class-options.php'),(5453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/admin/class-abstract-options.php','wp-content/plugins/wp-rocket/inc/classes/admin/class-abstract-options.php'),(5454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/admin/class-logs.php','wp-content/plugins/wp-rocket/inc/classes/admin/class-logs.php'),(5455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/admin/class-options-data.php','wp-content/plugins/wp-rocket/inc/classes/admin/class-options-data.php'),(5456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/admin/class-options.php','wp-content/plugins/wp-rocket/inc/classes/admin/class-options.php'),(5457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/class-abstract-render.php','wp-content/plugins/wp-rocket/inc/classes/class-abstract-render.php'),(5458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/class-wp-rocket-requirements-check.php','wp-content/plugins/wp-rocket/inc/classes/class-wp-rocket-requirements-check.php'),(5459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/dependencies/mobiledetect/mobiledetectlib/Mobile_Detect.php','wp-content/plugins/wp-rocket/inc/classes/dependencies/mobiledetect/mobiledetectlib/Mobile_Detect.php'),(5460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/dependencies/wp-media/background-processing/wp-async-request.php','wp-content/plugins/wp-rocket/inc/classes/dependencies/wp-media/background-processing/wp-async-request.php'),(5461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/dependencies/wp-media/background-processing/wp-background-process.php','wp-content/plugins/wp-rocket/inc/classes/dependencies/wp-media/background-processing/wp-background-process.php'),(5462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/event-management/class-event-manager.php','wp-content/plugins/wp-rocket/inc/classes/event-management/class-event-manager.php'),(5463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/event-management/event-manager-aware-subscriber-interface.php','wp-content/plugins/wp-rocket/inc/classes/event-management/event-manager-aware-subscriber-interface.php'),(5464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/event-management/subscriber-interface.php','wp-content/plugins/wp-rocket/inc/classes/event-management/subscriber-interface.php'),(5465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/interfaces/class-render-interface.php','wp-content/plugins/wp-rocket/inc/classes/interfaces/class-render-interface.php'),(5466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/logger/class-html-formatter.php','wp-content/plugins/wp-rocket/inc/classes/logger/class-html-formatter.php'),(5467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/logger/class-logger.php','wp-content/plugins/wp-rocket/inc/classes/logger/class-logger.php'),(5468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/logger/class-stream-handler.php','wp-content/plugins/wp-rocket/inc/classes/logger/class-stream-handler.php'),(5469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/Tools/class-detect-missing-tags-subscriber.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/Tools/class-detect-missing-tags-subscriber.php'),(5470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-ewww-subscriber.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-ewww-subscriber.php'),(5471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-imagify-subscriber.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-imagify-subscriber.php'),(5472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-optimus-subscriber.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-optimus-subscriber.php'),(5473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-shortpixel-subscriber.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/class-shortpixel-subscriber.php'),(5474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/trait-webp-common.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/trait-webp-common.php'),(5475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/webp-interface.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/Images/Webp/webp-interface.php'),(5476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-mobile-subscriber.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-mobile-subscriber.php'),(5477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-ngg-subscriber.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-ngg-subscriber.php'),(5478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-syntaxhighlighter-subscriber.php','wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins/class-syntaxhighlighter-subscriber.php'),(5479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/traits/trait-config-updater.php','wp-content/plugins/wp-rocket/inc/classes/traits/trait-config-updater.php'),(5480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/classes/traits/trait-memoize.php','wp-content/plugins/wp-rocket/inc/classes/traits/trait-memoize.php'),(5481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/common/admin-bar.php','wp-content/plugins/wp-rocket/inc/common/admin-bar.php'),(5482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/common/purge.php','wp-content/plugins/wp-rocket/inc/common/purge.php'),(5483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/compat.php','wp-content/plugins/wp-rocket/inc/compat.php'),(5484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/constants.php','wp-content/plugins/wp-rocket/inc/constants.php'),(5485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.10.php','wp-content/plugins/wp-rocket/inc/deprecated/3.10.php'),(5486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.11.php','wp-content/plugins/wp-rocket/inc/deprecated/3.11.php'),(5487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.12.php','wp-content/plugins/wp-rocket/inc/deprecated/3.12.php'),(5488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.13.php','wp-content/plugins/wp-rocket/inc/deprecated/3.13.php'),(5489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.14.php','wp-content/plugins/wp-rocket/inc/deprecated/3.14.php'),(5490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.15.php','wp-content/plugins/wp-rocket/inc/deprecated/3.15.php'),(5491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.2.php','wp-content/plugins/wp-rocket/inc/deprecated/3.2.php'),(5492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.3.php','wp-content/plugins/wp-rocket/inc/deprecated/3.3.php'),(5493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.4.php','wp-content/plugins/wp-rocket/inc/deprecated/3.4.php'),(5494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.5.php','wp-content/plugins/wp-rocket/inc/deprecated/3.5.php'),(5495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.6.php','wp-content/plugins/wp-rocket/inc/deprecated/3.6.php'),(5496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.7.php','wp-content/plugins/wp-rocket/inc/deprecated/3.7.php'),(5497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.8.php','wp-content/plugins/wp-rocket/inc/deprecated/3.8.php'),(5498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/3.9.php','wp-content/plugins/wp-rocket/inc/deprecated/3.9.php'),(5499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/DeprecatedClassTrait.php','wp-content/plugins/wp-rocket/inc/deprecated/DeprecatedClassTrait.php'),(5500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/Busting/BustingFactory.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/Busting/BustingFactory.php'),(5501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/Busting/FileBustingTrait.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/Busting/FileBustingTrait.php'),(5502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/FacebookTracking/Subscriber.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/FacebookTracking/Subscriber.php'),(5503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/GoogleAnalytics.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/GoogleAnalytics.php'),(5504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/GoogleTagManager.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/GoogleTagManager.php'),(5505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/Subscriber.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Addon/GoogleTracking/Subscriber.php'),(5506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Media/Embeds/EmbedsSubscriber.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Media/Embeds/EmbedsSubscriber.php'),(5507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Optimization/QueryString/Remove.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Optimization/QueryString/Remove.php'),(5508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/Engine/Optimization/QueryString/RemoveSubscriber.php','wp-content/plugins/wp-rocket/inc/deprecated/Engine/Optimization/QueryString/RemoveSubscriber.php'),(5509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-abstract-busting.php','wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-abstract-busting.php'),(5510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-facebook-pickles.php','wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-facebook-pickles.php'),(5511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-facebook-sdk.php','wp-content/plugins/wp-rocket/inc/deprecated/classes/busting/class-facebook-sdk.php'),(5512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/deprecated.php','wp-content/plugins/wp-rocket/inc/deprecated/deprecated.php'),(5513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/subscriber/Optimization/class-dequeue-jquery-migrate-subscriber.php','wp-content/plugins/wp-rocket/inc/deprecated/subscriber/Optimization/class-dequeue-jquery-migrate-subscriber.php'),(5514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/subscriber/admin/Optimization/class-minify-html-subscriber.php','wp-content/plugins/wp-rocket/inc/deprecated/subscriber/admin/Optimization/class-minify-html-subscriber.php'),(5515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/subscriber/admin/Settings/class-beacon-subscriber.php','wp-content/plugins/wp-rocket/inc/deprecated/subscriber/admin/Settings/class-beacon-subscriber.php'),(5516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/deprecated/vendors/classes/class-minify-html.php','wp-content/plugins/wp-rocket/inc/deprecated/vendors/classes/class-minify-html.php'),(5517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/domain-mapping.php','wp-content/plugins/wp-rocket/inc/domain-mapping.php'),(5518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/front/cookie.php','wp-content/plugins/wp-rocket/inc/front/cookie.php'),(5519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/front/dns-prefetch.php','wp-content/plugins/wp-rocket/inc/front/dns-prefetch.php'),(5520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/front/process.php','wp-content/plugins/wp-rocket/inc/front/process.php'),(5521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/admin.php','wp-content/plugins/wp-rocket/inc/functions/admin.php'),(5522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/api.php','wp-content/plugins/wp-rocket/inc/functions/api.php'),(5523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/files.php','wp-content/plugins/wp-rocket/inc/functions/files.php'),(5524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/formatting.php','wp-content/plugins/wp-rocket/inc/functions/formatting.php'),(5525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/htaccess.php','wp-content/plugins/wp-rocket/inc/functions/htaccess.php'),(5526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/i18n.php','wp-content/plugins/wp-rocket/inc/functions/i18n.php'),(5527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/options.php','wp-content/plugins/wp-rocket/inc/functions/options.php'),(5528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/functions/posts.php','wp-content/plugins/wp-rocket/inc/functions/posts.php'),(5529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/main.php','wp-content/plugins/wp-rocket/inc/main.php'),(5530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/vendors/classes/class-imagify-partner.php','wp-content/plugins/wp-rocket/inc/vendors/classes/class-imagify-partner.php'),(5531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/vendors/classes/class-minify-css-urirewriter.php','wp-content/plugins/wp-rocket/inc/vendors/classes/class-minify-css-urirewriter.php'),(5532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/inc/vendors/classes/class-rocket-mobile-detect.php','wp-content/plugins/wp-rocket/inc/vendors/classes/class-rocket-mobile-detect.php'),(5533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/uninstall.php','wp-content/plugins/wp-rocket/uninstall.php'),(5534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/autoload.php','wp-content/plugins/wp-rocket/vendor/autoload.php'),(5535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare/IpRewrite.php','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare/IpRewrite.php'),(5536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare/IpUtils.php','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare/IpUtils.php'),(5537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/IpUtilsTest.php','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/IpUtilsTest.php'),(5538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/RewriteTest.php','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/RewriteTest.php'),(5539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/bootstrap.php','wp-content/plugins/wp-rocket/vendor/cloudflare/cf-ip-rewrite/tests/bootstrap.php'),(5540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/ClassLoader.php','wp-content/plugins/wp-rocket/vendor/composer/ClassLoader.php'),(5541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/InstalledVersions.php','wp-content/plugins/wp-rocket/vendor/composer/InstalledVersions.php'),(5542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_classmap.php','wp-content/plugins/wp-rocket/vendor/composer/autoload_classmap.php'),(5543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_namespaces.php','wp-content/plugins/wp-rocket/vendor/composer/autoload_namespaces.php'),(5544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_psr4.php','wp-content/plugins/wp-rocket/vendor/composer/autoload_psr4.php'),(5545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_real.php','wp-content/plugins/wp-rocket/vendor/composer/autoload_real.php'),(5546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/autoload_static.php','wp-content/plugins/wp-rocket/vendor/composer/autoload_static.php'),(5547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/installed.php','wp-content/plugins/wp-rocket/vendor/composer/installed.php'),(5548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/vendor/composer/platform_check.php','wp-content/plugins/wp-rocket/vendor/composer/platform_check.php'),(5549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/cache/advanced-cache.php','wp-content/plugins/wp-rocket/views/cache/advanced-cache.php'),(5550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/cpcss/activate-cpcss-mobile.php','wp-content/plugins/wp-rocket/views/cpcss/activate-cpcss-mobile.php'),(5551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/cpcss/metabox/container.php','wp-content/plugins/wp-rocket/views/cpcss/metabox/container.php'),(5552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/cpcss/metabox/generate.php','wp-content/plugins/wp-rocket/views/cpcss/metabox/generate.php'),(5553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/deactivation-intent/form.php','wp-content/plugins/wp-rocket/views/deactivation-intent/form.php'),(5554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/metaboxes/post_edit_options.php','wp-content/plugins/wp-rocket/views/metaboxes/post_edit_options.php'),(5555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/plugins/update-renewal-expired-notice.php','wp-content/plugins/wp-rocket/views/plugins/update-renewal-expired-notice.php'),(5556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/beacon.php','wp-content/plugins/wp-rocket/views/settings/beacon.php'),(5557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/buttons/button.php','wp-content/plugins/wp-rocket/views/settings/buttons/button.php'),(5558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/buttons/link.php','wp-content/plugins/wp-rocket/views/settings/buttons/link.php'),(5559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/dynamic-lists-update.php','wp-content/plugins/wp-rocket/views/settings/dynamic-lists-update.php'),(5560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/enable-google-fonts.php','wp-content/plugins/wp-rocket/views/settings/enable-google-fonts.php'),(5561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/cache-lifespan.php','wp-content/plugins/wp-rocket/views/settings/fields/cache-lifespan.php'),(5562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/categorized_multiselect.php','wp-content/plugins/wp-rocket/views/settings/fields/categorized_multiselect.php'),(5563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/checkbox.php','wp-content/plugins/wp-rocket/views/settings/fields/checkbox.php'),(5564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/cnames.php','wp-content/plugins/wp-rocket/views/settings/fields/cnames.php'),(5565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/hidden.php','wp-content/plugins/wp-rocket/views/settings/fields/hidden.php'),(5566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/import-form.php','wp-content/plugins/wp-rocket/views/settings/fields/import-form.php'),(5567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/number.php','wp-content/plugins/wp-rocket/views/settings/fields/number.php'),(5568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/one-click-addon.php','wp-content/plugins/wp-rocket/views/settings/fields/one-click-addon.php'),(5569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/radio-buttons.php','wp-content/plugins/wp-rocket/views/settings/fields/radio-buttons.php'),(5570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/rocket-addon.php','wp-content/plugins/wp-rocket/views/settings/fields/rocket-addon.php'),(5571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/rocket-cdn.php','wp-content/plugins/wp-rocket/views/settings/fields/rocket-cdn.php'),(5572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/select.php','wp-content/plugins/wp-rocket/views/settings/fields/select.php'),(5573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/sliding-checkbox.php','wp-content/plugins/wp-rocket/views/settings/fields/sliding-checkbox.php'),(5574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/text.php','wp-content/plugins/wp-rocket/views/settings/fields/text.php'),(5575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/fields/textarea.php','wp-content/plugins/wp-rocket/views/settings/fields/textarea.php'),(5576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/mobile-cache.php','wp-content/plugins/wp-rocket/views/settings/mobile-cache.php'),(5577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/navigation.php','wp-content/plugins/wp-rocket/views/settings/navigation.php'),(5578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/addons.php','wp-content/plugins/wp-rocket/views/settings/page-sections/addons.php'),(5579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/advanced-cache.php','wp-content/plugins/wp-rocket/views/settings/page-sections/advanced-cache.php'),(5580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/cache.php','wp-content/plugins/wp-rocket/views/settings/page-sections/cache.php'),(5581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/cloudflare.php','wp-content/plugins/wp-rocket/views/settings/page-sections/cloudflare.php'),(5582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/dashboard.php','wp-content/plugins/wp-rocket/views/settings/page-sections/dashboard.php'),(5583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/database.php','wp-content/plugins/wp-rocket/views/settings/page-sections/database.php'),(5584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/file-optimization.php','wp-content/plugins/wp-rocket/views/settings/page-sections/file-optimization.php'),(5585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/heartbeat.php','wp-content/plugins/wp-rocket/views/settings/page-sections/heartbeat.php'),(5586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/imagify.php','wp-content/plugins/wp-rocket/views/settings/page-sections/imagify.php'),(5587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/license.php','wp-content/plugins/wp-rocket/views/settings/page-sections/license.php'),(5588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/media.php','wp-content/plugins/wp-rocket/views/settings/page-sections/media.php'),(5589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/page-cdn.php','wp-content/plugins/wp-rocket/views/settings/page-sections/page-cdn.php'),(5590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/preload.php','wp-content/plugins/wp-rocket/views/settings/page-sections/preload.php'),(5591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/sucuri.php','wp-content/plugins/wp-rocket/views/settings/page-sections/sucuri.php'),(5592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/tools.php','wp-content/plugins/wp-rocket/views/settings/page-sections/tools.php'),(5593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page-sections/tutorials.php','wp-content/plugins/wp-rocket/views/settings/page-sections/tutorials.php'),(5594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/page.php','wp-content/plugins/wp-rocket/views/settings/page.php'),(5595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/partials/documentation.php','wp-content/plugins/wp-rocket/views/settings/partials/documentation.php'),(5596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/partials/getting-started.php','wp-content/plugins/wp-rocket/views/settings/partials/getting-started.php'),(5597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/partials/sidebar.php','wp-content/plugins/wp-rocket/views/settings/partials/sidebar.php'),(5598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/sections/addons-container.php','wp-content/plugins/wp-rocket/views/settings/sections/addons-container.php'),(5599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/sections/clean-section.php','wp-content/plugins/wp-rocket/views/settings/sections/clean-section.php'),(5600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/sections/fields-container.php','wp-content/plugins/wp-rocket/views/settings/sections/fields-container.php'),(5601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/views/settings/sections/nocontainer.php','wp-content/plugins/wp-rocket/views/settings/sections/nocontainer.php'),(5602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/plugins/wp-rocket/wp-rocket.php','wp-content/plugins/wp-rocket/wp-rocket.php'),(5603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/advanced-cache.php','wp-content/advanced-cache.php'),(5604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/ai1wm-backups/index.html','wp-content/ai1wm-backups/index.html'),(5605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/ai1wm-backups/index.php','wp-content/ai1wm-backups/index.php'),(5606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/busting/index.html','wp-content/cache/busting/index.html'),(5607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/critical-css/index.html','wp-content/cache/critical-css/index.html'),(5608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/min/index.html','wp-content/cache/min/index.html'),(5609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/accessibility-policy/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/accessibility-policy/index-https.html'),(5610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/accessibility-policy/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/accessibility-policy/index-mobile-https.html'),(5611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/author/davidb/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/author/davidb/index-https.html'),(5612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/author/davidb/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/author/davidb/index-mobile-https.html'),(5613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/before-after-results/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/before-after-results/index-https.html'),(5614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/before-after-results/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/before-after-results/index-mobile-https.html'),(5615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/causes-of-gynecomastia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/causes-of-gynecomastia/index-https.html'),(5616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/causes-of-gynecomastia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/causes-of-gynecomastia/index-mobile-https.html'),(5617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/alpharetta-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/alpharetta-georgia/index-https.html'),(5618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/alpharetta-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/alpharetta-georgia/index-mobile-https.html'),(5619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/athens-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/athens-georgia/index-https.html'),(5620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/athens-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/athens-georgia/index-mobile-https.html'),(5621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/buckhead-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/buckhead-georgia/index-https.html'),(5622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/buckhead-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/buckhead-georgia/index-mobile-https.html'),(5623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/columbus-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/columbus-georgia/index-https.html'),(5624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/columbus-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/columbus-georgia/index-mobile-https.html'),(5625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/decatur-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/decatur-georgia/index-https.html'),(5626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/decatur-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/decatur-georgia/index-mobile-https.html'),(5627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/fulton-county-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/fulton-county-georgia/index-https.html'),(5628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/fulton-county-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/fulton-county-georgia/index-mobile-https.html'),(5629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/index-https.html'),(5630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/index-mobile-https.html'),(5631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/marietta-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/marietta-georgia/index-https.html'),(5632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/marietta-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/marietta-georgia/index-mobile-https.html'),(5633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/out-of-town-patients/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/out-of-town-patients/index-https.html'),(5634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/out-of-town-patients/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/out-of-town-patients/index-mobile-https.html'),(5635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/roswell-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/roswell-georgia/index-https.html'),(5636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/roswell-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/roswell-georgia/index-mobile-https.html'),(5637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/sandy-springs-georgia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/sandy-springs-georgia/index-https.html'),(5638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/sandy-springs-georgia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/contact/sandy-springs-georgia/index-mobile-https.html'),(5639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-candidates/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-candidates/index-https.html'),(5640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-candidates/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-candidates/index-mobile-https.html'),(5641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-frequently-asked-questions/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-frequently-asked-questions/index-https.html'),(5642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-frequently-asked-questions/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-frequently-asked-questions/index-mobile-https.html'),(5643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-grades-stages/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-grades-stages/index-https.html'),(5644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-grades-stages/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-grades-stages/index-mobile-https.html'),(5645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-pricing-insurance/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-pricing-insurance/index-https.html'),(5646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-pricing-insurance/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-pricing-insurance/index-mobile-https.html'),(5647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-reviews/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-reviews/index-https.html'),(5648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-reviews/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-reviews/index-mobile-https.html'),(5649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery/index-https.html'),(5650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery/index-mobile-https.html'),(5651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery-doctors/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery-doctors/index-https.html'),(5652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery-doctors/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-surgery-doctors/index-mobile-https.html'),(5653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/index-https.html'),(5654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/index-mobile-https.html'),(5655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/index-https.html'),(5656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/index-mobile-https.html'),(5657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/index-https.html'),(5658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/index-mobile-https.html'),(5659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/index-https.html'),(5660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/index-mobile-https.html'),(5661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/index-https.html'),(5662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/index-mobile-https.html'),(5663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/index-https.html'),(5664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/index-mobile-https.html'),(5665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/index-https.html'),(5666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/index-mobile-https.html'),(5667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/index-https.html'),(5668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/index-mobile-https.html'),(5669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/index-https.html'),(5670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/index-mobile-https.html'),(5671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/index-https.html'),(5672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/index-mobile-https.html'),(5673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/privacy-policy/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/privacy-policy/index-https.html'),(5674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/privacy-policy/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/privacy-policy/index-mobile-https.html'),(5675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/what-is-gyno/index-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/what-is-gyno/index-https.html'),(5676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/atlantagynecomastia.com/what-is-gyno/index-mobile-https.html','wp-content/cache/wp-rocket/atlantagynecomastia.com/what-is-gyno/index-mobile-https.html'),(5677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/cache/wp-rocket/index.html','wp-content/cache/wp-rocket/index.html'),(5678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/index.php','wp-content/index.php'),(5679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/mu-plugins/wp-cli-login-server.php','wp-content/mu-plugins/wp-cli-login-server.php'),(5680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/index.php','wp-content/themes/index.php'),(5681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/404.php','wp-content/themes/kadence/404.php'),(5682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/500.php','wp-content/themes/kadence/500.php'),(5683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/LICENSE','wp-content/themes/kadence/LICENSE'),(5684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/all.min.css','wp-content/themes/kadence/assets/css/all.min.css'),(5685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/author-box.min.css','wp-content/themes/kadence/assets/css/author-box.min.css'),(5686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/bbpress.min.css','wp-content/themes/kadence/assets/css/bbpress.min.css'),(5687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/comments.min.css','wp-content/themes/kadence/assets/css/comments.min.css'),(5688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/content.min.css','wp-content/themes/kadence/assets/css/content.min.css'),(5689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/editor/editor-styles.min.css','wp-content/themes/kadence/assets/css/editor/editor-styles.min.css'),(5690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/editor/learndash-editor-styles.min.css','wp-content/themes/kadence/assets/css/editor/learndash-editor-styles.min.css'),(5691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/editor/zoom-recipe-editor-styles.min.css','wp-content/themes/kadence/assets/css/editor/zoom-recipe-editor-styles.min.css'),(5692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/elementor-admin.min.css','wp-content/themes/kadence/assets/css/elementor-admin.min.css'),(5693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/elementor-cart.min.css','wp-content/themes/kadence/assets/css/elementor-cart.min.css'),(5694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/elementor-checkout.min.css','wp-content/themes/kadence/assets/css/elementor-checkout.min.css'),(5695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/elementor.min.css','wp-content/themes/kadence/assets/css/elementor.min.css'),(5696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/footer.min.css','wp-content/themes/kadence/assets/css/footer.min.css'),(5697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/givewp.min.css','wp-content/themes/kadence/assets/css/givewp.min.css'),(5698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/global.min.css','wp-content/themes/kadence/assets/css/global.min.css'),(5699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/header.min.css','wp-content/themes/kadence/assets/css/header.min.css'),(5700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/heroic-knowledge-base.min.css','wp-content/themes/kadence/assets/css/heroic-knowledge-base.min.css'),(5701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/ie.min.css','wp-content/themes/kadence/assets/css/ie.min.css'),(5702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/kadence-splide.min.css','wp-content/themes/kadence/assets/css/kadence-splide.min.css'),(5703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/learndash.min.css','wp-content/themes/kadence/assets/css/learndash.min.css'),(5704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/lifterlms.min.css','wp-content/themes/kadence/assets/css/lifterlms.min.css'),(5705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/polylang.min.css','wp-content/themes/kadence/assets/css/polylang.min.css'),(5706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/rankmath.min.css','wp-content/themes/kadence/assets/css/rankmath.min.css'),(5707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/rcp.min.css','wp-content/themes/kadence/assets/css/rcp.min.css'),(5708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/related-posts.min.css','wp-content/themes/kadence/assets/css/related-posts.min.css'),(5709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/rtl.min.css','wp-content/themes/kadence/assets/css/rtl.min.css'),(5710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/sidebar.min.css','wp-content/themes/kadence/assets/css/sidebar.min.css'),(5711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/simplelightbox.min.css','wp-content/themes/kadence/assets/css/simplelightbox.min.css'),(5712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/slider.min.css','wp-content/themes/kadence/assets/css/slider.min.css'),(5713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_ally.scss','wp-content/themes/kadence/assets/css/src/_ally.scss'),(5714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_blocks.scss','wp-content/themes/kadence/assets/css/src/_blocks.scss'),(5715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_buttons.scss','wp-content/themes/kadence/assets/css/src/_buttons.scss'),(5716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_custom-properties.scss','wp-content/themes/kadence/assets/css/src/_custom-properties.scss'),(5717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_elements.scss','wp-content/themes/kadence/assets/css/src/_elements.scss'),(5718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_forms.scss','wp-content/themes/kadence/assets/css/src/_forms.scss'),(5719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_grid.scss','wp-content/themes/kadence/assets/css/src/_grid.scss'),(5720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_icons.scss','wp-content/themes/kadence/assets/css/src/_icons.scss'),(5721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_links.scss','wp-content/themes/kadence/assets/css/src/_links.scss'),(5722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_media.scss','wp-content/themes/kadence/assets/css/src/_media.scss'),(5723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_mixins.scss','wp-content/themes/kadence/assets/css/src/_mixins.scss'),(5724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_nav.scss','wp-content/themes/kadence/assets/css/src/_nav.scss'),(5725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_pagination.scss','wp-content/themes/kadence/assets/css/src/_pagination.scss'),(5726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_palette.scss','wp-content/themes/kadence/assets/css/src/_palette.scss'),(5727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_reset.scss','wp-content/themes/kadence/assets/css/src/_reset.scss'),(5728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_site-brand.scss','wp-content/themes/kadence/assets/css/src/_site-brand.scss'),(5729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_social.scss','wp-content/themes/kadence/assets/css/src/_social.scss'),(5730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_typography.scss','wp-content/themes/kadence/assets/css/src/_typography.scss'),(5731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_vars.scss','wp-content/themes/kadence/assets/css/src/_vars.scss'),(5732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/_widgets.scss','wp-content/themes/kadence/assets/css/src/_widgets.scss'),(5733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/all.scss','wp-content/themes/kadence/assets/css/src/all.scss'),(5734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/author-box.scss','wp-content/themes/kadence/assets/css/src/author-box.scss'),(5735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/bbpress.scss','wp-content/themes/kadence/assets/css/src/bbpress.scss'),(5736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/comments.scss','wp-content/themes/kadence/assets/css/src/comments.scss'),(5737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/content.scss','wp-content/themes/kadence/assets/css/src/content.scss'),(5738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/editor/editor-styles.scss','wp-content/themes/kadence/assets/css/src/editor/editor-styles.scss'),(5739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/editor/learndash-editor-styles.scss','wp-content/themes/kadence/assets/css/src/editor/learndash-editor-styles.scss'),(5740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/editor/zoom-recipe-editor-styles.scss','wp-content/themes/kadence/assets/css/src/editor/zoom-recipe-editor-styles.scss'),(5741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/elementor-admin.scss','wp-content/themes/kadence/assets/css/src/elementor-admin.scss'),(5742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/elementor-cart.scss','wp-content/themes/kadence/assets/css/src/elementor-cart.scss'),(5743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/elementor-checkout.scss','wp-content/themes/kadence/assets/css/src/elementor-checkout.scss'),(5744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/elementor.scss','wp-content/themes/kadence/assets/css/src/elementor.scss'),(5745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/footer.scss','wp-content/themes/kadence/assets/css/src/footer.scss'),(5746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/givewp.scss','wp-content/themes/kadence/assets/css/src/givewp.scss'),(5747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/global.scss','wp-content/themes/kadence/assets/css/src/global.scss'),(5748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/header.scss','wp-content/themes/kadence/assets/css/src/header.scss'),(5749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/heroic-knowledge-base.scss','wp-content/themes/kadence/assets/css/src/heroic-knowledge-base.scss'),(5750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/ie.scss','wp-content/themes/kadence/assets/css/src/ie.scss'),(5751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/kadence-splide.scss','wp-content/themes/kadence/assets/css/src/kadence-splide.scss'),(5752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/learndash.scss','wp-content/themes/kadence/assets/css/src/learndash.scss'),(5753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/lifterlms.scss','wp-content/themes/kadence/assets/css/src/lifterlms.scss'),(5754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/polylang.scss','wp-content/themes/kadence/assets/css/src/polylang.scss'),(5755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/rankmath.scss','wp-content/themes/kadence/assets/css/src/rankmath.scss'),(5756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/rcp.scss','wp-content/themes/kadence/assets/css/src/rcp.scss'),(5757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/related-posts.scss','wp-content/themes/kadence/assets/css/src/related-posts.scss'),(5758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/rtl.scss','wp-content/themes/kadence/assets/css/src/rtl.scss'),(5759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/sidebar.scss','wp-content/themes/kadence/assets/css/src/sidebar.scss'),(5760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/simplelightbox.scss','wp-content/themes/kadence/assets/css/src/simplelightbox.scss'),(5761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/slider.scss','wp-content/themes/kadence/assets/css/src/slider.scss'),(5762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/tribe-events.scss','wp-content/themes/kadence/assets/css/src/tribe-events.scss'),(5763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/tutorlms.scss','wp-content/themes/kadence/assets/css/src/tutorlms.scss'),(5764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_account.scss','wp-content/themes/kadence/assets/css/src/woo/_account.scss'),(5765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_archive.scss','wp-content/themes/kadence/assets/css/src/woo/_archive.scss'),(5766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_blocks.scss','wp-content/themes/kadence/assets/css/src/woo/_blocks.scss'),(5767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_checkout.scss','wp-content/themes/kadence/assets/css/src/woo/_checkout.scss'),(5768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_form.scss','wp-content/themes/kadence/assets/css/src/woo/_form.scss'),(5769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_layout.scss','wp-content/themes/kadence/assets/css/src/woo/_layout.scss'),(5770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_single.scss','wp-content/themes/kadence/assets/css/src/woo/_single.scss'),(5771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woo/_small_screen.scss','wp-content/themes/kadence/assets/css/src/woo/_small_screen.scss'),(5772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woocommerce-account.scss','wp-content/themes/kadence/assets/css/src/woocommerce-account.scss'),(5773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/woocommerce.scss','wp-content/themes/kadence/assets/css/src/woocommerce.scss'),(5774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/src/zoom-recipe-card.scss','wp-content/themes/kadence/assets/css/src/zoom-recipe-card.scss'),(5775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/tribe-events.min.css','wp-content/themes/kadence/assets/css/tribe-events.min.css'),(5776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/tutorlms.min.css','wp-content/themes/kadence/assets/css/tutorlms.min.css'),(5777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/woocommerce-account.min.css','wp-content/themes/kadence/assets/css/woocommerce-account.min.css'),(5778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/woocommerce.min.css','wp-content/themes/kadence/assets/css/woocommerce.min.css'),(5779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/css/zoom-recipe-card.min.css','wp-content/themes/kadence/assets/css/zoom-recipe-card.min.css'),(5780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/fonts/star.svg','wp-content/themes/kadence/assets/fonts/star.svg'),(5781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/fonts/star.ttf','wp-content/themes/kadence/assets/fonts/star.ttf'),(5782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/fonts/star.woff','wp-content/themes/kadence/assets/fonts/star.woff'),(5783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/fonts/star.woff2','wp-content/themes/kadence/assets/fonts/star.woff2'),(5784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/antic.jpg','wp-content/themes/kadence/assets/images/fonts/antic.jpg'),(5785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/cormorant.jpg','wp-content/themes/kadence/assets/images/fonts/cormorant.jpg'),(5786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/gilda.jpg','wp-content/themes/kadence/assets/images/fonts/gilda.jpg'),(5787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/josefin.jpg','wp-content/themes/kadence/assets/images/fonts/josefin.jpg'),(5788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/libre.jpg','wp-content/themes/kadence/assets/images/fonts/libre.jpg'),(5789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/lora.jpg','wp-content/themes/kadence/assets/images/fonts/lora.jpg'),(5790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/montserrat.jpg','wp-content/themes/kadence/assets/images/fonts/montserrat.jpg'),(5791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/nunito.jpg','wp-content/themes/kadence/assets/images/fonts/nunito.jpg'),(5792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/oswald.jpg','wp-content/themes/kadence/assets/images/fonts/oswald.jpg'),(5793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/playfair.jpg','wp-content/themes/kadence/assets/images/fonts/playfair.jpg'),(5794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/proza.jpg','wp-content/themes/kadence/assets/images/fonts/proza.jpg'),(5795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/rubik.jpg','wp-content/themes/kadence/assets/images/fonts/rubik.jpg'),(5796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/fonts/worksans.jpg','wp-content/themes/kadence/assets/images/fonts/worksans.jpg'),(5797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/getting-started-video.jpg','wp-content/themes/kadence/assets/images/getting-started-video.jpg'),(5798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/amex.png','wp-content/themes/kadence/assets/images/icons/credit-cards/amex.png'),(5799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/amex.svg','wp-content/themes/kadence/assets/images/icons/credit-cards/amex.svg'),(5800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/diners.png','wp-content/themes/kadence/assets/images/icons/credit-cards/diners.png'),(5801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/diners.svg','wp-content/themes/kadence/assets/images/icons/credit-cards/diners.svg'),(5802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/discover.png','wp-content/themes/kadence/assets/images/icons/credit-cards/discover.png'),(5803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/discover.svg','wp-content/themes/kadence/assets/images/icons/credit-cards/discover.svg'),(5804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/jcb.png','wp-content/themes/kadence/assets/images/icons/credit-cards/jcb.png'),(5805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/jcb.svg','wp-content/themes/kadence/assets/images/icons/credit-cards/jcb.svg'),(5806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/laser.png','wp-content/themes/kadence/assets/images/icons/credit-cards/laser.png'),(5807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/laser.svg','wp-content/themes/kadence/assets/images/icons/credit-cards/laser.svg'),(5808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/maestro.png','wp-content/themes/kadence/assets/images/icons/credit-cards/maestro.png'),(5809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/maestro.svg','wp-content/themes/kadence/assets/images/icons/credit-cards/maestro.svg'),(5810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/mastercard.png','wp-content/themes/kadence/assets/images/icons/credit-cards/mastercard.png'),(5811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/mastercard.svg','wp-content/themes/kadence/assets/images/icons/credit-cards/mastercard.svg'),(5812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/visa.png','wp-content/themes/kadence/assets/images/icons/credit-cards/visa.png'),(5813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/credit-cards/visa.svg','wp-content/themes/kadence/assets/images/icons/credit-cards/visa.svg'),(5814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/loader.svg','wp-content/themes/kadence/assets/images/icons/loader.svg'),(5815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/icons/loader_org.svg','wp-content/themes/kadence/assets/images/icons/loader_org.svg'),(5816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/kadence-logo.png','wp-content/themes/kadence/assets/images/kadence-logo.png'),(5817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/placeholder.svg','wp-content/themes/kadence/assets/images/placeholder.svg'),(5818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/images/starter-templates-banner.jpeg','wp-content/themes/kadence/assets/images/starter-templates-banner.jpeg'),(5819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/customizer.asset.php','wp-content/themes/kadence/assets/js/admin/customizer.asset.php'),(5820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/customizer.js','wp-content/themes/kadence/assets/js/admin/customizer.js'),(5821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/dashboard.asset.php','wp-content/themes/kadence/assets/js/admin/dashboard.asset.php'),(5822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/dashboard.js','wp-content/themes/kadence/assets/js/admin/dashboard.js'),(5823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/meta.asset.php','wp-content/themes/kadence/assets/js/admin/meta.asset.php'),(5824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin/meta.js','wp-content/themes/kadence/assets/js/admin/meta.js'),(5825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/admin-activate.min.js','wp-content/themes/kadence/assets/js/admin-activate.min.js'),(5826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/cart-update.min.js','wp-content/themes/kadence/assets/js/cart-update.min.js'),(5827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/css-vars-ponyfill.min.js','wp-content/themes/kadence/assets/js/css-vars-ponyfill.min.js'),(5828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/gutenberg-notice.min.js','wp-content/themes/kadence/assets/js/gutenberg-notice.min.js'),(5829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/ie.min.js','wp-content/themes/kadence/assets/js/ie.min.js'),(5830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/lightbox-init.min.js','wp-content/themes/kadence/assets/js/lightbox-init.min.js'),(5831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/navigation-lite.min.js','wp-content/themes/kadence/assets/js/navigation-lite.min.js'),(5832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/navigation.min.js','wp-content/themes/kadence/assets/js/navigation.min.js'),(5833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/product-cls.min.js','wp-content/themes/kadence/assets/js/product-cls.min.js'),(5834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/shop-spinner.min.js','wp-content/themes/kadence/assets/js/shop-spinner.min.js'),(5835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/shop-toggle.min.js','wp-content/themes/kadence/assets/js/shop-toggle.min.js'),(5836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/simplelightbox.min.js','wp-content/themes/kadence/assets/js/simplelightbox.min.js'),(5837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/slide-init.min.js','wp-content/themes/kadence/assets/js/slide-init.min.js'),(5838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/splide-init.min.js','wp-content/themes/kadence/assets/js/splide-init.min.js'),(5839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/splide.min.js','wp-content/themes/kadence/assets/js/splide.min.js'),(5840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/admin-activate.js','wp-content/themes/kadence/assets/js/src/admin-activate.js'),(5841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/cart-update.js','wp-content/themes/kadence/assets/js/src/cart-update.js'),(5842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/css-vars-ponyfill.js','wp-content/themes/kadence/assets/js/src/css-vars-ponyfill.js'),(5843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/gutenberg-notice.js','wp-content/themes/kadence/assets/js/src/gutenberg-notice.js'),(5844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/ie.js','wp-content/themes/kadence/assets/js/src/ie.js'),(5845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/lightbox-init.js','wp-content/themes/kadence/assets/js/src/lightbox-init.js'),(5846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/navigation-lite.js','wp-content/themes/kadence/assets/js/src/navigation-lite.js'),(5847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/navigation.js','wp-content/themes/kadence/assets/js/src/navigation.js'),(5848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/product-cls.js','wp-content/themes/kadence/assets/js/src/product-cls.js'),(5849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/shop-spinner.js','wp-content/themes/kadence/assets/js/src/shop-spinner.js'),(5850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/shop-toggle.js','wp-content/themes/kadence/assets/js/src/shop-toggle.js'),(5851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/simplelightbox.js','wp-content/themes/kadence/assets/js/src/simplelightbox.js'),(5852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/slide-init.js','wp-content/themes/kadence/assets/js/src/slide-init.js'),(5853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/splide-init.js','wp-content/themes/kadence/assets/js/src/splide-init.js'),(5854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/splide.js','wp-content/themes/kadence/assets/js/src/splide.js'),(5855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/src/text-widgets.js','wp-content/themes/kadence/assets/js/src/text-widgets.js'),(5856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/assets/js/text-widgets.min.js','wp-content/themes/kadence/assets/js/text-widgets.min.js'),(5857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/content-archive-forum.php','wp-content/themes/kadence/bbpress/content-archive-forum.php'),(5858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-reply-search.php','wp-content/themes/kadence/bbpress/form-reply-search.php'),(5859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-reply.php','wp-content/themes/kadence/bbpress/form-reply.php'),(5860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-search.php','wp-content/themes/kadence/bbpress/form-search.php'),(5861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-topic-search.php','wp-content/themes/kadence/bbpress/form-topic-search.php'),(5862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/form-topic.php','wp-content/themes/kadence/bbpress/form-topic.php'),(5863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-search-reply.php','wp-content/themes/kadence/bbpress/loop-search-reply.php'),(5864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-search-topic.php','wp-content/themes/kadence/bbpress/loop-search-topic.php'),(5865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-single-reply.php','wp-content/themes/kadence/bbpress/loop-single-reply.php'),(5866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-single-topic.php','wp-content/themes/kadence/bbpress/loop-single-topic.php'),(5867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/loop-topics.php','wp-content/themes/kadence/bbpress/loop-topics.php'),(5868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/pagination-replies.php','wp-content/themes/kadence/bbpress/pagination-replies.php'),(5869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/bbpress/pagination-topics.php','wp-content/themes/kadence/bbpress/pagination-topics.php'),(5870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/changelog.txt','wp-content/themes/kadence/changelog.txt'),(5871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/comments.php','wp-content/themes/kadence/comments.php'),(5872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/footer.php','wp-content/themes/kadence/footer.php'),(5873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/functions.php','wp-content/themes/kadence/functions.php'),(5874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/header.php','wp-content/themes/kadence/header.php'),(5875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/back-compat.php','wp-content/themes/kadence/inc/back-compat.php'),(5876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/class-kadence-css.php','wp-content/themes/kadence/inc/class-kadence-css.php'),(5877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/class-local-gfonts.php','wp-content/themes/kadence/inc/class-local-gfonts.php'),(5878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/class-theme.php','wp-content/themes/kadence/inc/class-theme.php'),(5879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/accessibility/component.php','wp-content/themes/kadence/inc/components/accessibility/component.php'),(5880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/amp/component.php','wp-content/themes/kadence/inc/components/amp/component.php'),(5881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/archive_title/component.php','wp-content/themes/kadence/inc/components/archive_title/component.php'),(5882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/base_support/component.php','wp-content/themes/kadence/inc/components/base_support/component.php'),(5883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/bbpress/component.php','wp-content/themes/kadence/inc/components/bbpress/component.php'),(5884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/beaver/component.php','wp-content/themes/kadence/inc/components/beaver/component.php'),(5885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/beaverthemer/component.php','wp-content/themes/kadence/inc/components/beaverthemer/component.php'),(5886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/breadcrumbs/component.php','wp-content/themes/kadence/inc/components/breadcrumbs/component.php'),(5887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/buddyboss/component.php','wp-content/themes/kadence/inc/components/buddyboss/component.php'),(5888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/clean_frontend/component.php','wp-content/themes/kadence/inc/components/clean_frontend/component.php'),(5889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/color_palette/component.php','wp-content/themes/kadence/inc/components/color_palette/component.php'),(5890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/comments/component.php','wp-content/themes/kadence/inc/components/comments/component.php'),(5891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/component_interface.php','wp-content/themes/kadence/inc/components/component_interface.php'),(5892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/custom_footer/component.php','wp-content/themes/kadence/inc/components/custom_footer/component.php'),(5893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/custom_header/component.php','wp-content/themes/kadence/inc/components/custom_header/component.php'),(5894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/custom_logo/component.php','wp-content/themes/kadence/inc/components/custom_logo/component.php'),(5895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/editor/component.php','wp-content/themes/kadence/inc/components/editor/component.php'),(5896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/elementor/component.php','wp-content/themes/kadence/inc/components/elementor/component.php'),(5897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/elementor_pro/class-elementor-dynamic-colors.php','wp-content/themes/kadence/inc/components/elementor_pro/class-elementor-dynamic-colors.php'),(5898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/elementor_pro/component.php','wp-content/themes/kadence/inc/components/elementor_pro/component.php'),(5899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/entry_title/component.php','wp-content/themes/kadence/inc/components/entry_title/component.php'),(5900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/essential_real_estate/component.php','wp-content/themes/kadence/inc/components/essential_real_estate/component.php'),(5901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/estatik/component.php','wp-content/themes/kadence/inc/components/estatik/component.php'),(5902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/give/component.php','wp-content/themes/kadence/inc/components/give/component.php'),(5903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/heroic_kb/component.php','wp-content/themes/kadence/inc/components/heroic_kb/component.php'),(5904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/icons/component.php','wp-content/themes/kadence/inc/components/icons/component.php'),(5905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/image_sizes/component.php','wp-content/themes/kadence/inc/components/image_sizes/component.php'),(5906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/jetpack/component.php','wp-content/themes/kadence/inc/components/jetpack/component.php'),(5907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/layout/component.php','wp-content/themes/kadence/inc/components/layout/component.php'),(5908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/learndash/component.php','wp-content/themes/kadence/inc/components/learndash/component.php'),(5909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/learndash/course_list_template.php','wp-content/themes/kadence/inc/components/learndash/course_list_template.php'),(5910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/lifterlms/component.php','wp-content/themes/kadence/inc/components/lifterlms/component.php'),(5911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/localization/component.php','wp-content/themes/kadence/inc/components/localization/component.php'),(5912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/microdata/component.php','wp-content/themes/kadence/inc/components/microdata/component.php'),(5913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/nav_menus/component.php','wp-content/themes/kadence/inc/components/nav_menus/component.php'),(5914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/nav_menus/nav-widget-settings.php','wp-content/themes/kadence/inc/components/nav_menus/nav-widget-settings.php'),(5915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/options/component.php','wp-content/themes/kadence/inc/components/options/component.php'),(5916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/polylang/component.php','wp-content/themes/kadence/inc/components/polylang/component.php'),(5917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/pwa/component.php','wp-content/themes/kadence/inc/components/pwa/component.php'),(5918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/rankmath/component.php','wp-content/themes/kadence/inc/components/rankmath/component.php'),(5919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/restrict_content_pro/component.php','wp-content/themes/kadence/inc/components/restrict_content_pro/component.php'),(5920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/scripts/component.php','wp-content/themes/kadence/inc/components/scripts/component.php'),(5921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/styles/component.php','wp-content/themes/kadence/inc/components/styles/component.php'),(5922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/template_parts/component.php','wp-content/themes/kadence/inc/components/template_parts/component.php'),(5923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/template_tags.php','wp-content/themes/kadence/inc/components/template_tags.php'),(5924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/templating_component_interface.php','wp-content/themes/kadence/inc/components/templating_component_interface.php'),(5925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/the_events_calendar/component.php','wp-content/themes/kadence/inc/components/the_events_calendar/component.php'),(5926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/third_party/component.php','wp-content/themes/kadence/inc/components/third_party/component.php'),(5927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/tutorlms/component.php','wp-content/themes/kadence/inc/components/tutorlms/component.php'),(5928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/woocommerce/component.php','wp-content/themes/kadence/inc/components/woocommerce/component.php'),(5929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/components/zoom_recipe_card/component.php','wp-content/themes/kadence/inc/components/zoom_recipe_card/component.php'),(5930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/class-customizer-sanitize.php','wp-content/themes/kadence/inc/customizer/class-customizer-sanitize.php'),(5931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/class-theme-customizer.php','wp-content/themes/kadence/inc/customizer/class-theme-customizer.php'),(5932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/kadence-customizer-preview.css','wp-content/themes/kadence/inc/customizer/css/kadence-customizer-preview.css'),(5933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/kadence-customizer-preview.scss','wp-content/themes/kadence/inc/customizer/css/kadence-customizer-preview.scss'),(5934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/kadence-customizer.css','wp-content/themes/kadence/inc/customizer/css/kadence-customizer.css'),(5935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/kadence-customizer.scss','wp-content/themes/kadence/inc/customizer/css/kadence-customizer.scss'),(5936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/rtl-kadence-customizer.css','wp-content/themes/kadence/inc/customizer/css/rtl-kadence-customizer.css'),(5937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/css/rtl-kadence-customizer.scss','wp-content/themes/kadence/inc/customizer/css/rtl-kadence-customizer.scss'),(5938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-control-blank.php','wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-control-blank.php'),(5939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-control-import-export.php','wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-control-import-export.php'),(5940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-section-pro.php','wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-section-pro.php'),(5941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/google-font-variants.php','wp-content/themes/kadence/inc/customizer/google-font-variants.php'),(5942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/js/generate-google-font-variants.js','wp-content/themes/kadence/inc/customizer/js/generate-google-font-variants.js'),(5943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/js/kadence-customizer-preview.js','wp-content/themes/kadence/inc/customizer/js/kadence-customizer-preview.js'),(5944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/js/kadence-customizer-preview.min.js','wp-content/themes/kadence/inc/customizer/js/kadence-customizer-preview.min.js'),(5945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/404-layout-options.php','wp-content/themes/kadence/inc/customizer/options/404-layout-options.php'),(5946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/custom-layout-options.php','wp-content/themes/kadence/inc/customizer/options/custom-layout-options.php'),(5947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-bottom-options.php','wp-content/themes/kadence/inc/customizer/options/footer-bottom-options.php'),(5948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-builder-options.php','wp-content/themes/kadence/inc/customizer/options/footer-builder-options.php'),(5949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-html-options.php','wp-content/themes/kadence/inc/customizer/options/footer-html-options.php'),(5950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-middle-options.php','wp-content/themes/kadence/inc/customizer/options/footer-middle-options.php'),(5951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-navigation-options.php','wp-content/themes/kadence/inc/customizer/options/footer-navigation-options.php'),(5952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-social-options.php','wp-content/themes/kadence/inc/customizer/options/footer-social-options.php'),(5953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-top-options.php','wp-content/themes/kadence/inc/customizer/options/footer-top-options.php'),(5954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget1-options.php','wp-content/themes/kadence/inc/customizer/options/footer-widget1-options.php'),(5955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget2-options.php','wp-content/themes/kadence/inc/customizer/options/footer-widget2-options.php'),(5956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget3-options.php','wp-content/themes/kadence/inc/customizer/options/footer-widget3-options.php'),(5957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget4-options.php','wp-content/themes/kadence/inc/customizer/options/footer-widget4-options.php'),(5958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget5-options.php','wp-content/themes/kadence/inc/customizer/options/footer-widget5-options.php'),(5959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/footer-widget6-options.php','wp-content/themes/kadence/inc/customizer/options/footer-widget6-options.php'),(5960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/forum-archive-layout-options.php','wp-content/themes/kadence/inc/customizer/options/forum-archive-layout-options.php'),(5961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/forum-layout-options.php','wp-content/themes/kadence/inc/customizer/options/forum-layout-options.php'),(5962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-breadcrumb-options.php','wp-content/themes/kadence/inc/customizer/options/general-breadcrumb-options.php'),(5963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-button-options.php','wp-content/themes/kadence/inc/customizer/options/general-button-options.php'),(5964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-colors-options.php','wp-content/themes/kadence/inc/customizer/options/general-colors-options.php'),(5965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-comments-options.php','wp-content/themes/kadence/inc/customizer/options/general-comments-options.php'),(5966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-image-options.php','wp-content/themes/kadence/inc/customizer/options/general-image-options.php'),(5967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-layout-options.php','wp-content/themes/kadence/inc/customizer/options/general-layout-options.php'),(5968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-performance-options.php','wp-content/themes/kadence/inc/customizer/options/general-performance-options.php'),(5969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-scroll-to-top-options.php','wp-content/themes/kadence/inc/customizer/options/general-scroll-to-top-options.php'),(5970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-sidebar-options.php','wp-content/themes/kadence/inc/customizer/options/general-sidebar-options.php'),(5971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-social-options.php','wp-content/themes/kadence/inc/customizer/options/general-social-options.php'),(5972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/general-typography-options.php','wp-content/themes/kadence/inc/customizer/options/general-typography-options.php'),(5973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-bottom-options.php','wp-content/themes/kadence/inc/customizer/options/header-bottom-options.php'),(5974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-builder-options.php','wp-content/themes/kadence/inc/customizer/options/header-builder-options.php'),(5975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-button-options.php','wp-content/themes/kadence/inc/customizer/options/header-button-options.php'),(5976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-cart-options.php','wp-content/themes/kadence/inc/customizer/options/header-cart-options.php'),(5977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-dropdown-options.php','wp-content/themes/kadence/inc/customizer/options/header-dropdown-options.php'),(5978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-html-options.php','wp-content/themes/kadence/inc/customizer/options/header-html-options.php'),(5979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-logo-options.php','wp-content/themes/kadence/inc/customizer/options/header-logo-options.php'),(5980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-main-options.php','wp-content/themes/kadence/inc/customizer/options/header-main-options.php'),(5981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-button-options.php','wp-content/themes/kadence/inc/customizer/options/header-mobile-button-options.php'),(5982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-cart-options.php','wp-content/themes/kadence/inc/customizer/options/header-mobile-cart-options.php'),(5983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-html-options.php','wp-content/themes/kadence/inc/customizer/options/header-mobile-html-options.php'),(5984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-nav-options.php','wp-content/themes/kadence/inc/customizer/options/header-mobile-nav-options.php'),(5985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-mobile-social-options.php','wp-content/themes/kadence/inc/customizer/options/header-mobile-social-options.php'),(5986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-navigation-options.php','wp-content/themes/kadence/inc/customizer/options/header-navigation-options.php'),(5987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-popup-options.php','wp-content/themes/kadence/inc/customizer/options/header-popup-options.php'),(5988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-search-options.php','wp-content/themes/kadence/inc/customizer/options/header-search-options.php'),(5989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-secondary-navigation-options.php','wp-content/themes/kadence/inc/customizer/options/header-secondary-navigation-options.php'),(5990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-social-options.php','wp-content/themes/kadence/inc/customizer/options/header-social-options.php'),(5991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-sticky-options.php','wp-content/themes/kadence/inc/customizer/options/header-sticky-options.php'),(5992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-top-options.php','wp-content/themes/kadence/inc/customizer/options/header-top-options.php'),(5993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/header-trigger-options.php','wp-content/themes/kadence/inc/customizer/options/header-trigger-options.php'),(5994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-course-archive-layout-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-course-archive-layout-options.php'),(5995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-course-layout-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-course-layout-options.php'),(5996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-essays-layout-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-essays-layout-options.php'),(5997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-focus-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-focus-options.php'),(5998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-grid-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-grid-options.php'),(5999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-groups-layout-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-groups-layout-options.php'),(6000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-lesson-layout-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-lesson-layout-options.php'),(6001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-quiz-layout-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-quiz-layout-options.php'),(6002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/learndash-topic-layout-options.php','wp-content/themes/kadence/inc/customizer/options/learndash-topic-layout-options.php'),(6003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-course-archive-layout-options.php','wp-content/themes/kadence/inc/customizer/options/lifter-course-archive-layout-options.php'),(6004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-course-layout-options.php','wp-content/themes/kadence/inc/customizer/options/lifter-course-layout-options.php'),(6005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-dashboard-layout-options.php','wp-content/themes/kadence/inc/customizer/options/lifter-dashboard-layout-options.php'),(6006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-lesson-layout-options.php','wp-content/themes/kadence/inc/customizer/options/lifter-lesson-layout-options.php'),(6007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-member-archive-layout-options.php','wp-content/themes/kadence/inc/customizer/options/lifter-member-archive-layout-options.php'),(6008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-member-layout-options.php','wp-content/themes/kadence/inc/customizer/options/lifter-member-layout-options.php'),(6009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/lifter-quiz-layout-options.php','wp-content/themes/kadence/inc/customizer/options/lifter-quiz-layout-options.php'),(6010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/my-account-layout-options.php','wp-content/themes/kadence/inc/customizer/options/my-account-layout-options.php'),(6011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/page-layout-options.php','wp-content/themes/kadence/inc/customizer/options/page-layout-options.php'),(6012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/post-archive-layout-options.php','wp-content/themes/kadence/inc/customizer/options/post-archive-layout-options.php'),(6013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/post-layout-options.php','wp-content/themes/kadence/inc/customizer/options/post-layout-options.php'),(6014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/product-archive-layout-options.php','wp-content/themes/kadence/inc/customizer/options/product-archive-layout-options.php'),(6015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/product-layout-options.php','wp-content/themes/kadence/inc/customizer/options/product-layout-options.php'),(6016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/search-layout-options.php','wp-content/themes/kadence/inc/customizer/options/search-layout-options.php'),(6017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/tec-event-archive-layout-options.php','wp-content/themes/kadence/inc/customizer/options/tec-event-archive-layout-options.php'),(6018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/tec-event-layout-options.php','wp-content/themes/kadence/inc/customizer/options/tec-event-layout-options.php'),(6019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/topic-layout-options.php','wp-content/themes/kadence/inc/customizer/options/topic-layout-options.php'),(6020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/transparent-header-options.php','wp-content/themes/kadence/inc/customizer/options/transparent-header-options.php'),(6021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/tutor-course-archive-layout-options.php','wp-content/themes/kadence/inc/customizer/options/tutor-course-archive-layout-options.php'),(6022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/tutor-course-layout-options.php','wp-content/themes/kadence/inc/customizer/options/tutor-course-layout-options.php'),(6023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/options/woo-store-notice-options.php','wp-content/themes/kadence/inc/customizer/options/woo-store-notice-options.php'),(6024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/build/controls.css','wp-content/themes/kadence/inc/customizer/react/build/controls.css'),(6025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-available.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-available.php'),(6026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-background.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-background.php'),(6027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-border.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-border.php'),(6028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-borders.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-borders.php'),(6029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-builder.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-builder.php'),(6030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-check-icon.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-check-icon.php'),(6031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color-link.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color-link.php'),(6032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color-palette.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color-palette.php'),(6033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-color.php'),(6034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-contact.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-contact.php'),(6035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-editor.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-editor.php'),(6036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-focus-button.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-focus-button.php'),(6037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-measure.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-measure.php'),(6038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-multi-radio-icon.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-multi-radio-icon.php'),(6039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-radio-icon.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-radio-icon.php'),(6040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-range.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-range.php'),(6041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-row.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-row.php'),(6042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-select.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-select.php'),(6043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-shadow.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-shadow.php'),(6044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-social.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-social.php'),(6045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-sorter.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-sorter.php'),(6046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-switch.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-switch.php'),(6047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-tab.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-tab.php'),(6048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-text.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-text.php'),(6049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-textarea.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-textarea.php'),(6050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-title.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-title.php'),(6051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-typography.php','wp-content/themes/kadence/inc/customizer/react/class-kadence-control-typography.php'),(6052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/available/available-component.js','wp-content/themes/kadence/inc/customizer/react/src/available/available-component.js'),(6053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/available/control.js','wp-content/themes/kadence/inc/customizer/react/src/available/control.js'),(6054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/background-component.js','wp-content/themes/kadence/inc/customizer/react/src/background/background-component.js'),(6055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/circular-option-picker.js','wp-content/themes/kadence/inc/customizer/react/src/background/circular-option-picker.js'),(6056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/control.js','wp-content/themes/kadence/inc/customizer/react/src/background/control.js'),(6057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/color-picker.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/color-picker.js'),(6058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/constants.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/constants.js'),(6059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/control-points.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/control-points.js'),(6060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/custom-gradient-bar.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/custom-gradient-bar.js'),(6061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/custom-parser.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/custom-parser.js'),(6062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/edit-color-picker.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/edit-color-picker.js'),(6063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/icons.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/icons.js'),(6064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/index.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/index.js'),(6065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/index.native.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/index.native.js'),(6066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/serializer.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/serializer.js'),(6067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/style.native.scss','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/style.native.scss'),(6068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/style.scss','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/style.scss'),(6069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/toolbar-group.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/toolbar-group.js'),(6070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/utils.js','wp-content/themes/kadence/inc/customizer/react/src/background/custom-gradient-picker/utils.js'),(6071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/background/gradient-component.js','wp-content/themes/kadence/inc/customizer/react/src/background/gradient-component.js'),(6072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/base/control.js','wp-content/themes/kadence/inc/customizer/react/src/base/control.js'),(6073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/border/border-component.js','wp-content/themes/kadence/inc/customizer/react/src/border/border-component.js'),(6074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/border/control.js','wp-content/themes/kadence/inc/customizer/react/src/border/control.js'),(6075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/borders/border-component.js','wp-content/themes/kadence/inc/customizer/react/src/borders/border-component.js'),(6076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/borders/borders-component.js','wp-content/themes/kadence/inc/customizer/react/src/borders/borders-component.js'),(6077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/borders/control.js','wp-content/themes/kadence/inc/customizer/react/src/borders/control.js'),(6078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/boxshadow/boxshadow-component.js','wp-content/themes/kadence/inc/customizer/react/src/boxshadow/boxshadow-component.js'),(6079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/boxshadow/control.js','wp-content/themes/kadence/inc/customizer/react/src/boxshadow/control.js'),(6080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/builder-controls.scss','wp-content/themes/kadence/inc/customizer/react/src/builder-controls.scss'),(6081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/check-icon/check-icon-component.js','wp-content/themes/kadence/inc/customizer/react/src/check-icon/check-icon-component.js'),(6082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/check-icon/control.js','wp-content/themes/kadence/inc/customizer/react/src/check-icon/control.js'),(6083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/color/color-component.js','wp-content/themes/kadence/inc/customizer/react/src/color/color-component.js'),(6084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/color/control.js','wp-content/themes/kadence/inc/customizer/react/src/color/control.js'),(6085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/color-link/color-link-component.js','wp-content/themes/kadence/inc/customizer/react/src/color-link/color-link-component.js'),(6086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/color-link/control.js','wp-content/themes/kadence/inc/customizer/react/src/color-link/control.js'),(6087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/capitalize-first.js','wp-content/themes/kadence/inc/customizer/react/src/common/capitalize-first.js'),(6088,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/color-picker-fields.js','wp-content/themes/kadence/inc/customizer/react/src/common/color-picker-fields.js'),(6089,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/color-picker.js','wp-content/themes/kadence/inc/customizer/react/src/common/color-picker.js'),(6090,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/color.js','wp-content/themes/kadence/inc/customizer/react/src/common/color.js'),(6091,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/font-loader.js','wp-content/themes/kadence/inc/customizer/react/src/common/font-loader.js'),(6092,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/icons.js','wp-content/themes/kadence/inc/customizer/react/src/common/icons.js'),(6093,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/range.js','wp-content/themes/kadence/inc/customizer/react/src/common/range.js'),(6094,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/responsive.js','wp-content/themes/kadence/inc/customizer/react/src/common/responsive.js'),(6095,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/common/swatches.js','wp-content/themes/kadence/inc/customizer/react/src/common/swatches.js'),(6096,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/contact/contact-component.js','wp-content/themes/kadence/inc/customizer/react/src/contact/contact-component.js'),(6097,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/contact/control.js','wp-content/themes/kadence/inc/customizer/react/src/contact/control.js'),(6098,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/contact/icons.js','wp-content/themes/kadence/inc/customizer/react/src/contact/icons.js'),(6099,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/contact/item-component.js','wp-content/themes/kadence/inc/customizer/react/src/contact/item-component.js'),(6100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/controls.scss','wp-content/themes/kadence/inc/customizer/react/src/controls.scss'),(6101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/customizer.js','wp-content/themes/kadence/inc/customizer/react/src/customizer.js'),(6102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/editor/control.js','wp-content/themes/kadence/inc/customizer/react/src/editor/control.js'),(6103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/editor/editor-component.js','wp-content/themes/kadence/inc/customizer/react/src/editor/editor-component.js'),(6104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/focus-button/control.js','wp-content/themes/kadence/inc/customizer/react/src/focus-button/control.js'),(6105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/focus-button/focus-button-component.js','wp-content/themes/kadence/inc/customizer/react/src/focus-button/focus-button-component.js'),(6106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/constants.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/constants.js'),(6107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/editor.scss','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/editor.scss'),(6108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/constants.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/constants.js'),(6109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/control-points.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/control-points.js'),(6110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/index.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/index.js'),(6111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/utils.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/gradient-bar/utils.js'),(6112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/index.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/index.js'),(6113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/parser.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/parser.js'),(6114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/serializer.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/serializer.js'),(6115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/utils.js','wp-content/themes/kadence/inc/customizer/react/src/gradient-control/utils.js'),(6116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/icon-controls.scss','wp-content/themes/kadence/inc/customizer/react/src/icon-controls.scss'),(6117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/index.js','wp-content/themes/kadence/inc/customizer/react/src/index.js'),(6118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/add-component.js','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/add-component.js'),(6119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/builder-component.js','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/builder-component.js'),(6120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/control.js','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/control.js'),(6121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/drop-component.js','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/drop-component.js'),(6122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/item-component.js','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/item-component.js'),(6123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/layout-builder/row-component.js','wp-content/themes/kadence/inc/customizer/react/src/layout-builder/row-component.js'),(6124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/measure/control.js','wp-content/themes/kadence/inc/customizer/react/src/measure/control.js'),(6125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/measure/measure-component.js','wp-content/themes/kadence/inc/customizer/react/src/measure/measure-component.js'),(6126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/multi-radio-icon/control.js','wp-content/themes/kadence/inc/customizer/react/src/multi-radio-icon/control.js'),(6127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/multi-radio-icon/multi-radio-icon-component.js','wp-content/themes/kadence/inc/customizer/react/src/multi-radio-icon/multi-radio-icon-component.js'),(6128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/palette/control.js','wp-content/themes/kadence/inc/customizer/react/src/palette/control.js'),(6129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/palette/palette-component.js','wp-content/themes/kadence/inc/customizer/react/src/palette/palette-component.js'),(6130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/radio-icon/control.js','wp-content/themes/kadence/inc/customizer/react/src/radio-icon/control.js'),(6131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/radio-icon/radio-icon-component.js','wp-content/themes/kadence/inc/customizer/react/src/radio-icon/radio-icon-component.js'),(6132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/range/control.js','wp-content/themes/kadence/inc/customizer/react/src/range/control.js'),(6133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/range/range-component.js','wp-content/themes/kadence/inc/customizer/react/src/range/range-component.js'),(6134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/row-layout/control.js','wp-content/themes/kadence/inc/customizer/react/src/row-layout/control.js'),(6135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/row-layout/row-layout-component.js','wp-content/themes/kadence/inc/customizer/react/src/row-layout/row-layout-component.js'),(6136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/select/control.js','wp-content/themes/kadence/inc/customizer/react/src/select/control.js'),(6137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/select/select-component.js','wp-content/themes/kadence/inc/customizer/react/src/select/select-component.js'),(6138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/social/control.js','wp-content/themes/kadence/inc/customizer/react/src/social/control.js'),(6139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/social/icons.js','wp-content/themes/kadence/inc/customizer/react/src/social/icons.js'),(6140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/social/item-component.js','wp-content/themes/kadence/inc/customizer/react/src/social/item-component.js'),(6141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/social/social-component.js','wp-content/themes/kadence/inc/customizer/react/src/social/social-component.js'),(6142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/control.js','wp-content/themes/kadence/inc/customizer/react/src/sorter/control.js'),(6143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/item-component.js','wp-content/themes/kadence/inc/customizer/react/src/sorter/item-component.js'),(6144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/setting-item-component.js','wp-content/themes/kadence/inc/customizer/react/src/sorter/setting-item-component.js'),(6145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/setting-sorter-component.js','wp-content/themes/kadence/inc/customizer/react/src/sorter/setting-sorter-component.js'),(6146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/sorter/sorter-component.js','wp-content/themes/kadence/inc/customizer/react/src/sorter/sorter-component.js'),(6147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/switch/control.js','wp-content/themes/kadence/inc/customizer/react/src/switch/control.js'),(6148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/switch/switch-component.js','wp-content/themes/kadence/inc/customizer/react/src/switch/switch-component.js'),(6149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/tabs/control.js','wp-content/themes/kadence/inc/customizer/react/src/tabs/control.js'),(6150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/tabs/tabs-component.js','wp-content/themes/kadence/inc/customizer/react/src/tabs/tabs-component.js'),(6151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/text/control.js','wp-content/themes/kadence/inc/customizer/react/src/text/control.js'),(6152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/text/text-component.js','wp-content/themes/kadence/inc/customizer/react/src/text/text-component.js'),(6153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/textarea/control.js','wp-content/themes/kadence/inc/customizer/react/src/textarea/control.js'),(6154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/textarea/textarea-component.js','wp-content/themes/kadence/inc/customizer/react/src/textarea/textarea-component.js'),(6155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/title/control.js','wp-content/themes/kadence/inc/customizer/react/src/title/control.js'),(6156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/title/title-component.js','wp-content/themes/kadence/inc/customizer/react/src/title/title-component.js'),(6157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/typography/control.js','wp-content/themes/kadence/inc/customizer/react/src/typography/control.js'),(6158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/typography/font-pair.js','wp-content/themes/kadence/inc/customizer/react/src/typography/font-pair.js'),(6159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/typography/typography-component.js','wp-content/themes/kadence/inc/customizer/react/src/typography/typography-component.js'),(6160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/customizer/react/src/variables.scss','wp-content/themes/kadence/inc/customizer/react/src/variables.scss'),(6161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/class-theme-dashboard.php','wp-content/themes/kadence/inc/dashboard/class-theme-dashboard.php'),(6162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/dash-controls.min.css','wp-content/themes/kadence/inc/dashboard/react/dash-controls.min.css'),(6163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/changelog-item.js','wp-content/themes/kadence/inc/dashboard/react/src/changelog-item.js'),(6164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/changelog.js','wp-content/themes/kadence/inc/dashboard/react/src/changelog.js'),(6165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/customizer.js','wp-content/themes/kadence/inc/dashboard/react/src/customizer.js'),(6166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/dash-controls.scss','wp-content/themes/kadence/inc/dashboard/react/src/dash-controls.scss'),(6167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/help.js','wp-content/themes/kadence/inc/dashboard/react/src/help.js'),(6168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/index.js','wp-content/themes/kadence/inc/dashboard/react/src/index.js'),(6169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/notices.js','wp-content/themes/kadence/inc/dashboard/react/src/notices.js'),(6170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/pro-extension.js','wp-content/themes/kadence/inc/dashboard/react/src/pro-extension.js'),(6171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/recomended.js','wp-content/themes/kadence/inc/dashboard/react/src/recomended.js'),(6172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/sidebar.js','wp-content/themes/kadence/inc/dashboard/react/src/sidebar.js'),(6173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/dashboard/react/src/starter.js','wp-content/themes/kadence/inc/dashboard/react/src/starter.js'),(6174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/functions.php','wp-content/themes/kadence/inc/functions.php'),(6175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/class-theme-meta.php','wp-content/themes/kadence/inc/meta/class-theme-meta.php'),(6176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/build/meta-controls.css','wp-content/themes/kadence/inc/meta/react/build/meta-controls.css'),(6177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/capitalize-first.js','wp-content/themes/kadence/inc/meta/react/src/capitalize-first.js'),(6178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/icons.js','wp-content/themes/kadence/inc/meta/react/src/icons.js'),(6179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/index.js','wp-content/themes/kadence/inc/meta/react/src/index.js'),(6180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/layout.js','wp-content/themes/kadence/inc/meta/react/src/layout.js'),(6181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/meta-controls.scss','wp-content/themes/kadence/inc/meta/react/src/meta-controls.scss'),(6182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/meta/react/src/radio-icon.js','wp-content/themes/kadence/inc/meta/react/src/radio-icon.js'),(6183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/archive-functions.php','wp-content/themes/kadence/inc/template-functions/archive-functions.php'),(6184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/footer-functions.php','wp-content/themes/kadence/inc/template-functions/footer-functions.php'),(6185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/header-functions.php','wp-content/themes/kadence/inc/template-functions/header-functions.php'),(6186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/single-functions.php','wp-content/themes/kadence/inc/template-functions/single-functions.php'),(6187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-functions/title-functions.php','wp-content/themes/kadence/inc/template-functions/title-functions.php'),(6188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/template-hooks.php','wp-content/themes/kadence/inc/template-hooks.php'),(6189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/inc/wordpress-shims.php','wp-content/themes/kadence/inc/wordpress-shims.php'),(6190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/index.php','wp-content/themes/kadence/index.php'),(6191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/de_DE.mo','wp-content/themes/kadence/languages/de_DE.mo'),(6192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/de_DE.po','wp-content/themes/kadence/languages/de_DE.po'),(6193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/es_ES.mo','wp-content/themes/kadence/languages/es_ES.mo'),(6194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/es_ES.po','wp-content/themes/kadence/languages/es_ES.po'),(6195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/fr_FR.mo','wp-content/themes/kadence/languages/fr_FR.mo'),(6196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/fr_FR.po','wp-content/themes/kadence/languages/fr_FR.po'),(6197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/kadence.pot','wp-content/themes/kadence/languages/kadence.pot'),(6198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/ru_RU.mo','wp-content/themes/kadence/languages/ru_RU.mo'),(6199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/languages/ru_RU.po','wp-content/themes/kadence/languages/ru_RU.po'),(6200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/lifterlms/course/lesson-preview.php','wp-content/themes/kadence/lifterlms/course/lesson-preview.php'),(6201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/lifterlms/course/syllabus.php','wp-content/themes/kadence/lifterlms/course/syllabus.php'),(6202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/offline.php','wp-content/themes/kadence/offline.php'),(6203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/package.json','wp-content/themes/kadence/package.json'),(6204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/page.php','wp-content/themes/kadence/page.php'),(6205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/readme.txt','wp-content/themes/kadence/readme.txt'),(6206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/screenshot.png','wp-content/themes/kadence/screenshot.png'),(6207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/sidebar.php','wp-content/themes/kadence/sidebar.php'),(6208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/single.php','wp-content/themes/kadence/single.php'),(6209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/style.css','wp-content/themes/kadence/style.css'),(6210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/breadcrumb.php','wp-content/themes/kadence/template-parts/archive-title/breadcrumb.php'),(6211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/description.php','wp-content/themes/kadence/template-parts/archive-title/description.php'),(6212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/hkb-searchbox.php','wp-content/themes/kadence/template-parts/archive-title/hkb-searchbox.php'),(6213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/search.php','wp-content/themes/kadence/template-parts/archive-title/search.php'),(6214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/archive-title/title.php','wp-content/themes/kadence/template-parts/archive-title/title.php'),(6215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/archive.php','wp-content/themes/kadence/template-parts/content/archive.php'),(6216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/archive_header.php','wp-content/themes/kadence/template-parts/content/archive_header.php'),(6217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/archive_hero.php','wp-content/themes/kadence/template-parts/content/archive_hero.php'),(6218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/comments-list.php','wp-content/themes/kadence/template-parts/content/comments-list.php'),(6219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry-attachment.php','wp-content/themes/kadence/template-parts/content/entry-attachment.php'),(6220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry.php','wp-content/themes/kadence/template-parts/content/entry.php'),(6221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_actions.php','wp-content/themes/kadence/template-parts/content/entry_actions.php'),(6222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_author.php','wp-content/themes/kadence/template-parts/content/entry_author.php'),(6223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_content.php','wp-content/themes/kadence/template-parts/content/entry_content.php'),(6224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_footer.php','wp-content/themes/kadence/template-parts/content/entry_footer.php'),(6225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_header.php','wp-content/themes/kadence/template-parts/content/entry_header.php'),(6226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_hero.php','wp-content/themes/kadence/template-parts/content/entry_hero.php'),(6227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_footer.php','wp-content/themes/kadence/template-parts/content/entry_loop_footer.php'),(6228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_header.php','wp-content/themes/kadence/template-parts/content/entry_loop_header.php'),(6229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_meta.php','wp-content/themes/kadence/template-parts/content/entry_loop_meta.php'),(6230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_taxonomies.php','wp-content/themes/kadence/template-parts/content/entry_loop_taxonomies.php'),(6231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_thumbnail.php','wp-content/themes/kadence/template-parts/content/entry_loop_thumbnail.php'),(6232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_loop_title.php','wp-content/themes/kadence/template-parts/content/entry_loop_title.php'),(6233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_meta.php','wp-content/themes/kadence/template-parts/content/entry_meta.php'),(6234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_related.php','wp-content/themes/kadence/template-parts/content/entry_related.php'),(6235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_summary.php','wp-content/themes/kadence/template-parts/content/entry_summary.php'),(6236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_tags.php','wp-content/themes/kadence/template-parts/content/entry_tags.php'),(6237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_taxonomies.php','wp-content/themes/kadence/template-parts/content/entry_taxonomies.php'),(6238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_thumbnail.php','wp-content/themes/kadence/template-parts/content/entry_thumbnail.php'),(6239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/entry_title.php','wp-content/themes/kadence/template-parts/content/entry_title.php'),(6240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/error-404.php','wp-content/themes/kadence/template-parts/content/error-404.php'),(6241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/error-500.php','wp-content/themes/kadence/template-parts/content/error-500.php'),(6242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/error-offline.php','wp-content/themes/kadence/template-parts/content/error-offline.php'),(6243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/error.php','wp-content/themes/kadence/template-parts/content/error.php'),(6244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/page_header.php','wp-content/themes/kadence/template-parts/content/page_header.php'),(6245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/pagination.php','wp-content/themes/kadence/template-parts/content/pagination.php'),(6246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/single-entry.php','wp-content/themes/kadence/template-parts/content/single-entry.php'),(6247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/content/single.php','wp-content/themes/kadence/template-parts/content/single.php'),(6248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/base.php','wp-content/themes/kadence/template-parts/footer/base.php'),(6249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-html.php','wp-content/themes/kadence/template-parts/footer/footer-html.php'),(6250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-navigation.php','wp-content/themes/kadence/template-parts/footer/footer-navigation.php'),(6251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-row.php','wp-content/themes/kadence/template-parts/footer/footer-row.php'),(6252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-social.php','wp-content/themes/kadence/template-parts/footer/footer-social.php'),(6253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget1.php','wp-content/themes/kadence/template-parts/footer/footer-widget1.php'),(6254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget2.php','wp-content/themes/kadence/template-parts/footer/footer-widget2.php'),(6255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget3.php','wp-content/themes/kadence/template-parts/footer/footer-widget3.php'),(6256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget4.php','wp-content/themes/kadence/template-parts/footer/footer-widget4.php'),(6257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget5.php','wp-content/themes/kadence/template-parts/footer/footer-widget5.php'),(6258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/footer/footer-widget6.php','wp-content/themes/kadence/template-parts/footer/footer-widget6.php'),(6259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/base.php','wp-content/themes/kadence/template-parts/header/base.php'),(6260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/button.php','wp-content/themes/kadence/template-parts/header/button.php'),(6261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/cart.php','wp-content/themes/kadence/template-parts/header/cart.php'),(6262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/header-row.php','wp-content/themes/kadence/template-parts/header/header-row.php'),(6263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/html.php','wp-content/themes/kadence/template-parts/header/html.php'),(6264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/logo.php','wp-content/themes/kadence/template-parts/header/logo.php'),(6265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-button.php','wp-content/themes/kadence/template-parts/header/mobile-button.php'),(6266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-cart.php','wp-content/themes/kadence/template-parts/header/mobile-cart.php'),(6267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-header-row.php','wp-content/themes/kadence/template-parts/header/mobile-header-row.php'),(6268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-html.php','wp-content/themes/kadence/template-parts/header/mobile-html.php'),(6269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-logo.php','wp-content/themes/kadence/template-parts/header/mobile-logo.php'),(6270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-navigation.php','wp-content/themes/kadence/template-parts/header/mobile-navigation.php'),(6271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile-social.php','wp-content/themes/kadence/template-parts/header/mobile-social.php'),(6272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/mobile.php','wp-content/themes/kadence/template-parts/header/mobile.php'),(6273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/navigation-2.php','wp-content/themes/kadence/template-parts/header/navigation-2.php'),(6274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/navigation.php','wp-content/themes/kadence/template-parts/header/navigation.php'),(6275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/popup-toggle.php','wp-content/themes/kadence/template-parts/header/popup-toggle.php'),(6276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/search.php','wp-content/themes/kadence/template-parts/header/search.php'),(6277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/header/social.php','wp-content/themes/kadence/template-parts/header/social.php'),(6278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/above_title.php','wp-content/themes/kadence/template-parts/title/above_title.php'),(6279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/back_link.php','wp-content/themes/kadence/template-parts/title/back_link.php'),(6280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/breadcrumb.php','wp-content/themes/kadence/template-parts/title/breadcrumb.php'),(6281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/categories.php','wp-content/themes/kadence/template-parts/title/categories.php'),(6282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/category.php','wp-content/themes/kadence/template-parts/title/category.php'),(6283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/description.php','wp-content/themes/kadence/template-parts/title/description.php'),(6284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/excerpt.php','wp-content/themes/kadence/template-parts/title/excerpt.php'),(6285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/info.php','wp-content/themes/kadence/template-parts/title/info.php'),(6286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/meta.php','wp-content/themes/kadence/template-parts/title/meta.php'),(6287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/search.php','wp-content/themes/kadence/template-parts/title/search.php'),(6288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/template-parts/title/title.php','wp-content/themes/kadence/template-parts/title/title.php'),(6289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/theme.json','wp-content/themes/kadence/theme.json'),(6290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tribe/events/single-event-blocks.php','wp-content/themes/kadence/tribe/events/single-event-blocks.php'),(6291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tribe/events/v2/default-template.php','wp-content/themes/kadence/tribe/events/v2/default-template.php'),(6292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tribe-events/single-event.php','wp-content/themes/kadence/tribe-events/single-event.php'),(6293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/archive-course.php','wp-content/themes/kadence/tutor/archive-course.php'),(6294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/single/course/above-lead-info.php','wp-content/themes/kadence/tutor/single/course/above-lead-info.php'),(6295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/single/course/content-lead-info.php','wp-content/themes/kadence/tutor/single/course/content-lead-info.php'),(6296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/single/course/enrolled/above-lead-info.php','wp-content/themes/kadence/tutor/single/course/enrolled/above-lead-info.php'),(6297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/tutor/single/course/enrolled/content-lead-info.php','wp-content/themes/kadence/tutor/single/course/enrolled/content-lead-info.php'),(6298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/webpack.config.js','wp-content/themes/kadence/webpack.config.js'),(6299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/kadence/wpml-config.xml','wp-content/themes/kadence/wpml-config.xml'),(6300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/css/button-outline.css','wp-content/themes/twentytwentyfour/assets/css/button-outline.css'),(6301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/cardo/LICENSE.txt','wp-content/themes/twentytwentyfour/assets/fonts/cardo/LICENSE.txt'),(6302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2','wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2'),(6303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2','wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2'),(6304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_700.woff2','wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_700.woff2'),(6305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2','wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2'),(6306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2','wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2'),(6307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/OFL.txt','wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/OFL.txt'),(6308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2','wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2'),(6309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/inter/LICENSE.txt','wp-content/themes/twentytwentyfour/assets/fonts/inter/LICENSE.txt'),(6310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2','wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2'),(6311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-VariableFont_wght.woff2','wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-VariableFont_wght.woff2'),(6312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/fonts/jost/OFL.txt','wp-content/themes/twentytwentyfour/assets/fonts/jost/OFL.txt'),(6313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/abstract-geometric-art.webp','wp-content/themes/twentytwentyfour/assets/images/abstract-geometric-art.webp'),(6314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/angular-roof.webp','wp-content/themes/twentytwentyfour/assets/images/angular-roof.webp'),(6315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/art-gallery.webp','wp-content/themes/twentytwentyfour/assets/images/art-gallery.webp'),(6316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/building-exterior.webp','wp-content/themes/twentytwentyfour/assets/images/building-exterior.webp'),(6317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/green-staircase.webp','wp-content/themes/twentytwentyfour/assets/images/green-staircase.webp'),(6318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/hotel-facade.webp','wp-content/themes/twentytwentyfour/assets/images/hotel-facade.webp'),(6319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/icon-message.webp','wp-content/themes/twentytwentyfour/assets/images/icon-message.webp'),(6320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/museum.webp','wp-content/themes/twentytwentyfour/assets/images/museum.webp'),(6321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/tourist-and-building.webp','wp-content/themes/twentytwentyfour/assets/images/tourist-and-building.webp'),(6322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/assets/images/windows.webp','wp-content/themes/twentytwentyfour/assets/images/windows.webp'),(6323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/functions.php','wp-content/themes/twentytwentyfour/functions.php'),(6324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/parts/footer.html','wp-content/themes/twentytwentyfour/parts/footer.html'),(6325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/parts/header.html','wp-content/themes/twentytwentyfour/parts/header.html'),(6326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/parts/post-meta.html','wp-content/themes/twentytwentyfour/parts/post-meta.html'),(6327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/parts/sidebar.html','wp-content/themes/twentytwentyfour/parts/sidebar.html'),(6328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/banner-hero.php','wp-content/themes/twentytwentyfour/patterns/banner-hero.php'),(6329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/banner-project-description.php','wp-content/themes/twentytwentyfour/patterns/banner-project-description.php'),(6330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-content-image-on-right.php','wp-content/themes/twentytwentyfour/patterns/cta-content-image-on-right.php'),(6331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-pricing.php','wp-content/themes/twentytwentyfour/patterns/cta-pricing.php'),(6332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-rsvp.php','wp-content/themes/twentytwentyfour/patterns/cta-rsvp.php'),(6333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-services-image-left.php','wp-content/themes/twentytwentyfour/patterns/cta-services-image-left.php'),(6334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/cta-subscribe-centered.php','wp-content/themes/twentytwentyfour/patterns/cta-subscribe-centered.php'),(6335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/footer-centered-logo-nav.php','wp-content/themes/twentytwentyfour/patterns/footer-centered-logo-nav.php'),(6336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/footer-colophon-3-col.php','wp-content/themes/twentytwentyfour/patterns/footer-colophon-3-col.php'),(6337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/footer.php','wp-content/themes/twentytwentyfour/patterns/footer.php'),(6338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-full-screen-image.php','wp-content/themes/twentytwentyfour/patterns/gallery-full-screen-image.php'),(6339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-2-col.php','wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-2-col.php'),(6340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-3-col.php','wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-3-col.php'),(6341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-4-col.php','wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-4-col.php'),(6342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/gallery-project-layout.php','wp-content/themes/twentytwentyfour/patterns/gallery-project-layout.php'),(6343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-404.php','wp-content/themes/twentytwentyfour/patterns/hidden-404.php'),(6344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-comments.php','wp-content/themes/twentytwentyfour/patterns/hidden-comments.php'),(6345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-no-results.php','wp-content/themes/twentytwentyfour/patterns/hidden-no-results.php'),(6346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-portfolio-hero.php','wp-content/themes/twentytwentyfour/patterns/hidden-portfolio-hero.php'),(6347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-post-meta.php','wp-content/themes/twentytwentyfour/patterns/hidden-post-meta.php'),(6348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-post-navigation.php','wp-content/themes/twentytwentyfour/patterns/hidden-post-navigation.php'),(6349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-search.php','wp-content/themes/twentytwentyfour/patterns/hidden-search.php'),(6350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/hidden-sidebar.php','wp-content/themes/twentytwentyfour/patterns/hidden-sidebar.php'),(6351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-about-business.php','wp-content/themes/twentytwentyfour/patterns/page-about-business.php'),(6352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-home-blogging.php','wp-content/themes/twentytwentyfour/patterns/page-home-blogging.php'),(6353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-home-business.php','wp-content/themes/twentytwentyfour/patterns/page-home-business.php'),(6354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio-gallery.php','wp-content/themes/twentytwentyfour/patterns/page-home-portfolio-gallery.php'),(6355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio.php','wp-content/themes/twentytwentyfour/patterns/page-home-portfolio.php'),(6356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-newsletter-landing.php','wp-content/themes/twentytwentyfour/patterns/page-newsletter-landing.php'),(6357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-portfolio-overview.php','wp-content/themes/twentytwentyfour/patterns/page-portfolio-overview.php'),(6358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/page-rsvp-landing.php','wp-content/themes/twentytwentyfour/patterns/page-rsvp-landing.php'),(6359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-1-col.php','wp-content/themes/twentytwentyfour/patterns/posts-1-col.php'),(6360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-3-col.php','wp-content/themes/twentytwentyfour/patterns/posts-3-col.php'),(6361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-grid-2-col.php','wp-content/themes/twentytwentyfour/patterns/posts-grid-2-col.php'),(6362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-images-only-3-col.php','wp-content/themes/twentytwentyfour/patterns/posts-images-only-3-col.php'),(6363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-images-only-offset-4-col.php','wp-content/themes/twentytwentyfour/patterns/posts-images-only-offset-4-col.php'),(6364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/posts-list.php','wp-content/themes/twentytwentyfour/patterns/posts-list.php'),(6365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/team-4-col.php','wp-content/themes/twentytwentyfour/patterns/team-4-col.php'),(6366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-archive-blogging.php','wp-content/themes/twentytwentyfour/patterns/template-archive-blogging.php'),(6367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-archive-portfolio.php','wp-content/themes/twentytwentyfour/patterns/template-archive-portfolio.php'),(6368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-home-blogging.php','wp-content/themes/twentytwentyfour/patterns/template-home-blogging.php'),(6369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-home-business.php','wp-content/themes/twentytwentyfour/patterns/template-home-business.php'),(6370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-home-portfolio.php','wp-content/themes/twentytwentyfour/patterns/template-home-portfolio.php'),(6371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-index-blogging.php','wp-content/themes/twentytwentyfour/patterns/template-index-blogging.php'),(6372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-index-portfolio.php','wp-content/themes/twentytwentyfour/patterns/template-index-portfolio.php'),(6373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-search-blogging.php','wp-content/themes/twentytwentyfour/patterns/template-search-blogging.php'),(6374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-search-portfolio.php','wp-content/themes/twentytwentyfour/patterns/template-search-portfolio.php'),(6375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/template-single-portfolio.php','wp-content/themes/twentytwentyfour/patterns/template-single-portfolio.php'),(6376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/testimonial-centered.php','wp-content/themes/twentytwentyfour/patterns/testimonial-centered.php'),(6377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-alternating-images.php','wp-content/themes/twentytwentyfour/patterns/text-alternating-images.php'),(6378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-centered-statement-small.php','wp-content/themes/twentytwentyfour/patterns/text-centered-statement-small.php'),(6379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-centered-statement.php','wp-content/themes/twentytwentyfour/patterns/text-centered-statement.php'),(6380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-faq.php','wp-content/themes/twentytwentyfour/patterns/text-faq.php'),(6381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-feature-grid-3-col.php','wp-content/themes/twentytwentyfour/patterns/text-feature-grid-3-col.php'),(6382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-project-details.php','wp-content/themes/twentytwentyfour/patterns/text-project-details.php'),(6383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/patterns/text-title-left-image-right.php','wp-content/themes/twentytwentyfour/patterns/text-title-left-image-right.php'),(6384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/readme.txt','wp-content/themes/twentytwentyfour/readme.txt'),(6385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/screenshot.png','wp-content/themes/twentytwentyfour/screenshot.png'),(6386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/style.css','wp-content/themes/twentytwentyfour/style.css'),(6387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/ember.json','wp-content/themes/twentytwentyfour/styles/ember.json'),(6388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/fossil.json','wp-content/themes/twentytwentyfour/styles/fossil.json'),(6389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/ice.json','wp-content/themes/twentytwentyfour/styles/ice.json'),(6390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/maelstrom.json','wp-content/themes/twentytwentyfour/styles/maelstrom.json'),(6391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/mint.json','wp-content/themes/twentytwentyfour/styles/mint.json'),(6392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/onyx.json','wp-content/themes/twentytwentyfour/styles/onyx.json'),(6393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/styles/rust.json','wp-content/themes/twentytwentyfour/styles/rust.json'),(6394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/404.html','wp-content/themes/twentytwentyfour/templates/404.html'),(6395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/archive.html','wp-content/themes/twentytwentyfour/templates/archive.html'),(6396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/home.html','wp-content/themes/twentytwentyfour/templates/home.html'),(6397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/index.html','wp-content/themes/twentytwentyfour/templates/index.html'),(6398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/page-no-title.html','wp-content/themes/twentytwentyfour/templates/page-no-title.html'),(6399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/page-wide.html','wp-content/themes/twentytwentyfour/templates/page-wide.html'),(6400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/page-with-sidebar.html','wp-content/themes/twentytwentyfour/templates/page-with-sidebar.html'),(6401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/page.html','wp-content/themes/twentytwentyfour/templates/page.html'),(6402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/search.html','wp-content/themes/twentytwentyfour/templates/search.html'),(6403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/single-with-sidebar.html','wp-content/themes/twentytwentyfour/templates/single-with-sidebar.html'),(6404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/templates/single.html','wp-content/themes/twentytwentyfour/templates/single.html'),(6405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/themes/twentytwentyfour/theme.json','wp-content/themes/twentytwentyfour/theme.json'),(6406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/seedprod-help-docs/index.html','wp-content/uploads/seedprod-help-docs/index.html'),(6407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/attack-data.php','wp-content/wflogs/attack-data.php'),(6408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/config-livewaf.php','wp-content/wflogs/config-livewaf.php'),(6409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/config-synced.php','wp-content/wflogs/config-synced.php'),(6410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/config-transient.php','wp-content/wflogs/config-transient.php'),(6411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/config.php','wp-content/wflogs/config.php'),(6412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/ips.php','wp-content/wflogs/ips.php'),(6413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/rules.php','wp-content/wflogs/rules.php'),(6414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wflogs/template.php','wp-content/wflogs/template.php'),(6415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wp-rocket-config/atlantagynecomastia.com.php','wp-content/wp-rocket-config/atlantagynecomastia.com.php'),(6416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-content/wp-rocket-config/index.html','wp-content/wp-rocket-config/index.html'),(6417,'/home/nginx/domains/atlantagynecomastia.com/public/Default.html','Default.html'),(6418,'/home/nginx/domains/atlantagynecomastia.com/public/bigscoots.php','bigscoots.php'),(6419,'/home/nginx/domains/atlantagynecomastia.com/public/index.php','index.php'),(6420,'/home/nginx/domains/atlantagynecomastia.com/public/license.txt','license.txt'),(6421,'/home/nginx/domains/atlantagynecomastia.com/public/readme.33cb03760c9c7cb6f0896aeba26d7c80.html','readme.33cb03760c9c7cb6f0896aeba26d7c80.html'),(6422,'/home/nginx/domains/atlantagynecomastia.com/public/readme.f10b963b5c55ad2aeac9d5fa00d8e4e0.html','readme.f10b963b5c55ad2aeac9d5fa00d8e4e0.html'),(6423,'/home/nginx/domains/atlantagynecomastia.com/public/wordfence-waf.php','wordfence-waf.php'),(6424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-activate.php','wp-activate.php'),(6425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/about.php','wp-admin/about.php'),(6426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-ajax.php','wp-admin/admin-ajax.php'),(6427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-footer.php','wp-admin/admin-footer.php'),(6428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-functions.php','wp-admin/admin-functions.php'),(6429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-header.php','wp-admin/admin-header.php'),(6430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin-post.php','wp-admin/admin-post.php'),(6431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/admin.php','wp-admin/admin.php'),(6432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/async-upload.php','wp-admin/async-upload.php'),(6433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/authorize-application.php','wp-admin/authorize-application.php'),(6434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/comment.php','wp-admin/comment.php'),(6435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/contribute.php','wp-admin/contribute.php'),(6436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/credits.php','wp-admin/credits.php'),(6437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/about-rtl.css','wp-admin/css/about-rtl.css'),(6438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/about-rtl.min.css','wp-admin/css/about-rtl.min.css'),(6439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/about.css','wp-admin/css/about.css'),(6440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/about.min.css','wp-admin/css/about.min.css'),(6441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/admin-menu-rtl.css','wp-admin/css/admin-menu-rtl.css'),(6442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/admin-menu-rtl.min.css','wp-admin/css/admin-menu-rtl.min.css'),(6443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/admin-menu.css','wp-admin/css/admin-menu.css'),(6444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/admin-menu.min.css','wp-admin/css/admin-menu.min.css'),(6445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/code-editor-rtl.css','wp-admin/css/code-editor-rtl.css'),(6446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/code-editor-rtl.min.css','wp-admin/css/code-editor-rtl.min.css'),(6447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/code-editor.css','wp-admin/css/code-editor.css'),(6448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/code-editor.min.css','wp-admin/css/code-editor.min.css'),(6449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/color-picker-rtl.css','wp-admin/css/color-picker-rtl.css'),(6450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/color-picker-rtl.min.css','wp-admin/css/color-picker-rtl.min.css'),(6451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/color-picker.css','wp-admin/css/color-picker.css'),(6452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/color-picker.min.css','wp-admin/css/color-picker.min.css'),(6453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/_admin.scss','wp-admin/css/colors/_admin.scss'),(6454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/_mixins.scss','wp-admin/css/colors/_mixins.scss'),(6455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/_variables.scss','wp-admin/css/colors/_variables.scss'),(6456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors-rtl.css','wp-admin/css/colors/blue/colors-rtl.css'),(6457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors-rtl.min.css','wp-admin/css/colors/blue/colors-rtl.min.css'),(6458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors.css','wp-admin/css/colors/blue/colors.css'),(6459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors.min.css','wp-admin/css/colors/blue/colors.min.css'),(6460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/blue/colors.scss','wp-admin/css/colors/blue/colors.scss'),(6461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors-rtl.css','wp-admin/css/colors/coffee/colors-rtl.css'),(6462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors-rtl.min.css','wp-admin/css/colors/coffee/colors-rtl.min.css'),(6463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors.css','wp-admin/css/colors/coffee/colors.css'),(6464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors.min.css','wp-admin/css/colors/coffee/colors.min.css'),(6465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/coffee/colors.scss','wp-admin/css/colors/coffee/colors.scss'),(6466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors-rtl.css','wp-admin/css/colors/ectoplasm/colors-rtl.css'),(6467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors-rtl.min.css','wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(6468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors.css','wp-admin/css/colors/ectoplasm/colors.css'),(6469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors.min.css','wp-admin/css/colors/ectoplasm/colors.min.css'),(6470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ectoplasm/colors.scss','wp-admin/css/colors/ectoplasm/colors.scss'),(6471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors-rtl.css','wp-admin/css/colors/light/colors-rtl.css'),(6472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors-rtl.min.css','wp-admin/css/colors/light/colors-rtl.min.css'),(6473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors.css','wp-admin/css/colors/light/colors.css'),(6474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors.min.css','wp-admin/css/colors/light/colors.min.css'),(6475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/light/colors.scss','wp-admin/css/colors/light/colors.scss'),(6476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors-rtl.css','wp-admin/css/colors/midnight/colors-rtl.css'),(6477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors-rtl.min.css','wp-admin/css/colors/midnight/colors-rtl.min.css'),(6478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors.css','wp-admin/css/colors/midnight/colors.css'),(6479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors.min.css','wp-admin/css/colors/midnight/colors.min.css'),(6480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/midnight/colors.scss','wp-admin/css/colors/midnight/colors.scss'),(6481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors-rtl.css','wp-admin/css/colors/modern/colors-rtl.css'),(6482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors-rtl.min.css','wp-admin/css/colors/modern/colors-rtl.min.css'),(6483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors.css','wp-admin/css/colors/modern/colors.css'),(6484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors.min.css','wp-admin/css/colors/modern/colors.min.css'),(6485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/modern/colors.scss','wp-admin/css/colors/modern/colors.scss'),(6486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors-rtl.css','wp-admin/css/colors/ocean/colors-rtl.css'),(6487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors-rtl.min.css','wp-admin/css/colors/ocean/colors-rtl.min.css'),(6488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors.css','wp-admin/css/colors/ocean/colors.css'),(6489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors.min.css','wp-admin/css/colors/ocean/colors.min.css'),(6490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/ocean/colors.scss','wp-admin/css/colors/ocean/colors.scss'),(6491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors-rtl.css','wp-admin/css/colors/sunrise/colors-rtl.css'),(6492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors-rtl.min.css','wp-admin/css/colors/sunrise/colors-rtl.min.css'),(6493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors.css','wp-admin/css/colors/sunrise/colors.css'),(6494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors.min.css','wp-admin/css/colors/sunrise/colors.min.css'),(6495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/colors/sunrise/colors.scss','wp-admin/css/colors/sunrise/colors.scss'),(6496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/common-rtl.css','wp-admin/css/common-rtl.css'),(6497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/common-rtl.min.css','wp-admin/css/common-rtl.min.css'),(6498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/common.css','wp-admin/css/common.css'),(6499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/common.min.css','wp-admin/css/common.min.css'),(6500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-controls-rtl.css','wp-admin/css/customize-controls-rtl.css'),(6501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-controls-rtl.min.css','wp-admin/css/customize-controls-rtl.min.css'),(6502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-controls.css','wp-admin/css/customize-controls.css'),(6503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-controls.min.css','wp-admin/css/customize-controls.min.css'),(6504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-nav-menus-rtl.css','wp-admin/css/customize-nav-menus-rtl.css'),(6505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-nav-menus-rtl.min.css','wp-admin/css/customize-nav-menus-rtl.min.css'),(6506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-nav-menus.css','wp-admin/css/customize-nav-menus.css'),(6507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-nav-menus.min.css','wp-admin/css/customize-nav-menus.min.css'),(6508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-widgets-rtl.css','wp-admin/css/customize-widgets-rtl.css'),(6509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-widgets-rtl.min.css','wp-admin/css/customize-widgets-rtl.min.css'),(6510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-widgets.css','wp-admin/css/customize-widgets.css'),(6511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/customize-widgets.min.css','wp-admin/css/customize-widgets.min.css'),(6512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/dashboard-rtl.css','wp-admin/css/dashboard-rtl.css'),(6513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/dashboard-rtl.min.css','wp-admin/css/dashboard-rtl.min.css'),(6514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/dashboard.css','wp-admin/css/dashboard.css'),(6515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/dashboard.min.css','wp-admin/css/dashboard.min.css'),(6516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/deprecated-media-rtl.css','wp-admin/css/deprecated-media-rtl.css'),(6517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/deprecated-media-rtl.min.css','wp-admin/css/deprecated-media-rtl.min.css'),(6518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/deprecated-media.css','wp-admin/css/deprecated-media.css'),(6519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/deprecated-media.min.css','wp-admin/css/deprecated-media.min.css'),(6520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/edit-rtl.css','wp-admin/css/edit-rtl.css'),(6521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/edit-rtl.min.css','wp-admin/css/edit-rtl.min.css'),(6522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/edit.css','wp-admin/css/edit.css'),(6523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/edit.min.css','wp-admin/css/edit.min.css'),(6524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/farbtastic-rtl.css','wp-admin/css/farbtastic-rtl.css'),(6525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/farbtastic-rtl.min.css','wp-admin/css/farbtastic-rtl.min.css'),(6526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/farbtastic.css','wp-admin/css/farbtastic.css'),(6527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/farbtastic.min.css','wp-admin/css/farbtastic.min.css'),(6528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/forms-rtl.css','wp-admin/css/forms-rtl.css'),(6529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/forms-rtl.min.css','wp-admin/css/forms-rtl.min.css'),(6530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/forms.css','wp-admin/css/forms.css'),(6531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/forms.min.css','wp-admin/css/forms.min.css'),(6532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/install-rtl.css','wp-admin/css/install-rtl.css'),(6533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/install-rtl.min.css','wp-admin/css/install-rtl.min.css'),(6534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/install.css','wp-admin/css/install.css'),(6535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/install.min.css','wp-admin/css/install.min.css'),(6536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/l10n-rtl.css','wp-admin/css/l10n-rtl.css'),(6537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/l10n-rtl.min.css','wp-admin/css/l10n-rtl.min.css'),(6538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/l10n.css','wp-admin/css/l10n.css'),(6539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/l10n.min.css','wp-admin/css/l10n.min.css'),(6540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/list-tables-rtl.css','wp-admin/css/list-tables-rtl.css'),(6541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/list-tables-rtl.min.css','wp-admin/css/list-tables-rtl.min.css'),(6542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/list-tables.css','wp-admin/css/list-tables.css'),(6543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/list-tables.min.css','wp-admin/css/list-tables.min.css'),(6544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/login-rtl.css','wp-admin/css/login-rtl.css'),(6545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/login-rtl.min.css','wp-admin/css/login-rtl.min.css'),(6546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/login.css','wp-admin/css/login.css'),(6547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/login.min.css','wp-admin/css/login.min.css'),(6548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/media-rtl.css','wp-admin/css/media-rtl.css'),(6549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/media-rtl.min.css','wp-admin/css/media-rtl.min.css'),(6550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/media.css','wp-admin/css/media.css'),(6551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/media.min.css','wp-admin/css/media.min.css'),(6552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/nav-menus-rtl.css','wp-admin/css/nav-menus-rtl.css'),(6553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/nav-menus-rtl.min.css','wp-admin/css/nav-menus-rtl.min.css'),(6554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/nav-menus.css','wp-admin/css/nav-menus.css'),(6555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/nav-menus.min.css','wp-admin/css/nav-menus.min.css'),(6556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/revisions-rtl.css','wp-admin/css/revisions-rtl.css'),(6557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/revisions-rtl.min.css','wp-admin/css/revisions-rtl.min.css'),(6558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/revisions.css','wp-admin/css/revisions.css'),(6559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/revisions.min.css','wp-admin/css/revisions.min.css'),(6560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-health-rtl.css','wp-admin/css/site-health-rtl.css'),(6561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-health-rtl.min.css','wp-admin/css/site-health-rtl.min.css'),(6562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-health.css','wp-admin/css/site-health.css'),(6563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-health.min.css','wp-admin/css/site-health.min.css'),(6564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-icon-rtl.css','wp-admin/css/site-icon-rtl.css'),(6565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-icon-rtl.min.css','wp-admin/css/site-icon-rtl.min.css'),(6566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-icon.css','wp-admin/css/site-icon.css'),(6567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/site-icon.min.css','wp-admin/css/site-icon.min.css'),(6568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/themes-rtl.css','wp-admin/css/themes-rtl.css'),(6569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/themes-rtl.min.css','wp-admin/css/themes-rtl.min.css'),(6570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/themes.css','wp-admin/css/themes.css'),(6571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/themes.min.css','wp-admin/css/themes.min.css'),(6572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/widgets-rtl.css','wp-admin/css/widgets-rtl.css'),(6573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/widgets-rtl.min.css','wp-admin/css/widgets-rtl.min.css'),(6574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/widgets.css','wp-admin/css/widgets.css'),(6575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/widgets.min.css','wp-admin/css/widgets.min.css'),(6576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/wp-admin-rtl.css','wp-admin/css/wp-admin-rtl.css'),(6577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/wp-admin-rtl.min.css','wp-admin/css/wp-admin-rtl.min.css'),(6578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/wp-admin.css','wp-admin/css/wp-admin.css'),(6579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/css/wp-admin.min.css','wp-admin/css/wp-admin.min.css'),(6580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/custom-background.php','wp-admin/custom-background.php'),(6581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/custom-header.php','wp-admin/custom-header.php'),(6582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/customize.php','wp-admin/customize.php'),(6583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-comments.php','wp-admin/edit-comments.php'),(6584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-form-advanced.php','wp-admin/edit-form-advanced.php'),(6585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-form-blocks.php','wp-admin/edit-form-blocks.php'),(6586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-form-comment.php','wp-admin/edit-form-comment.php'),(6587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-link-form.php','wp-admin/edit-link-form.php'),(6588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-tag-form.php','wp-admin/edit-tag-form.php'),(6589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit-tags.php','wp-admin/edit-tags.php'),(6590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/edit.php','wp-admin/edit.php'),(6591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/erase-personal-data.php','wp-admin/erase-personal-data.php'),(6592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/export-personal-data.php','wp-admin/export-personal-data.php'),(6593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/export.php','wp-admin/export.php'),(6594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/freedoms.php','wp-admin/freedoms.php'),(6595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/about-release-badge.svg','wp-admin/images/about-release-badge.svg'),(6596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/about-texture.png','wp-admin/images/about-texture.png'),(6597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-center-2x.png','wp-admin/images/align-center-2x.png'),(6598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-center.png','wp-admin/images/align-center.png'),(6599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-left-2x.png','wp-admin/images/align-left-2x.png'),(6600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-left.png','wp-admin/images/align-left.png'),(6601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-none-2x.png','wp-admin/images/align-none-2x.png'),(6602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-none.png','wp-admin/images/align-none.png'),(6603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-right-2x.png','wp-admin/images/align-right-2x.png'),(6604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/align-right.png','wp-admin/images/align-right.png'),(6605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/arrows-2x.png','wp-admin/images/arrows-2x.png'),(6606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/arrows.png','wp-admin/images/arrows.png'),(6607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/browser-rtl.png','wp-admin/images/browser-rtl.png'),(6608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/browser.png','wp-admin/images/browser.png'),(6609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/bubble_bg-2x.gif','wp-admin/images/bubble_bg-2x.gif'),(6610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/bubble_bg.gif','wp-admin/images/bubble_bg.gif'),(6611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/comment-grey-bubble-2x.png','wp-admin/images/comment-grey-bubble-2x.png'),(6612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/comment-grey-bubble.png','wp-admin/images/comment-grey-bubble.png'),(6613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/contribute-code.svg','wp-admin/images/contribute-code.svg'),(6614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/contribute-main.svg','wp-admin/images/contribute-main.svg'),(6615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/contribute-no-code.svg','wp-admin/images/contribute-no-code.svg'),(6616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/dashboard-background.svg','wp-admin/images/dashboard-background.svg'),(6617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/date-button-2x.gif','wp-admin/images/date-button-2x.gif'),(6618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/date-button.gif','wp-admin/images/date-button.gif'),(6619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/freedom-1.svg','wp-admin/images/freedom-1.svg'),(6620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/freedom-2.svg','wp-admin/images/freedom-2.svg'),(6621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/freedom-3.svg','wp-admin/images/freedom-3.svg'),(6622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/freedom-4.svg','wp-admin/images/freedom-4.svg'),(6623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/generic.png','wp-admin/images/generic.png'),(6624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/icons32-2x.png','wp-admin/images/icons32-2x.png'),(6625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/icons32-vs-2x.png','wp-admin/images/icons32-vs-2x.png'),(6626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/icons32-vs.png','wp-admin/images/icons32-vs.png'),(6627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/icons32.png','wp-admin/images/icons32.png'),(6628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/imgedit-icons-2x.png','wp-admin/images/imgedit-icons-2x.png'),(6629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/imgedit-icons.png','wp-admin/images/imgedit-icons.png'),(6630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/list-2x.png','wp-admin/images/list-2x.png'),(6631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/list.png','wp-admin/images/list.png'),(6632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/loading.gif','wp-admin/images/loading.gif'),(6633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/marker.png','wp-admin/images/marker.png'),(6634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/mask.png','wp-admin/images/mask.png'),(6635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-2x.png','wp-admin/images/media-button-2x.png'),(6636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-image.gif','wp-admin/images/media-button-image.gif'),(6637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-music.gif','wp-admin/images/media-button-music.gif'),(6638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-other.gif','wp-admin/images/media-button-other.gif'),(6639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button-video.gif','wp-admin/images/media-button-video.gif'),(6640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/media-button.png','wp-admin/images/media-button.png'),(6641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/menu-2x.png','wp-admin/images/menu-2x.png'),(6642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/menu-vs-2x.png','wp-admin/images/menu-vs-2x.png'),(6643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/menu-vs.png','wp-admin/images/menu-vs.png'),(6644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/menu.png','wp-admin/images/menu.png'),(6645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/no.png','wp-admin/images/no.png'),(6646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/post-formats-vs.png','wp-admin/images/post-formats-vs.png'),(6647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/post-formats.png','wp-admin/images/post-formats.png'),(6648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/post-formats32-vs.png','wp-admin/images/post-formats32-vs.png'),(6649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/post-formats32.png','wp-admin/images/post-formats32.png'),(6650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/privacy.svg','wp-admin/images/privacy.svg'),(6651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/resize-2x.gif','wp-admin/images/resize-2x.gif'),(6652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/resize-rtl-2x.gif','wp-admin/images/resize-rtl-2x.gif'),(6653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/resize-rtl.gif','wp-admin/images/resize-rtl.gif'),(6654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/resize.gif','wp-admin/images/resize.gif'),(6655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/se.png','wp-admin/images/se.png'),(6656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/sort-2x.gif','wp-admin/images/sort-2x.gif'),(6657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/sort.gif','wp-admin/images/sort.gif'),(6658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/spinner-2x.gif','wp-admin/images/spinner-2x.gif'),(6659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/spinner.gif','wp-admin/images/spinner.gif'),(6660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/stars-2x.png','wp-admin/images/stars-2x.png'),(6661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/stars.png','wp-admin/images/stars.png'),(6662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/w-logo-blue.png','wp-admin/images/w-logo-blue.png'),(6663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/w-logo-white.png','wp-admin/images/w-logo-white.png'),(6664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wheel.png','wp-admin/images/wheel.png'),(6665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wordpress-logo-white.svg','wp-admin/images/wordpress-logo-white.svg'),(6666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wordpress-logo.png','wp-admin/images/wordpress-logo.png'),(6667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wordpress-logo.svg','wp-admin/images/wordpress-logo.svg'),(6668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wpspin_light-2x.gif','wp-admin/images/wpspin_light-2x.gif'),(6669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/wpspin_light.gif','wp-admin/images/wpspin_light.gif'),(6670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/xit-2x.gif','wp-admin/images/xit-2x.gif'),(6671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/xit.gif','wp-admin/images/xit.gif'),(6672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/images/yes.png','wp-admin/images/yes.png'),(6673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/import.php','wp-admin/import.php'),(6674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/admin-filters.php','wp-admin/includes/admin-filters.php'),(6675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/admin.php','wp-admin/includes/admin.php'),(6676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/ajax-actions.php','wp-admin/includes/ajax-actions.php'),(6677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/bookmark.php','wp-admin/includes/bookmark.php'),(6678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-automatic-upgrader-skin.php','wp-admin/includes/class-automatic-upgrader-skin.php'),(6679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-bulk-plugin-upgrader-skin.php','wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(6680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-bulk-theme-upgrader-skin.php','wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(6681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-bulk-upgrader-skin.php','wp-admin/includes/class-bulk-upgrader-skin.php'),(6682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-core-upgrader.php','wp-admin/includes/class-core-upgrader.php'),(6683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-custom-background.php','wp-admin/includes/class-custom-background.php'),(6684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-custom-image-header.php','wp-admin/includes/class-custom-image-header.php'),(6685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-file-upload-upgrader.php','wp-admin/includes/class-file-upload-upgrader.php'),(6686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-ftp-pure.php','wp-admin/includes/class-ftp-pure.php'),(6687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-ftp-sockets.php','wp-admin/includes/class-ftp-sockets.php'),(6688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-ftp.php','wp-admin/includes/class-ftp.php'),(6689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-language-pack-upgrader-skin.php','wp-admin/includes/class-language-pack-upgrader-skin.php'),(6690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-language-pack-upgrader.php','wp-admin/includes/class-language-pack-upgrader.php'),(6691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-pclzip.php','wp-admin/includes/class-pclzip.php'),(6692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-plugin-installer-skin.php','wp-admin/includes/class-plugin-installer-skin.php'),(6693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-plugin-upgrader-skin.php','wp-admin/includes/class-plugin-upgrader-skin.php'),(6694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-plugin-upgrader.php','wp-admin/includes/class-plugin-upgrader.php'),(6695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-theme-installer-skin.php','wp-admin/includes/class-theme-installer-skin.php'),(6696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-theme-upgrader-skin.php','wp-admin/includes/class-theme-upgrader-skin.php'),(6697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-theme-upgrader.php','wp-admin/includes/class-theme-upgrader.php'),(6698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-walker-category-checklist.php','wp-admin/includes/class-walker-category-checklist.php'),(6699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-walker-nav-menu-checklist.php','wp-admin/includes/class-walker-nav-menu-checklist.php'),(6700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-walker-nav-menu-edit.php','wp-admin/includes/class-walker-nav-menu-edit.php'),(6701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-ajax-upgrader-skin.php','wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(6702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-application-passwords-list-table.php','wp-admin/includes/class-wp-application-passwords-list-table.php'),(6703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-automatic-updater.php','wp-admin/includes/class-wp-automatic-updater.php'),(6704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-comments-list-table.php','wp-admin/includes/class-wp-comments-list-table.php'),(6705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-community-events.php','wp-admin/includes/class-wp-community-events.php'),(6706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-debug-data.php','wp-admin/includes/class-wp-debug-data.php'),(6707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-base.php','wp-admin/includes/class-wp-filesystem-base.php'),(6708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-direct.php','wp-admin/includes/class-wp-filesystem-direct.php'),(6709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-ftpext.php','wp-admin/includes/class-wp-filesystem-ftpext.php'),(6710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-ftpsockets.php','wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(6711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-filesystem-ssh2.php','wp-admin/includes/class-wp-filesystem-ssh2.php'),(6712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-importer.php','wp-admin/includes/class-wp-importer.php'),(6713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-internal-pointers.php','wp-admin/includes/class-wp-internal-pointers.php'),(6714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-links-list-table.php','wp-admin/includes/class-wp-links-list-table.php'),(6715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-list-table-compat.php','wp-admin/includes/class-wp-list-table-compat.php'),(6716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-list-table.php','wp-admin/includes/class-wp-list-table.php'),(6717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-media-list-table.php','wp-admin/includes/class-wp-media-list-table.php'),(6718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-ms-sites-list-table.php','wp-admin/includes/class-wp-ms-sites-list-table.php'),(6719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-ms-themes-list-table.php','wp-admin/includes/class-wp-ms-themes-list-table.php'),(6720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-ms-users-list-table.php','wp-admin/includes/class-wp-ms-users-list-table.php'),(6721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-plugin-install-list-table.php','wp-admin/includes/class-wp-plugin-install-list-table.php'),(6722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-plugins-list-table.php','wp-admin/includes/class-wp-plugins-list-table.php'),(6723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-post-comments-list-table.php','wp-admin/includes/class-wp-post-comments-list-table.php'),(6724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-posts-list-table.php','wp-admin/includes/class-wp-posts-list-table.php'),(6725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php','wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php'),(6726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php','wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php'),(6727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-privacy-policy-content.php','wp-admin/includes/class-wp-privacy-policy-content.php'),(6728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-privacy-requests-table.php','wp-admin/includes/class-wp-privacy-requests-table.php'),(6729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-screen.php','wp-admin/includes/class-wp-screen.php'),(6730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-site-health-auto-updates.php','wp-admin/includes/class-wp-site-health-auto-updates.php'),(6731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-site-health.php','wp-admin/includes/class-wp-site-health.php'),(6732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-site-icon.php','wp-admin/includes/class-wp-site-icon.php'),(6733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-terms-list-table.php','wp-admin/includes/class-wp-terms-list-table.php'),(6734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-theme-install-list-table.php','wp-admin/includes/class-wp-theme-install-list-table.php'),(6735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-themes-list-table.php','wp-admin/includes/class-wp-themes-list-table.php'),(6736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-upgrader-skin.php','wp-admin/includes/class-wp-upgrader-skin.php'),(6737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-upgrader-skins.php','wp-admin/includes/class-wp-upgrader-skins.php'),(6738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-upgrader.php','wp-admin/includes/class-wp-upgrader.php'),(6739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/class-wp-users-list-table.php','wp-admin/includes/class-wp-users-list-table.php'),(6740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/comment.php','wp-admin/includes/comment.php'),(6741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/continents-cities.php','wp-admin/includes/continents-cities.php'),(6742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/credits.php','wp-admin/includes/credits.php'),(6743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/dashboard.php','wp-admin/includes/dashboard.php'),(6744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/deprecated.php','wp-admin/includes/deprecated.php'),(6745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/edit-tag-messages.php','wp-admin/includes/edit-tag-messages.php'),(6746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/export.php','wp-admin/includes/export.php'),(6747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/file.php','wp-admin/includes/file.php'),(6748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/image-edit.php','wp-admin/includes/image-edit.php'),(6749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/image.php','wp-admin/includes/image.php'),(6750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/import.php','wp-admin/includes/import.php'),(6751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/list-table.php','wp-admin/includes/list-table.php'),(6752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/media.php','wp-admin/includes/media.php'),(6753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/menu.php','wp-admin/includes/menu.php'),(6754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/meta-boxes.php','wp-admin/includes/meta-boxes.php'),(6755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/misc.php','wp-admin/includes/misc.php'),(6756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/ms-admin-filters.php','wp-admin/includes/ms-admin-filters.php'),(6757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/ms-deprecated.php','wp-admin/includes/ms-deprecated.php'),(6758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/ms.php','wp-admin/includes/ms.php'),(6759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/nav-menu.php','wp-admin/includes/nav-menu.php'),(6760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/network.php','wp-admin/includes/network.php'),(6761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/noop.php','wp-admin/includes/noop.php'),(6762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/options.php','wp-admin/includes/options.php'),(6763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/plugin-install.php','wp-admin/includes/plugin-install.php'),(6764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/plugin.php','wp-admin/includes/plugin.php'),(6765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/post.php','wp-admin/includes/post.php'),(6766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/privacy-tools.php','wp-admin/includes/privacy-tools.php'),(6767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/revision.php','wp-admin/includes/revision.php'),(6768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/schema.php','wp-admin/includes/schema.php'),(6769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/screen.php','wp-admin/includes/screen.php'),(6770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/taxonomy.php','wp-admin/includes/taxonomy.php'),(6771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/template.php','wp-admin/includes/template.php'),(6772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/theme-install.php','wp-admin/includes/theme-install.php'),(6773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/theme.php','wp-admin/includes/theme.php'),(6774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/translation-install.php','wp-admin/includes/translation-install.php'),(6775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/update-core.php','wp-admin/includes/update-core.php'),(6776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/update.php','wp-admin/includes/update.php'),(6777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/upgrade.php','wp-admin/includes/upgrade.php'),(6778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/user.php','wp-admin/includes/user.php'),(6779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/includes/widgets.php','wp-admin/includes/widgets.php'),(6780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/index.php','wp-admin/index.php'),(6781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/install-helper.php','wp-admin/install-helper.php'),(6782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/install.php','wp-admin/install.php'),(6783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/accordion.js','wp-admin/js/accordion.js'),(6784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/accordion.min.js','wp-admin/js/accordion.min.js'),(6785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/application-passwords.js','wp-admin/js/application-passwords.js'),(6786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/application-passwords.min.js','wp-admin/js/application-passwords.min.js'),(6787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/auth-app.js','wp-admin/js/auth-app.js'),(6788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/auth-app.min.js','wp-admin/js/auth-app.min.js'),(6789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/code-editor.js','wp-admin/js/code-editor.js'),(6790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/code-editor.min.js','wp-admin/js/code-editor.min.js'),(6791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/color-picker.js','wp-admin/js/color-picker.js'),(6792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/color-picker.min.js','wp-admin/js/color-picker.min.js'),(6793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/comment.js','wp-admin/js/comment.js'),(6794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/comment.min.js','wp-admin/js/comment.min.js'),(6795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/common.js','wp-admin/js/common.js'),(6796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/common.min.js','wp-admin/js/common.min.js'),(6797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/custom-background.js','wp-admin/js/custom-background.js'),(6798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/custom-background.min.js','wp-admin/js/custom-background.min.js'),(6799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/custom-header.js','wp-admin/js/custom-header.js'),(6800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-controls.js','wp-admin/js/customize-controls.js'),(6801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-controls.min.js','wp-admin/js/customize-controls.min.js'),(6802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-nav-menus.js','wp-admin/js/customize-nav-menus.js'),(6803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-nav-menus.min.js','wp-admin/js/customize-nav-menus.min.js'),(6804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-widgets.js','wp-admin/js/customize-widgets.js'),(6805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/customize-widgets.min.js','wp-admin/js/customize-widgets.min.js'),(6806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/dashboard.js','wp-admin/js/dashboard.js'),(6807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/dashboard.min.js','wp-admin/js/dashboard.min.js'),(6808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/edit-comments.js','wp-admin/js/edit-comments.js'),(6809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/edit-comments.min.js','wp-admin/js/edit-comments.min.js'),(6810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/editor-expand.js','wp-admin/js/editor-expand.js'),(6811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/editor-expand.min.js','wp-admin/js/editor-expand.min.js'),(6812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/editor.js','wp-admin/js/editor.js'),(6813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/editor.min.js','wp-admin/js/editor.min.js'),(6814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/farbtastic.js','wp-admin/js/farbtastic.js'),(6815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/gallery.js','wp-admin/js/gallery.js'),(6816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/gallery.min.js','wp-admin/js/gallery.min.js'),(6817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/image-edit.js','wp-admin/js/image-edit.js'),(6818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/image-edit.min.js','wp-admin/js/image-edit.min.js'),(6819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/inline-edit-post.js','wp-admin/js/inline-edit-post.js'),(6820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/inline-edit-post.min.js','wp-admin/js/inline-edit-post.min.js'),(6821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/inline-edit-tax.js','wp-admin/js/inline-edit-tax.js'),(6822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/inline-edit-tax.min.js','wp-admin/js/inline-edit-tax.min.js'),(6823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/iris.min.js','wp-admin/js/iris.min.js'),(6824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/language-chooser.js','wp-admin/js/language-chooser.js'),(6825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/language-chooser.min.js','wp-admin/js/language-chooser.min.js'),(6826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/link.js','wp-admin/js/link.js'),(6827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/link.min.js','wp-admin/js/link.min.js'),(6828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media-gallery.js','wp-admin/js/media-gallery.js'),(6829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media-gallery.min.js','wp-admin/js/media-gallery.min.js'),(6830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media-upload.js','wp-admin/js/media-upload.js'),(6831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media-upload.min.js','wp-admin/js/media-upload.min.js'),(6832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media.js','wp-admin/js/media.js'),(6833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/media.min.js','wp-admin/js/media.min.js'),(6834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/nav-menu.js','wp-admin/js/nav-menu.js'),(6835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/nav-menu.min.js','wp-admin/js/nav-menu.min.js'),(6836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/password-strength-meter.js','wp-admin/js/password-strength-meter.js'),(6837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/password-strength-meter.min.js','wp-admin/js/password-strength-meter.min.js'),(6838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/password-toggle.js','wp-admin/js/password-toggle.js'),(6839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/password-toggle.min.js','wp-admin/js/password-toggle.min.js'),(6840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/plugin-install.js','wp-admin/js/plugin-install.js'),(6841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/plugin-install.min.js','wp-admin/js/plugin-install.min.js'),(6842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/post.js','wp-admin/js/post.js'),(6843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/post.min.js','wp-admin/js/post.min.js'),(6844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/postbox.js','wp-admin/js/postbox.js'),(6845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/postbox.min.js','wp-admin/js/postbox.min.js'),(6846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/privacy-tools.js','wp-admin/js/privacy-tools.js'),(6847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/privacy-tools.min.js','wp-admin/js/privacy-tools.min.js'),(6848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/revisions.js','wp-admin/js/revisions.js'),(6849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/revisions.min.js','wp-admin/js/revisions.min.js'),(6850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/set-post-thumbnail.js','wp-admin/js/set-post-thumbnail.js'),(6851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/set-post-thumbnail.min.js','wp-admin/js/set-post-thumbnail.min.js'),(6852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/site-health.js','wp-admin/js/site-health.js'),(6853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/site-health.min.js','wp-admin/js/site-health.min.js'),(6854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/site-icon.js','wp-admin/js/site-icon.js'),(6855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/site-icon.min.js','wp-admin/js/site-icon.min.js'),(6856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/svg-painter.js','wp-admin/js/svg-painter.js'),(6857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/svg-painter.min.js','wp-admin/js/svg-painter.min.js'),(6858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags-box.js','wp-admin/js/tags-box.js'),(6859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags-box.min.js','wp-admin/js/tags-box.min.js'),(6860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags-suggest.js','wp-admin/js/tags-suggest.js'),(6861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags-suggest.min.js','wp-admin/js/tags-suggest.min.js'),(6862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags.js','wp-admin/js/tags.js'),(6863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/tags.min.js','wp-admin/js/tags.min.js'),(6864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/theme-plugin-editor.js','wp-admin/js/theme-plugin-editor.js'),(6865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/theme-plugin-editor.min.js','wp-admin/js/theme-plugin-editor.min.js'),(6866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/theme.js','wp-admin/js/theme.js'),(6867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/theme.min.js','wp-admin/js/theme.min.js'),(6868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/updates.js','wp-admin/js/updates.js'),(6869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/updates.min.js','wp-admin/js/updates.min.js'),(6870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/user-profile.js','wp-admin/js/user-profile.js'),(6871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/user-profile.min.js','wp-admin/js/user-profile.min.js'),(6872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/user-suggest.js','wp-admin/js/user-suggest.js'),(6873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/user-suggest.min.js','wp-admin/js/user-suggest.min.js'),(6874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/custom-html-widgets.js','wp-admin/js/widgets/custom-html-widgets.js'),(6875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/custom-html-widgets.min.js','wp-admin/js/widgets/custom-html-widgets.min.js'),(6876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-audio-widget.js','wp-admin/js/widgets/media-audio-widget.js'),(6877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-audio-widget.min.js','wp-admin/js/widgets/media-audio-widget.min.js'),(6878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-gallery-widget.js','wp-admin/js/widgets/media-gallery-widget.js'),(6879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-gallery-widget.min.js','wp-admin/js/widgets/media-gallery-widget.min.js'),(6880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-image-widget.js','wp-admin/js/widgets/media-image-widget.js'),(6881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-image-widget.min.js','wp-admin/js/widgets/media-image-widget.min.js'),(6882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-video-widget.js','wp-admin/js/widgets/media-video-widget.js'),(6883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-video-widget.min.js','wp-admin/js/widgets/media-video-widget.min.js'),(6884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-widgets.js','wp-admin/js/widgets/media-widgets.js'),(6885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/media-widgets.min.js','wp-admin/js/widgets/media-widgets.min.js'),(6886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/text-widgets.js','wp-admin/js/widgets/text-widgets.js'),(6887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets/text-widgets.min.js','wp-admin/js/widgets/text-widgets.min.js'),(6888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets.js','wp-admin/js/widgets.js'),(6889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/widgets.min.js','wp-admin/js/widgets.min.js'),(6890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/word-count.js','wp-admin/js/word-count.js'),(6891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/word-count.min.js','wp-admin/js/word-count.min.js'),(6892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/xfn.js','wp-admin/js/xfn.js'),(6893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/js/xfn.min.js','wp-admin/js/xfn.min.js'),(6894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/link-add.php','wp-admin/link-add.php'),(6895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/link-manager.php','wp-admin/link-manager.php'),(6896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/link-parse-opml.php','wp-admin/link-parse-opml.php'),(6897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/link.php','wp-admin/link.php'),(6898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/load-scripts.php','wp-admin/load-scripts.php'),(6899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/load-styles.php','wp-admin/load-styles.php'),(6900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/maint/repair.php','wp-admin/maint/repair.php'),(6901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/media-new.php','wp-admin/media-new.php'),(6902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/media-upload.php','wp-admin/media-upload.php'),(6903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/media.php','wp-admin/media.php'),(6904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/menu-header.php','wp-admin/menu-header.php'),(6905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/menu.php','wp-admin/menu.php'),(6906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/moderation.php','wp-admin/moderation.php'),(6907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-admin.php','wp-admin/ms-admin.php'),(6908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-delete-site.php','wp-admin/ms-delete-site.php'),(6909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-edit.php','wp-admin/ms-edit.php'),(6910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-options.php','wp-admin/ms-options.php'),(6911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-sites.php','wp-admin/ms-sites.php'),(6912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-themes.php','wp-admin/ms-themes.php'),(6913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-upgrade-network.php','wp-admin/ms-upgrade-network.php'),(6914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/ms-users.php','wp-admin/ms-users.php'),(6915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/my-sites.php','wp-admin/my-sites.php'),(6916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/nav-menus.php','wp-admin/nav-menus.php'),(6917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/about.php','wp-admin/network/about.php'),(6918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/admin.php','wp-admin/network/admin.php'),(6919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/contribute.php','wp-admin/network/contribute.php'),(6920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/credits.php','wp-admin/network/credits.php'),(6921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/edit.php','wp-admin/network/edit.php'),(6922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/freedoms.php','wp-admin/network/freedoms.php'),(6923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/index.php','wp-admin/network/index.php'),(6924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/menu.php','wp-admin/network/menu.php'),(6925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/plugin-editor.php','wp-admin/network/plugin-editor.php'),(6926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/plugin-install.php','wp-admin/network/plugin-install.php'),(6927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/plugins.php','wp-admin/network/plugins.php'),(6928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/privacy.php','wp-admin/network/privacy.php'),(6929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/profile.php','wp-admin/network/profile.php'),(6930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/settings.php','wp-admin/network/settings.php'),(6931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/setup.php','wp-admin/network/setup.php'),(6932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-info.php','wp-admin/network/site-info.php'),(6933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-new.php','wp-admin/network/site-new.php'),(6934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-settings.php','wp-admin/network/site-settings.php'),(6935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-themes.php','wp-admin/network/site-themes.php'),(6936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/site-users.php','wp-admin/network/site-users.php'),(6937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/sites.php','wp-admin/network/sites.php'),(6938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/theme-editor.php','wp-admin/network/theme-editor.php'),(6939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/theme-install.php','wp-admin/network/theme-install.php'),(6940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/themes.php','wp-admin/network/themes.php'),(6941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/update-core.php','wp-admin/network/update-core.php'),(6942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/update.php','wp-admin/network/update.php'),(6943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/upgrade.php','wp-admin/network/upgrade.php'),(6944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/user-edit.php','wp-admin/network/user-edit.php'),(6945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/user-new.php','wp-admin/network/user-new.php'),(6946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network/users.php','wp-admin/network/users.php'),(6947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/network.php','wp-admin/network.php'),(6948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-discussion.php','wp-admin/options-discussion.php'),(6949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-general.php','wp-admin/options-general.php'),(6950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-head.php','wp-admin/options-head.php'),(6951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-media.php','wp-admin/options-media.php'),(6952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-permalink.php','wp-admin/options-permalink.php'),(6953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-privacy.php','wp-admin/options-privacy.php'),(6954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-reading.php','wp-admin/options-reading.php'),(6955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options-writing.php','wp-admin/options-writing.php'),(6956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/options.php','wp-admin/options.php'),(6957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/plugin-editor.php','wp-admin/plugin-editor.php'),(6958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/plugin-install.php','wp-admin/plugin-install.php'),(6959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/plugins.php','wp-admin/plugins.php'),(6960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/post-new.php','wp-admin/post-new.php'),(6961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/post.php','wp-admin/post.php'),(6962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/press-this.php','wp-admin/press-this.php'),(6963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/privacy-policy-guide.php','wp-admin/privacy-policy-guide.php'),(6964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/privacy.php','wp-admin/privacy.php'),(6965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/profile.php','wp-admin/profile.php'),(6966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/revision.php','wp-admin/revision.php'),(6967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/setup-config.php','wp-admin/setup-config.php'),(6968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/site-editor.php','wp-admin/site-editor.php'),(6969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/site-health-info.php','wp-admin/site-health-info.php'),(6970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/site-health.php','wp-admin/site-health.php'),(6971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/term.php','wp-admin/term.php'),(6972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/theme-editor.php','wp-admin/theme-editor.php'),(6973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/theme-install.php','wp-admin/theme-install.php'),(6974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/themes.php','wp-admin/themes.php'),(6975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/tools.php','wp-admin/tools.php'),(6976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/update-core.php','wp-admin/update-core.php'),(6977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/update.php','wp-admin/update.php'),(6978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/upgrade-functions.php','wp-admin/upgrade-functions.php'),(6979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/upgrade.php','wp-admin/upgrade.php'),(6980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/upload.php','wp-admin/upload.php'),(6981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/about.php','wp-admin/user/about.php'),(6982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/admin.php','wp-admin/user/admin.php'),(6983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/credits.php','wp-admin/user/credits.php'),(6984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/freedoms.php','wp-admin/user/freedoms.php'),(6985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/index.php','wp-admin/user/index.php'),(6986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/menu.php','wp-admin/user/menu.php'),(6987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/privacy.php','wp-admin/user/privacy.php'),(6988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/profile.php','wp-admin/user/profile.php'),(6989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user/user-edit.php','wp-admin/user/user-edit.php'),(6990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user-edit.php','wp-admin/user-edit.php'),(6991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/user-new.php','wp-admin/user-new.php'),(6992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/users.php','wp-admin/users.php'),(6993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/widgets-form-blocks.php','wp-admin/widgets-form-blocks.php'),(6994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/widgets-form.php','wp-admin/widgets-form.php'),(6995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-admin/widgets.php','wp-admin/widgets.php'),(6996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-blog-header.php','wp-blog-header.php'),(6997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-comments-post.php','wp-comments-post.php'),(6998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-config-sample.php','wp-config-sample.php'),(6999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-config.php','wp-config.php'),(7000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-cron.php','wp-cron.php'),(7001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/.htaccess','wp-includes/.htaccess'),(7002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/getid3.lib.php','wp-includes/ID3/getid3.lib.php'),(7003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/getid3.php','wp-includes/ID3/getid3.php'),(7004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/license.txt','wp-includes/ID3/license.txt'),(7005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.asf.php','wp-includes/ID3/module.audio-video.asf.php'),(7006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.flv.php','wp-includes/ID3/module.audio-video.flv.php'),(7007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.matroska.php','wp-includes/ID3/module.audio-video.matroska.php'),(7008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.quicktime.php','wp-includes/ID3/module.audio-video.quicktime.php'),(7009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio-video.riff.php','wp-includes/ID3/module.audio-video.riff.php'),(7010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.ac3.php','wp-includes/ID3/module.audio.ac3.php'),(7011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.dts.php','wp-includes/ID3/module.audio.dts.php'),(7012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.flac.php','wp-includes/ID3/module.audio.flac.php'),(7013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.mp3.php','wp-includes/ID3/module.audio.mp3.php'),(7014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.audio.ogg.php','wp-includes/ID3/module.audio.ogg.php'),(7015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.tag.apetag.php','wp-includes/ID3/module.tag.apetag.php'),(7016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.tag.id3v1.php','wp-includes/ID3/module.tag.id3v1.php'),(7017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.tag.id3v2.php','wp-includes/ID3/module.tag.id3v2.php'),(7018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/module.tag.lyrics3.php','wp-includes/ID3/module.tag.lyrics3.php'),(7019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ID3/readme.txt','wp-includes/ID3/readme.txt'),(7020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-base64.php','wp-includes/IXR/class-IXR-base64.php'),(7021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-client.php','wp-includes/IXR/class-IXR-client.php'),(7022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-clientmulticall.php','wp-includes/IXR/class-IXR-clientmulticall.php'),(7023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-date.php','wp-includes/IXR/class-IXR-date.php'),(7024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-error.php','wp-includes/IXR/class-IXR-error.php'),(7025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-introspectionserver.php','wp-includes/IXR/class-IXR-introspectionserver.php'),(7026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-message.php','wp-includes/IXR/class-IXR-message.php'),(7027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-request.php','wp-includes/IXR/class-IXR-request.php'),(7028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-server.php','wp-includes/IXR/class-IXR-server.php'),(7029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/IXR/class-IXR-value.php','wp-includes/IXR/class-IXR-value.php'),(7030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/PHPMailer/Exception.php','wp-includes/PHPMailer/Exception.php'),(7031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/PHPMailer/PHPMailer.php','wp-includes/PHPMailer/PHPMailer.php'),(7032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/PHPMailer/SMTP.php','wp-includes/PHPMailer/SMTP.php'),(7033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/library/Requests.php','wp-includes/Requests/library/Requests.php'),(7034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Auth/Basic.php','wp-includes/Requests/src/Auth/Basic.php'),(7035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Auth.php','wp-includes/Requests/src/Auth.php'),(7036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Autoload.php','wp-includes/Requests/src/Autoload.php'),(7037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Capability.php','wp-includes/Requests/src/Capability.php'),(7038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Cookie/Jar.php','wp-includes/Requests/src/Cookie/Jar.php'),(7039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Cookie.php','wp-includes/Requests/src/Cookie.php'),(7040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/ArgumentCount.php','wp-includes/Requests/src/Exception/ArgumentCount.php'),(7041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status304.php','wp-includes/Requests/src/Exception/Http/Status304.php'),(7042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status305.php','wp-includes/Requests/src/Exception/Http/Status305.php'),(7043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status306.php','wp-includes/Requests/src/Exception/Http/Status306.php'),(7044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status400.php','wp-includes/Requests/src/Exception/Http/Status400.php'),(7045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status401.php','wp-includes/Requests/src/Exception/Http/Status401.php'),(7046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status402.php','wp-includes/Requests/src/Exception/Http/Status402.php'),(7047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status403.php','wp-includes/Requests/src/Exception/Http/Status403.php'),(7048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status404.php','wp-includes/Requests/src/Exception/Http/Status404.php'),(7049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status405.php','wp-includes/Requests/src/Exception/Http/Status405.php'),(7050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status406.php','wp-includes/Requests/src/Exception/Http/Status406.php'),(7051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status407.php','wp-includes/Requests/src/Exception/Http/Status407.php'),(7052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status408.php','wp-includes/Requests/src/Exception/Http/Status408.php'),(7053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status409.php','wp-includes/Requests/src/Exception/Http/Status409.php'),(7054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status410.php','wp-includes/Requests/src/Exception/Http/Status410.php'),(7055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status411.php','wp-includes/Requests/src/Exception/Http/Status411.php'),(7056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status412.php','wp-includes/Requests/src/Exception/Http/Status412.php'),(7057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status413.php','wp-includes/Requests/src/Exception/Http/Status413.php'),(7058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status414.php','wp-includes/Requests/src/Exception/Http/Status414.php'),(7059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status415.php','wp-includes/Requests/src/Exception/Http/Status415.php'),(7060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status416.php','wp-includes/Requests/src/Exception/Http/Status416.php'),(7061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status417.php','wp-includes/Requests/src/Exception/Http/Status417.php'),(7062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status418.php','wp-includes/Requests/src/Exception/Http/Status418.php'),(7063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status428.php','wp-includes/Requests/src/Exception/Http/Status428.php'),(7064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status429.php','wp-includes/Requests/src/Exception/Http/Status429.php'),(7065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status431.php','wp-includes/Requests/src/Exception/Http/Status431.php'),(7066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status500.php','wp-includes/Requests/src/Exception/Http/Status500.php'),(7067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status501.php','wp-includes/Requests/src/Exception/Http/Status501.php'),(7068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status502.php','wp-includes/Requests/src/Exception/Http/Status502.php'),(7069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status503.php','wp-includes/Requests/src/Exception/Http/Status503.php'),(7070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status504.php','wp-includes/Requests/src/Exception/Http/Status504.php'),(7071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status505.php','wp-includes/Requests/src/Exception/Http/Status505.php'),(7072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/Status511.php','wp-includes/Requests/src/Exception/Http/Status511.php'),(7073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http/StatusUnknown.php','wp-includes/Requests/src/Exception/Http/StatusUnknown.php'),(7074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Http.php','wp-includes/Requests/src/Exception/Http.php'),(7075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/InvalidArgument.php','wp-includes/Requests/src/Exception/InvalidArgument.php'),(7076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Transport/Curl.php','wp-includes/Requests/src/Exception/Transport/Curl.php'),(7077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception/Transport.php','wp-includes/Requests/src/Exception/Transport.php'),(7078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Exception.php','wp-includes/Requests/src/Exception.php'),(7079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/HookManager.php','wp-includes/Requests/src/HookManager.php'),(7080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Hooks.php','wp-includes/Requests/src/Hooks.php'),(7081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/IdnaEncoder.php','wp-includes/Requests/src/IdnaEncoder.php'),(7082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Ipv6.php','wp-includes/Requests/src/Ipv6.php'),(7083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Iri.php','wp-includes/Requests/src/Iri.php'),(7084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Port.php','wp-includes/Requests/src/Port.php'),(7085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Proxy/Http.php','wp-includes/Requests/src/Proxy/Http.php'),(7086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Proxy.php','wp-includes/Requests/src/Proxy.php'),(7087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Requests.php','wp-includes/Requests/src/Requests.php'),(7088,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Response/Headers.php','wp-includes/Requests/src/Response/Headers.php'),(7089,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Response.php','wp-includes/Requests/src/Response.php'),(7090,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Session.php','wp-includes/Requests/src/Session.php'),(7091,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Ssl.php','wp-includes/Requests/src/Ssl.php'),(7092,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Transport/Curl.php','wp-includes/Requests/src/Transport/Curl.php'),(7093,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Transport/Fsockopen.php','wp-includes/Requests/src/Transport/Fsockopen.php'),(7094,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Transport.php','wp-includes/Requests/src/Transport.php'),(7095,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php','wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php'),(7096,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Utility/FilteredIterator.php','wp-includes/Requests/src/Utility/FilteredIterator.php'),(7097,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Requests/src/Utility/InputValidator.php','wp-includes/Requests/src/Utility/InputValidator.php'),(7098,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Author.php','wp-includes/SimplePie/Author.php'),(7099,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/Base.php','wp-includes/SimplePie/Cache/Base.php'),(7100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/DB.php','wp-includes/SimplePie/Cache/DB.php'),(7101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/File.php','wp-includes/SimplePie/Cache/File.php'),(7102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/Memcache.php','wp-includes/SimplePie/Cache/Memcache.php'),(7103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/Memcached.php','wp-includes/SimplePie/Cache/Memcached.php'),(7104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/MySQL.php','wp-includes/SimplePie/Cache/MySQL.php'),(7105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache/Redis.php','wp-includes/SimplePie/Cache/Redis.php'),(7106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Cache.php','wp-includes/SimplePie/Cache.php'),(7107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Caption.php','wp-includes/SimplePie/Caption.php'),(7108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Category.php','wp-includes/SimplePie/Category.php'),(7109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Content/Type/Sniffer.php','wp-includes/SimplePie/Content/Type/Sniffer.php'),(7110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Copyright.php','wp-includes/SimplePie/Copyright.php'),(7111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Core.php','wp-includes/SimplePie/Core.php'),(7112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Credit.php','wp-includes/SimplePie/Credit.php'),(7113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Decode/HTML/Entities.php','wp-includes/SimplePie/Decode/HTML/Entities.php'),(7114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Enclosure.php','wp-includes/SimplePie/Enclosure.php'),(7115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Exception.php','wp-includes/SimplePie/Exception.php'),(7116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/File.php','wp-includes/SimplePie/File.php'),(7117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/HTTP/Parser.php','wp-includes/SimplePie/HTTP/Parser.php'),(7118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/IRI.php','wp-includes/SimplePie/IRI.php'),(7119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Item.php','wp-includes/SimplePie/Item.php'),(7120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Locator.php','wp-includes/SimplePie/Locator.php'),(7121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Misc.php','wp-includes/SimplePie/Misc.php'),(7122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Net/IPv6.php','wp-includes/SimplePie/Net/IPv6.php'),(7123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Parse/Date.php','wp-includes/SimplePie/Parse/Date.php'),(7124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Parser.php','wp-includes/SimplePie/Parser.php'),(7125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Rating.php','wp-includes/SimplePie/Rating.php'),(7126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Registry.php','wp-includes/SimplePie/Registry.php'),(7127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Restriction.php','wp-includes/SimplePie/Restriction.php'),(7128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Sanitize.php','wp-includes/SimplePie/Sanitize.php'),(7129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/Source.php','wp-includes/SimplePie/Source.php'),(7130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/XML/Declaration/Parser.php','wp-includes/SimplePie/XML/Declaration/Parser.php'),(7131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/SimplePie/gzdecode.php','wp-includes/SimplePie/gzdecode.php'),(7132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Engine/native.php','wp-includes/Text/Diff/Engine/native.php'),(7133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Engine/shell.php','wp-includes/Text/Diff/Engine/shell.php'),(7134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Engine/string.php','wp-includes/Text/Diff/Engine/string.php'),(7135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Engine/xdiff.php','wp-includes/Text/Diff/Engine/xdiff.php'),(7136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Renderer/inline.php','wp-includes/Text/Diff/Renderer/inline.php'),(7137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff/Renderer.php','wp-includes/Text/Diff/Renderer.php'),(7138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/Text/Diff.php','wp-includes/Text/Diff.php'),(7139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/admin-bar.php','wp-includes/admin-bar.php'),(7140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-packages.min.php','wp-includes/assets/script-loader-packages.min.php'),(7141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-packages.php','wp-includes/assets/script-loader-packages.php'),(7142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-react-refresh-entry.min.php','wp-includes/assets/script-loader-react-refresh-entry.min.php'),(7143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-react-refresh-entry.php','wp-includes/assets/script-loader-react-refresh-entry.php'),(7144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-react-refresh-runtime.min.php','wp-includes/assets/script-loader-react-refresh-runtime.min.php'),(7145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/assets/script-loader-react-refresh-runtime.php','wp-includes/assets/script-loader-react-refresh-runtime.php'),(7146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/atomlib.php','wp-includes/atomlib.php'),(7147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/author-template.php','wp-includes/author-template.php'),(7148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-bindings/pattern-overrides.php','wp-includes/block-bindings/pattern-overrides.php'),(7149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-bindings/post-meta.php','wp-includes/block-bindings/post-meta.php'),(7150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-bindings.php','wp-includes/block-bindings.php'),(7151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-editor.php','wp-includes/block-editor.php'),(7152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-i18n.json','wp-includes/block-i18n.json'),(7153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-grid-posts.php','wp-includes/block-patterns/query-grid-posts.php'),(7154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-large-title-posts.php','wp-includes/block-patterns/query-large-title-posts.php'),(7155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-medium-posts.php','wp-includes/block-patterns/query-medium-posts.php'),(7156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-offset-posts.php','wp-includes/block-patterns/query-offset-posts.php'),(7157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-small-posts.php','wp-includes/block-patterns/query-small-posts.php'),(7158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/query-standard-posts.php','wp-includes/block-patterns/query-standard-posts.php'),(7159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns/social-links-shared-background-color.php','wp-includes/block-patterns/social-links-shared-background-color.php'),(7160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-patterns.php','wp-includes/block-patterns.php'),(7161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/align.php','wp-includes/block-supports/align.php'),(7162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/background.php','wp-includes/block-supports/background.php'),(7163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/border.php','wp-includes/block-supports/border.php'),(7164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/colors.php','wp-includes/block-supports/colors.php'),(7165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/custom-classname.php','wp-includes/block-supports/custom-classname.php'),(7166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/dimensions.php','wp-includes/block-supports/dimensions.php'),(7167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/duotone.php','wp-includes/block-supports/duotone.php'),(7168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/elements.php','wp-includes/block-supports/elements.php'),(7169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/generated-classname.php','wp-includes/block-supports/generated-classname.php'),(7170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/layout.php','wp-includes/block-supports/layout.php'),(7171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/position.php','wp-includes/block-supports/position.php'),(7172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/settings.php','wp-includes/block-supports/settings.php'),(7173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/shadow.php','wp-includes/block-supports/shadow.php'),(7174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/spacing.php','wp-includes/block-supports/spacing.php'),(7175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/typography.php','wp-includes/block-supports/typography.php'),(7176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-supports/utils.php','wp-includes/block-supports/utils.php'),(7177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-template-utils.php','wp-includes/block-template-utils.php'),(7178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/block-template.php','wp-includes/block-template.php'),(7179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/block.json','wp-includes/blocks/archives/block.json'),(7180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/editor-rtl.css','wp-includes/blocks/archives/editor-rtl.css'),(7181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/editor-rtl.min.css','wp-includes/blocks/archives/editor-rtl.min.css'),(7182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/editor.css','wp-includes/blocks/archives/editor.css'),(7183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/editor.min.css','wp-includes/blocks/archives/editor.min.css'),(7184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/style-rtl.css','wp-includes/blocks/archives/style-rtl.css'),(7185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/style-rtl.min.css','wp-includes/blocks/archives/style-rtl.min.css'),(7186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/style.css','wp-includes/blocks/archives/style.css'),(7187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives/style.min.css','wp-includes/blocks/archives/style.min.css'),(7188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/archives.php','wp-includes/blocks/archives.php'),(7189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/block.json','wp-includes/blocks/audio/block.json'),(7190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/editor-rtl.css','wp-includes/blocks/audio/editor-rtl.css'),(7191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/editor-rtl.min.css','wp-includes/blocks/audio/editor-rtl.min.css'),(7192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/editor.css','wp-includes/blocks/audio/editor.css'),(7193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/editor.min.css','wp-includes/blocks/audio/editor.min.css'),(7194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/style-rtl.css','wp-includes/blocks/audio/style-rtl.css'),(7195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/style-rtl.min.css','wp-includes/blocks/audio/style-rtl.min.css'),(7196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/style.css','wp-includes/blocks/audio/style.css'),(7197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/style.min.css','wp-includes/blocks/audio/style.min.css'),(7198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/theme-rtl.css','wp-includes/blocks/audio/theme-rtl.css'),(7199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/theme-rtl.min.css','wp-includes/blocks/audio/theme-rtl.min.css'),(7200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/theme.css','wp-includes/blocks/audio/theme.css'),(7201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/audio/theme.min.css','wp-includes/blocks/audio/theme.min.css'),(7202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/block.json','wp-includes/blocks/avatar/block.json'),(7203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/editor-rtl.css','wp-includes/blocks/avatar/editor-rtl.css'),(7204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/editor-rtl.min.css','wp-includes/blocks/avatar/editor-rtl.min.css'),(7205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/editor.css','wp-includes/blocks/avatar/editor.css'),(7206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/editor.min.css','wp-includes/blocks/avatar/editor.min.css'),(7207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/style-rtl.css','wp-includes/blocks/avatar/style-rtl.css'),(7208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/style-rtl.min.css','wp-includes/blocks/avatar/style-rtl.min.css'),(7209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/style.css','wp-includes/blocks/avatar/style.css'),(7210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar/style.min.css','wp-includes/blocks/avatar/style.min.css'),(7211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/avatar.php','wp-includes/blocks/avatar.php'),(7212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/block.json','wp-includes/blocks/block/block.json'),(7213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/editor-rtl.css','wp-includes/blocks/block/editor-rtl.css'),(7214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/editor-rtl.min.css','wp-includes/blocks/block/editor-rtl.min.css'),(7215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/editor.css','wp-includes/blocks/block/editor.css'),(7216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block/editor.min.css','wp-includes/blocks/block/editor.min.css'),(7217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/block.php','wp-includes/blocks/block.php'),(7218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/blocks-json.php','wp-includes/blocks/blocks-json.php'),(7219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/block.json','wp-includes/blocks/button/block.json'),(7220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/editor-rtl.css','wp-includes/blocks/button/editor-rtl.css'),(7221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/editor-rtl.min.css','wp-includes/blocks/button/editor-rtl.min.css'),(7222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/editor.css','wp-includes/blocks/button/editor.css'),(7223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/editor.min.css','wp-includes/blocks/button/editor.min.css'),(7224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/style-rtl.css','wp-includes/blocks/button/style-rtl.css'),(7225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/style-rtl.min.css','wp-includes/blocks/button/style-rtl.min.css'),(7226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/style.css','wp-includes/blocks/button/style.css'),(7227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/button/style.min.css','wp-includes/blocks/button/style.min.css'),(7228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/block.json','wp-includes/blocks/buttons/block.json'),(7229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/editor-rtl.css','wp-includes/blocks/buttons/editor-rtl.css'),(7230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/editor-rtl.min.css','wp-includes/blocks/buttons/editor-rtl.min.css'),(7231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/editor.css','wp-includes/blocks/buttons/editor.css'),(7232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/editor.min.css','wp-includes/blocks/buttons/editor.min.css'),(7233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/style-rtl.css','wp-includes/blocks/buttons/style-rtl.css'),(7234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/style-rtl.min.css','wp-includes/blocks/buttons/style-rtl.min.css'),(7235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/style.css','wp-includes/blocks/buttons/style.css'),(7236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/buttons/style.min.css','wp-includes/blocks/buttons/style.min.css'),(7237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/block.json','wp-includes/blocks/calendar/block.json'),(7238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/style-rtl.css','wp-includes/blocks/calendar/style-rtl.css'),(7239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/style-rtl.min.css','wp-includes/blocks/calendar/style-rtl.min.css'),(7240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/style.css','wp-includes/blocks/calendar/style.css'),(7241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar/style.min.css','wp-includes/blocks/calendar/style.min.css'),(7242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/calendar.php','wp-includes/blocks/calendar.php'),(7243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/block.json','wp-includes/blocks/categories/block.json'),(7244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/editor-rtl.css','wp-includes/blocks/categories/editor-rtl.css'),(7245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/editor-rtl.min.css','wp-includes/blocks/categories/editor-rtl.min.css'),(7246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/editor.css','wp-includes/blocks/categories/editor.css'),(7247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/editor.min.css','wp-includes/blocks/categories/editor.min.css'),(7248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/style-rtl.css','wp-includes/blocks/categories/style-rtl.css'),(7249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/style-rtl.min.css','wp-includes/blocks/categories/style-rtl.min.css'),(7250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/style.css','wp-includes/blocks/categories/style.css'),(7251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories/style.min.css','wp-includes/blocks/categories/style.min.css'),(7252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/categories.php','wp-includes/blocks/categories.php'),(7253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/block.json','wp-includes/blocks/code/block.json'),(7254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/editor-rtl.css','wp-includes/blocks/code/editor-rtl.css'),(7255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/editor-rtl.min.css','wp-includes/blocks/code/editor-rtl.min.css'),(7256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/editor.css','wp-includes/blocks/code/editor.css'),(7257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/editor.min.css','wp-includes/blocks/code/editor.min.css'),(7258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/style-rtl.css','wp-includes/blocks/code/style-rtl.css'),(7259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/style-rtl.min.css','wp-includes/blocks/code/style-rtl.min.css'),(7260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/style.css','wp-includes/blocks/code/style.css'),(7261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/style.min.css','wp-includes/blocks/code/style.min.css'),(7262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/theme-rtl.css','wp-includes/blocks/code/theme-rtl.css'),(7263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/theme-rtl.min.css','wp-includes/blocks/code/theme-rtl.min.css'),(7264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/theme.css','wp-includes/blocks/code/theme.css'),(7265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/code/theme.min.css','wp-includes/blocks/code/theme.min.css'),(7266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/column/block.json','wp-includes/blocks/column/block.json'),(7267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/block.json','wp-includes/blocks/columns/block.json'),(7268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/editor-rtl.css','wp-includes/blocks/columns/editor-rtl.css'),(7269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/editor-rtl.min.css','wp-includes/blocks/columns/editor-rtl.min.css'),(7270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/editor.css','wp-includes/blocks/columns/editor.css'),(7271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/editor.min.css','wp-includes/blocks/columns/editor.min.css'),(7272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/style-rtl.css','wp-includes/blocks/columns/style-rtl.css'),(7273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/style-rtl.min.css','wp-includes/blocks/columns/style-rtl.min.css'),(7274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/style.css','wp-includes/blocks/columns/style.css'),(7275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/columns/style.min.css','wp-includes/blocks/columns/style.min.css'),(7276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-author-name/block.json','wp-includes/blocks/comment-author-name/block.json'),(7277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-author-name.php','wp-includes/blocks/comment-author-name.php'),(7278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/block.json','wp-includes/blocks/comment-content/block.json'),(7279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/style-rtl.css','wp-includes/blocks/comment-content/style-rtl.css'),(7280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/style-rtl.min.css','wp-includes/blocks/comment-content/style-rtl.min.css'),(7281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/style.css','wp-includes/blocks/comment-content/style.css'),(7282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content/style.min.css','wp-includes/blocks/comment-content/style.min.css'),(7283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-content.php','wp-includes/blocks/comment-content.php'),(7284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-date/block.json','wp-includes/blocks/comment-date/block.json'),(7285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-date.php','wp-includes/blocks/comment-date.php'),(7286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-edit-link/block.json','wp-includes/blocks/comment-edit-link/block.json'),(7287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-edit-link.php','wp-includes/blocks/comment-edit-link.php'),(7288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-reply-link/block.json','wp-includes/blocks/comment-reply-link/block.json'),(7289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-reply-link.php','wp-includes/blocks/comment-reply-link.php'),(7290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/block.json','wp-includes/blocks/comment-template/block.json'),(7291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/style-rtl.css','wp-includes/blocks/comment-template/style-rtl.css'),(7292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/style-rtl.min.css','wp-includes/blocks/comment-template/style-rtl.min.css'),(7293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/style.css','wp-includes/blocks/comment-template/style.css'),(7294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template/style.min.css','wp-includes/blocks/comment-template/style.min.css'),(7295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comment-template.php','wp-includes/blocks/comment-template.php'),(7296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/block.json','wp-includes/blocks/comments/block.json'),(7297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/editor-rtl.css','wp-includes/blocks/comments/editor-rtl.css'),(7298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/editor-rtl.min.css','wp-includes/blocks/comments/editor-rtl.min.css'),(7299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/editor.css','wp-includes/blocks/comments/editor.css'),(7300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/editor.min.css','wp-includes/blocks/comments/editor.min.css'),(7301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/style-rtl.css','wp-includes/blocks/comments/style-rtl.css'),(7302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/style-rtl.min.css','wp-includes/blocks/comments/style-rtl.min.css'),(7303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/style.css','wp-includes/blocks/comments/style.css'),(7304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments/style.min.css','wp-includes/blocks/comments/style.min.css'),(7305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/block.json','wp-includes/blocks/comments-pagination/block.json'),(7306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/editor-rtl.css','wp-includes/blocks/comments-pagination/editor-rtl.css'),(7307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/editor-rtl.min.css','wp-includes/blocks/comments-pagination/editor-rtl.min.css'),(7308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/editor.css','wp-includes/blocks/comments-pagination/editor.css'),(7309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/editor.min.css','wp-includes/blocks/comments-pagination/editor.min.css'),(7310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/style-rtl.css','wp-includes/blocks/comments-pagination/style-rtl.css'),(7311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/style-rtl.min.css','wp-includes/blocks/comments-pagination/style-rtl.min.css'),(7312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/style.css','wp-includes/blocks/comments-pagination/style.css'),(7313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination/style.min.css','wp-includes/blocks/comments-pagination/style.min.css'),(7314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-next/block.json','wp-includes/blocks/comments-pagination-next/block.json'),(7315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-next.php','wp-includes/blocks/comments-pagination-next.php'),(7316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/block.json','wp-includes/blocks/comments-pagination-numbers/block.json'),(7317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css','wp-includes/blocks/comments-pagination-numbers/editor-rtl.css'),(7318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css','wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css'),(7319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/editor.css','wp-includes/blocks/comments-pagination-numbers/editor.css'),(7320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers/editor.min.css','wp-includes/blocks/comments-pagination-numbers/editor.min.css'),(7321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-numbers.php','wp-includes/blocks/comments-pagination-numbers.php'),(7322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-previous/block.json','wp-includes/blocks/comments-pagination-previous/block.json'),(7323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination-previous.php','wp-includes/blocks/comments-pagination-previous.php'),(7324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-pagination.php','wp-includes/blocks/comments-pagination.php'),(7325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/block.json','wp-includes/blocks/comments-title/block.json'),(7326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/editor-rtl.css','wp-includes/blocks/comments-title/editor-rtl.css'),(7327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/editor-rtl.min.css','wp-includes/blocks/comments-title/editor-rtl.min.css'),(7328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/editor.css','wp-includes/blocks/comments-title/editor.css'),(7329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title/editor.min.css','wp-includes/blocks/comments-title/editor.min.css'),(7330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments-title.php','wp-includes/blocks/comments-title.php'),(7331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/comments.php','wp-includes/blocks/comments.php'),(7332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/block.json','wp-includes/blocks/cover/block.json'),(7333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/editor-rtl.css','wp-includes/blocks/cover/editor-rtl.css'),(7334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/editor-rtl.min.css','wp-includes/blocks/cover/editor-rtl.min.css'),(7335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/editor.css','wp-includes/blocks/cover/editor.css'),(7336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/editor.min.css','wp-includes/blocks/cover/editor.min.css'),(7337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/style-rtl.css','wp-includes/blocks/cover/style-rtl.css'),(7338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/style-rtl.min.css','wp-includes/blocks/cover/style-rtl.min.css'),(7339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/style.css','wp-includes/blocks/cover/style.css'),(7340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover/style.min.css','wp-includes/blocks/cover/style.min.css'),(7341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/cover.php','wp-includes/blocks/cover.php'),(7342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/block.json','wp-includes/blocks/details/block.json'),(7343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/editor-rtl.css','wp-includes/blocks/details/editor-rtl.css'),(7344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/editor-rtl.min.css','wp-includes/blocks/details/editor-rtl.min.css'),(7345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/editor.css','wp-includes/blocks/details/editor.css'),(7346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/editor.min.css','wp-includes/blocks/details/editor.min.css'),(7347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/style-rtl.css','wp-includes/blocks/details/style-rtl.css'),(7348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/style-rtl.min.css','wp-includes/blocks/details/style-rtl.min.css'),(7349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/style.css','wp-includes/blocks/details/style.css'),(7350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/details/style.min.css','wp-includes/blocks/details/style.min.css'),(7351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/block.json','wp-includes/blocks/embed/block.json'),(7352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/editor-rtl.css','wp-includes/blocks/embed/editor-rtl.css'),(7353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/editor-rtl.min.css','wp-includes/blocks/embed/editor-rtl.min.css'),(7354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/editor.css','wp-includes/blocks/embed/editor.css'),(7355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/editor.min.css','wp-includes/blocks/embed/editor.min.css'),(7356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/style-rtl.css','wp-includes/blocks/embed/style-rtl.css'),(7357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/style-rtl.min.css','wp-includes/blocks/embed/style-rtl.min.css'),(7358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/style.css','wp-includes/blocks/embed/style.css'),(7359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/style.min.css','wp-includes/blocks/embed/style.min.css'),(7360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/theme-rtl.css','wp-includes/blocks/embed/theme-rtl.css'),(7361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/theme-rtl.min.css','wp-includes/blocks/embed/theme-rtl.min.css'),(7362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/theme.css','wp-includes/blocks/embed/theme.css'),(7363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/embed/theme.min.css','wp-includes/blocks/embed/theme.min.css'),(7364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/block.json','wp-includes/blocks/file/block.json'),(7365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/editor-rtl.css','wp-includes/blocks/file/editor-rtl.css'),(7366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/editor-rtl.min.css','wp-includes/blocks/file/editor-rtl.min.css'),(7367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/editor.css','wp-includes/blocks/file/editor.css'),(7368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/editor.min.css','wp-includes/blocks/file/editor.min.css'),(7369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/style-rtl.css','wp-includes/blocks/file/style-rtl.css'),(7370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/style-rtl.min.css','wp-includes/blocks/file/style-rtl.min.css'),(7371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/style.css','wp-includes/blocks/file/style.css'),(7372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/style.min.css','wp-includes/blocks/file/style.min.css'),(7373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/view.asset.php','wp-includes/blocks/file/view.asset.php'),(7374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/view.js','wp-includes/blocks/file/view.js'),(7375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/view.min.asset.php','wp-includes/blocks/file/view.min.asset.php'),(7376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file/view.min.js','wp-includes/blocks/file/view.min.js'),(7377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/file.php','wp-includes/blocks/file.php'),(7378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/block.json','wp-includes/blocks/footnotes/block.json'),(7379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/style-rtl.css','wp-includes/blocks/footnotes/style-rtl.css'),(7380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/style-rtl.min.css','wp-includes/blocks/footnotes/style-rtl.min.css'),(7381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/style.css','wp-includes/blocks/footnotes/style.css'),(7382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes/style.min.css','wp-includes/blocks/footnotes/style.min.css'),(7383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/footnotes.php','wp-includes/blocks/footnotes.php'),(7384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/block.json','wp-includes/blocks/freeform/block.json'),(7385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/editor-rtl.css','wp-includes/blocks/freeform/editor-rtl.css'),(7386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/editor-rtl.min.css','wp-includes/blocks/freeform/editor-rtl.min.css'),(7387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/editor.css','wp-includes/blocks/freeform/editor.css'),(7388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/freeform/editor.min.css','wp-includes/blocks/freeform/editor.min.css'),(7389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/block.json','wp-includes/blocks/gallery/block.json'),(7390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/editor-rtl.css','wp-includes/blocks/gallery/editor-rtl.css'),(7391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/editor-rtl.min.css','wp-includes/blocks/gallery/editor-rtl.min.css'),(7392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/editor.css','wp-includes/blocks/gallery/editor.css'),(7393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/editor.min.css','wp-includes/blocks/gallery/editor.min.css'),(7394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/style-rtl.css','wp-includes/blocks/gallery/style-rtl.css'),(7395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/style-rtl.min.css','wp-includes/blocks/gallery/style-rtl.min.css'),(7396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/style.css','wp-includes/blocks/gallery/style.css'),(7397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/style.min.css','wp-includes/blocks/gallery/style.min.css'),(7398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/theme-rtl.css','wp-includes/blocks/gallery/theme-rtl.css'),(7399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/theme-rtl.min.css','wp-includes/blocks/gallery/theme-rtl.min.css'),(7400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/theme.css','wp-includes/blocks/gallery/theme.css'),(7401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery/theme.min.css','wp-includes/blocks/gallery/theme.min.css'),(7402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/gallery.php','wp-includes/blocks/gallery.php'),(7403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/block.json','wp-includes/blocks/group/block.json'),(7404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/editor-rtl.css','wp-includes/blocks/group/editor-rtl.css'),(7405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/editor-rtl.min.css','wp-includes/blocks/group/editor-rtl.min.css'),(7406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/editor.css','wp-includes/blocks/group/editor.css'),(7407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/editor.min.css','wp-includes/blocks/group/editor.min.css'),(7408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/style-rtl.css','wp-includes/blocks/group/style-rtl.css'),(7409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/style-rtl.min.css','wp-includes/blocks/group/style-rtl.min.css'),(7410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/style.css','wp-includes/blocks/group/style.css'),(7411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/style.min.css','wp-includes/blocks/group/style.min.css'),(7412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/theme-rtl.css','wp-includes/blocks/group/theme-rtl.css'),(7413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/theme-rtl.min.css','wp-includes/blocks/group/theme-rtl.min.css'),(7414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/theme.css','wp-includes/blocks/group/theme.css'),(7415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/group/theme.min.css','wp-includes/blocks/group/theme.min.css'),(7416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/block.json','wp-includes/blocks/heading/block.json'),(7417,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/style-rtl.css','wp-includes/blocks/heading/style-rtl.css'),(7418,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/style-rtl.min.css','wp-includes/blocks/heading/style-rtl.min.css'),(7419,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/style.css','wp-includes/blocks/heading/style.css'),(7420,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading/style.min.css','wp-includes/blocks/heading/style.min.css'),(7421,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/heading.php','wp-includes/blocks/heading.php'),(7422,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/home-link/block.json','wp-includes/blocks/home-link/block.json'),(7423,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/home-link.php','wp-includes/blocks/home-link.php'),(7424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/block.json','wp-includes/blocks/html/block.json'),(7425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/editor-rtl.css','wp-includes/blocks/html/editor-rtl.css'),(7426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/editor-rtl.min.css','wp-includes/blocks/html/editor-rtl.min.css'),(7427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/editor.css','wp-includes/blocks/html/editor.css'),(7428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/html/editor.min.css','wp-includes/blocks/html/editor.min.css'),(7429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/block.json','wp-includes/blocks/image/block.json'),(7430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/editor-rtl.css','wp-includes/blocks/image/editor-rtl.css'),(7431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/editor-rtl.min.css','wp-includes/blocks/image/editor-rtl.min.css'),(7432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/editor.css','wp-includes/blocks/image/editor.css'),(7433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/editor.min.css','wp-includes/blocks/image/editor.min.css'),(7434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/style-rtl.css','wp-includes/blocks/image/style-rtl.css'),(7435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/style-rtl.min.css','wp-includes/blocks/image/style-rtl.min.css'),(7436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/style.css','wp-includes/blocks/image/style.css'),(7437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/style.min.css','wp-includes/blocks/image/style.min.css'),(7438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/theme-rtl.css','wp-includes/blocks/image/theme-rtl.css'),(7439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/theme-rtl.min.css','wp-includes/blocks/image/theme-rtl.min.css'),(7440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/theme.css','wp-includes/blocks/image/theme.css'),(7441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/theme.min.css','wp-includes/blocks/image/theme.min.css'),(7442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/view.asset.php','wp-includes/blocks/image/view.asset.php'),(7443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/view.js','wp-includes/blocks/image/view.js'),(7444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/view.min.asset.php','wp-includes/blocks/image/view.min.asset.php'),(7445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image/view.min.js','wp-includes/blocks/image/view.min.js'),(7446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/image.php','wp-includes/blocks/image.php'),(7447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/index.php','wp-includes/blocks/index.php'),(7448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/block.json','wp-includes/blocks/latest-comments/block.json'),(7449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/style-rtl.css','wp-includes/blocks/latest-comments/style-rtl.css'),(7450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/style-rtl.min.css','wp-includes/blocks/latest-comments/style-rtl.min.css'),(7451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/style.css','wp-includes/blocks/latest-comments/style.css'),(7452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments/style.min.css','wp-includes/blocks/latest-comments/style.min.css'),(7453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-comments.php','wp-includes/blocks/latest-comments.php'),(7454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/block.json','wp-includes/blocks/latest-posts/block.json'),(7455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/editor-rtl.css','wp-includes/blocks/latest-posts/editor-rtl.css'),(7456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/editor-rtl.min.css','wp-includes/blocks/latest-posts/editor-rtl.min.css'),(7457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/editor.css','wp-includes/blocks/latest-posts/editor.css'),(7458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/editor.min.css','wp-includes/blocks/latest-posts/editor.min.css'),(7459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/style-rtl.css','wp-includes/blocks/latest-posts/style-rtl.css'),(7460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/style-rtl.min.css','wp-includes/blocks/latest-posts/style-rtl.min.css'),(7461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/style.css','wp-includes/blocks/latest-posts/style.css'),(7462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts/style.min.css','wp-includes/blocks/latest-posts/style.min.css'),(7463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/latest-posts.php','wp-includes/blocks/latest-posts.php'),(7464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/legacy-widget/block.json','wp-includes/blocks/legacy-widget/block.json'),(7465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/legacy-widget.php','wp-includes/blocks/legacy-widget.php'),(7466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/block.json','wp-includes/blocks/list/block.json'),(7467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/style-rtl.css','wp-includes/blocks/list/style-rtl.css'),(7468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/style-rtl.min.css','wp-includes/blocks/list/style-rtl.min.css'),(7469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/style.css','wp-includes/blocks/list/style.css'),(7470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list/style.min.css','wp-includes/blocks/list/style.min.css'),(7471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/list-item/block.json','wp-includes/blocks/list-item/block.json'),(7472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/loginout/block.json','wp-includes/blocks/loginout/block.json'),(7473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/loginout.php','wp-includes/blocks/loginout.php'),(7474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/block.json','wp-includes/blocks/media-text/block.json'),(7475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/editor-rtl.css','wp-includes/blocks/media-text/editor-rtl.css'),(7476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/editor-rtl.min.css','wp-includes/blocks/media-text/editor-rtl.min.css'),(7477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/editor.css','wp-includes/blocks/media-text/editor.css'),(7478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/editor.min.css','wp-includes/blocks/media-text/editor.min.css'),(7479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/style-rtl.css','wp-includes/blocks/media-text/style-rtl.css'),(7480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/style-rtl.min.css','wp-includes/blocks/media-text/style-rtl.min.css'),(7481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/style.css','wp-includes/blocks/media-text/style.css'),(7482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/media-text/style.min.css','wp-includes/blocks/media-text/style.min.css'),(7483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/missing/block.json','wp-includes/blocks/missing/block.json'),(7484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/block.json','wp-includes/blocks/more/block.json'),(7485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/editor-rtl.css','wp-includes/blocks/more/editor-rtl.css'),(7486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/editor-rtl.min.css','wp-includes/blocks/more/editor-rtl.min.css'),(7487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/editor.css','wp-includes/blocks/more/editor.css'),(7488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/more/editor.min.css','wp-includes/blocks/more/editor.min.css'),(7489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/block.json','wp-includes/blocks/navigation/block.json'),(7490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/editor-rtl.css','wp-includes/blocks/navigation/editor-rtl.css'),(7491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/editor-rtl.min.css','wp-includes/blocks/navigation/editor-rtl.min.css'),(7492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/editor.css','wp-includes/blocks/navigation/editor.css'),(7493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/editor.min.css','wp-includes/blocks/navigation/editor.min.css'),(7494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/style-rtl.css','wp-includes/blocks/navigation/style-rtl.css'),(7495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/style-rtl.min.css','wp-includes/blocks/navigation/style-rtl.min.css'),(7496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/style.css','wp-includes/blocks/navigation/style.css'),(7497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/style.min.css','wp-includes/blocks/navigation/style.min.css'),(7498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view-modal.asset.php','wp-includes/blocks/navigation/view-modal.asset.php'),(7499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view-modal.min.asset.php','wp-includes/blocks/navigation/view-modal.min.asset.php'),(7500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view.asset.php','wp-includes/blocks/navigation/view.asset.php'),(7501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view.js','wp-includes/blocks/navigation/view.js'),(7502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view.min.asset.php','wp-includes/blocks/navigation/view.min.asset.php'),(7503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation/view.min.js','wp-includes/blocks/navigation/view.min.js'),(7504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/block.json','wp-includes/blocks/navigation-link/block.json'),(7505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/editor-rtl.css','wp-includes/blocks/navigation-link/editor-rtl.css'),(7506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/editor-rtl.min.css','wp-includes/blocks/navigation-link/editor-rtl.min.css'),(7507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/editor.css','wp-includes/blocks/navigation-link/editor.css'),(7508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/editor.min.css','wp-includes/blocks/navigation-link/editor.min.css'),(7509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/style-rtl.css','wp-includes/blocks/navigation-link/style-rtl.css'),(7510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/style-rtl.min.css','wp-includes/blocks/navigation-link/style-rtl.min.css'),(7511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/style.css','wp-includes/blocks/navigation-link/style.css'),(7512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link/style.min.css','wp-includes/blocks/navigation-link/style.min.css'),(7513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-link.php','wp-includes/blocks/navigation-link.php'),(7514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/block.json','wp-includes/blocks/navigation-submenu/block.json'),(7515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/editor-rtl.css','wp-includes/blocks/navigation-submenu/editor-rtl.css'),(7516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/editor-rtl.min.css','wp-includes/blocks/navigation-submenu/editor-rtl.min.css'),(7517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/editor.css','wp-includes/blocks/navigation-submenu/editor.css'),(7518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu/editor.min.css','wp-includes/blocks/navigation-submenu/editor.min.css'),(7519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation-submenu.php','wp-includes/blocks/navigation-submenu.php'),(7520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/navigation.php','wp-includes/blocks/navigation.php'),(7521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/block.json','wp-includes/blocks/nextpage/block.json'),(7522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/editor-rtl.css','wp-includes/blocks/nextpage/editor-rtl.css'),(7523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/editor-rtl.min.css','wp-includes/blocks/nextpage/editor-rtl.min.css'),(7524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/editor.css','wp-includes/blocks/nextpage/editor.css'),(7525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/nextpage/editor.min.css','wp-includes/blocks/nextpage/editor.min.css'),(7526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/block.json','wp-includes/blocks/page-list/block.json'),(7527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/editor-rtl.css','wp-includes/blocks/page-list/editor-rtl.css'),(7528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/editor-rtl.min.css','wp-includes/blocks/page-list/editor-rtl.min.css'),(7529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/editor.css','wp-includes/blocks/page-list/editor.css'),(7530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/editor.min.css','wp-includes/blocks/page-list/editor.min.css'),(7531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/style-rtl.css','wp-includes/blocks/page-list/style-rtl.css'),(7532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/style-rtl.min.css','wp-includes/blocks/page-list/style-rtl.min.css'),(7533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/style.css','wp-includes/blocks/page-list/style.css'),(7534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list/style.min.css','wp-includes/blocks/page-list/style.min.css'),(7535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list-item/block.json','wp-includes/blocks/page-list-item/block.json'),(7536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list-item.php','wp-includes/blocks/page-list-item.php'),(7537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/page-list.php','wp-includes/blocks/page-list.php'),(7538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/block.json','wp-includes/blocks/paragraph/block.json'),(7539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/editor-rtl.css','wp-includes/blocks/paragraph/editor-rtl.css'),(7540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/editor-rtl.min.css','wp-includes/blocks/paragraph/editor-rtl.min.css'),(7541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/editor.css','wp-includes/blocks/paragraph/editor.css'),(7542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/editor.min.css','wp-includes/blocks/paragraph/editor.min.css'),(7543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/style-rtl.css','wp-includes/blocks/paragraph/style-rtl.css'),(7544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/style-rtl.min.css','wp-includes/blocks/paragraph/style-rtl.min.css'),(7545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/style.css','wp-includes/blocks/paragraph/style.css'),(7546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/paragraph/style.min.css','wp-includes/blocks/paragraph/style.min.css'),(7547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pattern/block.json','wp-includes/blocks/pattern/block.json'),(7548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pattern.php','wp-includes/blocks/pattern.php'),(7549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/block.json','wp-includes/blocks/post-author/block.json'),(7550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/style-rtl.css','wp-includes/blocks/post-author/style-rtl.css'),(7551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/style-rtl.min.css','wp-includes/blocks/post-author/style-rtl.min.css'),(7552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/style.css','wp-includes/blocks/post-author/style.css'),(7553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author/style.min.css','wp-includes/blocks/post-author/style.min.css'),(7554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author-biography/block.json','wp-includes/blocks/post-author-biography/block.json'),(7555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author-biography.php','wp-includes/blocks/post-author-biography.php'),(7556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author-name/block.json','wp-includes/blocks/post-author-name/block.json'),(7557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author-name.php','wp-includes/blocks/post-author-name.php'),(7558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-author.php','wp-includes/blocks/post-author.php'),(7559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/block.json','wp-includes/blocks/post-comments-form/block.json'),(7560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/editor-rtl.css','wp-includes/blocks/post-comments-form/editor-rtl.css'),(7561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/editor-rtl.min.css','wp-includes/blocks/post-comments-form/editor-rtl.min.css'),(7562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/editor.css','wp-includes/blocks/post-comments-form/editor.css'),(7563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/editor.min.css','wp-includes/blocks/post-comments-form/editor.min.css'),(7564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/style-rtl.css','wp-includes/blocks/post-comments-form/style-rtl.css'),(7565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/style-rtl.min.css','wp-includes/blocks/post-comments-form/style-rtl.min.css'),(7566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/style.css','wp-includes/blocks/post-comments-form/style.css'),(7567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form/style.min.css','wp-includes/blocks/post-comments-form/style.min.css'),(7568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-comments-form.php','wp-includes/blocks/post-comments-form.php'),(7569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/block.json','wp-includes/blocks/post-content/block.json'),(7570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/editor-rtl.css','wp-includes/blocks/post-content/editor-rtl.css'),(7571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/editor-rtl.min.css','wp-includes/blocks/post-content/editor-rtl.min.css'),(7572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/editor.css','wp-includes/blocks/post-content/editor.css'),(7573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content/editor.min.css','wp-includes/blocks/post-content/editor.min.css'),(7574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-content.php','wp-includes/blocks/post-content.php'),(7575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/block.json','wp-includes/blocks/post-date/block.json'),(7576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/style-rtl.css','wp-includes/blocks/post-date/style-rtl.css'),(7577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/style-rtl.min.css','wp-includes/blocks/post-date/style-rtl.min.css'),(7578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/style.css','wp-includes/blocks/post-date/style.css'),(7579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date/style.min.css','wp-includes/blocks/post-date/style.min.css'),(7580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-date.php','wp-includes/blocks/post-date.php'),(7581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/block.json','wp-includes/blocks/post-excerpt/block.json'),(7582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/editor-rtl.css','wp-includes/blocks/post-excerpt/editor-rtl.css'),(7583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/editor-rtl.min.css','wp-includes/blocks/post-excerpt/editor-rtl.min.css'),(7584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/editor.css','wp-includes/blocks/post-excerpt/editor.css'),(7585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/editor.min.css','wp-includes/blocks/post-excerpt/editor.min.css'),(7586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/style-rtl.css','wp-includes/blocks/post-excerpt/style-rtl.css'),(7587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/style-rtl.min.css','wp-includes/blocks/post-excerpt/style-rtl.min.css'),(7588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/style.css','wp-includes/blocks/post-excerpt/style.css'),(7589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt/style.min.css','wp-includes/blocks/post-excerpt/style.min.css'),(7590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-excerpt.php','wp-includes/blocks/post-excerpt.php'),(7591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/block.json','wp-includes/blocks/post-featured-image/block.json'),(7592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/editor-rtl.css','wp-includes/blocks/post-featured-image/editor-rtl.css'),(7593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/editor-rtl.min.css','wp-includes/blocks/post-featured-image/editor-rtl.min.css'),(7594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/editor.css','wp-includes/blocks/post-featured-image/editor.css'),(7595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/editor.min.css','wp-includes/blocks/post-featured-image/editor.min.css'),(7596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/style-rtl.css','wp-includes/blocks/post-featured-image/style-rtl.css'),(7597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/style-rtl.min.css','wp-includes/blocks/post-featured-image/style-rtl.min.css'),(7598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/style.css','wp-includes/blocks/post-featured-image/style.css'),(7599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image/style.min.css','wp-includes/blocks/post-featured-image/style.min.css'),(7600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-featured-image.php','wp-includes/blocks/post-featured-image.php'),(7601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/block.json','wp-includes/blocks/post-navigation-link/block.json'),(7602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/style-rtl.css','wp-includes/blocks/post-navigation-link/style-rtl.css'),(7603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/style-rtl.min.css','wp-includes/blocks/post-navigation-link/style-rtl.min.css'),(7604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/style.css','wp-includes/blocks/post-navigation-link/style.css'),(7605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link/style.min.css','wp-includes/blocks/post-navigation-link/style.min.css'),(7606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-navigation-link.php','wp-includes/blocks/post-navigation-link.php'),(7607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/block.json','wp-includes/blocks/post-template/block.json'),(7608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/editor-rtl.css','wp-includes/blocks/post-template/editor-rtl.css'),(7609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/editor-rtl.min.css','wp-includes/blocks/post-template/editor-rtl.min.css'),(7610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/editor.css','wp-includes/blocks/post-template/editor.css'),(7611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/editor.min.css','wp-includes/blocks/post-template/editor.min.css'),(7612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/style-rtl.css','wp-includes/blocks/post-template/style-rtl.css'),(7613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/style-rtl.min.css','wp-includes/blocks/post-template/style-rtl.min.css'),(7614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/style.css','wp-includes/blocks/post-template/style.css'),(7615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template/style.min.css','wp-includes/blocks/post-template/style.min.css'),(7616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-template.php','wp-includes/blocks/post-template.php'),(7617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/block.json','wp-includes/blocks/post-terms/block.json'),(7618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/style-rtl.css','wp-includes/blocks/post-terms/style-rtl.css'),(7619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/style-rtl.min.css','wp-includes/blocks/post-terms/style-rtl.min.css'),(7620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/style.css','wp-includes/blocks/post-terms/style.css'),(7621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms/style.min.css','wp-includes/blocks/post-terms/style.min.css'),(7622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-terms.php','wp-includes/blocks/post-terms.php'),(7623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/block.json','wp-includes/blocks/post-title/block.json'),(7624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/style-rtl.css','wp-includes/blocks/post-title/style-rtl.css'),(7625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/style-rtl.min.css','wp-includes/blocks/post-title/style-rtl.min.css'),(7626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/style.css','wp-includes/blocks/post-title/style.css'),(7627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title/style.min.css','wp-includes/blocks/post-title/style.min.css'),(7628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/post-title.php','wp-includes/blocks/post-title.php'),(7629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/block.json','wp-includes/blocks/preformatted/block.json'),(7630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/style-rtl.css','wp-includes/blocks/preformatted/style-rtl.css'),(7631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/style-rtl.min.css','wp-includes/blocks/preformatted/style-rtl.min.css'),(7632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/style.css','wp-includes/blocks/preformatted/style.css'),(7633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/preformatted/style.min.css','wp-includes/blocks/preformatted/style.min.css'),(7634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/block.json','wp-includes/blocks/pullquote/block.json'),(7635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/editor-rtl.css','wp-includes/blocks/pullquote/editor-rtl.css'),(7636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/editor-rtl.min.css','wp-includes/blocks/pullquote/editor-rtl.min.css'),(7637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/editor.css','wp-includes/blocks/pullquote/editor.css'),(7638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/editor.min.css','wp-includes/blocks/pullquote/editor.min.css'),(7639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/style-rtl.css','wp-includes/blocks/pullquote/style-rtl.css'),(7640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/style-rtl.min.css','wp-includes/blocks/pullquote/style-rtl.min.css'),(7641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/style.css','wp-includes/blocks/pullquote/style.css'),(7642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/style.min.css','wp-includes/blocks/pullquote/style.min.css'),(7643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/theme-rtl.css','wp-includes/blocks/pullquote/theme-rtl.css'),(7644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/theme-rtl.min.css','wp-includes/blocks/pullquote/theme-rtl.min.css'),(7645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/theme.css','wp-includes/blocks/pullquote/theme.css'),(7646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/pullquote/theme.min.css','wp-includes/blocks/pullquote/theme.min.css'),(7647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/block.json','wp-includes/blocks/query/block.json'),(7648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/editor-rtl.css','wp-includes/blocks/query/editor-rtl.css'),(7649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/editor-rtl.min.css','wp-includes/blocks/query/editor-rtl.min.css'),(7650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/editor.css','wp-includes/blocks/query/editor.css'),(7651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/editor.min.css','wp-includes/blocks/query/editor.min.css'),(7652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/view.asset.php','wp-includes/blocks/query/view.asset.php'),(7653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/view.js','wp-includes/blocks/query/view.js'),(7654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/view.min.asset.php','wp-includes/blocks/query/view.min.asset.php'),(7655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query/view.min.js','wp-includes/blocks/query/view.min.js'),(7656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-no-results/block.json','wp-includes/blocks/query-no-results/block.json'),(7657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-no-results.php','wp-includes/blocks/query-no-results.php'),(7658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/block.json','wp-includes/blocks/query-pagination/block.json'),(7659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/editor-rtl.css','wp-includes/blocks/query-pagination/editor-rtl.css'),(7660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/editor-rtl.min.css','wp-includes/blocks/query-pagination/editor-rtl.min.css'),(7661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/editor.css','wp-includes/blocks/query-pagination/editor.css'),(7662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/editor.min.css','wp-includes/blocks/query-pagination/editor.min.css'),(7663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/style-rtl.css','wp-includes/blocks/query-pagination/style-rtl.css'),(7664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/style-rtl.min.css','wp-includes/blocks/query-pagination/style-rtl.min.css'),(7665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/style.css','wp-includes/blocks/query-pagination/style.css'),(7666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination/style.min.css','wp-includes/blocks/query-pagination/style.min.css'),(7667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-next/block.json','wp-includes/blocks/query-pagination-next/block.json'),(7668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-next.php','wp-includes/blocks/query-pagination-next.php'),(7669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/block.json','wp-includes/blocks/query-pagination-numbers/block.json'),(7670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/editor-rtl.css','wp-includes/blocks/query-pagination-numbers/editor-rtl.css'),(7671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css','wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css'),(7672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/editor.css','wp-includes/blocks/query-pagination-numbers/editor.css'),(7673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers/editor.min.css','wp-includes/blocks/query-pagination-numbers/editor.min.css'),(7674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-numbers.php','wp-includes/blocks/query-pagination-numbers.php'),(7675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-previous/block.json','wp-includes/blocks/query-pagination-previous/block.json'),(7676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination-previous.php','wp-includes/blocks/query-pagination-previous.php'),(7677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-pagination.php','wp-includes/blocks/query-pagination.php'),(7678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/block.json','wp-includes/blocks/query-title/block.json'),(7679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/style-rtl.css','wp-includes/blocks/query-title/style-rtl.css'),(7680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/style-rtl.min.css','wp-includes/blocks/query-title/style-rtl.min.css'),(7681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/style.css','wp-includes/blocks/query-title/style.css'),(7682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title/style.min.css','wp-includes/blocks/query-title/style.min.css'),(7683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query-title.php','wp-includes/blocks/query-title.php'),(7684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/query.php','wp-includes/blocks/query.php'),(7685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/block.json','wp-includes/blocks/quote/block.json'),(7686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/style-rtl.css','wp-includes/blocks/quote/style-rtl.css'),(7687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/style-rtl.min.css','wp-includes/blocks/quote/style-rtl.min.css'),(7688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/style.css','wp-includes/blocks/quote/style.css'),(7689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/style.min.css','wp-includes/blocks/quote/style.min.css'),(7690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/theme-rtl.css','wp-includes/blocks/quote/theme-rtl.css'),(7691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/theme-rtl.min.css','wp-includes/blocks/quote/theme-rtl.min.css'),(7692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/theme.css','wp-includes/blocks/quote/theme.css'),(7693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/quote/theme.min.css','wp-includes/blocks/quote/theme.min.css'),(7694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/block.json','wp-includes/blocks/read-more/block.json'),(7695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/style-rtl.css','wp-includes/blocks/read-more/style-rtl.css'),(7696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/style-rtl.min.css','wp-includes/blocks/read-more/style-rtl.min.css'),(7697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/style.css','wp-includes/blocks/read-more/style.css'),(7698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more/style.min.css','wp-includes/blocks/read-more/style.min.css'),(7699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/read-more.php','wp-includes/blocks/read-more.php'),(7700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/require-dynamic-blocks.php','wp-includes/blocks/require-dynamic-blocks.php'),(7701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/require-static-blocks.php','wp-includes/blocks/require-static-blocks.php'),(7702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/block.json','wp-includes/blocks/rss/block.json'),(7703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/editor-rtl.css','wp-includes/blocks/rss/editor-rtl.css'),(7704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/editor-rtl.min.css','wp-includes/blocks/rss/editor-rtl.min.css'),(7705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/editor.css','wp-includes/blocks/rss/editor.css'),(7706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/editor.min.css','wp-includes/blocks/rss/editor.min.css'),(7707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/style-rtl.css','wp-includes/blocks/rss/style-rtl.css'),(7708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/style-rtl.min.css','wp-includes/blocks/rss/style-rtl.min.css'),(7709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/style.css','wp-includes/blocks/rss/style.css'),(7710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss/style.min.css','wp-includes/blocks/rss/style.min.css'),(7711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/rss.php','wp-includes/blocks/rss.php'),(7712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/block.json','wp-includes/blocks/search/block.json'),(7713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/editor-rtl.css','wp-includes/blocks/search/editor-rtl.css'),(7714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/editor-rtl.min.css','wp-includes/blocks/search/editor-rtl.min.css'),(7715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/editor.css','wp-includes/blocks/search/editor.css'),(7716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/editor.min.css','wp-includes/blocks/search/editor.min.css'),(7717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/style-rtl.css','wp-includes/blocks/search/style-rtl.css'),(7718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/style-rtl.min.css','wp-includes/blocks/search/style-rtl.min.css'),(7719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/style.css','wp-includes/blocks/search/style.css'),(7720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/style.min.css','wp-includes/blocks/search/style.min.css'),(7721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/theme-rtl.css','wp-includes/blocks/search/theme-rtl.css'),(7722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/theme-rtl.min.css','wp-includes/blocks/search/theme-rtl.min.css'),(7723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/theme.css','wp-includes/blocks/search/theme.css'),(7724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/theme.min.css','wp-includes/blocks/search/theme.min.css'),(7725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/view.asset.php','wp-includes/blocks/search/view.asset.php'),(7726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/view.js','wp-includes/blocks/search/view.js'),(7727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/view.min.asset.php','wp-includes/blocks/search/view.min.asset.php'),(7728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search/view.min.js','wp-includes/blocks/search/view.min.js'),(7729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/search.php','wp-includes/blocks/search.php'),(7730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/block.json','wp-includes/blocks/separator/block.json'),(7731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/editor-rtl.css','wp-includes/blocks/separator/editor-rtl.css'),(7732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/editor-rtl.min.css','wp-includes/blocks/separator/editor-rtl.min.css'),(7733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/editor.css','wp-includes/blocks/separator/editor.css'),(7734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/editor.min.css','wp-includes/blocks/separator/editor.min.css'),(7735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/style-rtl.css','wp-includes/blocks/separator/style-rtl.css'),(7736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/style-rtl.min.css','wp-includes/blocks/separator/style-rtl.min.css'),(7737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/style.css','wp-includes/blocks/separator/style.css'),(7738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/style.min.css','wp-includes/blocks/separator/style.min.css'),(7739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/theme-rtl.css','wp-includes/blocks/separator/theme-rtl.css'),(7740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/theme-rtl.min.css','wp-includes/blocks/separator/theme-rtl.min.css'),(7741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/theme.css','wp-includes/blocks/separator/theme.css'),(7742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/separator/theme.min.css','wp-includes/blocks/separator/theme.min.css'),(7743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/block.json','wp-includes/blocks/shortcode/block.json'),(7744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/editor-rtl.css','wp-includes/blocks/shortcode/editor-rtl.css'),(7745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/editor-rtl.min.css','wp-includes/blocks/shortcode/editor-rtl.min.css'),(7746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/editor.css','wp-includes/blocks/shortcode/editor.css'),(7747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode/editor.min.css','wp-includes/blocks/shortcode/editor.min.css'),(7748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/shortcode.php','wp-includes/blocks/shortcode.php'),(7749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/block.json','wp-includes/blocks/site-logo/block.json'),(7750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/editor-rtl.css','wp-includes/blocks/site-logo/editor-rtl.css'),(7751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/editor-rtl.min.css','wp-includes/blocks/site-logo/editor-rtl.min.css'),(7752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/editor.css','wp-includes/blocks/site-logo/editor.css'),(7753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/editor.min.css','wp-includes/blocks/site-logo/editor.min.css'),(7754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/style-rtl.css','wp-includes/blocks/site-logo/style-rtl.css'),(7755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/style-rtl.min.css','wp-includes/blocks/site-logo/style-rtl.min.css'),(7756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/style.css','wp-includes/blocks/site-logo/style.css'),(7757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo/style.min.css','wp-includes/blocks/site-logo/style.min.css'),(7758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-logo.php','wp-includes/blocks/site-logo.php'),(7759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/block.json','wp-includes/blocks/site-tagline/block.json'),(7760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/editor-rtl.css','wp-includes/blocks/site-tagline/editor-rtl.css'),(7761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/editor-rtl.min.css','wp-includes/blocks/site-tagline/editor-rtl.min.css'),(7762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/editor.css','wp-includes/blocks/site-tagline/editor.css'),(7763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline/editor.min.css','wp-includes/blocks/site-tagline/editor.min.css'),(7764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-tagline.php','wp-includes/blocks/site-tagline.php'),(7765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/block.json','wp-includes/blocks/site-title/block.json'),(7766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/editor-rtl.css','wp-includes/blocks/site-title/editor-rtl.css'),(7767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/editor-rtl.min.css','wp-includes/blocks/site-title/editor-rtl.min.css'),(7768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/editor.css','wp-includes/blocks/site-title/editor.css'),(7769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/editor.min.css','wp-includes/blocks/site-title/editor.min.css'),(7770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/style-rtl.css','wp-includes/blocks/site-title/style-rtl.css'),(7771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/style-rtl.min.css','wp-includes/blocks/site-title/style-rtl.min.css'),(7772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/style.css','wp-includes/blocks/site-title/style.css'),(7773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title/style.min.css','wp-includes/blocks/site-title/style.min.css'),(7774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/site-title.php','wp-includes/blocks/site-title.php'),(7775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/block.json','wp-includes/blocks/social-link/block.json'),(7776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/editor-rtl.css','wp-includes/blocks/social-link/editor-rtl.css'),(7777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/editor-rtl.min.css','wp-includes/blocks/social-link/editor-rtl.min.css'),(7778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/editor.css','wp-includes/blocks/social-link/editor.css'),(7779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link/editor.min.css','wp-includes/blocks/social-link/editor.min.css'),(7780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-link.php','wp-includes/blocks/social-link.php'),(7781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/block.json','wp-includes/blocks/social-links/block.json'),(7782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/editor-rtl.css','wp-includes/blocks/social-links/editor-rtl.css'),(7783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/editor-rtl.min.css','wp-includes/blocks/social-links/editor-rtl.min.css'),(7784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/editor.css','wp-includes/blocks/social-links/editor.css'),(7785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/editor.min.css','wp-includes/blocks/social-links/editor.min.css'),(7786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/style-rtl.css','wp-includes/blocks/social-links/style-rtl.css'),(7787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/style-rtl.min.css','wp-includes/blocks/social-links/style-rtl.min.css'),(7788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/style.css','wp-includes/blocks/social-links/style.css'),(7789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/social-links/style.min.css','wp-includes/blocks/social-links/style.min.css'),(7790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/block.json','wp-includes/blocks/spacer/block.json'),(7791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/editor-rtl.css','wp-includes/blocks/spacer/editor-rtl.css'),(7792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/editor-rtl.min.css','wp-includes/blocks/spacer/editor-rtl.min.css'),(7793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/editor.css','wp-includes/blocks/spacer/editor.css'),(7794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/editor.min.css','wp-includes/blocks/spacer/editor.min.css'),(7795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/style-rtl.css','wp-includes/blocks/spacer/style-rtl.css'),(7796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/style-rtl.min.css','wp-includes/blocks/spacer/style-rtl.min.css'),(7797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/style.css','wp-includes/blocks/spacer/style.css'),(7798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/spacer/style.min.css','wp-includes/blocks/spacer/style.min.css'),(7799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/block.json','wp-includes/blocks/table/block.json'),(7800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/editor-rtl.css','wp-includes/blocks/table/editor-rtl.css'),(7801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/editor-rtl.min.css','wp-includes/blocks/table/editor-rtl.min.css'),(7802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/editor.css','wp-includes/blocks/table/editor.css'),(7803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/editor.min.css','wp-includes/blocks/table/editor.min.css'),(7804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/style-rtl.css','wp-includes/blocks/table/style-rtl.css'),(7805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/style-rtl.min.css','wp-includes/blocks/table/style-rtl.min.css'),(7806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/style.css','wp-includes/blocks/table/style.css'),(7807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/style.min.css','wp-includes/blocks/table/style.min.css'),(7808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/theme-rtl.css','wp-includes/blocks/table/theme-rtl.css'),(7809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/theme-rtl.min.css','wp-includes/blocks/table/theme-rtl.min.css'),(7810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/theme.css','wp-includes/blocks/table/theme.css'),(7811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/table/theme.min.css','wp-includes/blocks/table/theme.min.css'),(7812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/block.json','wp-includes/blocks/tag-cloud/block.json'),(7813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/style-rtl.css','wp-includes/blocks/tag-cloud/style-rtl.css'),(7814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/style-rtl.min.css','wp-includes/blocks/tag-cloud/style-rtl.min.css'),(7815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/style.css','wp-includes/blocks/tag-cloud/style.css'),(7816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud/style.min.css','wp-includes/blocks/tag-cloud/style.min.css'),(7817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/tag-cloud.php','wp-includes/blocks/tag-cloud.php'),(7818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/block.json','wp-includes/blocks/template-part/block.json'),(7819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/editor-rtl.css','wp-includes/blocks/template-part/editor-rtl.css'),(7820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/editor-rtl.min.css','wp-includes/blocks/template-part/editor-rtl.min.css'),(7821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/editor.css','wp-includes/blocks/template-part/editor.css'),(7822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/editor.min.css','wp-includes/blocks/template-part/editor.min.css'),(7823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/theme-rtl.css','wp-includes/blocks/template-part/theme-rtl.css'),(7824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/theme-rtl.min.css','wp-includes/blocks/template-part/theme-rtl.min.css'),(7825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/theme.css','wp-includes/blocks/template-part/theme.css'),(7826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part/theme.min.css','wp-includes/blocks/template-part/theme.min.css'),(7827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/template-part.php','wp-includes/blocks/template-part.php'),(7828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/block.json','wp-includes/blocks/term-description/block.json'),(7829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/style-rtl.css','wp-includes/blocks/term-description/style-rtl.css'),(7830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/style-rtl.min.css','wp-includes/blocks/term-description/style-rtl.min.css'),(7831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/style.css','wp-includes/blocks/term-description/style.css'),(7832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description/style.min.css','wp-includes/blocks/term-description/style.min.css'),(7833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/term-description.php','wp-includes/blocks/term-description.php'),(7834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/block.json','wp-includes/blocks/text-columns/block.json'),(7835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/editor-rtl.css','wp-includes/blocks/text-columns/editor-rtl.css'),(7836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/editor-rtl.min.css','wp-includes/blocks/text-columns/editor-rtl.min.css'),(7837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/editor.css','wp-includes/blocks/text-columns/editor.css'),(7838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/editor.min.css','wp-includes/blocks/text-columns/editor.min.css'),(7839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/style-rtl.css','wp-includes/blocks/text-columns/style-rtl.css'),(7840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/style-rtl.min.css','wp-includes/blocks/text-columns/style-rtl.min.css'),(7841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/style.css','wp-includes/blocks/text-columns/style.css'),(7842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/text-columns/style.min.css','wp-includes/blocks/text-columns/style.min.css'),(7843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/block.json','wp-includes/blocks/verse/block.json'),(7844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/style-rtl.css','wp-includes/blocks/verse/style-rtl.css'),(7845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/style-rtl.min.css','wp-includes/blocks/verse/style-rtl.min.css'),(7846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/style.css','wp-includes/blocks/verse/style.css'),(7847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/verse/style.min.css','wp-includes/blocks/verse/style.min.css'),(7848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/block.json','wp-includes/blocks/video/block.json'),(7849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/editor-rtl.css','wp-includes/blocks/video/editor-rtl.css'),(7850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/editor-rtl.min.css','wp-includes/blocks/video/editor-rtl.min.css'),(7851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/editor.css','wp-includes/blocks/video/editor.css'),(7852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/editor.min.css','wp-includes/blocks/video/editor.min.css'),(7853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/style-rtl.css','wp-includes/blocks/video/style-rtl.css'),(7854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/style-rtl.min.css','wp-includes/blocks/video/style-rtl.min.css'),(7855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/style.css','wp-includes/blocks/video/style.css'),(7856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/style.min.css','wp-includes/blocks/video/style.min.css'),(7857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/theme-rtl.css','wp-includes/blocks/video/theme-rtl.css'),(7858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/theme-rtl.min.css','wp-includes/blocks/video/theme-rtl.min.css'),(7859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/theme.css','wp-includes/blocks/video/theme.css'),(7860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/video/theme.min.css','wp-includes/blocks/video/theme.min.css'),(7861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/widget-group/block.json','wp-includes/blocks/widget-group/block.json'),(7862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks/widget-group.php','wp-includes/blocks/widget-group.php'),(7863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/blocks.php','wp-includes/blocks.php'),(7864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/bookmark-template.php','wp-includes/bookmark-template.php'),(7865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/bookmark.php','wp-includes/bookmark.php'),(7866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/cache-compat.php','wp-includes/cache-compat.php'),(7867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/cache.php','wp-includes/cache.php'),(7868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/canonical.php','wp-includes/canonical.php'),(7869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/capabilities.php','wp-includes/capabilities.php'),(7870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/category-template.php','wp-includes/category-template.php'),(7871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/category.php','wp-includes/category.php'),(7872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/certificates/ca-bundle.crt','wp-includes/certificates/ca-bundle.crt'),(7873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-IXR.php','wp-includes/class-IXR.php'),(7874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-avif-info.php','wp-includes/class-avif-info.php'),(7875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-feed.php','wp-includes/class-feed.php'),(7876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-http.php','wp-includes/class-http.php'),(7877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-json.php','wp-includes/class-json.php'),(7878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-oembed.php','wp-includes/class-oembed.php'),(7879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-phpass.php','wp-includes/class-phpass.php'),(7880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-phpmailer.php','wp-includes/class-phpmailer.php'),(7881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-pop3.php','wp-includes/class-pop3.php'),(7882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-requests.php','wp-includes/class-requests.php'),(7883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-simplepie.php','wp-includes/class-simplepie.php'),(7884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-smtp.php','wp-includes/class-smtp.php'),(7885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-snoopy.php','wp-includes/class-snoopy.php'),(7886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-category-dropdown.php','wp-includes/class-walker-category-dropdown.php'),(7887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-category.php','wp-includes/class-walker-category.php'),(7888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-comment.php','wp-includes/class-walker-comment.php'),(7889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-nav-menu.php','wp-includes/class-walker-nav-menu.php'),(7890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-page-dropdown.php','wp-includes/class-walker-page-dropdown.php'),(7891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-walker-page.php','wp-includes/class-walker-page.php'),(7892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-admin-bar.php','wp-includes/class-wp-admin-bar.php'),(7893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-ajax-response.php','wp-includes/class-wp-ajax-response.php'),(7894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-application-passwords.php','wp-includes/class-wp-application-passwords.php'),(7895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-bindings-registry.php','wp-includes/class-wp-block-bindings-registry.php'),(7896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-bindings-source.php','wp-includes/class-wp-block-bindings-source.php'),(7897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-editor-context.php','wp-includes/class-wp-block-editor-context.php'),(7898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-list.php','wp-includes/class-wp-block-list.php'),(7899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-parser-block.php','wp-includes/class-wp-block-parser-block.php'),(7900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-parser-frame.php','wp-includes/class-wp-block-parser-frame.php'),(7901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-parser.php','wp-includes/class-wp-block-parser.php'),(7902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-pattern-categories-registry.php','wp-includes/class-wp-block-pattern-categories-registry.php'),(7903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-patterns-registry.php','wp-includes/class-wp-block-patterns-registry.php'),(7904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-styles-registry.php','wp-includes/class-wp-block-styles-registry.php'),(7905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-supports.php','wp-includes/class-wp-block-supports.php'),(7906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-template.php','wp-includes/class-wp-block-template.php'),(7907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-type-registry.php','wp-includes/class-wp-block-type-registry.php'),(7908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block-type.php','wp-includes/class-wp-block-type.php'),(7909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-block.php','wp-includes/class-wp-block.php'),(7910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-classic-to-block-menu-converter.php','wp-includes/class-wp-classic-to-block-menu-converter.php'),(7911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-comment-query.php','wp-includes/class-wp-comment-query.php'),(7912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-comment.php','wp-includes/class-wp-comment.php'),(7913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-control.php','wp-includes/class-wp-customize-control.php'),(7914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-manager.php','wp-includes/class-wp-customize-manager.php'),(7915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-nav-menus.php','wp-includes/class-wp-customize-nav-menus.php'),(7916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-panel.php','wp-includes/class-wp-customize-panel.php'),(7917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-section.php','wp-includes/class-wp-customize-section.php'),(7918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-setting.php','wp-includes/class-wp-customize-setting.php'),(7919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-customize-widgets.php','wp-includes/class-wp-customize-widgets.php'),(7920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-date-query.php','wp-includes/class-wp-date-query.php'),(7921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-dependencies.php','wp-includes/class-wp-dependencies.php'),(7922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-dependency.php','wp-includes/class-wp-dependency.php'),(7923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-duotone.php','wp-includes/class-wp-duotone.php'),(7924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-editor.php','wp-includes/class-wp-editor.php'),(7925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-embed.php','wp-includes/class-wp-embed.php'),(7926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-error.php','wp-includes/class-wp-error.php'),(7927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-fatal-error-handler.php','wp-includes/class-wp-fatal-error-handler.php'),(7928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-feed-cache-transient.php','wp-includes/class-wp-feed-cache-transient.php'),(7929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-feed-cache.php','wp-includes/class-wp-feed-cache.php'),(7930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-hook.php','wp-includes/class-wp-hook.php'),(7931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-cookie.php','wp-includes/class-wp-http-cookie.php'),(7932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-curl.php','wp-includes/class-wp-http-curl.php'),(7933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-encoding.php','wp-includes/class-wp-http-encoding.php'),(7934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-ixr-client.php','wp-includes/class-wp-http-ixr-client.php'),(7935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-proxy.php','wp-includes/class-wp-http-proxy.php'),(7936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-requests-hooks.php','wp-includes/class-wp-http-requests-hooks.php'),(7937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-requests-response.php','wp-includes/class-wp-http-requests-response.php'),(7938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-response.php','wp-includes/class-wp-http-response.php'),(7939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http-streams.php','wp-includes/class-wp-http-streams.php'),(7940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-http.php','wp-includes/class-wp-http.php'),(7941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-image-editor-gd.php','wp-includes/class-wp-image-editor-gd.php'),(7942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-image-editor-imagick.php','wp-includes/class-wp-image-editor-imagick.php'),(7943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-image-editor.php','wp-includes/class-wp-image-editor.php'),(7944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-list-util.php','wp-includes/class-wp-list-util.php'),(7945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-locale-switcher.php','wp-includes/class-wp-locale-switcher.php'),(7946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-locale.php','wp-includes/class-wp-locale.php'),(7947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-matchesmapregex.php','wp-includes/class-wp-matchesmapregex.php'),(7948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-meta-query.php','wp-includes/class-wp-meta-query.php'),(7949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-metadata-lazyloader.php','wp-includes/class-wp-metadata-lazyloader.php'),(7950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-navigation-fallback.php','wp-includes/class-wp-navigation-fallback.php'),(7951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-network-query.php','wp-includes/class-wp-network-query.php'),(7952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-network.php','wp-includes/class-wp-network.php'),(7953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-object-cache.php','wp-includes/class-wp-object-cache.php'),(7954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-oembed-controller.php','wp-includes/class-wp-oembed-controller.php'),(7955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-oembed.php','wp-includes/class-wp-oembed.php'),(7956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-paused-extensions-storage.php','wp-includes/class-wp-paused-extensions-storage.php'),(7957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-plugin-dependencies.php','wp-includes/class-wp-plugin-dependencies.php'),(7958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-post-type.php','wp-includes/class-wp-post-type.php'),(7959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-post.php','wp-includes/class-wp-post.php'),(7960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-query.php','wp-includes/class-wp-query.php'),(7961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode-cookie-service.php','wp-includes/class-wp-recovery-mode-cookie-service.php'),(7962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode-email-service.php','wp-includes/class-wp-recovery-mode-email-service.php'),(7963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode-key-service.php','wp-includes/class-wp-recovery-mode-key-service.php'),(7964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode-link-service.php','wp-includes/class-wp-recovery-mode-link-service.php'),(7965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-recovery-mode.php','wp-includes/class-wp-recovery-mode.php'),(7966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-rewrite.php','wp-includes/class-wp-rewrite.php'),(7967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-role.php','wp-includes/class-wp-role.php'),(7968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-roles.php','wp-includes/class-wp-roles.php'),(7969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-script-modules.php','wp-includes/class-wp-script-modules.php'),(7970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-scripts.php','wp-includes/class-wp-scripts.php'),(7971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-session-tokens.php','wp-includes/class-wp-session-tokens.php'),(7972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-simplepie-file.php','wp-includes/class-wp-simplepie-file.php'),(7973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-simplepie-sanitize-kses.php','wp-includes/class-wp-simplepie-sanitize-kses.php'),(7974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-site-query.php','wp-includes/class-wp-site-query.php'),(7975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-site.php','wp-includes/class-wp-site.php'),(7976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-styles.php','wp-includes/class-wp-styles.php'),(7977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-tax-query.php','wp-includes/class-wp-tax-query.php'),(7978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-taxonomy.php','wp-includes/class-wp-taxonomy.php'),(7979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-term-query.php','wp-includes/class-wp-term-query.php'),(7980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-term.php','wp-includes/class-wp-term.php'),(7981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-text-diff-renderer-inline.php','wp-includes/class-wp-text-diff-renderer-inline.php'),(7982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-text-diff-renderer-table.php','wp-includes/class-wp-text-diff-renderer-table.php'),(7983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-textdomain-registry.php','wp-includes/class-wp-textdomain-registry.php'),(7984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme-json-data.php','wp-includes/class-wp-theme-json-data.php'),(7985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme-json-resolver.php','wp-includes/class-wp-theme-json-resolver.php'),(7986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme-json-schema.php','wp-includes/class-wp-theme-json-schema.php'),(7987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme-json.php','wp-includes/class-wp-theme-json.php'),(7988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-theme.php','wp-includes/class-wp-theme.php'),(7989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-user-meta-session-tokens.php','wp-includes/class-wp-user-meta-session-tokens.php'),(7990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-user-query.php','wp-includes/class-wp-user-query.php'),(7991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-user-request.php','wp-includes/class-wp-user-request.php'),(7992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-user.php','wp-includes/class-wp-user.php'),(7993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-walker.php','wp-includes/class-wp-walker.php'),(7994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-widget-factory.php','wp-includes/class-wp-widget-factory.php'),(7995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-widget.php','wp-includes/class-wp-widget.php'),(7996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp-xmlrpc-server.php','wp-includes/class-wp-xmlrpc-server.php'),(7997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wp.php','wp-includes/class-wp.php'),(7998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class-wpdb.php','wp-includes/class-wpdb.php'),(7999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class.wp-dependencies.php','wp-includes/class.wp-dependencies.php'),(8000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class.wp-scripts.php','wp-includes/class.wp-scripts.php'),(8001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/class.wp-styles.php','wp-includes/class.wp-styles.php'),(8002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/comment-template.php','wp-includes/comment-template.php'),(8003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/comment.php','wp-includes/comment.php'),(8004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/compat.php','wp-includes/compat.php'),(8005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/cron.php','wp-includes/cron.php'),(8006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/admin-bar-rtl.css','wp-includes/css/admin-bar-rtl.css'),(8007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/admin-bar-rtl.min.css','wp-includes/css/admin-bar-rtl.min.css'),(8008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/admin-bar.css','wp-includes/css/admin-bar.css'),(8009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/admin-bar.min.css','wp-includes/css/admin-bar.min.css'),(8010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/buttons-rtl.css','wp-includes/css/buttons-rtl.css'),(8011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/buttons-rtl.min.css','wp-includes/css/buttons-rtl.min.css'),(8012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/buttons.css','wp-includes/css/buttons.css'),(8013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/buttons.min.css','wp-includes/css/buttons.min.css'),(8014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/classic-themes.css','wp-includes/css/classic-themes.css'),(8015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/classic-themes.min.css','wp-includes/css/classic-themes.min.css'),(8016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/customize-preview-rtl.css','wp-includes/css/customize-preview-rtl.css'),(8017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/customize-preview-rtl.min.css','wp-includes/css/customize-preview-rtl.min.css'),(8018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/customize-preview.css','wp-includes/css/customize-preview.css'),(8019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/customize-preview.min.css','wp-includes/css/customize-preview.min.css'),(8020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dashicons.css','wp-includes/css/dashicons.css'),(8021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dashicons.min.css','wp-includes/css/dashicons.min.css'),(8022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-directory/style-rtl.css','wp-includes/css/dist/block-directory/style-rtl.css'),(8023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-directory/style-rtl.min.css','wp-includes/css/dist/block-directory/style-rtl.min.css'),(8024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-directory/style.css','wp-includes/css/dist/block-directory/style.css'),(8025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-directory/style.min.css','wp-includes/css/dist/block-directory/style.min.css'),(8026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/content-rtl.css','wp-includes/css/dist/block-editor/content-rtl.css'),(8027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/content-rtl.min.css','wp-includes/css/dist/block-editor/content-rtl.min.css'),(8028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/content.css','wp-includes/css/dist/block-editor/content.css'),(8029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/content.min.css','wp-includes/css/dist/block-editor/content.min.css'),(8030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css','wp-includes/css/dist/block-editor/default-editor-styles-rtl.css'),(8031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css','wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css'),(8032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/default-editor-styles.css','wp-includes/css/dist/block-editor/default-editor-styles.css'),(8033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/default-editor-styles.min.css','wp-includes/css/dist/block-editor/default-editor-styles.min.css'),(8034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/style-rtl.css','wp-includes/css/dist/block-editor/style-rtl.css'),(8035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/style-rtl.min.css','wp-includes/css/dist/block-editor/style-rtl.min.css'),(8036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/style.css','wp-includes/css/dist/block-editor/style.css'),(8037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-editor/style.min.css','wp-includes/css/dist/block-editor/style.min.css'),(8038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/classic-rtl.css','wp-includes/css/dist/block-library/classic-rtl.css'),(8039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/classic-rtl.min.css','wp-includes/css/dist/block-library/classic-rtl.min.css'),(8040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/classic.css','wp-includes/css/dist/block-library/classic.css'),(8041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/classic.min.css','wp-includes/css/dist/block-library/classic.min.css'),(8042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/common-rtl.css','wp-includes/css/dist/block-library/common-rtl.css'),(8043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/common-rtl.min.css','wp-includes/css/dist/block-library/common-rtl.min.css'),(8044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/common.css','wp-includes/css/dist/block-library/common.css'),(8045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/common.min.css','wp-includes/css/dist/block-library/common.min.css'),(8046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-elements-rtl.css','wp-includes/css/dist/block-library/editor-elements-rtl.css'),(8047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-elements-rtl.min.css','wp-includes/css/dist/block-library/editor-elements-rtl.min.css'),(8048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-elements.css','wp-includes/css/dist/block-library/editor-elements.css'),(8049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-elements.min.css','wp-includes/css/dist/block-library/editor-elements.min.css'),(8050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-rtl.css','wp-includes/css/dist/block-library/editor-rtl.css'),(8051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor-rtl.min.css','wp-includes/css/dist/block-library/editor-rtl.min.css'),(8052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor.css','wp-includes/css/dist/block-library/editor.css'),(8053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/editor.min.css','wp-includes/css/dist/block-library/editor.min.css'),(8054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/elements-rtl.css','wp-includes/css/dist/block-library/elements-rtl.css'),(8055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/elements-rtl.min.css','wp-includes/css/dist/block-library/elements-rtl.min.css'),(8056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/elements.css','wp-includes/css/dist/block-library/elements.css'),(8057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/elements.min.css','wp-includes/css/dist/block-library/elements.min.css'),(8058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/reset-rtl.css','wp-includes/css/dist/block-library/reset-rtl.css'),(8059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/reset-rtl.min.css','wp-includes/css/dist/block-library/reset-rtl.min.css'),(8060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/reset.css','wp-includes/css/dist/block-library/reset.css'),(8061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/reset.min.css','wp-includes/css/dist/block-library/reset.min.css'),(8062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/style-rtl.css','wp-includes/css/dist/block-library/style-rtl.css'),(8063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/style-rtl.min.css','wp-includes/css/dist/block-library/style-rtl.min.css'),(8064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/style.css','wp-includes/css/dist/block-library/style.css'),(8065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/style.min.css','wp-includes/css/dist/block-library/style.min.css'),(8066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/theme-rtl.css','wp-includes/css/dist/block-library/theme-rtl.css'),(8067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/theme-rtl.min.css','wp-includes/css/dist/block-library/theme-rtl.min.css'),(8068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/theme.css','wp-includes/css/dist/block-library/theme.css'),(8069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/block-library/theme.min.css','wp-includes/css/dist/block-library/theme.min.css'),(8070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/commands/style-rtl.css','wp-includes/css/dist/commands/style-rtl.css'),(8071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/commands/style-rtl.min.css','wp-includes/css/dist/commands/style-rtl.min.css'),(8072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/commands/style.css','wp-includes/css/dist/commands/style.css'),(8073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/commands/style.min.css','wp-includes/css/dist/commands/style.min.css'),(8074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/components/style-rtl.css','wp-includes/css/dist/components/style-rtl.css'),(8075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/components/style-rtl.min.css','wp-includes/css/dist/components/style-rtl.min.css'),(8076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/components/style.css','wp-includes/css/dist/components/style.css'),(8077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/components/style.min.css','wp-includes/css/dist/components/style.min.css'),(8078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/customize-widgets/style-rtl.css','wp-includes/css/dist/customize-widgets/style-rtl.css'),(8079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/customize-widgets/style-rtl.min.css','wp-includes/css/dist/customize-widgets/style-rtl.min.css'),(8080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/customize-widgets/style.css','wp-includes/css/dist/customize-widgets/style.css'),(8081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/customize-widgets/style.min.css','wp-includes/css/dist/customize-widgets/style.min.css'),(8082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/classic-rtl.css','wp-includes/css/dist/edit-post/classic-rtl.css'),(8083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/classic-rtl.min.css','wp-includes/css/dist/edit-post/classic-rtl.min.css'),(8084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/classic.css','wp-includes/css/dist/edit-post/classic.css'),(8085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/classic.min.css','wp-includes/css/dist/edit-post/classic.min.css'),(8086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/style-rtl.css','wp-includes/css/dist/edit-post/style-rtl.css'),(8087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/style-rtl.min.css','wp-includes/css/dist/edit-post/style-rtl.min.css'),(8088,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/style.css','wp-includes/css/dist/edit-post/style.css'),(8089,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-post/style.min.css','wp-includes/css/dist/edit-post/style.min.css'),(8090,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-site/style-rtl.css','wp-includes/css/dist/edit-site/style-rtl.css'),(8091,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-site/style-rtl.min.css','wp-includes/css/dist/edit-site/style-rtl.min.css'),(8092,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-site/style.css','wp-includes/css/dist/edit-site/style.css'),(8093,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-site/style.min.css','wp-includes/css/dist/edit-site/style.min.css'),(8094,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-widgets/style-rtl.css','wp-includes/css/dist/edit-widgets/style-rtl.css'),(8095,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-widgets/style-rtl.min.css','wp-includes/css/dist/edit-widgets/style-rtl.min.css'),(8096,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-widgets/style.css','wp-includes/css/dist/edit-widgets/style.css'),(8097,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/edit-widgets/style.min.css','wp-includes/css/dist/edit-widgets/style.min.css'),(8098,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/editor/style-rtl.css','wp-includes/css/dist/editor/style-rtl.css'),(8099,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/editor/style-rtl.min.css','wp-includes/css/dist/editor/style-rtl.min.css'),(8100,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/editor/style.css','wp-includes/css/dist/editor/style.css'),(8101,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/editor/style.min.css','wp-includes/css/dist/editor/style.min.css'),(8102,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/format-library/style-rtl.css','wp-includes/css/dist/format-library/style-rtl.css'),(8103,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/format-library/style-rtl.min.css','wp-includes/css/dist/format-library/style-rtl.min.css'),(8104,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/format-library/style.css','wp-includes/css/dist/format-library/style.css'),(8105,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/format-library/style.min.css','wp-includes/css/dist/format-library/style.min.css'),(8106,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/list-reusable-blocks/style-rtl.css','wp-includes/css/dist/list-reusable-blocks/style-rtl.css'),(8107,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css','wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css'),(8108,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/list-reusable-blocks/style.css','wp-includes/css/dist/list-reusable-blocks/style.css'),(8109,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/list-reusable-blocks/style.min.css','wp-includes/css/dist/list-reusable-blocks/style.min.css'),(8110,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/nux/style-rtl.css','wp-includes/css/dist/nux/style-rtl.css'),(8111,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/nux/style-rtl.min.css','wp-includes/css/dist/nux/style-rtl.min.css'),(8112,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/nux/style.css','wp-includes/css/dist/nux/style.css'),(8113,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/nux/style.min.css','wp-includes/css/dist/nux/style.min.css'),(8114,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/patterns/style-rtl.css','wp-includes/css/dist/patterns/style-rtl.css'),(8115,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/patterns/style-rtl.min.css','wp-includes/css/dist/patterns/style-rtl.min.css'),(8116,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/patterns/style.css','wp-includes/css/dist/patterns/style.css'),(8117,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/patterns/style.min.css','wp-includes/css/dist/patterns/style.min.css'),(8118,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/preferences/style-rtl.css','wp-includes/css/dist/preferences/style-rtl.css'),(8119,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/preferences/style-rtl.min.css','wp-includes/css/dist/preferences/style-rtl.min.css'),(8120,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/preferences/style.css','wp-includes/css/dist/preferences/style.css'),(8121,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/preferences/style.min.css','wp-includes/css/dist/preferences/style.min.css'),(8122,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/reusable-blocks/style-rtl.css','wp-includes/css/dist/reusable-blocks/style-rtl.css'),(8123,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/reusable-blocks/style-rtl.min.css','wp-includes/css/dist/reusable-blocks/style-rtl.min.css'),(8124,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/reusable-blocks/style.css','wp-includes/css/dist/reusable-blocks/style.css'),(8125,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/reusable-blocks/style.min.css','wp-includes/css/dist/reusable-blocks/style.min.css'),(8126,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/widgets/style-rtl.css','wp-includes/css/dist/widgets/style-rtl.css'),(8127,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/widgets/style-rtl.min.css','wp-includes/css/dist/widgets/style-rtl.min.css'),(8128,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/widgets/style.css','wp-includes/css/dist/widgets/style.css'),(8129,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/dist/widgets/style.min.css','wp-includes/css/dist/widgets/style.min.css'),(8130,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/editor-rtl.css','wp-includes/css/editor-rtl.css'),(8131,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/editor-rtl.min.css','wp-includes/css/editor-rtl.min.css'),(8132,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/editor.css','wp-includes/css/editor.css'),(8133,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/editor.min.css','wp-includes/css/editor.min.css'),(8134,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/jquery-ui-dialog-rtl.css','wp-includes/css/jquery-ui-dialog-rtl.css'),(8135,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/jquery-ui-dialog-rtl.min.css','wp-includes/css/jquery-ui-dialog-rtl.min.css'),(8136,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/jquery-ui-dialog.css','wp-includes/css/jquery-ui-dialog.css'),(8137,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/jquery-ui-dialog.min.css','wp-includes/css/jquery-ui-dialog.min.css'),(8138,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/media-views-rtl.css','wp-includes/css/media-views-rtl.css'),(8139,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/media-views-rtl.min.css','wp-includes/css/media-views-rtl.min.css'),(8140,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/media-views.css','wp-includes/css/media-views.css'),(8141,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/media-views.min.css','wp-includes/css/media-views.min.css'),(8142,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-auth-check-rtl.css','wp-includes/css/wp-auth-check-rtl.css'),(8143,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-auth-check-rtl.min.css','wp-includes/css/wp-auth-check-rtl.min.css'),(8144,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-auth-check.css','wp-includes/css/wp-auth-check.css'),(8145,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-auth-check.min.css','wp-includes/css/wp-auth-check.min.css'),(8146,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-embed-template-ie.css','wp-includes/css/wp-embed-template-ie.css'),(8147,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-embed-template-ie.min.css','wp-includes/css/wp-embed-template-ie.min.css'),(8148,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-embed-template.css','wp-includes/css/wp-embed-template.css'),(8149,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-embed-template.min.css','wp-includes/css/wp-embed-template.min.css'),(8150,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-pointer-rtl.css','wp-includes/css/wp-pointer-rtl.css'),(8151,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-pointer-rtl.min.css','wp-includes/css/wp-pointer-rtl.min.css'),(8152,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-pointer.css','wp-includes/css/wp-pointer.css'),(8153,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/css/wp-pointer.min.css','wp-includes/css/wp-pointer.min.css'),(8154,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-background-image-control.php','wp-includes/customize/class-wp-customize-background-image-control.php'),(8155,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-background-image-setting.php','wp-includes/customize/class-wp-customize-background-image-setting.php'),(8156,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-background-position-control.php','wp-includes/customize/class-wp-customize-background-position-control.php'),(8157,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-code-editor-control.php','wp-includes/customize/class-wp-customize-code-editor-control.php'),(8158,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-color-control.php','wp-includes/customize/class-wp-customize-color-control.php'),(8159,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-cropped-image-control.php','wp-includes/customize/class-wp-customize-cropped-image-control.php'),(8160,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-custom-css-setting.php','wp-includes/customize/class-wp-customize-custom-css-setting.php'),(8161,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-date-time-control.php','wp-includes/customize/class-wp-customize-date-time-control.php'),(8162,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-filter-setting.php','wp-includes/customize/class-wp-customize-filter-setting.php'),(8163,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-header-image-control.php','wp-includes/customize/class-wp-customize-header-image-control.php'),(8164,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-header-image-setting.php','wp-includes/customize/class-wp-customize-header-image-setting.php'),(8165,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-image-control.php','wp-includes/customize/class-wp-customize-image-control.php'),(8166,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-media-control.php','wp-includes/customize/class-wp-customize-media-control.php'),(8167,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(8168,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-control.php','wp-includes/customize/class-wp-customize-nav-menu-control.php'),(8169,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-item-control.php','wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(8170,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(8171,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-location-control.php','wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(8172,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(8173,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-name-control.php','wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(8174,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-section.php','wp-includes/customize/class-wp-customize-nav-menu-section.php'),(8175,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menu-setting.php','wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(8176,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-nav-menus-panel.php','wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(8177,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-new-menu-control.php','wp-includes/customize/class-wp-customize-new-menu-control.php'),(8178,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-new-menu-section.php','wp-includes/customize/class-wp-customize-new-menu-section.php'),(8179,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-partial.php','wp-includes/customize/class-wp-customize-partial.php'),(8180,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-selective-refresh.php','wp-includes/customize/class-wp-customize-selective-refresh.php'),(8181,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-sidebar-section.php','wp-includes/customize/class-wp-customize-sidebar-section.php'),(8182,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-site-icon-control.php','wp-includes/customize/class-wp-customize-site-icon-control.php'),(8183,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-theme-control.php','wp-includes/customize/class-wp-customize-theme-control.php'),(8184,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-themes-panel.php','wp-includes/customize/class-wp-customize-themes-panel.php'),(8185,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-themes-section.php','wp-includes/customize/class-wp-customize-themes-section.php'),(8186,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-customize-upload-control.php','wp-includes/customize/class-wp-customize-upload-control.php'),(8187,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-sidebar-block-editor-control.php','wp-includes/customize/class-wp-sidebar-block-editor-control.php'),(8188,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-widget-area-customize-control.php','wp-includes/customize/class-wp-widget-area-customize-control.php'),(8189,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/customize/class-wp-widget-form-customize-control.php','wp-includes/customize/class-wp-widget-form-customize-control.php'),(8190,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/date.php','wp-includes/date.php'),(8191,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/default-constants.php','wp-includes/default-constants.php'),(8192,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/default-filters.php','wp-includes/default-filters.php'),(8193,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/default-widgets.php','wp-includes/default-widgets.php'),(8194,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/deprecated.php','wp-includes/deprecated.php'),(8195,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/embed-template.php','wp-includes/embed-template.php'),(8196,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/embed.php','wp-includes/embed.php'),(8197,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/error-protection.php','wp-includes/error-protection.php'),(8198,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-atom-comments.php','wp-includes/feed-atom-comments.php'),(8199,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-atom.php','wp-includes/feed-atom.php'),(8200,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-rdf.php','wp-includes/feed-rdf.php'),(8201,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-rss.php','wp-includes/feed-rss.php'),(8202,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-rss2-comments.php','wp-includes/feed-rss2-comments.php'),(8203,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed-rss2.php','wp-includes/feed-rss2.php'),(8204,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/feed.php','wp-includes/feed.php'),(8205,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-collection.php','wp-includes/fonts/class-wp-font-collection.php'),(8206,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-face-resolver.php','wp-includes/fonts/class-wp-font-face-resolver.php'),(8207,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-face.php','wp-includes/fonts/class-wp-font-face.php'),(8208,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-library.php','wp-includes/fonts/class-wp-font-library.php'),(8209,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/class-wp-font-utils.php','wp-includes/fonts/class-wp-font-utils.php'),(8210,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.eot','wp-includes/fonts/dashicons.eot'),(8211,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.svg','wp-includes/fonts/dashicons.svg'),(8212,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.ttf','wp-includes/fonts/dashicons.ttf'),(8213,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.woff','wp-includes/fonts/dashicons.woff'),(8214,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts/dashicons.woff2','wp-includes/fonts/dashicons.woff2'),(8215,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/fonts.php','wp-includes/fonts.php'),(8216,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/formatting.php','wp-includes/formatting.php'),(8217,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/functions.php','wp-includes/functions.php'),(8218,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/functions.wp-scripts.php','wp-includes/functions.wp-scripts.php'),(8219,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/functions.wp-styles.php','wp-includes/functions.wp-styles.php'),(8220,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/general-template.php','wp-includes/general-template.php'),(8221,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/global-styles-and-settings.php','wp-includes/global-styles-and-settings.php'),(8222,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-active-formatting-elements.php','wp-includes/html-api/class-wp-html-active-formatting-elements.php'),(8223,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-attribute-token.php','wp-includes/html-api/class-wp-html-attribute-token.php'),(8224,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-open-elements.php','wp-includes/html-api/class-wp-html-open-elements.php'),(8225,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-processor-state.php','wp-includes/html-api/class-wp-html-processor-state.php'),(8226,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-processor.php','wp-includes/html-api/class-wp-html-processor.php'),(8227,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-span.php','wp-includes/html-api/class-wp-html-span.php'),(8228,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-tag-processor.php','wp-includes/html-api/class-wp-html-tag-processor.php'),(8229,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-text-replacement.php','wp-includes/html-api/class-wp-html-text-replacement.php'),(8230,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-token.php','wp-includes/html-api/class-wp-html-token.php'),(8231,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/html-api/class-wp-html-unsupported-exception.php','wp-includes/html-api/class-wp-html-unsupported-exception.php'),(8232,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/http.php','wp-includes/http.php'),(8233,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/https-detection.php','wp-includes/https-detection.php'),(8234,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/https-migration.php','wp-includes/https-migration.php'),(8235,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/admin-bar-sprite-2x.png','wp-includes/images/admin-bar-sprite-2x.png'),(8236,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/admin-bar-sprite.png','wp-includes/images/admin-bar-sprite.png'),(8237,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/arrow-pointer-blue-2x.png','wp-includes/images/arrow-pointer-blue-2x.png'),(8238,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/arrow-pointer-blue.png','wp-includes/images/arrow-pointer-blue.png'),(8239,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/blank.gif','wp-includes/images/blank.gif'),(8240,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/archive.png','wp-includes/images/crystal/archive.png'),(8241,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/audio.png','wp-includes/images/crystal/audio.png'),(8242,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/code.png','wp-includes/images/crystal/code.png'),(8243,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/default.png','wp-includes/images/crystal/default.png'),(8244,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/document.png','wp-includes/images/crystal/document.png'),(8245,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/interactive.png','wp-includes/images/crystal/interactive.png'),(8246,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/license.txt','wp-includes/images/crystal/license.txt'),(8247,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/spreadsheet.png','wp-includes/images/crystal/spreadsheet.png'),(8248,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/text.png','wp-includes/images/crystal/text.png'),(8249,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/crystal/video.png','wp-includes/images/crystal/video.png'),(8250,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/down_arrow-2x.gif','wp-includes/images/down_arrow-2x.gif'),(8251,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/down_arrow.gif','wp-includes/images/down_arrow.gif'),(8252,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/icon-pointer-flag-2x.png','wp-includes/images/icon-pointer-flag-2x.png'),(8253,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/icon-pointer-flag.png','wp-includes/images/icon-pointer-flag.png'),(8254,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/archive.png','wp-includes/images/media/archive.png'),(8255,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/archive.svg','wp-includes/images/media/archive.svg'),(8256,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/audio.png','wp-includes/images/media/audio.png'),(8257,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/audio.svg','wp-includes/images/media/audio.svg'),(8258,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/code.png','wp-includes/images/media/code.png'),(8259,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/code.svg','wp-includes/images/media/code.svg'),(8260,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/default.png','wp-includes/images/media/default.png'),(8261,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/default.svg','wp-includes/images/media/default.svg'),(8262,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/document.png','wp-includes/images/media/document.png'),(8263,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/document.svg','wp-includes/images/media/document.svg'),(8264,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/interactive.png','wp-includes/images/media/interactive.png'),(8265,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/interactive.svg','wp-includes/images/media/interactive.svg'),(8266,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/spreadsheet.png','wp-includes/images/media/spreadsheet.png'),(8267,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/spreadsheet.svg','wp-includes/images/media/spreadsheet.svg'),(8268,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/text.png','wp-includes/images/media/text.png'),(8269,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/text.svg','wp-includes/images/media/text.svg'),(8270,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/video.png','wp-includes/images/media/video.png'),(8271,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/media/video.svg','wp-includes/images/media/video.svg'),(8272,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/rss-2x.png','wp-includes/images/rss-2x.png'),(8273,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/rss.png','wp-includes/images/rss.png'),(8274,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/frownie.png','wp-includes/images/smilies/frownie.png'),(8275,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_arrow.gif','wp-includes/images/smilies/icon_arrow.gif'),(8276,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_biggrin.gif','wp-includes/images/smilies/icon_biggrin.gif'),(8277,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_confused.gif','wp-includes/images/smilies/icon_confused.gif'),(8278,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_cool.gif','wp-includes/images/smilies/icon_cool.gif'),(8279,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_cry.gif','wp-includes/images/smilies/icon_cry.gif'),(8280,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_eek.gif','wp-includes/images/smilies/icon_eek.gif'),(8281,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_evil.gif','wp-includes/images/smilies/icon_evil.gif'),(8282,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_exclaim.gif','wp-includes/images/smilies/icon_exclaim.gif'),(8283,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_idea.gif','wp-includes/images/smilies/icon_idea.gif'),(8284,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_lol.gif','wp-includes/images/smilies/icon_lol.gif'),(8285,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_mad.gif','wp-includes/images/smilies/icon_mad.gif'),(8286,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_mrgreen.gif','wp-includes/images/smilies/icon_mrgreen.gif'),(8287,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_neutral.gif','wp-includes/images/smilies/icon_neutral.gif'),(8288,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_question.gif','wp-includes/images/smilies/icon_question.gif'),(8289,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_razz.gif','wp-includes/images/smilies/icon_razz.gif'),(8290,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_redface.gif','wp-includes/images/smilies/icon_redface.gif'),(8291,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_rolleyes.gif','wp-includes/images/smilies/icon_rolleyes.gif'),(8292,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_sad.gif','wp-includes/images/smilies/icon_sad.gif'),(8293,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_smile.gif','wp-includes/images/smilies/icon_smile.gif'),(8294,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_surprised.gif','wp-includes/images/smilies/icon_surprised.gif'),(8295,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_twisted.gif','wp-includes/images/smilies/icon_twisted.gif'),(8296,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/icon_wink.gif','wp-includes/images/smilies/icon_wink.gif'),(8297,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/mrgreen.png','wp-includes/images/smilies/mrgreen.png'),(8298,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/rolleyes.png','wp-includes/images/smilies/rolleyes.png'),(8299,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/smilies/simple-smile.png','wp-includes/images/smilies/simple-smile.png'),(8300,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/spinner-2x.gif','wp-includes/images/spinner-2x.gif'),(8301,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/spinner.gif','wp-includes/images/spinner.gif'),(8302,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/toggle-arrow-2x.png','wp-includes/images/toggle-arrow-2x.png'),(8303,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/toggle-arrow.png','wp-includes/images/toggle-arrow.png'),(8304,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/uploader-icons-2x.png','wp-includes/images/uploader-icons-2x.png'),(8305,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/uploader-icons.png','wp-includes/images/uploader-icons.png'),(8306,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/w-logo-blue-white-bg.png','wp-includes/images/w-logo-blue-white-bg.png'),(8307,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/w-logo-blue.png','wp-includes/images/w-logo-blue.png'),(8308,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/wpicons-2x.png','wp-includes/images/wpicons-2x.png'),(8309,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/wpicons.png','wp-includes/images/wpicons.png'),(8310,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/wpspin-2x.gif','wp-includes/images/wpspin-2x.gif'),(8311,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/wpspin.gif','wp-includes/images/wpspin.gif'),(8312,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/xit-2x.gif','wp-includes/images/xit-2x.gif'),(8313,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/images/xit.gif','wp-includes/images/xit.gif'),(8314,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php','wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php'),(8315,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/interactivity-api/class-wp-interactivity-api.php','wp-includes/interactivity-api/class-wp-interactivity-api.php'),(8316,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/interactivity-api/interactivity-api.php','wp-includes/interactivity-api/interactivity-api.php'),(8317,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/admin-bar.js','wp-includes/js/admin-bar.js'),(8318,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/admin-bar.min.js','wp-includes/js/admin-bar.min.js'),(8319,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/api-request.js','wp-includes/js/api-request.js'),(8320,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/api-request.min.js','wp-includes/js/api-request.min.js'),(8321,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/autosave.js','wp-includes/js/autosave.js'),(8322,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/autosave.min.js','wp-includes/js/autosave.min.js'),(8323,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/backbone.js','wp-includes/js/backbone.js'),(8324,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/backbone.min.js','wp-includes/js/backbone.min.js'),(8325,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/clipboard.js','wp-includes/js/clipboard.js'),(8326,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/clipboard.min.js','wp-includes/js/clipboard.min.js'),(8327,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/codemirror.min.css','wp-includes/js/codemirror/codemirror.min.css'),(8328,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/codemirror.min.js','wp-includes/js/codemirror/codemirror.min.js'),(8329,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/csslint.js','wp-includes/js/codemirror/csslint.js'),(8330,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/esprima.js','wp-includes/js/codemirror/esprima.js'),(8331,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/fakejshint.js','wp-includes/js/codemirror/fakejshint.js'),(8332,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/htmlhint-kses.js','wp-includes/js/codemirror/htmlhint-kses.js'),(8333,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/htmlhint.js','wp-includes/js/codemirror/htmlhint.js'),(8334,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/codemirror/jsonlint.js','wp-includes/js/codemirror/jsonlint.js'),(8335,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/colorpicker.js','wp-includes/js/colorpicker.js'),(8336,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/colorpicker.min.js','wp-includes/js/colorpicker.min.js'),(8337,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/comment-reply.js','wp-includes/js/comment-reply.js'),(8338,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/comment-reply.min.js','wp-includes/js/comment-reply.min.js'),(8339,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/crop/cropper.css','wp-includes/js/crop/cropper.css'),(8340,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/crop/cropper.js','wp-includes/js/crop/cropper.js'),(8341,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/crop/marqueeHoriz.gif','wp-includes/js/crop/marqueeHoriz.gif'),(8342,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/crop/marqueeVert.gif','wp-includes/js/crop/marqueeVert.gif'),(8343,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-base.js','wp-includes/js/customize-base.js'),(8344,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-base.min.js','wp-includes/js/customize-base.min.js'),(8345,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-loader.js','wp-includes/js/customize-loader.js'),(8346,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-loader.min.js','wp-includes/js/customize-loader.min.js'),(8347,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-models.js','wp-includes/js/customize-models.js'),(8348,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-models.min.js','wp-includes/js/customize-models.min.js'),(8349,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview-nav-menus.js','wp-includes/js/customize-preview-nav-menus.js'),(8350,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview-nav-menus.min.js','wp-includes/js/customize-preview-nav-menus.min.js'),(8351,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview-widgets.js','wp-includes/js/customize-preview-widgets.js'),(8352,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview-widgets.min.js','wp-includes/js/customize-preview-widgets.min.js'),(8353,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview.js','wp-includes/js/customize-preview.js'),(8354,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-preview.min.js','wp-includes/js/customize-preview.min.js'),(8355,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-selective-refresh.js','wp-includes/js/customize-selective-refresh.js'),(8356,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-selective-refresh.min.js','wp-includes/js/customize-selective-refresh.min.js'),(8357,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-views.js','wp-includes/js/customize-views.js'),(8358,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/customize-views.min.js','wp-includes/js/customize-views.min.js'),(8359,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/a11y.js','wp-includes/js/dist/a11y.js'),(8360,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/a11y.min.js','wp-includes/js/dist/a11y.min.js'),(8361,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/annotations.js','wp-includes/js/dist/annotations.js'),(8362,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/annotations.min.js','wp-includes/js/dist/annotations.min.js'),(8363,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/api-fetch.js','wp-includes/js/dist/api-fetch.js'),(8364,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/api-fetch.min.js','wp-includes/js/dist/api-fetch.min.js'),(8365,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/autop.js','wp-includes/js/dist/autop.js'),(8366,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/autop.min.js','wp-includes/js/dist/autop.min.js'),(8367,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/blob.js','wp-includes/js/dist/blob.js'),(8368,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/blob.min.js','wp-includes/js/dist/blob.min.js'),(8369,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-directory.js','wp-includes/js/dist/block-directory.js'),(8370,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-directory.min.js','wp-includes/js/dist/block-directory.min.js'),(8371,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-editor.js','wp-includes/js/dist/block-editor.js'),(8372,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-editor.min.js','wp-includes/js/dist/block-editor.min.js'),(8373,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-library.js','wp-includes/js/dist/block-library.js'),(8374,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-library.min.js','wp-includes/js/dist/block-library.min.js'),(8375,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-serialization-default-parser.js','wp-includes/js/dist/block-serialization-default-parser.js'),(8376,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/block-serialization-default-parser.min.js','wp-includes/js/dist/block-serialization-default-parser.min.js'),(8377,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/blocks.js','wp-includes/js/dist/blocks.js'),(8378,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/blocks.min.js','wp-includes/js/dist/blocks.min.js'),(8379,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/commands.js','wp-includes/js/dist/commands.js'),(8380,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/commands.min.js','wp-includes/js/dist/commands.min.js'),(8381,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/components.js','wp-includes/js/dist/components.js'),(8382,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/components.min.js','wp-includes/js/dist/components.min.js'),(8383,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/compose.js','wp-includes/js/dist/compose.js'),(8384,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/compose.min.js','wp-includes/js/dist/compose.min.js'),(8385,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/core-commands.js','wp-includes/js/dist/core-commands.js'),(8386,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/core-commands.min.js','wp-includes/js/dist/core-commands.min.js'),(8387,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/core-data.js','wp-includes/js/dist/core-data.js'),(8388,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/core-data.min.js','wp-includes/js/dist/core-data.min.js'),(8389,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/customize-widgets.js','wp-includes/js/dist/customize-widgets.js'),(8390,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/customize-widgets.min.js','wp-includes/js/dist/customize-widgets.min.js'),(8391,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/data-controls.js','wp-includes/js/dist/data-controls.js'),(8392,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/data-controls.min.js','wp-includes/js/dist/data-controls.min.js'),(8393,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/data.js','wp-includes/js/dist/data.js'),(8394,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/data.min.js','wp-includes/js/dist/data.min.js'),(8395,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/date.js','wp-includes/js/dist/date.js'),(8396,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/date.min.js','wp-includes/js/dist/date.min.js'),(8397,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/deprecated.js','wp-includes/js/dist/deprecated.js'),(8398,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/deprecated.min.js','wp-includes/js/dist/deprecated.min.js'),(8399,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/development/react-refresh-entry.js','wp-includes/js/dist/development/react-refresh-entry.js'),(8400,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/development/react-refresh-entry.min.js','wp-includes/js/dist/development/react-refresh-entry.min.js'),(8401,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/development/react-refresh-runtime.js','wp-includes/js/dist/development/react-refresh-runtime.js'),(8402,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/development/react-refresh-runtime.min.js','wp-includes/js/dist/development/react-refresh-runtime.min.js'),(8403,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/dom-ready.js','wp-includes/js/dist/dom-ready.js'),(8404,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/dom-ready.min.js','wp-includes/js/dist/dom-ready.min.js'),(8405,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/dom.js','wp-includes/js/dist/dom.js'),(8406,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/dom.min.js','wp-includes/js/dist/dom.min.js'),(8407,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-post.js','wp-includes/js/dist/edit-post.js'),(8408,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-post.min.js','wp-includes/js/dist/edit-post.min.js'),(8409,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-site.js','wp-includes/js/dist/edit-site.js'),(8410,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-site.min.js','wp-includes/js/dist/edit-site.min.js'),(8411,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-widgets.js','wp-includes/js/dist/edit-widgets.js'),(8412,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/edit-widgets.min.js','wp-includes/js/dist/edit-widgets.min.js'),(8413,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/editor.js','wp-includes/js/dist/editor.js'),(8414,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/editor.min.js','wp-includes/js/dist/editor.min.js'),(8415,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/element.js','wp-includes/js/dist/element.js'),(8416,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/element.min.js','wp-includes/js/dist/element.min.js'),(8417,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/escape-html.js','wp-includes/js/dist/escape-html.js'),(8418,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/escape-html.min.js','wp-includes/js/dist/escape-html.min.js'),(8419,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/format-library.js','wp-includes/js/dist/format-library.js'),(8420,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/format-library.min.js','wp-includes/js/dist/format-library.min.js'),(8421,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/hooks.js','wp-includes/js/dist/hooks.js'),(8422,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/hooks.min.js','wp-includes/js/dist/hooks.min.js'),(8423,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/html-entities.js','wp-includes/js/dist/html-entities.js'),(8424,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/html-entities.min.js','wp-includes/js/dist/html-entities.min.js'),(8425,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/i18n.js','wp-includes/js/dist/i18n.js'),(8426,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/i18n.min.js','wp-includes/js/dist/i18n.min.js'),(8427,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity-router.asset.php','wp-includes/js/dist/interactivity-router.asset.php'),(8428,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity-router.js','wp-includes/js/dist/interactivity-router.js'),(8429,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity-router.min.asset.php','wp-includes/js/dist/interactivity-router.min.asset.php'),(8430,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity-router.min.js','wp-includes/js/dist/interactivity-router.min.js'),(8431,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity.js','wp-includes/js/dist/interactivity.js'),(8432,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/interactivity.min.js','wp-includes/js/dist/interactivity.min.js'),(8433,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/is-shallow-equal.js','wp-includes/js/dist/is-shallow-equal.js'),(8434,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/is-shallow-equal.min.js','wp-includes/js/dist/is-shallow-equal.min.js'),(8435,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/keyboard-shortcuts.js','wp-includes/js/dist/keyboard-shortcuts.js'),(8436,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/keyboard-shortcuts.min.js','wp-includes/js/dist/keyboard-shortcuts.min.js'),(8437,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/keycodes.js','wp-includes/js/dist/keycodes.js'),(8438,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/keycodes.min.js','wp-includes/js/dist/keycodes.min.js'),(8439,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/list-reusable-blocks.js','wp-includes/js/dist/list-reusable-blocks.js'),(8440,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/list-reusable-blocks.min.js','wp-includes/js/dist/list-reusable-blocks.min.js'),(8441,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/media-utils.js','wp-includes/js/dist/media-utils.js'),(8442,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/media-utils.min.js','wp-includes/js/dist/media-utils.min.js'),(8443,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/notices.js','wp-includes/js/dist/notices.js'),(8444,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/notices.min.js','wp-includes/js/dist/notices.min.js'),(8445,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/nux.js','wp-includes/js/dist/nux.js'),(8446,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/nux.min.js','wp-includes/js/dist/nux.min.js'),(8447,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/patterns.js','wp-includes/js/dist/patterns.js'),(8448,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/patterns.min.js','wp-includes/js/dist/patterns.min.js'),(8449,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/plugins.js','wp-includes/js/dist/plugins.js'),(8450,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/plugins.min.js','wp-includes/js/dist/plugins.min.js'),(8451,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/preferences-persistence.js','wp-includes/js/dist/preferences-persistence.js'),(8452,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/preferences-persistence.min.js','wp-includes/js/dist/preferences-persistence.min.js'),(8453,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/preferences.js','wp-includes/js/dist/preferences.js'),(8454,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/preferences.min.js','wp-includes/js/dist/preferences.min.js'),(8455,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/primitives.js','wp-includes/js/dist/primitives.js'),(8456,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/primitives.min.js','wp-includes/js/dist/primitives.min.js'),(8457,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/priority-queue.js','wp-includes/js/dist/priority-queue.js'),(8458,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/priority-queue.min.js','wp-includes/js/dist/priority-queue.min.js'),(8459,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/private-apis.js','wp-includes/js/dist/private-apis.js'),(8460,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/private-apis.min.js','wp-includes/js/dist/private-apis.min.js'),(8461,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/redux-routine.js','wp-includes/js/dist/redux-routine.js'),(8462,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/redux-routine.min.js','wp-includes/js/dist/redux-routine.min.js'),(8463,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/reusable-blocks.js','wp-includes/js/dist/reusable-blocks.js'),(8464,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/reusable-blocks.min.js','wp-includes/js/dist/reusable-blocks.min.js'),(8465,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/rich-text.js','wp-includes/js/dist/rich-text.js'),(8466,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/rich-text.min.js','wp-includes/js/dist/rich-text.min.js'),(8467,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/router.js','wp-includes/js/dist/router.js'),(8468,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/router.min.js','wp-includes/js/dist/router.min.js'),(8469,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/server-side-render.js','wp-includes/js/dist/server-side-render.js'),(8470,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/server-side-render.min.js','wp-includes/js/dist/server-side-render.min.js'),(8471,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/shortcode.js','wp-includes/js/dist/shortcode.js'),(8472,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/shortcode.min.js','wp-includes/js/dist/shortcode.min.js'),(8473,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/style-engine.js','wp-includes/js/dist/style-engine.js'),(8474,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/style-engine.min.js','wp-includes/js/dist/style-engine.min.js'),(8475,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/token-list.js','wp-includes/js/dist/token-list.js'),(8476,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/token-list.min.js','wp-includes/js/dist/token-list.min.js'),(8477,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/undo-manager.js','wp-includes/js/dist/undo-manager.js'),(8478,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/undo-manager.min.js','wp-includes/js/dist/undo-manager.min.js'),(8479,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/url.js','wp-includes/js/dist/url.js'),(8480,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/url.min.js','wp-includes/js/dist/url.min.js'),(8481,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/lodash.js','wp-includes/js/dist/vendor/lodash.js'),(8482,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/lodash.min.js','wp-includes/js/dist/vendor/lodash.min.js'),(8483,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/moment.js','wp-includes/js/dist/vendor/moment.js'),(8484,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/moment.min.js','wp-includes/js/dist/vendor/moment.min.js'),(8485,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/react-dom.js','wp-includes/js/dist/vendor/react-dom.js'),(8486,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/react-dom.min.js','wp-includes/js/dist/vendor/react-dom.min.js'),(8487,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/react.js','wp-includes/js/dist/vendor/react.js'),(8488,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/react.min.js','wp-includes/js/dist/vendor/react.min.js'),(8489,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/regenerator-runtime.js','wp-includes/js/dist/vendor/regenerator-runtime.js'),(8490,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/regenerator-runtime.min.js','wp-includes/js/dist/vendor/regenerator-runtime.min.js'),(8491,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js'),(8492,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js'),(8493,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js','wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),(8494,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js','wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),(8495,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-fetch.js','wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),(8496,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js','wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),(8497,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-formdata.js','wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),(8498,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js','wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),(8499,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-importmap.js','wp-includes/js/dist/vendor/wp-polyfill-importmap.js'),(8500,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-importmap.min.js','wp-includes/js/dist/vendor/wp-polyfill-importmap.min.js'),(8501,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-inert.js','wp-includes/js/dist/vendor/wp-polyfill-inert.js'),(8502,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js','wp-includes/js/dist/vendor/wp-polyfill-inert.min.js'),(8503,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-node-contains.js','wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),(8504,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js','wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),(8505,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js','wp-includes/js/dist/vendor/wp-polyfill-object-fit.js'),(8506,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js','wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js'),(8507,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-url.js','wp-includes/js/dist/vendor/wp-polyfill-url.js'),(8508,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill-url.min.js','wp-includes/js/dist/vendor/wp-polyfill-url.min.js'),(8509,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill.js','wp-includes/js/dist/vendor/wp-polyfill.js'),(8510,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/vendor/wp-polyfill.min.js','wp-includes/js/dist/vendor/wp-polyfill.min.js'),(8511,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/viewport.js','wp-includes/js/dist/viewport.js'),(8512,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/viewport.min.js','wp-includes/js/dist/viewport.min.js'),(8513,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/warning.js','wp-includes/js/dist/warning.js'),(8514,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/warning.min.js','wp-includes/js/dist/warning.min.js'),(8515,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/widgets.js','wp-includes/js/dist/widgets.js'),(8516,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/widgets.min.js','wp-includes/js/dist/widgets.min.js'),(8517,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/wordcount.js','wp-includes/js/dist/wordcount.js'),(8518,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/dist/wordcount.min.js','wp-includes/js/dist/wordcount.min.js'),(8519,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/heartbeat.js','wp-includes/js/heartbeat.js'),(8520,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/heartbeat.min.js','wp-includes/js/heartbeat.min.js'),(8521,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/hoverIntent.js','wp-includes/js/hoverIntent.js'),(8522,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/hoverIntent.min.js','wp-includes/js/hoverIntent.min.js'),(8523,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/hoverintent-js.min.js','wp-includes/js/hoverintent-js.min.js'),(8524,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imagesloaded.min.js','wp-includes/js/imagesloaded.min.js'),(8525,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/border-anim-h.gif','wp-includes/js/imgareaselect/border-anim-h.gif'),(8526,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/border-anim-v.gif','wp-includes/js/imgareaselect/border-anim-v.gif'),(8527,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/imgareaselect.css','wp-includes/js/imgareaselect/imgareaselect.css'),(8528,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/jquery.imgareaselect.js','wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(8529,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(8530,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jcrop/Jcrop.gif','wp-includes/js/jcrop/Jcrop.gif'),(8531,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jcrop/jquery.Jcrop.min.css','wp-includes/js/jcrop/jquery.Jcrop.min.css'),(8532,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jcrop/jquery.Jcrop.min.js','wp-includes/js/jcrop/jquery.Jcrop.min.js'),(8533,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery-migrate.js','wp-includes/js/jquery/jquery-migrate.js'),(8534,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery-migrate.min.js','wp-includes/js/jquery/jquery-migrate.min.js'),(8535,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.color.min.js','wp-includes/js/jquery/jquery.color.min.js'),(8536,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.form.js','wp-includes/js/jquery/jquery.form.js'),(8537,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.form.min.js','wp-includes/js/jquery/jquery.form.min.js'),(8538,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.hotkeys.js','wp-includes/js/jquery/jquery.hotkeys.js'),(8539,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.hotkeys.min.js','wp-includes/js/jquery/jquery.hotkeys.min.js'),(8540,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.js','wp-includes/js/jquery/jquery.js'),(8541,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.masonry.min.js','wp-includes/js/jquery/jquery.masonry.min.js'),(8542,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.min.js','wp-includes/js/jquery/jquery.min.js'),(8543,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.query.js','wp-includes/js/jquery/jquery.query.js'),(8544,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.schedule.js','wp-includes/js/jquery/jquery.schedule.js'),(8545,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.serialize-object.js','wp-includes/js/jquery/jquery.serialize-object.js'),(8546,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.table-hotkeys.js','wp-includes/js/jquery/jquery.table-hotkeys.js'),(8547,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.table-hotkeys.min.js','wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(8548,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/jquery.ui.touch-punch.js','wp-includes/js/jquery/jquery.ui.touch-punch.js'),(8549,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/suggest.js','wp-includes/js/jquery/suggest.js'),(8550,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/suggest.min.js','wp-includes/js/jquery/suggest.min.js'),(8551,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/accordion.js','wp-includes/js/jquery/ui/accordion.js'),(8552,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/accordion.min.js','wp-includes/js/jquery/ui/accordion.min.js'),(8553,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/autocomplete.js','wp-includes/js/jquery/ui/autocomplete.js'),(8554,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/autocomplete.min.js','wp-includes/js/jquery/ui/autocomplete.min.js'),(8555,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/button.js','wp-includes/js/jquery/ui/button.js'),(8556,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/button.min.js','wp-includes/js/jquery/ui/button.min.js'),(8557,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/checkboxradio.js','wp-includes/js/jquery/ui/checkboxradio.js'),(8558,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/checkboxradio.min.js','wp-includes/js/jquery/ui/checkboxradio.min.js'),(8559,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/controlgroup.js','wp-includes/js/jquery/ui/controlgroup.js'),(8560,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/controlgroup.min.js','wp-includes/js/jquery/ui/controlgroup.min.js'),(8561,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/core.js','wp-includes/js/jquery/ui/core.js'),(8562,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/core.min.js','wp-includes/js/jquery/ui/core.min.js'),(8563,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/datepicker.js','wp-includes/js/jquery/ui/datepicker.js'),(8564,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/datepicker.min.js','wp-includes/js/jquery/ui/datepicker.min.js'),(8565,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/dialog.js','wp-includes/js/jquery/ui/dialog.js'),(8566,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/dialog.min.js','wp-includes/js/jquery/ui/dialog.min.js'),(8567,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/draggable.js','wp-includes/js/jquery/ui/draggable.js'),(8568,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/draggable.min.js','wp-includes/js/jquery/ui/draggable.min.js'),(8569,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/droppable.js','wp-includes/js/jquery/ui/droppable.js'),(8570,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/droppable.min.js','wp-includes/js/jquery/ui/droppable.min.js'),(8571,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-blind.js','wp-includes/js/jquery/ui/effect-blind.js'),(8572,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-blind.min.js','wp-includes/js/jquery/ui/effect-blind.min.js'),(8573,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-bounce.js','wp-includes/js/jquery/ui/effect-bounce.js'),(8574,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-bounce.min.js','wp-includes/js/jquery/ui/effect-bounce.min.js'),(8575,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-clip.js','wp-includes/js/jquery/ui/effect-clip.js'),(8576,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-clip.min.js','wp-includes/js/jquery/ui/effect-clip.min.js'),(8577,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-drop.js','wp-includes/js/jquery/ui/effect-drop.js'),(8578,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-drop.min.js','wp-includes/js/jquery/ui/effect-drop.min.js'),(8579,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-explode.js','wp-includes/js/jquery/ui/effect-explode.js'),(8580,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-explode.min.js','wp-includes/js/jquery/ui/effect-explode.min.js'),(8581,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-fade.js','wp-includes/js/jquery/ui/effect-fade.js'),(8582,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-fade.min.js','wp-includes/js/jquery/ui/effect-fade.min.js'),(8583,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-fold.js','wp-includes/js/jquery/ui/effect-fold.js'),(8584,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-fold.min.js','wp-includes/js/jquery/ui/effect-fold.min.js'),(8585,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-highlight.js','wp-includes/js/jquery/ui/effect-highlight.js'),(8586,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-highlight.min.js','wp-includes/js/jquery/ui/effect-highlight.min.js'),(8587,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-puff.js','wp-includes/js/jquery/ui/effect-puff.js'),(8588,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-puff.min.js','wp-includes/js/jquery/ui/effect-puff.min.js'),(8589,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-pulsate.js','wp-includes/js/jquery/ui/effect-pulsate.js'),(8590,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-pulsate.min.js','wp-includes/js/jquery/ui/effect-pulsate.min.js'),(8591,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-scale.js','wp-includes/js/jquery/ui/effect-scale.js'),(8592,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-scale.min.js','wp-includes/js/jquery/ui/effect-scale.min.js'),(8593,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-shake.js','wp-includes/js/jquery/ui/effect-shake.js'),(8594,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-shake.min.js','wp-includes/js/jquery/ui/effect-shake.min.js'),(8595,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-size.js','wp-includes/js/jquery/ui/effect-size.js'),(8596,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-size.min.js','wp-includes/js/jquery/ui/effect-size.min.js'),(8597,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-slide.js','wp-includes/js/jquery/ui/effect-slide.js'),(8598,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-slide.min.js','wp-includes/js/jquery/ui/effect-slide.min.js'),(8599,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-transfer.js','wp-includes/js/jquery/ui/effect-transfer.js'),(8600,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect-transfer.min.js','wp-includes/js/jquery/ui/effect-transfer.min.js'),(8601,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect.js','wp-includes/js/jquery/ui/effect.js'),(8602,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/effect.min.js','wp-includes/js/jquery/ui/effect.min.js'),(8603,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/menu.js','wp-includes/js/jquery/ui/menu.js'),(8604,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/menu.min.js','wp-includes/js/jquery/ui/menu.min.js'),(8605,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/mouse.js','wp-includes/js/jquery/ui/mouse.js'),(8606,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/mouse.min.js','wp-includes/js/jquery/ui/mouse.min.js'),(8607,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/progressbar.js','wp-includes/js/jquery/ui/progressbar.js'),(8608,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/progressbar.min.js','wp-includes/js/jquery/ui/progressbar.min.js'),(8609,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/resizable.js','wp-includes/js/jquery/ui/resizable.js'),(8610,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/resizable.min.js','wp-includes/js/jquery/ui/resizable.min.js'),(8611,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/selectable.js','wp-includes/js/jquery/ui/selectable.js'),(8612,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/selectable.min.js','wp-includes/js/jquery/ui/selectable.min.js'),(8613,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/selectmenu.js','wp-includes/js/jquery/ui/selectmenu.js'),(8614,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/selectmenu.min.js','wp-includes/js/jquery/ui/selectmenu.min.js'),(8615,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/slider.js','wp-includes/js/jquery/ui/slider.js'),(8616,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/slider.min.js','wp-includes/js/jquery/ui/slider.min.js'),(8617,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/sortable.js','wp-includes/js/jquery/ui/sortable.js'),(8618,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/sortable.min.js','wp-includes/js/jquery/ui/sortable.min.js'),(8619,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/spinner.js','wp-includes/js/jquery/ui/spinner.js'),(8620,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/spinner.min.js','wp-includes/js/jquery/ui/spinner.min.js'),(8621,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/tabs.js','wp-includes/js/jquery/ui/tabs.js'),(8622,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/tabs.min.js','wp-includes/js/jquery/ui/tabs.min.js'),(8623,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/tooltip.js','wp-includes/js/jquery/ui/tooltip.js'),(8624,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/jquery/ui/tooltip.min.js','wp-includes/js/jquery/ui/tooltip.min.js'),(8625,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/json2.js','wp-includes/js/json2.js'),(8626,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/json2.min.js','wp-includes/js/json2.min.js'),(8627,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/masonry.min.js','wp-includes/js/masonry.min.js'),(8628,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mce-view.js','wp-includes/js/mce-view.js'),(8629,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mce-view.min.js','wp-includes/js/mce-view.min.js'),(8630,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-audiovideo.js','wp-includes/js/media-audiovideo.js'),(8631,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-audiovideo.min.js','wp-includes/js/media-audiovideo.min.js'),(8632,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-editor.js','wp-includes/js/media-editor.js'),(8633,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-editor.min.js','wp-includes/js/media-editor.min.js'),(8634,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-grid.js','wp-includes/js/media-grid.js'),(8635,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-grid.min.js','wp-includes/js/media-grid.min.js'),(8636,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-models.js','wp-includes/js/media-models.js'),(8637,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-models.min.js','wp-includes/js/media-models.min.js'),(8638,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-views.js','wp-includes/js/media-views.js'),(8639,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/media-views.min.js','wp-includes/js/media-views.min.js'),(8640,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement-and-player.js','wp-includes/js/mediaelement/mediaelement-and-player.js'),(8641,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement-and-player.min.js','wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(8642,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement-migrate.js','wp-includes/js/mediaelement/mediaelement-migrate.js'),(8643,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement-migrate.min.js','wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(8644,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement.js','wp-includes/js/mediaelement/mediaelement.js'),(8645,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelement.min.js','wp-includes/js/mediaelement/mediaelement.min.js'),(8646,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelementplayer-legacy.css','wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),(8647,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),(8648,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelementplayer.css','wp-includes/js/mediaelement/mediaelementplayer.css'),(8649,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mediaelementplayer.min.css','wp-includes/js/mediaelement/mediaelementplayer.min.css'),(8650,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mejs-controls.png','wp-includes/js/mediaelement/mejs-controls.png'),(8651,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/mejs-controls.svg','wp-includes/js/mediaelement/mejs-controls.svg'),(8652,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/renderers/vimeo.js','wp-includes/js/mediaelement/renderers/vimeo.js'),(8653,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/renderers/vimeo.min.js','wp-includes/js/mediaelement/renderers/vimeo.min.js'),(8654,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-mediaelement.css','wp-includes/js/mediaelement/wp-mediaelement.css'),(8655,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-mediaelement.js','wp-includes/js/mediaelement/wp-mediaelement.js'),(8656,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-mediaelement.min.css','wp-includes/js/mediaelement/wp-mediaelement.min.css'),(8657,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-mediaelement.min.js','wp-includes/js/mediaelement/wp-mediaelement.min.js'),(8658,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-playlist.js','wp-includes/js/mediaelement/wp-playlist.js'),(8659,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/mediaelement/wp-playlist.min.js','wp-includes/js/mediaelement/wp-playlist.min.js'),(8660,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/handlers.js','wp-includes/js/plupload/handlers.js'),(8661,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/handlers.min.js','wp-includes/js/plupload/handlers.min.js'),(8662,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/license.txt','wp-includes/js/plupload/license.txt'),(8663,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/moxie.js','wp-includes/js/plupload/moxie.js'),(8664,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/moxie.min.js','wp-includes/js/plupload/moxie.min.js'),(8665,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/plupload.js','wp-includes/js/plupload/plupload.js'),(8666,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/plupload.min.js','wp-includes/js/plupload/plupload.min.js'),(8667,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/wp-plupload.js','wp-includes/js/plupload/wp-plupload.js'),(8668,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/plupload/wp-plupload.min.js','wp-includes/js/plupload/wp-plupload.min.js'),(8669,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/quicktags.js','wp-includes/js/quicktags.js'),(8670,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/quicktags.min.js','wp-includes/js/quicktags.min.js'),(8671,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/shortcode.js','wp-includes/js/shortcode.js'),(8672,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/shortcode.min.js','wp-includes/js/shortcode.min.js'),(8673,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfobject.js','wp-includes/js/swfobject.js'),(8674,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfupload/handlers.js','wp-includes/js/swfupload/handlers.js'),(8675,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfupload/handlers.min.js','wp-includes/js/swfupload/handlers.min.js'),(8676,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfupload/license.txt','wp-includes/js/swfupload/license.txt'),(8677,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/swfupload/swfupload.js','wp-includes/js/swfupload/swfupload.js'),(8678,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/thickbox/loadingAnimation.gif','wp-includes/js/thickbox/loadingAnimation.gif'),(8679,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/thickbox/macFFBgHack.png','wp-includes/js/thickbox/macFFBgHack.png'),(8680,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/thickbox/thickbox.css','wp-includes/js/thickbox/thickbox.css'),(8681,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/thickbox/thickbox.js','wp-includes/js/thickbox/thickbox.js'),(8682,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/langs/wp-langs-en.js','wp-includes/js/tinymce/langs/wp-langs-en.js'),(8683,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/license.txt','wp-includes/js/tinymce/license.txt'),(8684,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/charmap/plugin.js','wp-includes/js/tinymce/plugins/charmap/plugin.js'),(8685,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/charmap/plugin.min.js','wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(8686,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/colorpicker/plugin.js','wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(8687,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(8688,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(8689,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/compat3x/plugin.js','wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(8690,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(8691,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/directionality/plugin.js','wp-includes/js/tinymce/plugins/directionality/plugin.js'),(8692,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/directionality/plugin.min.js','wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(8693,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/fullscreen/plugin.js','wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(8694,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(8695,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/hr/plugin.js','wp-includes/js/tinymce/plugins/hr/plugin.js'),(8696,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/hr/plugin.min.js','wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(8697,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/image/plugin.js','wp-includes/js/tinymce/plugins/image/plugin.js'),(8698,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/image/plugin.min.js','wp-includes/js/tinymce/plugins/image/plugin.min.js'),(8699,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/link/plugin.js','wp-includes/js/tinymce/plugins/link/plugin.js'),(8700,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/link/plugin.min.js','wp-includes/js/tinymce/plugins/link/plugin.min.js'),(8701,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/lists/plugin.js','wp-includes/js/tinymce/plugins/lists/plugin.js'),(8702,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/lists/plugin.min.js','wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(8703,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/media/plugin.js','wp-includes/js/tinymce/plugins/media/plugin.js'),(8704,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/media/plugin.min.js','wp-includes/js/tinymce/plugins/media/plugin.min.js'),(8705,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/paste/plugin.js','wp-includes/js/tinymce/plugins/paste/plugin.js'),(8706,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/paste/plugin.min.js','wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(8707,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/tabfocus/plugin.js','wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(8708,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(8709,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/textcolor/plugin.js','wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(8710,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/textcolor/plugin.min.js','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(8711,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wordpress/plugin.js','wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(8712,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(8713,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(8714,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(8715,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(8716,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(8717,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(8718,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(8719,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpemoji/plugin.js','wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(8720,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(8721,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpgallery/plugin.js','wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(8722,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(8723,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wplink/plugin.js','wp-includes/js/tinymce/plugins/wplink/plugin.js'),(8724,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wplink/plugin.min.js','wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(8725,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(8726,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(8727,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpview/plugin.js','wp-includes/js/tinymce/plugins/wpview/plugin.js'),(8728,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/plugins/wpview/plugin.min.js','wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(8729,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/content.inline.min.css','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(8730,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/content.min.css','wp-includes/js/tinymce/skins/lightgray/content.min.css'),(8731,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(8732,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(8733,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(8734,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(8735,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(8736,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(8737,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(8738,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(8739,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(8740,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/img/loader.gif','wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(8741,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/img/object.gif','wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(8742,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/img/trans.gif','wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(8743,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/lightgray/skin.min.css','wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(8744,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/audio.png','wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(8745,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(8746,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(8747,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/embedded.png','wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(8748,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(8749,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/gallery.png','wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(8750,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(8751,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/more.png','wp-includes/js/tinymce/skins/wordpress/images/more.png'),(8752,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(8753,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(8754,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(8755,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(8756,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/images/video.png','wp-includes/js/tinymce/skins/wordpress/images/video.png'),(8757,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/skins/wordpress/wp-content.css','wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(8758,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/themes/inlite/theme.js','wp-includes/js/tinymce/themes/inlite/theme.js'),(8759,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/themes/inlite/theme.min.js','wp-includes/js/tinymce/themes/inlite/theme.min.js'),(8760,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/themes/modern/theme.js','wp-includes/js/tinymce/themes/modern/theme.js'),(8761,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/themes/modern/theme.min.js','wp-includes/js/tinymce/themes/modern/theme.min.js'),(8762,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/tiny_mce_popup.js','wp-includes/js/tinymce/tiny_mce_popup.js'),(8763,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/tinymce.min.js','wp-includes/js/tinymce/tinymce.min.js'),(8764,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/utils/editable_selects.js','wp-includes/js/tinymce/utils/editable_selects.js'),(8765,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/utils/form_utils.js','wp-includes/js/tinymce/utils/form_utils.js'),(8766,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/utils/mctabs.js','wp-includes/js/tinymce/utils/mctabs.js'),(8767,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/utils/validate.js','wp-includes/js/tinymce/utils/validate.js'),(8768,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/wp-tinymce.js','wp-includes/js/tinymce/wp-tinymce.js'),(8769,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tinymce/wp-tinymce.php','wp-includes/js/tinymce/wp-tinymce.php'),(8770,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tw-sack.js','wp-includes/js/tw-sack.js'),(8771,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/tw-sack.min.js','wp-includes/js/tw-sack.min.js'),(8772,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/twemoji.js','wp-includes/js/twemoji.js'),(8773,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/twemoji.min.js','wp-includes/js/twemoji.min.js'),(8774,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/underscore.js','wp-includes/js/underscore.js'),(8775,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/underscore.min.js','wp-includes/js/underscore.min.js'),(8776,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/utils.js','wp-includes/js/utils.js'),(8777,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/utils.min.js','wp-includes/js/utils.min.js'),(8778,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-ajax-response.js','wp-includes/js/wp-ajax-response.js'),(8779,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-ajax-response.min.js','wp-includes/js/wp-ajax-response.min.js'),(8780,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-api.js','wp-includes/js/wp-api.js'),(8781,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-api.min.js','wp-includes/js/wp-api.min.js'),(8782,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-auth-check.js','wp-includes/js/wp-auth-check.js'),(8783,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-auth-check.min.js','wp-includes/js/wp-auth-check.min.js'),(8784,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-backbone.js','wp-includes/js/wp-backbone.js'),(8785,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-backbone.min.js','wp-includes/js/wp-backbone.min.js'),(8786,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-custom-header.js','wp-includes/js/wp-custom-header.js'),(8787,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-custom-header.min.js','wp-includes/js/wp-custom-header.min.js'),(8788,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-embed-template.js','wp-includes/js/wp-embed-template.js'),(8789,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-embed-template.min.js','wp-includes/js/wp-embed-template.min.js'),(8790,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-embed.js','wp-includes/js/wp-embed.js'),(8791,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-embed.min.js','wp-includes/js/wp-embed.min.js'),(8792,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji-loader.js','wp-includes/js/wp-emoji-loader.js'),(8793,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji-loader.min.js','wp-includes/js/wp-emoji-loader.min.js'),(8794,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji-release.min.js','wp-includes/js/wp-emoji-release.min.js'),(8795,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji.js','wp-includes/js/wp-emoji.js'),(8796,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-emoji.min.js','wp-includes/js/wp-emoji.min.js'),(8797,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-list-revisions.js','wp-includes/js/wp-list-revisions.js'),(8798,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-list-revisions.min.js','wp-includes/js/wp-list-revisions.min.js'),(8799,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-lists.js','wp-includes/js/wp-lists.js'),(8800,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-lists.min.js','wp-includes/js/wp-lists.min.js'),(8801,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-pointer.js','wp-includes/js/wp-pointer.js'),(8802,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-pointer.min.js','wp-includes/js/wp-pointer.min.js'),(8803,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-sanitize.js','wp-includes/js/wp-sanitize.js'),(8804,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-sanitize.min.js','wp-includes/js/wp-sanitize.min.js'),(8805,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-util.js','wp-includes/js/wp-util.js'),(8806,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wp-util.min.js','wp-includes/js/wp-util.min.js'),(8807,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wpdialog.js','wp-includes/js/wpdialog.js'),(8808,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wpdialog.min.js','wp-includes/js/wpdialog.min.js'),(8809,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wplink.js','wp-includes/js/wplink.js'),(8810,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/wplink.min.js','wp-includes/js/wplink.min.js'),(8811,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/zxcvbn-async.js','wp-includes/js/zxcvbn-async.js'),(8812,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/zxcvbn-async.min.js','wp-includes/js/zxcvbn-async.min.js'),(8813,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/js/zxcvbn.min.js','wp-includes/js/zxcvbn.min.js'),(8814,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/kses.php','wp-includes/kses.php'),(8815,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translation-controller.php','wp-includes/l10n/class-wp-translation-controller.php'),(8816,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translation-file-mo.php','wp-includes/l10n/class-wp-translation-file-mo.php'),(8817,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translation-file-php.php','wp-includes/l10n/class-wp-translation-file-php.php'),(8818,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translation-file.php','wp-includes/l10n/class-wp-translation-file.php'),(8819,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n/class-wp-translations.php','wp-includes/l10n/class-wp-translations.php'),(8820,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/l10n.php','wp-includes/l10n.php'),(8821,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/link-template.php','wp-includes/link-template.php'),(8822,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/load.php','wp-includes/load.php'),(8823,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/locale.php','wp-includes/locale.php'),(8824,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/media-template.php','wp-includes/media-template.php'),(8825,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/media.php','wp-includes/media.php'),(8826,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/meta.php','wp-includes/meta.php'),(8827,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-blogs.php','wp-includes/ms-blogs.php'),(8828,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-default-constants.php','wp-includes/ms-default-constants.php'),(8829,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-default-filters.php','wp-includes/ms-default-filters.php'),(8830,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-deprecated.php','wp-includes/ms-deprecated.php'),(8831,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-files.php','wp-includes/ms-files.php'),(8832,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-functions.php','wp-includes/ms-functions.php'),(8833,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-load.php','wp-includes/ms-load.php'),(8834,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-network.php','wp-includes/ms-network.php'),(8835,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-settings.php','wp-includes/ms-settings.php'),(8836,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/ms-site.php','wp-includes/ms-site.php'),(8837,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/nav-menu-template.php','wp-includes/nav-menu-template.php'),(8838,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/nav-menu.php','wp-includes/nav-menu.php'),(8839,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/option.php','wp-includes/option.php'),(8840,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/php-compat/readonly.php','wp-includes/php-compat/readonly.php'),(8841,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pluggable-deprecated.php','wp-includes/pluggable-deprecated.php'),(8842,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pluggable.php','wp-includes/pluggable.php'),(8843,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/plugin.php','wp-includes/plugin.php'),(8844,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/entry.php','wp-includes/pomo/entry.php'),(8845,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/mo.php','wp-includes/pomo/mo.php'),(8846,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/plural-forms.php','wp-includes/pomo/plural-forms.php'),(8847,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/po.php','wp-includes/pomo/po.php'),(8848,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/streams.php','wp-includes/pomo/streams.php'),(8849,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/pomo/translations.php','wp-includes/pomo/translations.php'),(8850,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/post-formats.php','wp-includes/post-formats.php'),(8851,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/post-template.php','wp-includes/post-template.php'),(8852,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/post-thumbnail-template.php','wp-includes/post-thumbnail-template.php'),(8853,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/post.php','wp-includes/post.php'),(8854,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/query.php','wp-includes/query.php'),(8855,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/registration-functions.php','wp-includes/registration-functions.php'),(8856,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/registration.php','wp-includes/registration.php'),(8857,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/class-wp-rest-request.php','wp-includes/rest-api/class-wp-rest-request.php'),(8858,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/class-wp-rest-response.php','wp-includes/rest-api/class-wp-rest-response.php'),(8859,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/class-wp-rest-server.php','wp-includes/rest-api/class-wp-rest-server.php'),(8860,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'),(8861,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(8862,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),(8863,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php'),(8864,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php'),(8865,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php'),(8866,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),(8867,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php'),(8868,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php'),(8869,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(8870,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(8871,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php'),(8872,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php'),(8873,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php'),(8874,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php'),(8875,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php'),(8876,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php'),(8877,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php'),(8878,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php'),(8879,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php'),(8880,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php'),(8881,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php'),(8882,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php'),(8883,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(8884,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(8885,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(8886,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(8887,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),(8888,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(8889,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php'),(8890,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php'),(8891,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(8892,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php'),(8893,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php'),(8894,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php'),(8895,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(8896,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),(8897,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php'),(8898,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(8899,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php'),(8900,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php','wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php'),(8901,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(8902,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(8903,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(8904,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(8905,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(8906,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php','wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php'),(8907,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php','wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),(8908,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/search/class-wp-rest-search-handler.php','wp-includes/rest-api/search/class-wp-rest-search-handler.php'),(8909,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php','wp-includes/rest-api/search/class-wp-rest-term-search-handler.php'),(8910,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rest-api.php','wp-includes/rest-api.php'),(8911,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/revision.php','wp-includes/revision.php'),(8912,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rewrite.php','wp-includes/rewrite.php'),(8913,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/robots-template.php','wp-includes/robots-template.php'),(8914,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rss-functions.php','wp-includes/rss-functions.php'),(8915,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/rss.php','wp-includes/rss.php'),(8916,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/script-loader.php','wp-includes/script-loader.php'),(8917,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/script-modules.php','wp-includes/script-modules.php'),(8918,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/session.php','wp-includes/session.php'),(8919,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/shortcodes.php','wp-includes/shortcodes.php'),(8920,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-index.php','wp-includes/sitemaps/class-wp-sitemaps-index.php'),(8921,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-provider.php','wp-includes/sitemaps/class-wp-sitemaps-provider.php'),(8922,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-registry.php','wp-includes/sitemaps/class-wp-sitemaps-registry.php'),(8923,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-renderer.php','wp-includes/sitemaps/class-wp-sitemaps-renderer.php'),(8924,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php','wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php'),(8925,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/class-wp-sitemaps.php','wp-includes/sitemaps/class-wp-sitemaps.php'),(8926,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php','wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php'),(8927,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php','wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php'),(8928,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php','wp-includes/sitemaps/providers/class-wp-sitemaps-users.php'),(8929,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sitemaps.php','wp-includes/sitemaps.php'),(8930,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/LICENSE','wp-includes/sodium_compat/LICENSE'),(8931,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/autoload-php7.php','wp-includes/sodium_compat/autoload-php7.php'),(8932,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/autoload.php','wp-includes/sodium_compat/autoload.php'),(8933,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/composer.json','wp-includes/sodium_compat/composer.json'),(8934,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/constants.php','wp-includes/sodium_compat/lib/constants.php'),(8935,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/namespaced.php','wp-includes/sodium_compat/lib/namespaced.php'),(8936,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/php72compat.php','wp-includes/sodium_compat/lib/php72compat.php'),(8937,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/php72compat_const.php','wp-includes/sodium_compat/lib/php72compat_const.php'),(8938,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/ristretto255.php','wp-includes/sodium_compat/lib/ristretto255.php'),(8939,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/sodium_compat.php','wp-includes/sodium_compat/lib/sodium_compat.php'),(8940,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/lib/stream-xchacha20.php','wp-includes/sodium_compat/lib/stream-xchacha20.php'),(8941,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Compat.php','wp-includes/sodium_compat/namespaced/Compat.php'),(8942,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php','wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php'),(8943,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php','wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(8944,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php','wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(8945,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php','wp-includes/sodium_compat/namespaced/Core/ChaCha20.php'),(8946,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php','wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(8947,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(8948,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(8949,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(8950,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(8951,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(8952,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php','wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php'),(8953,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Curve25519.php','wp-includes/sodium_compat/namespaced/Core/Curve25519.php'),(8954,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Ed25519.php','wp-includes/sodium_compat/namespaced/Core/Ed25519.php'),(8955,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php','wp-includes/sodium_compat/namespaced/Core/HChaCha20.php'),(8956,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php','wp-includes/sodium_compat/namespaced/Core/HSalsa20.php'),(8957,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php','wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php'),(8958,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Poly1305.php','wp-includes/sodium_compat/namespaced/Core/Poly1305.php'),(8959,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Salsa20.php','wp-includes/sodium_compat/namespaced/Core/Salsa20.php'),(8960,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/SipHash.php','wp-includes/sodium_compat/namespaced/Core/SipHash.php'),(8961,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Util.php','wp-includes/sodium_compat/namespaced/Core/Util.php'),(8962,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/X25519.php','wp-includes/sodium_compat/namespaced/Core/X25519.php'),(8963,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php','wp-includes/sodium_compat/namespaced/Core/XChaCha20.php'),(8964,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php','wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php'),(8965,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/Crypto.php','wp-includes/sodium_compat/namespaced/Crypto.php'),(8966,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/namespaced/File.php','wp-includes/sodium_compat/namespaced/File.php'),(8967,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Compat.php','wp-includes/sodium_compat/src/Compat.php'),(8968,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/BLAKE2b.php','wp-includes/sodium_compat/src/Core/BLAKE2b.php'),(8969,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Base64/Common.php','wp-includes/sodium_compat/src/Core/Base64/Common.php'),(8970,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Base64/Original.php','wp-includes/sodium_compat/src/Core/Base64/Original.php'),(8971,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php','wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php'),(8972,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php','wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php'),(8973,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php','wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(8974,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/ChaCha20.php','wp-includes/sodium_compat/src/Core/ChaCha20.php'),(8975,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php','wp-includes/sodium_compat/src/Core/Curve25519/Fe.php'),(8976,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(8977,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(8978,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(8979,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(8980,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(8981,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/H.php','wp-includes/sodium_compat/src/Core/Curve25519/H.php'),(8982,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519/README.md','wp-includes/sodium_compat/src/Core/Curve25519/README.md'),(8983,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Curve25519.php','wp-includes/sodium_compat/src/Core/Curve25519.php'),(8984,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Ed25519.php','wp-includes/sodium_compat/src/Core/Ed25519.php'),(8985,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/HChaCha20.php','wp-includes/sodium_compat/src/Core/HChaCha20.php'),(8986,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/HSalsa20.php','wp-includes/sodium_compat/src/Core/HSalsa20.php'),(8987,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Poly1305/State.php','wp-includes/sodium_compat/src/Core/Poly1305/State.php'),(8988,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Poly1305.php','wp-includes/sodium_compat/src/Core/Poly1305.php'),(8989,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Ristretto255.php','wp-includes/sodium_compat/src/Core/Ristretto255.php'),(8990,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Salsa20.php','wp-includes/sodium_compat/src/Core/Salsa20.php'),(8991,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/SecretStream/State.php','wp-includes/sodium_compat/src/Core/SecretStream/State.php'),(8992,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/SipHash.php','wp-includes/sodium_compat/src/Core/SipHash.php'),(8993,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/Util.php','wp-includes/sodium_compat/src/Core/Util.php'),(8994,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/X25519.php','wp-includes/sodium_compat/src/Core/X25519.php'),(8995,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/XChaCha20.php','wp-includes/sodium_compat/src/Core/XChaCha20.php'),(8996,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core/XSalsa20.php','wp-includes/sodium_compat/src/Core/XSalsa20.php'),(8997,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/BLAKE2b.php','wp-includes/sodium_compat/src/Core32/BLAKE2b.php'),(8998,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php','wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(8999,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php','wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(9000,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/ChaCha20.php','wp-includes/sodium_compat/src/Core32/ChaCha20.php'),(9001,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php','wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php'),(9002,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(9003,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(9004,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(9005,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(9006,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(9007,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/H.php','wp-includes/sodium_compat/src/Core32/Curve25519/H.php'),(9008,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519/README.md','wp-includes/sodium_compat/src/Core32/Curve25519/README.md'),(9009,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Curve25519.php','wp-includes/sodium_compat/src/Core32/Curve25519.php'),(9010,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Ed25519.php','wp-includes/sodium_compat/src/Core32/Ed25519.php'),(9011,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/HChaCha20.php','wp-includes/sodium_compat/src/Core32/HChaCha20.php'),(9012,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/HSalsa20.php','wp-includes/sodium_compat/src/Core32/HSalsa20.php'),(9013,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Int32.php','wp-includes/sodium_compat/src/Core32/Int32.php'),(9014,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Int64.php','wp-includes/sodium_compat/src/Core32/Int64.php'),(9015,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Poly1305/State.php','wp-includes/sodium_compat/src/Core32/Poly1305/State.php'),(9016,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Poly1305.php','wp-includes/sodium_compat/src/Core32/Poly1305.php'),(9017,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Salsa20.php','wp-includes/sodium_compat/src/Core32/Salsa20.php'),(9018,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/SecretStream/State.php','wp-includes/sodium_compat/src/Core32/SecretStream/State.php'),(9019,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/SipHash.php','wp-includes/sodium_compat/src/Core32/SipHash.php'),(9020,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/Util.php','wp-includes/sodium_compat/src/Core32/Util.php'),(9021,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/X25519.php','wp-includes/sodium_compat/src/Core32/X25519.php'),(9022,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/XChaCha20.php','wp-includes/sodium_compat/src/Core32/XChaCha20.php'),(9023,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Core32/XSalsa20.php','wp-includes/sodium_compat/src/Core32/XSalsa20.php'),(9024,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Crypto.php','wp-includes/sodium_compat/src/Crypto.php'),(9025,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/Crypto32.php','wp-includes/sodium_compat/src/Crypto32.php'),(9026,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/File.php','wp-includes/sodium_compat/src/File.php'),(9027,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/PHP52/SplFixedArray.php','wp-includes/sodium_compat/src/PHP52/SplFixedArray.php'),(9028,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/sodium_compat/src/SodiumException.php','wp-includes/sodium_compat/src/SodiumException.php'),(9029,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/spl-autoload-compat.php','wp-includes/spl-autoload-compat.php'),(9030,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine-css-declarations.php','wp-includes/style-engine/class-wp-style-engine-css-declarations.php'),(9031,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine-css-rule.php','wp-includes/style-engine/class-wp-style-engine-css-rule.php'),(9032,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php','wp-includes/style-engine/class-wp-style-engine-css-rules-store.php'),(9033,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine-processor.php','wp-includes/style-engine/class-wp-style-engine-processor.php'),(9034,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine/class-wp-style-engine.php','wp-includes/style-engine/class-wp-style-engine.php'),(9035,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/style-engine.php','wp-includes/style-engine.php'),(9036,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/taxonomy.php','wp-includes/taxonomy.php'),(9037,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/template-canvas.php','wp-includes/template-canvas.php'),(9038,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/template-loader.php','wp-includes/template-loader.php'),(9039,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/template.php','wp-includes/template.php'),(9040,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/comments.php','wp-includes/theme-compat/comments.php'),(9041,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/embed-404.php','wp-includes/theme-compat/embed-404.php'),(9042,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/embed-content.php','wp-includes/theme-compat/embed-content.php'),(9043,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/embed.php','wp-includes/theme-compat/embed.php'),(9044,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/footer-embed.php','wp-includes/theme-compat/footer-embed.php'),(9045,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/footer.php','wp-includes/theme-compat/footer.php'),(9046,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/header-embed.php','wp-includes/theme-compat/header-embed.php'),(9047,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/header.php','wp-includes/theme-compat/header.php'),(9048,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-compat/sidebar.php','wp-includes/theme-compat/sidebar.php'),(9049,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-i18n.json','wp-includes/theme-i18n.json'),(9050,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-previews.php','wp-includes/theme-previews.php'),(9051,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme-templates.php','wp-includes/theme-templates.php'),(9052,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme.json','wp-includes/theme.json'),(9053,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/theme.php','wp-includes/theme.php'),(9054,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/update.php','wp-includes/update.php'),(9055,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/user.php','wp-includes/user.php'),(9056,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/vars.php','wp-includes/vars.php'),(9057,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/version.php','wp-includes/version.php'),(9058,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-nav-menu-widget.php','wp-includes/widgets/class-wp-nav-menu-widget.php'),(9059,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-archives.php','wp-includes/widgets/class-wp-widget-archives.php'),(9060,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-block.php','wp-includes/widgets/class-wp-widget-block.php'),(9061,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-calendar.php','wp-includes/widgets/class-wp-widget-calendar.php'),(9062,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-categories.php','wp-includes/widgets/class-wp-widget-categories.php'),(9063,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-custom-html.php','wp-includes/widgets/class-wp-widget-custom-html.php'),(9064,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-links.php','wp-includes/widgets/class-wp-widget-links.php'),(9065,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media-audio.php','wp-includes/widgets/class-wp-widget-media-audio.php'),(9066,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media-gallery.php','wp-includes/widgets/class-wp-widget-media-gallery.php'),(9067,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media-image.php','wp-includes/widgets/class-wp-widget-media-image.php'),(9068,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media-video.php','wp-includes/widgets/class-wp-widget-media-video.php'),(9069,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-media.php','wp-includes/widgets/class-wp-widget-media.php'),(9070,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-meta.php','wp-includes/widgets/class-wp-widget-meta.php'),(9071,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-pages.php','wp-includes/widgets/class-wp-widget-pages.php'),(9072,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-recent-comments.php','wp-includes/widgets/class-wp-widget-recent-comments.php'),(9073,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-recent-posts.php','wp-includes/widgets/class-wp-widget-recent-posts.php'),(9074,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-rss.php','wp-includes/widgets/class-wp-widget-rss.php'),(9075,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-search.php','wp-includes/widgets/class-wp-widget-search.php'),(9076,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-tag-cloud.php','wp-includes/widgets/class-wp-widget-tag-cloud.php'),(9077,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets/class-wp-widget-text.php','wp-includes/widgets/class-wp-widget-text.php'),(9078,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/widgets.php','wp-includes/widgets.php'),(9079,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/wp-db.php','wp-includes/wp-db.php'),(9080,'/home/nginx/domains/atlantagynecomastia.com/public/wp-includes/wp-diff.php','wp-includes/wp-diff.php'),(9081,'/home/nginx/domains/atlantagynecomastia.com/public/wp-links-opml.php','wp-links-opml.php'),(9082,'/home/nginx/domains/atlantagynecomastia.com/public/wp-load.php','wp-load.php'),(9083,'/home/nginx/domains/atlantagynecomastia.com/public/wp-login.php','wp-login.php'),(9084,'/home/nginx/domains/atlantagynecomastia.com/public/wp-mail.php','wp-mail.php'),(9085,'/home/nginx/domains/atlantagynecomastia.com/public/wp-settings.php','wp-settings.php'),(9086,'/home/nginx/domains/atlantagynecomastia.com/public/wp-signup.php','wp-signup.php'),(9087,'/home/nginx/domains/atlantagynecomastia.com/public/wp-trackback.php','wp-trackback.php'),(9088,'/home/nginx/domains/atlantagynecomastia.com/public/xmlrpc.php','xmlrpc.php');
/*!40000 ALTER TABLE `hyu_wfknownfilelist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wflivetraffichuman`
--

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

--
-- Dumping data for table `hyu_wflivetraffichuman`
--

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

--
-- Table structure for table `hyu_wflocs`
--

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

--
-- Dumping data for table `hyu_wflocs`
--

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

--
-- Table structure for table `hyu_wflogins`
--

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

--
-- Dumping data for table `hyu_wflogins`
--

LOCK TABLES `hyu_wflogins` WRITE;
/*!40000 ALTER TABLE `hyu_wflogins` DISABLE KEYS */;
INSERT INTO `hyu_wflogins` VALUES (1,1,1707232732.347135,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(2,2,1707249031.140955,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(3,3,1707257777.083920,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(4,4,1707337163.050128,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(5,5,1707349025.936587,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(6,6,1707355546.236690,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(7,7,1707356160.337749,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(8,8,1707358638.749357,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(9,9,1707448149.864123,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(10,10,1707505878.196405,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(11,11,1707515568.463271,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(12,12,1707569465.563099,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Cn7','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(13,13,1707585579.004705,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(14,14,1707606610.931158,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(15,15,1707610733.332991,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(16,16,1707611034.804827,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(17,17,1707613048.412942,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(18,18,1707674959.458825,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(19,19,1707682316.879152,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(20,20,1707772933.897078,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(21,21,1707774425.708297,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0Es*','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(22,22,1707782244.462988,0,'loginOK','charles.d.breitbart@gmail.com',1,'\0\0\0\0\0\0\0\0\0\0gk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(23,23,1707824070.297839,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0\'pة5\\&L','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(24,24,1707836144.737457,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAv&\'','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(25,25,1708118018.700254,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA=m!a','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(26,26,1708205835.706289,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA5m\\u','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(27,27,1708274736.366333,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAY','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(28,28,1708310659.243475,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAY','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(29,29,1708359416.039240,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA?ڶX','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(30,30,1708362192.833973,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA?ڶX','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(31,31,1708367241.896837,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA?ڶX','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(32,32,1708468548.798270,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA\n)=','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(33,33,1708530993.236094,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAQ@','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(34,34,1708627964.593508,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAP2','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(35,35,1708717020.956698,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAG%','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(36,65,1708893589.210266,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAi+_','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(37,82,1708913719.809554,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-!,','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(38,95,1708930258.849638,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36'),(39,142,1709063108.798601,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0\'p^#@','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(40,158,1709080603.279798,0,'loginOK','Andrew',2,'\0\0\0\0\0\0\0\0\0\0q','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:109.0) Gecko/20100101 Firefox/115.0'),(41,168,1709163269.804276,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA	L','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36'),(42,169,1709223551.581153,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAڤ|}','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(43,172,1709305003.473567,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA5K	','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(44,195,1709409333.764610,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAi%cOJ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(45,211,1709563195.013229,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAN q','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(46,212,1709586587.045874,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAN q','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(47,230,1709653226.406639,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAm2','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(48,243,1709664609.091656,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36'),(49,249,1709669547.078752,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\Z,','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(50,296,1709711461.154994,1,'loginFailInvalidUsername','admin',0,'*\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(51,316,1709753726.168771,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA:','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(52,317,1709826069.433736,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA7}9','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(53,318,1709853129.825765,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA7}9','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(54,319,1709910640.040633,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA|Th`','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(55,320,1709936110.768348,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA|Th`','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(56,321,1709936937.477664,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA|Th`','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(57,322,1710027999.579293,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0\'pd~]ݯ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(58,323,1710087533.067320,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAR2','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(59,324,1710168217.238836,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAQS','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(60,328,1710280506.006923,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HATN','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(61,329,1710343815.051171,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAYXhQ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(62,341,1710448894.903407,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAɭ%LW','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(63,353,1710483735.541187,1,'loginFailInvalidUsername','admin',0,'$H\0_\0RL','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36'),(64,359,1710530736.833864,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAH?;U','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(65,380,1710657523.178330,1,'loginFailInvalidUsername','admin',0,'&\0\0\0\0\0z\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(66,393,1710696334.850253,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA7$dSؓ>','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(67,422,1710773089.833702,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAؒ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(68,423,1710798496.217420,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAؒ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(69,424,1710871169.109678,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAH_','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'),(70,425,1710948101.869828,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA! 1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36'),(71,426,1711023395.930090,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA|QI\'','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36'),(72,427,1711115796.326319,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HA.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36'),(73,428,1711174192.731226,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0P','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(74,429,1711205799.170182,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAЪRl','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36'),(75,430,1711251279.113723,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(76,437,1711289323.713505,1,'loginFailInvalidUsername','admin',0,'*\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(77,444,1711295752.242103,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAM]+W{','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36'),(78,461,1711308484.810004,1,'loginFailInvalidUsername','karla',0,'\0\0\0\0\0\0\0\0\0\0a','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(79,473,1711317396.299760,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Ո]','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(80,495,1711376508.403728,0,'loginOK','charles.d.breitbart@gmail.com',1,'&p\0HAe#','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36'),(81,570,1712730085.985325,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(82,588,1713693518.942346,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>m\r','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(83,647,1714462431.565736,1,'loginFailInvalidUsername','admin',0,' A\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),(84,669,1714586204.745902,1,'loginFailInvalidUsername','admin',0,' A\0:e\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36'),(85,700,1715075605.021219,1,'loginFailInvalidUsername','admin',0,'*98t\0\0\0\0\0\0\0\0','Mozilla/5.0'),(86,825,1715934510.347478,1,'loginFailInvalidUsername','admin',0,'&\0\0\0\0\0\04\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36'),(87,856,1716482532.477273,1,'loginFailInvalidUsername','admin',0,' A\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(88,859,1716492935.309605,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g9R','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(89,914,1717396340.924071,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(90,980,1718340614.994040,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0O','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(91,981,1718409757.908382,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ĵ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(92,982,1718672908.262653,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0b%T','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(93,984,1718766953.525482,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;k','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(94,986,1719193567.863221,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ՙ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(95,988,1719393252.119894,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(96,989,1719525843.574117,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ʇ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(97,992,1719705260.085526,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0{(','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(98,993,1719841962.027181,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Fm','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(99,1009,1719950156.517842,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(100,1046,1719981585.496883,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0z[','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(101,1055,1719989495.793855,1,'loginFailInvalidUsername','admin',0,' A\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36'),(102,1077,1720072567.011664,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(103,1098,1720132867.210651,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(104,1110,1720144551.584433,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0w0*','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(105,1126,1720287520.041109,1,'loginFailInvalidUsername','admin',0,'*G\0)\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(106,1183,1720501377.604467,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(107,1184,1720565056.949767,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(108,1199,1720714525.002647,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k&','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36'),(109,1264,1720780647.510640,1,'loginFailInvalidUsername','wwwadmin',0,'*\0ր\0 \0P\0\0\0\0\0\0\"','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(110,1283,1721139635.980773,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0WA[','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),(111,1319,1721169424.730721,1,'loginFailInvalidUsername','admin',0,' | p.\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36'),(112,1456,1721433362.735135,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0J','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(113,1459,1721469553.017147,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[^>','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(114,1462,1721592591.304461,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0EJ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(115,1476,1721809872.826460,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0gK\"','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(116,1479,1721875513.973332,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\01/','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(117,1483,1721986610.561054,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(118,1487,1722144341.374392,1,'loginFailInvalidUsername','admin',0,' A.\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(119,1531,1722218016.263567,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(120,1533,1722220307.300910,1,'loginFailInvalidUsername','admin',0,'$	@\0h-!\\Yj','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(121,1545,1722238212.989725,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\03D{','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'),(122,1558,1722337841.111297,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0	','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(123,1560,1722504536.278810,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0|@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(124,1568,1722717047.674303,1,'loginFailInvalidUsername','admin',0,'$	@\0U\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(125,1569,1722766122.080054,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\04E','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36'),(126,1571,1722772450.019288,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\03T','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(127,1582,1722790945.392360,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(128,1602,1722842296.035803,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(129,1607,1722850286.099911,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0g\'','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123.0'),(130,1640,1723003490.565245,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(131,1661,1723198435.788414,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Yo','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(132,1670,1723228711.420779,1,'loginFailInvalidUsername','admin',0,'&\0\0\0\0\0\04\0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36'),(133,1686,1723245665.710939,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(134,1745,1723323034.871003,1,'loginFailInvalidUsername','admin',0,' A\0>k\0\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(135,1781,1723459080.629808,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0sX','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(136,1782,1723514455.726982,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(137,1826,1723633956.825815,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(138,1835,1723712406.675904,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0b','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(139,1841,1723859865.199846,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.\"¥','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(140,1842,1723891384.100111,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(141,1846,1724007355.328986,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0sY','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(142,1887,1724106547.047598,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Hz','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(143,1892,1724119656.917093,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(144,1899,1724140662.675970,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0~\Z','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(145,1906,1724158682.764339,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>_','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(146,1908,1724162721.090398,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0wK','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(147,1910,1724177707.268065,1,'loginFailInvalidUsername','admin',0,'(T\0\0g','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(148,1912,1724192465.067684,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0yx','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(149,1914,1724200081.706055,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Cр','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(150,1915,1724203708.008932,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0(8','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(151,1917,1724215529.269879,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(152,1918,1724222125.124660,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0_Ud','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(153,1919,1724224838.409101,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(154,1920,1724232989.514438,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(155,1922,1724250828.364967,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(156,1923,1724253615.826394,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ާ>','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(157,1924,1724256471.514919,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0_Rz','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(158,1926,1724261097.434718,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'1Ӓ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(159,1927,1724265511.556267,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'/<m','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(160,1928,1724267963.069446,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\09F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(161,1929,1724270153.979059,1,'loginFailInvalidUsername','admin',0,'(\Zԃ!','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(162,1930,1724273608.374127,1,'loginFailInvalidUsername','admin',0,'(lI!)-','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(163,1931,1724276740.143438,1,'loginFailInvalidUsername','admin',0,'*#xz\'N\'Mh','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(164,1932,1724278498.806575,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(165,1934,1724279956.426513,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ʴ(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(166,1935,1724281103.971077,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0_9q','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(167,1936,1724282404.181499,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0p','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(168,1937,1724284265.219241,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0)Ѳ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(169,1938,1724285793.552857,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0W|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(170,1939,1724287607.936678,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(171,1940,1724288637.177400,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'\"','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(172,1941,1724289204.760555,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0/4','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(173,1942,1724290158.681875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[ד','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(174,1943,1724291725.384506,1,'loginFailInvalidUsername','admin',0,'(֑`xX[H','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(175,1944,1724292095.120627,1,'loginFailInvalidUsername','admin',0,'(X\0TM/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(176,1945,1724292931.162197,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(177,1947,1724293877.041135,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0%','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(178,1948,1724294663.253372,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0_9M','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(179,1949,1724295576.935764,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Q[','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(180,1950,1724296156.404753,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-\n#V','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(181,1951,1724296524.742398,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Yo','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(182,1952,1724297529.570505,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0%,','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(183,1953,1724297750.039802,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Uu{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(184,1954,1724298430.756877,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0؃z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(185,1955,1724299208.355501,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\03Y','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(186,1956,1724299635.994702,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0}l','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(187,1957,1724300112.018127,1,'loginFailInvalidUsername','admin',0,'*\r0ۄ_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(188,1958,1724300547.041689,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(189,1959,1724300917.462582,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0oX[','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(190,1960,1724301169.930597,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0}J','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(191,1961,1724301411.678602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(192,1962,1724301987.236171,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0sZW','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(193,1963,1724302192.326510,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\09','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(194,1964,1724302652.863464,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(195,1965,1724302883.842935,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Cыg','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(196,1983,1724594916.218661,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0{l_','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(197,1984,1724654931.631292,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[[','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(198,1988,1724820814.276159,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ĵ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(199,1991,1724933652.873736,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0gFW{','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(200,1992,1725047049.593075,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Z','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(201,1993,1725099026.377235,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(202,1996,1725190472.867512,1,'loginFailInvalidUsername','admin',0,'$k\"7rV','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(203,1998,1725376058.508032,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0nr','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(204,2012,1725396653.470359,1,'loginFailInvalidUsername','admin',0,'*K\0\0\0\0<W','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(205,2020,1725405349.205906,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),(206,2046,1725440829.352194,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ɉ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(207,2049,1725472804.920255,1,'loginFailInvalidUsername','admin',0,'*\rAU/z','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(208,2070,1725566210.116178,1,'loginFailInvalidUsername','admin',0,'$\0a\0\0\0\0\0\0\0v','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'),(209,2084,1725599057.764706,1,'loginFailInvalidUsername','admin',0,'$Y\0(\"*','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(210,2088,1725802046.883846,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(211,2091,1725836733.698951,1,'loginFailInvalidUsername','admin',0,',Amt','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(212,2097,1726023078.216927,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(213,2121,1726073479.633162,1,'loginFailInvalidUsername','admin',0,'*\0ր\0 \0P\0\0\0\0\0\0\"','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(214,2133,1726087836.977909,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0gz','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),(215,2154,1726140177.346440,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0&Z','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(216,2155,1726291235.218812,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(217,2156,1726291236.155469,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(218,2157,1726348743.626271,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(219,2158,1726403788.560749,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(220,2223,1727238045.343542,1,'loginFailInvalidUsername','admin',0,'&\0\0\0\0\0\04\0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(221,2239,1727256702.704725,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36'),(222,2248,1727413346.416856,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0շ5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(223,2300,1727506236.957824,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(224,2329,1727558119.003859,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0SF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(225,2358,1727611939.128025,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0s`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(226,2379,1727647609.888846,1,'loginFailInvalidUsername','wpadminns',0,'\0\0\0\0\0\0\0\0\0\0BF','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),(227,2393,1727745190.428134,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Uk6','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(228,2432,1727826986.776073,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0b','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(229,2442,1727970799.070195,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(230,2486,1728090107.563928,1,'loginFailInvalidUsername','admin',0,'*G\0u\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(231,2487,1728090441.792292,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(232,2500,1728144956.268161,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0p','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(233,2521,1728183219.800834,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^%9','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(234,2534,1728290671.523054,1,'loginFailInvalidUsername','admin',0,'$\0\0CP\0','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(235,2558,1728345540.574898,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\\/8e','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(236,2562,1728352842.645835,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0(U','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(237,2584,1728389924.820853,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0s','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(238,2632,1728502235.179415,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0_.h','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(239,2634,1728561162.043734,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0%[','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(240,2638,1728623848.161533,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12');
/*!40000 ALTER TABLE `hyu_wflogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfls_2fa_secrets`
--

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

--
-- Dumping data for table `hyu_wfls_2fa_secrets`
--

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

--
-- Table structure for table `hyu_wfls_role_counts`
--

DROP TABLE IF EXISTS `hyu_wfls_role_counts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_wfls_role_counts` (
  `serialized_roles` varbinary(255) NOT NULL,
  `two_factor_inactive` tinyint(1) NOT NULL,
  `user_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`serialized_roles`,`two_factor_inactive`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_wfls_role_counts`
--

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

--
-- Table structure for table `hyu_wfls_settings`
--

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

--
-- Dumping data for table `hyu_wfls_settings`
--

LOCK TABLES `hyu_wfls_settings` WRITE;
/*!40000 ALTER TABLE `hyu_wfls_settings` DISABLE KEYS */;
INSERT INTO `hyu_wfls_settings` VALUES ('2fa-user-grace-period','10','yes'),('allow-disabling-ntp','1','yes'),('allow-xml-rpc','1','yes'),('captcha-stats','{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),('delete-deactivation','','yes'),('disable-temporary-tables','0','yes'),('enable-auth-captcha','','yes'),('enable-login-history-columns','1','yes'),('enable-shortcode','','yes'),('enable-woocommerce-account-integration','','yes'),('enable-woocommerce-integration','','yes'),('global-notices','[]','yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh','1707151960','yes'),('ntp-failure-count','0','yes'),('ntp-offset','0.090268135070801','yes'),('recaptcha-threshold','0.5','yes'),('remember-device','','yes'),('remember-device-duration','2592000','yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('schema-version','2','yes'),('shared-hash-secret','dd182c9630ac51eb29a99b0b0d30db718e983b26b176914000f4719f33a984ca','yes'),('shared-symmetric-secret','a0fcd138d71bf02b8dfe1f92652de621ac7ddf348ff741c9b50423fae44d225a','yes'),('stack-ui-columns','1','yes'),('use-ntp','1','yes'),('user-count-query-state','0','yes'),('whitelisted','','yes'),('xmlrpc-enabled','1','yes');
/*!40000 ALTER TABLE `hyu_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfnotifications`
--

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

--
-- Dumping data for table `hyu_wfnotifications`
--

LOCK TABLES `hyu_wfnotifications` WRITE;
/*!40000 ALTER TABLE `hyu_wfnotifications` DISABLE KEYS */;
INSERT INTO `hyu_wfnotifications` VALUES ('network-GQ2TGNZW',0,'toupp-20220714',100,1713383019,'<p><strong>Wordfence Terms of Service and UK IDTA</strong></p>\n<p>Please review the updated Terms of Service with the new UK IDTA.\n</p>\n<p><a href=\"https://www.wordfence.com/terms-of-service/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20220714\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Terms of Service</a> <a href=\"https://www.wordfence.com/uk-international-data-transfer-addendum/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20220714\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">UK IDTA</a></p>\n','[]'),('site-AEAAAAA',0,'wfplugin_updates',502,1707250519,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-AQAAAAA',0,'wfplugin_updates',502,1707337137,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-AQAQAAA',0,'wfplugin_scan',502,1715270011,'<a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-AUAAAAA',0,'wfplugin_updates',502,1707836232,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-AUAQAAA',0,'wfplugin_updates',502,1715270011,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-B4AAAAA',0,'wfplugin_scan',502,1709085482,'<a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-B4BAAAA',1,'wfplugin_scan',502,1728582657,'<a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=WordfenceScan\">4 issues found in most recent scan</a>','[]'),('site-BAAAAAA',0,'wfplugin_updates',502,1708119546,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-BEAQAAA',0,'wfplugin_updates',502,1717624746,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">Updates are available for 1 plugin and 1 theme</a>','[]'),('site-BIAQAAA',0,'wfplugin_scan',502,1720738678,'<a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-BIBAAAA',1,'wfplugin_updates',502,1728582657,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">Updates are available for WordPress (v6.6.2), 1 plugin, and 2 themes</a>','[]'),('site-BUAAAAA',0,'wfplugin_updates',502,1708468608,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-BYAAAAA',0,'wfplugin_updates',502,1709085482,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-C4AAAAA',0,'wfplugin_updates',502,1709925234,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-CUAAAAA',0,'wfplugin_updates',502,1709223578,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-CYAAAAA',0,'wfplugin_updates',502,1709842258,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-DEAAAAA',0,'wfplugin_updates',502,1712703341,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 theme</a>','[]'),('site-DIAAAAA',0,'wfplugin_scan',502,1710867612,'<a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-JEAAAAA',0,'wfplugin_scan',502,1711147212,'<a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-MEAAAAA',0,'wfplugin_scan',502,1712703341,'<a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-NEAQAAA',0,'wfplugin_updates',502,1718567079,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 2 plugins</a>','[]'),('site-SUAQAAA',0,'wfplugin_updates',502,1718732965,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 2 plugins</a>','[]'),('site-T4AQAAA',0,'wfplugin_updates',502,1718949005,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-U4AAAAA',0,'wfplugin_updates',502,1714938214,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 3 plugins</a>','[]'),('site-UMAQAAA',0,'wfplugin_updates',502,1718992203,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-VAAAAAA',0,'wfplugin_scan',502,1715006601,'<a href=\"https://atlantagynecomastia.com/wp-admin/admin.php?page=WordfenceScan\">3 issues found in most recent scan</a>','[]'),('site-WEAQAAA',0,'wfplugin_updates',502,1719337748,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-WYAQAAA',0,'wfplugin_updates',502,1720738678,'<a href=\"https://atlantagynecomastia.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]');
/*!40000 ALTER TABLE `hyu_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wfpendingissues`
--

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

--
-- Dumping data for table `hyu_wfpendingissues`
--

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

--
-- Table structure for table `hyu_wfreversecache`
--

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

--
-- Dumping data for table `hyu_wfreversecache`
--

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

--
-- Table structure for table `hyu_wfsecurityevents`
--

DROP TABLE IF EXISTS `hyu_wfsecurityevents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_wfsecurityevents` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(255) NOT NULL DEFAULT '',
  `data` text NOT NULL,
  `event_time` double(14,4) NOT NULL,
  `state` enum('new','sending','sent') NOT NULL DEFAULT 'new',
  `state_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_wfsecurityevents`
--

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

--
-- Table structure for table `hyu_wfsnipcache`
--

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

--
-- Dumping data for table `hyu_wfsnipcache`
--

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

--
-- Table structure for table `hyu_wfstatus`
--

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

--
-- Dumping data for table `hyu_wfstatus`
--

LOCK TABLES `hyu_wfstatus` WRITE;
/*!40000 ALTER TABLE `hyu_wfstatus` DISABLE KEYS */;
INSERT INTO `hyu_wfstatus` VALUES (23328,1728007620.822779,2,'info','Scanned contents of 836 additional files at 4.51 per second'),(23329,1728007621.937866,2,'info','Scanned contents of 852 additional files at 4.57 per second'),(23330,1728007622.969150,2,'info','Scanned contents of 866 additional files at 4.62 per second'),(23331,1728007624.076432,2,'info','Scanned contents of 881 additional files at 4.67 per second'),(23332,1728007625.118721,2,'info','Scanned contents of 899 additional files at 4.74 per second'),(23333,1728007626.144649,2,'info','Scanned contents of 914 additional files at 4.79 per second'),(23334,1728007627.195231,2,'info','Scanned contents of 932 additional files at 4.86 per second'),(23335,1728007628.214291,2,'info','Scanned contents of 946 additional files at 4.91 per second'),(23336,1728007669.015226,2,'info','Scanned contents of 960 additional files at 4.11 per second'),(23337,1728007670.134511,2,'info','Scanned contents of 969 additional files at 4.13 per second'),(23338,1728007671.145626,2,'info','Scanned contents of 984 additional files at 4.17 per second'),(23339,1728007672.415483,2,'info','Scanned contents of 991 additional files at 4.18 per second'),(23340,1728007673.480061,2,'info','Scanned contents of 1003 additional files at 4.21 per second'),(23341,1728007674.606316,2,'info','Scanned contents of 1008 additional files at 4.21 per second'),(23342,1728007675.621367,2,'info','Scanned contents of 1015 additional files at 4.22 per second'),(23343,1728007676.700307,2,'info','Scanned contents of 1026 additional files at 4.25 per second'),(23344,1728007677.736583,2,'info','Scanned contents of 1035 additional files at 4.27 per second'),(23345,1728007678.765674,2,'info','Scanned contents of 1041 additional files at 4.28 per second'),(23346,1728007679.796175,2,'info','Scanned contents of 1049 additional files at 4.29 per second'),(23347,1728007680.975608,2,'info','Scanned contents of 1057 additional files at 4.30 per second'),(23348,1728007682.314569,2,'info','Scanned contents of 1070 additional files at 4.33 per second'),(23349,1728007683.321085,2,'info','Scanned contents of 1088 additional files at 4.39 per second'),(23350,1728007684.348798,2,'info','Scanned contents of 1096 additional files at 4.40 per second'),(23351,1728007685.402670,2,'info','Scanned contents of 1101 additional files at 4.40 per second'),(23352,1728007686.429348,2,'info','Scanned contents of 1112 additional files at 4.43 per second'),(23353,1728007687.446609,2,'info','Scanned contents of 1137 additional files at 4.51 per second'),(23354,1728007688.481630,2,'info','Scanned contents of 1152 additional files at 4.55 per second'),(23355,1728007689.521725,2,'info','Scanned contents of 1171 additional files at 4.61 per second'),(23356,1728007690.612274,2,'info','Scanned contents of 1178 additional files at 4.62 per second'),(23357,1728007691.624622,2,'info','Scanned contents of 1191 additional files at 4.65 per second'),(23358,1728007692.832692,2,'info','Scanned contents of 1206 additional files at 4.68 per second'),(23359,1728007693.835053,2,'info','Scanned contents of 1217 additional files at 4.71 per second'),(23360,1728007695.007257,2,'info','Scanned contents of 1226 additional files at 4.72 per second'),(23361,1728007696.028940,2,'info','Scanned contents of 1238 additional files at 4.75 per second'),(23362,1728007697.081986,2,'info','Scanned contents of 1251 additional files at 4.78 per second'),(23363,1728007698.093181,2,'info','Scanned contents of 1271 additional files at 4.84 per second'),(23364,1728007736.320159,2,'info','Scanned contents of 1279 additional files at 4.25 per second'),(23365,1728007737.404754,2,'info','Scanned contents of 1295 additional files at 4.29 per second'),(23366,1728007738.484744,2,'info','Scanned contents of 1313 additional files at 4.33 per second'),(23367,1728007739.528132,2,'info','Scanned contents of 1334 additional files at 4.39 per second'),(23368,1728007740.552881,2,'info','Scanned contents of 1346 additional files at 4.41 per second'),(23369,1728007741.698827,2,'info','Scanned contents of 1358 additional files at 4.43 per second'),(23370,1728007743.075762,2,'info','Scanned contents of 1371 additional files at 4.46 per second'),(23371,1728007744.081034,2,'info','Scanned contents of 1380 additional files at 4.47 per second'),(23372,1728007745.305537,2,'info','Scanned contents of 1400 additional files at 4.52 per second'),(23373,1728007746.468235,2,'info','Scanned contents of 1410 additional files at 4.53 per second'),(23374,1728007747.597130,2,'info','Scanned contents of 1429 additional files at 4.58 per second'),(23375,1728007748.670579,2,'info','Scanned contents of 1439 additional files at 4.59 per second'),(23376,1728007749.818136,2,'info','Scanned contents of 1457 additional files at 4.63 per second'),(23377,1728007750.450504,2,'info','Scanned contents of 1468 additional files at 4.66 per second'),(23378,1728007750.450712,2,'info','Asking Wordfence to check URLs against malware list.'),(23379,1728007750.456918,2,'info','Checking 1712 host keys against Wordfence scanning servers.'),(23380,1728007750.834212,2,'info','Done host key check.'),(23381,1728007750.848216,2,'info','Done file contents scan'),(23387,1728007750.897085,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(23388,1728007750.897448,2,'info','Checking 105 host keys against Wordfence scanning servers.'),(23389,1728007751.265706,2,'info','Done host key check.'),(23390,1728007751.266075,2,'info','Done examining URLs'),(23395,1728007751.292099,2,'info','Starting password strength check on 3 users.'),(23400,1728007753.785103,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(23401,1728007753.785492,2,'info','Done examining URLs'),(23403,1728007753.790561,1,'info','-------------------'),(23404,1728007753.790985,2,'info','Wordfence used 24.41 MB of memory for scan. Server peak memory usage was: 82.41 MB'),(23405,1728007753.792232,1,'info','Scan Complete. Scanned 9444 files, 11 plugins, 2 themes, 33 posts, 0 comments and 9452 URLs in 8 minutes 48 seconds.'),(23408,1728053496.784083,1,'info','Initiating quick scan'),(23413,1728053498.057932,1,'info','-------------------'),(23414,1728053498.058827,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(23415,1728053498.059969,1,'info','Quick Scan Complete. Scanned in 2 seconds.'),(23418,1728139896.764073,1,'info','Initiating quick scan'),(23423,1728139897.604082,1,'info','-------------------'),(23424,1728139897.605292,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(23425,1728139897.607192,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23428,1728226277.904107,1,'info','Initiating quick scan'),(23433,1728226278.962110,1,'info','-------------------'),(23434,1728226278.963339,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(23435,1728226278.965216,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23437,1728266423.055649,1,'info','Scheduled Wordfence scan starting at Monday 7th of October 2024 02:00:23 AM'),(23438,1728266424.585959,1,'info','Using low resource scanning'),(23440,1728266424.594951,1,'info','Contacting Wordfence to initiate scan'),(23450,1728266431.151043,2,'info','Getting plugin list from WordPress'),(23451,1728266431.154675,2,'info','Found 11 plugins'),(23452,1728266431.155073,2,'info','Getting theme list from WordPress'),(23453,1728266431.165696,2,'info','Found 2 themes'),(23458,1728266432.020491,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(23459,1728266432.021502,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(23460,1728266432.025102,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(23461,1728266432.027541,10,'info','SUM_START:Comparing open source themes against WordPress.org originals'),(23462,1728266432.029705,10,'info','SUM_START:Comparing plugins against WordPress.org originals'),(23463,1728266432.031867,10,'info','SUM_START:Scanning for known malware files'),(23464,1728266432.034193,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(23465,1728266432.254890,2,'info','500 files indexed'),(23466,1728266432.589896,2,'info','1000 files indexed'),(23467,1728266432.907735,2,'info','1500 files indexed'),(23468,1728266433.203156,2,'info','2000 files indexed'),(23469,1728266433.471562,2,'info','2500 files indexed'),(23470,1728266433.605790,2,'info','3000 files indexed'),(23471,1728266433.719843,2,'info','3500 files indexed'),(23472,1728266433.811770,2,'info','4000 files indexed'),(23473,1728266433.917553,2,'info','4500 files indexed'),(23474,1728266434.082874,2,'info','5000 files indexed'),(23475,1728266434.327042,2,'info','5500 files indexed'),(23476,1728266434.672392,2,'info','6000 files indexed'),(23477,1728266434.864421,2,'info','6500 files indexed'),(23478,1728266435.005820,2,'info','7000 files indexed'),(23479,1728266435.086706,2,'info','7500 files indexed'),(23480,1728266435.213859,2,'info','8000 files indexed'),(23481,1728266435.286569,2,'info','8500 files indexed'),(23482,1728266435.367646,2,'info','9000 files indexed'),(23483,1728266435.441273,2,'info','9305 files indexed'),(23484,1728266436.553682,2,'info','Analyzed 100 files containing 851.82 KB of data so far'),(23485,1728266437.715086,2,'info','Analyzed 200 files containing 1.99 MB of data so far'),(23486,1728266438.861680,2,'info','Analyzed 300 files containing 4.05 MB of data so far'),(23487,1728266440.099358,2,'info','Analyzed 400 files containing 9.27 MB of data so far'),(23488,1728266441.326368,2,'info','Analyzed 500 files containing 11.54 MB of data so far'),(23489,1728266442.456121,2,'info','Analyzed 600 files containing 13.69 MB of data so far'),(23490,1728266443.587851,2,'info','Analyzed 700 files containing 13.89 MB of data so far'),(23491,1728266444.736391,2,'info','Analyzed 800 files containing 14.26 MB of data so far'),(23492,1728266445.839412,2,'info','Analyzed 900 files containing 14.55 MB of data so far'),(23493,1728266447.010894,2,'info','Analyzed 1000 files containing 14.87 MB of data so far'),(23494,1728266448.179631,2,'info','Analyzed 1100 files containing 15.38 MB of data so far'),(23495,1728266449.323146,2,'info','Analyzed 1200 files containing 15.86 MB of data so far'),(23496,1728266450.459856,2,'info','Analyzed 1300 files containing 16.68 MB of data so far'),(23497,1728266451.871398,2,'info','Analyzed 1400 files containing 36.45 MB of data so far'),(23498,1728266453.033994,2,'info','Analyzed 1500 files containing 37.61 MB of data so far'),(23499,1728266454.154744,2,'info','Analyzed 1600 files containing 38.13 MB of data so far'),(23500,1728266455.390947,2,'info','Analyzed 1700 files containing 41.97 MB of data so far'),(23501,1728266462.598973,2,'info','Analyzed 1800 files containing 43.48 MB of data so far'),(23502,1728266463.717580,2,'info','Analyzed 1900 files containing 45.08 MB of data so far'),(23503,1728266464.871623,2,'info','Analyzed 2000 files containing 46.71 MB of data so far'),(23504,1728266466.019025,2,'info','Analyzed 2100 files containing 47.09 MB of data so far'),(23505,1728266467.142113,2,'info','Analyzed 2200 files containing 47.3 MB of data so far'),(23506,1728266468.345327,2,'info','Analyzed 2300 files containing 47.74 MB of data so far'),(23507,1728266469.509610,2,'info','Analyzed 2400 files containing 48.2 MB of data so far'),(23508,1728266470.666467,2,'info','Analyzed 2500 files containing 48.63 MB of data so far'),(23509,1728266471.805903,2,'info','Analyzed 2600 files containing 49.39 MB of data so far'),(23510,1728266472.956044,2,'info','Analyzed 2700 files containing 49.99 MB of data so far'),(23511,1728266474.156285,2,'info','Analyzed 2800 files containing 50.8 MB of data so far'),(23512,1728266475.304720,2,'info','Analyzed 2900 files containing 52.01 MB of data so far'),(23513,1728266476.449453,2,'info','Analyzed 3000 files containing 52.61 MB of data so far'),(23514,1728266477.639502,2,'info','Analyzed 3100 files containing 54.28 MB of data so far'),(23515,1728266478.819384,2,'info','Analyzed 3200 files containing 56.21 MB of data so far'),(23516,1728266480.063204,2,'info','Analyzed 3300 files containing 64 MB of data so far'),(23517,1728266481.224167,2,'info','Analyzed 3400 files containing 65.75 MB of data so far'),(23518,1728266482.356809,2,'info','Analyzed 3500 files containing 66.7 MB of data so far'),(23519,1728266483.487392,2,'info','Analyzed 3600 files containing 67.52 MB of data so far'),(23520,1728266484.606904,2,'info','Analyzed 3700 files containing 68.07 MB of data so far'),(23521,1728266485.779257,2,'info','Analyzed 3800 files containing 68.48 MB of data so far'),(23522,1728266486.948511,2,'info','Analyzed 3900 files containing 68.96 MB of data so far'),(23523,1728266488.098783,2,'info','Analyzed 4000 files containing 70.27 MB of data so far'),(23524,1728266489.407889,2,'info','Analyzed 4100 files containing 75.62 MB of data so far'),(23525,1728266490.554226,2,'info','Analyzed 4200 files containing 77.04 MB of data so far'),(23526,1728266491.690279,2,'info','Analyzed 4300 files containing 77.23 MB of data so far'),(23527,1728266519.369892,2,'info','Analyzed 4400 files containing 77.43 MB of data so far'),(23528,1728266520.478310,2,'info','Analyzed 4500 files containing 78.34 MB of data so far'),(23529,1728266521.612865,2,'info','Analyzed 4600 files containing 78.73 MB of data so far'),(23530,1728266522.767496,2,'info','Analyzed 4700 files containing 78.98 MB of data so far'),(23531,1728266523.863388,2,'info','Analyzed 4800 files containing 79.51 MB of data so far'),(23532,1728266525.073401,2,'info','Analyzed 4900 files containing 79.91 MB of data so far'),(23533,1728266526.194090,2,'info','Analyzed 5000 files containing 80.27 MB of data so far'),(23534,1728266527.370014,2,'info','Analyzed 5100 files containing 82.07 MB of data so far'),(23535,1728266528.508214,2,'info','Analyzed 5200 files containing 82.54 MB of data so far'),(23536,1728266529.642532,2,'info','Analyzed 5300 files containing 82.97 MB of data so far'),(23537,1728266530.805003,2,'info','Analyzed 5400 files containing 83.51 MB of data so far'),(23538,1728266531.929499,2,'info','Analyzed 5500 files containing 83.85 MB of data so far'),(23539,1728266533.061010,2,'info','Analyzed 5600 files containing 84.23 MB of data so far'),(23540,1728266534.175003,2,'info','Analyzed 5700 files containing 84.74 MB of data so far'),(23541,1728266535.298887,2,'info','Analyzed 5800 files containing 85.66 MB of data so far'),(23542,1728266536.681357,2,'info','Analyzed 5900 files containing 97.67 MB of data so far'),(23543,1728266537.807929,2,'info','Analyzed 6000 files containing 98.51 MB of data so far'),(23544,1728266538.962693,2,'info','Analyzed 6100 files containing 100.19 MB of data so far'),(23545,1728266540.108517,2,'info','Analyzed 6200 files containing 101.97 MB of data so far'),(23546,1728266541.264080,2,'info','Analyzed 6300 files containing 102.93 MB of data so far'),(23547,1728266542.449665,2,'info','Analyzed 6400 files containing 103.78 MB of data so far'),(23548,1728266543.572690,2,'info','Analyzed 6500 files containing 105.64 MB of data so far'),(23549,1728266544.791470,2,'info','Analyzed 6600 files containing 107.9 MB of data so far'),(23550,1728266546.015338,2,'info','Analyzed 6700 files containing 111.93 MB of data so far'),(23551,1728266547.275717,2,'info','Analyzed 6800 files containing 113.75 MB of data so far'),(23552,1728266548.422899,2,'info','Analyzed 6900 files containing 114.51 MB of data so far'),(23553,1728266584.164782,2,'info','Analyzed 7000 files containing 117.24 MB of data so far'),(23554,1728266585.300026,2,'info','Analyzed 7100 files containing 118.99 MB of data so far'),(23555,1728266586.437392,2,'info','Analyzed 7200 files containing 119.73 MB of data so far'),(23556,1728266587.637118,2,'info','Analyzed 7300 files containing 121.32 MB of data so far'),(23557,1728266588.803071,2,'info','Analyzed 7400 files containing 122.23 MB of data so far'),(23558,1728266589.954543,2,'info','Analyzed 7500 files containing 122.48 MB of data so far'),(23559,1728266591.055311,2,'info','Analyzed 7600 files containing 122.67 MB of data so far'),(23560,1728266592.168848,2,'info','Analyzed 7700 files containing 122.95 MB of data so far'),(23561,1728266593.286244,2,'info','Analyzed 7800 files containing 123.24 MB of data so far'),(23562,1728266594.399477,2,'info','Analyzed 7900 files containing 123.37 MB of data so far'),(23563,1728266595.545940,2,'info','Analyzed 8000 files containing 123.54 MB of data so far'),(23564,1728266596.679660,2,'info','Analyzed 8100 files containing 124.34 MB of data so far'),(23565,1728266597.858769,2,'info','Analyzed 8200 files containing 126.05 MB of data so far'),(23566,1728266599.033435,2,'info','Analyzed 8300 files containing 129 MB of data so far'),(23567,1728266600.179806,2,'info','Analyzed 8400 files containing 130.4 MB of data so far'),(23568,1728266601.380113,2,'info','Analyzed 8500 files containing 132.1 MB of data so far'),(23569,1728266602.708257,2,'info','Analyzed 8600 files containing 143.9 MB of data so far'),(23570,1728266603.996166,2,'info','Analyzed 8700 files containing 151.66 MB of data so far'),(23571,1728266605.158692,2,'info','Analyzed 8800 files containing 154.6 MB of data so far'),(23572,1728266606.329930,2,'info','Analyzed 8900 files containing 156.87 MB of data so far'),(23573,1728266607.583504,2,'info','Analyzed 9000 files containing 159.77 MB of data so far'),(23574,1728266608.815633,2,'info','Analyzed 9100 files containing 162.86 MB of data so far'),(23575,1728266609.977364,2,'info','Analyzed 9200 files containing 164.21 MB of data so far'),(23576,1728266611.142085,2,'info','Analyzed 9300 files containing 165.79 MB of data so far'),(23577,1728266611.223644,2,'info','Analyzed 9304 files containing 165.86 MB of data.'),(23578,1728266611.224072,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(23579,1728266611.229811,10,'info','SUM_ENDOK:Comparing open source themes against WordPress.org originals'),(23580,1728266611.234281,10,'info','SUM_ENDOK:Comparing plugins against WordPress.org originals'),(23581,1728266611.239461,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(23582,1728266611.244146,10,'info','SUM_ENDOK:Scanning for known malware files'),(23583,1728266611.253171,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(23584,1728266611.427779,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(23585,1728266611.433847,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(23586,1728266611.435347,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(23587,1728266612.502492,2,'info','Starting scan of file contents'),(23588,1728266613.505775,2,'info','Scanned contents of 15 additional files at 14.96 per second'),(23589,1728266651.173365,2,'info','Scanned contents of 21 additional files at 0.54 per second'),(23590,1728266652.207487,2,'info','Scanned contents of 34 additional files at 0.86 per second'),(23591,1728266653.251023,2,'info','Scanned contents of 48 additional files at 1.18 per second'),(23592,1728266654.282621,2,'info','Scanned contents of 66 additional files at 1.58 per second'),(23593,1728266655.413175,2,'info','Scanned contents of 83 additional files at 1.93 per second'),(23594,1728266656.414125,2,'info','Scanned contents of 99 additional files at 2.25 per second'),(23595,1728266657.425622,2,'info','Scanned contents of 111 additional files at 2.47 per second'),(23596,1728266658.561078,2,'info','Scanned contents of 119 additional files at 2.58 per second'),(23597,1728266659.610225,2,'info','Scanned contents of 126 additional files at 2.67 per second'),(23598,1728266660.610309,2,'info','Scanned contents of 143 additional files at 2.97 per second'),(23599,1728266661.642030,2,'info','Scanned contents of 161 additional files at 3.28 per second'),(23600,1728266662.698141,2,'info','Scanned contents of 174 additional files at 3.47 per second'),(23601,1728266663.747665,2,'info','Scanned contents of 187 additional files at 3.65 per second'),(23602,1728266664.787829,2,'info','Scanned contents of 210 additional files at 4.02 per second'),(23603,1728266665.791570,2,'info','Scanned contents of 223 additional files at 4.18 per second'),(23604,1728266666.794332,2,'info','Scanned contents of 238 additional files at 4.38 per second'),(23605,1728266667.863057,2,'info','Scanned contents of 250 additional files at 4.52 per second'),(23606,1728266668.937556,2,'info','Scanned contents of 265 additional files at 4.70 per second'),(23607,1728266670.119003,2,'info','Scanned contents of 282 additional files at 4.89 per second'),(23608,1728266671.197000,2,'info','Scanned contents of 297 additional files at 5.06 per second'),(23609,1728266672.208227,2,'info','Scanned contents of 314 additional files at 5.26 per second'),(23610,1728266673.253390,2,'info','Scanned contents of 337 additional files at 5.55 per second'),(23611,1728266674.323229,2,'info','Scanned contents of 348 additional files at 5.63 per second'),(23612,1728266675.362469,2,'info','Scanned contents of 364 additional files at 5.79 per second'),(23613,1728266676.415146,2,'info','Scanned contents of 384 additional files at 6.01 per second'),(23614,1728266677.426702,2,'info','Scanned contents of 411 additional files at 6.33 per second'),(23615,1728266678.475720,2,'info','Scanned contents of 425 additional files at 6.44 per second'),(23616,1728266679.482526,2,'info','Scanned contents of 442 additional files at 6.60 per second'),(23617,1728266680.545647,2,'info','Scanned contents of 458 additional files at 6.73 per second'),(23618,1728266681.799210,2,'info','Scanned contents of 466 additional files at 6.72 per second'),(23619,1728266711.144693,2,'info','Scanned contents of 467 additional files at 4.73 per second'),(23620,1728266712.184506,2,'info','Scanned contents of 476 additional files at 4.78 per second'),(23621,1728266713.252864,2,'info','Scanned contents of 484 additional files at 4.80 per second'),(23622,1728266714.318709,2,'info','Scanned contents of 494 additional files at 4.85 per second'),(23623,1728266715.478214,2,'info','Scanned contents of 501 additional files at 4.87 per second'),(23624,1728266716.494620,2,'info','Scanned contents of 509 additional files at 4.89 per second'),(23625,1728266717.604529,2,'info','Scanned contents of 519 additional files at 4.94 per second'),(23626,1728266718.664417,2,'info','Scanned contents of 540 additional files at 5.09 per second'),(23627,1728266719.688133,2,'info','Scanned contents of 544 additional files at 5.08 per second'),(23628,1728266720.743137,2,'info','Scanned contents of 559 additional files at 5.16 per second'),(23629,1728266721.816487,2,'info','Scanned contents of 571 additional files at 5.22 per second'),(23630,1728266722.823980,2,'info','Scanned contents of 588 additional files at 5.33 per second'),(23631,1728266723.882090,2,'info','Scanned contents of 599 additional files at 5.38 per second'),(23632,1728266724.909806,2,'info','Scanned contents of 613 additional files at 5.45 per second'),(23633,1728266726.007654,2,'info','Scanned contents of 628 additional files at 5.53 per second'),(23634,1728266727.291252,2,'info','Scanned contents of 637 additional files at 5.55 per second'),(23635,1728266728.417792,2,'info','Scanned contents of 651 additional files at 5.62 per second'),(23636,1728266729.566665,2,'info','Scanned contents of 662 additional files at 5.66 per second'),(23637,1728266730.667567,2,'info','Scanned contents of 673 additional files at 5.70 per second'),(23638,1728266731.733686,2,'info','Scanned contents of 681 additional files at 5.71 per second'),(23639,1728266732.782979,2,'info','Scanned contents of 692 additional files at 5.75 per second'),(23640,1728266733.789249,2,'info','Scanned contents of 701 additional files at 5.78 per second'),(23641,1728266734.844513,2,'info','Scanned contents of 719 additional files at 5.88 per second'),(23642,1728266735.848946,2,'info','Scanned contents of 739 additional files at 5.99 per second'),(23643,1728266736.864948,2,'info','Scanned contents of 753 additional files at 6.05 per second'),(23644,1728266737.905417,2,'info','Scanned contents of 768 additional files at 6.12 per second'),(23645,1728266738.963818,2,'info','Scanned contents of 785 additional files at 6.21 per second'),(23646,1728266740.019587,2,'info','Scanned contents of 797 additional files at 6.25 per second'),(23647,1728266772.208119,2,'info','Scanned contents of 806 additional files at 5.05 per second'),(23648,1728266773.234321,2,'info','Scanned contents of 814 additional files at 5.06 per second'),(23649,1728266774.247976,2,'info','Scanned contents of 831 additional files at 5.14 per second'),(23650,1728266775.351625,2,'info','Scanned contents of 845 additional files at 5.19 per second'),(23651,1728266776.442516,2,'info','Scanned contents of 855 additional files at 5.22 per second'),(23652,1728266777.558754,2,'info','Scanned contents of 866 additional files at 5.25 per second'),(23653,1728266778.616229,2,'info','Scanned contents of 885 additional files at 5.33 per second'),(23654,1728266779.754264,2,'info','Scanned contents of 893 additional files at 5.34 per second'),(23655,1728266780.754723,2,'info','Scanned contents of 911 additional files at 5.41 per second'),(23656,1728266781.762662,2,'info','Scanned contents of 923 additional files at 5.45 per second'),(23657,1728266782.775918,2,'info','Scanned contents of 946 additional files at 5.56 per second'),(23658,1728266783.912500,2,'info','Scanned contents of 959 additional files at 5.59 per second'),(23659,1728266785.138736,2,'info','Scanned contents of 979 additional files at 5.67 per second'),(23660,1728266786.162191,2,'info','Scanned contents of 991 additional files at 5.71 per second'),(23661,1728266787.327147,2,'info','Scanned contents of 1014 additional files at 5.80 per second'),(23662,1728266788.366254,2,'info','Scanned contents of 1024 additional files at 5.82 per second'),(23663,1728266789.679145,2,'info','Scanned contents of 1038 additional files at 5.86 per second'),(23664,1728266791.135341,2,'info','Scanned contents of 1053 additional files at 5.89 per second'),(23665,1728266792.161514,2,'info','Scanned contents of 1066 additional files at 5.93 per second'),(23666,1728266793.204674,2,'info','Scanned contents of 1079 additional files at 5.97 per second'),(23667,1728266794.244141,2,'info','Scanned contents of 1096 additional files at 6.03 per second'),(23668,1728266795.323330,2,'info','Scanned contents of 1106 additional files at 6.05 per second'),(23669,1728266796.583923,2,'info','Scanned contents of 1114 additional files at 6.05 per second'),(23670,1728266797.626785,2,'info','Scanned contents of 1124 additional files at 6.07 per second'),(23671,1728266798.679815,2,'info','Scanned contents of 1129 additional files at 6.06 per second'),(23672,1728266799.700126,2,'info','Scanned contents of 1141 additional files at 6.10 per second'),(23673,1728266800.704458,2,'info','Scanned contents of 1149 additional files at 6.11 per second'),(23674,1728266801.767170,2,'info','Scanned contents of 1153 additional files at 6.09 per second'),(23675,1728266802.801974,2,'info','Scanned contents of 1160 additional files at 6.10 per second'),(23676,1728266829.773925,2,'info','Scanned contents of 1162 additional files at 5.35 per second'),(23677,1728266830.787132,2,'info','Scanned contents of 1183 additional files at 5.42 per second'),(23678,1728266831.794972,2,'info','Scanned contents of 1194 additional files at 5.44 per second'),(23679,1728266832.806532,2,'info','Scanned contents of 1209 additional files at 5.49 per second'),(23680,1728266834.043943,2,'info','Scanned contents of 1230 additional files at 5.55 per second'),(23681,1728266835.562702,2,'info','Scanned contents of 1247 additional files at 5.59 per second'),(23682,1728266836.622029,2,'info','Scanned contents of 1264 additional files at 5.64 per second'),(23683,1728266837.726408,2,'info','Scanned contents of 1284 additional files at 5.70 per second'),(23684,1728266838.913545,2,'info','Scanned contents of 1297 additional files at 5.73 per second'),(23685,1728266839.913857,2,'info','Scanned contents of 1324 additional files at 5.82 per second'),(23686,1728266840.925513,2,'info','Scanned contents of 1341 additional files at 5.87 per second'),(23687,1728266841.952271,2,'info','Scanned contents of 1352 additional files at 5.89 per second'),(23688,1728266842.971427,2,'info','Scanned contents of 1364 additional files at 5.92 per second'),(23689,1728266844.079159,2,'info','Scanned contents of 1382 additional files at 5.97 per second'),(23690,1728266845.202048,2,'info','Scanned contents of 1391 additional files at 5.98 per second'),(23691,1728266846.465706,2,'info','Scanned contents of 1414 additional files at 6.04 per second'),(23692,1728266847.558951,2,'info','Scanned contents of 1429 additional files at 6.08 per second'),(23693,1728266848.620359,2,'info','Scanned contents of 1444 additional files at 6.12 per second'),(23694,1728266849.648824,2,'info','Scanned contents of 1463 additional files at 6.17 per second'),(23695,1728266850.673672,2,'info','Scanned contents of 1480 additional files at 6.21 per second'),(23696,1728266851.718485,2,'info','Scanned contents of 1495 additional files at 6.25 per second'),(23697,1728266852.776581,2,'info','Scanned contents of 1510 additional files at 6.28 per second'),(23698,1728266853.893204,2,'info','Scanned contents of 1523 additional files at 6.31 per second'),(23699,1728266854.919599,2,'info','Scanned contents of 1538 additional files at 6.34 per second'),(23700,1728266855.976288,2,'info','Scanned contents of 1549 additional files at 6.36 per second'),(23701,1728266857.236165,2,'info','Scanned contents of 1564 additional files at 6.39 per second'),(23702,1728266858.341866,2,'info','Scanned contents of 1574 additional files at 6.40 per second'),(23703,1728266859.429140,2,'info','Scanned contents of 1582 additional files at 6.41 per second'),(23704,1728266883.969044,2,'info','Scanned contents of 1587 additional files at 5.85 per second'),(23705,1728266885.005286,2,'info','Scanned contents of 1600 additional files at 5.87 per second'),(23706,1728266886.040682,2,'info','Scanned contents of 1622 additional files at 5.93 per second'),(23707,1728266887.344598,2,'info','Scanned contents of 1636 additional files at 5.95 per second'),(23708,1728266888.368795,2,'info','Scanned contents of 1647 additional files at 5.97 per second'),(23709,1728266889.389830,2,'info','Scanned contents of 1661 additional files at 6.00 per second'),(23710,1728266890.409046,2,'info','Scanned contents of 1677 additional files at 6.03 per second'),(23711,1728266891.434239,2,'info','Scanned contents of 1688 additional files at 6.05 per second'),(23712,1728266892.462089,2,'info','Scanned contents of 1706 additional files at 6.09 per second'),(23713,1728266893.582413,2,'info','Scanned contents of 1725 additional files at 6.14 per second'),(23714,1728266894.610176,2,'info','Scanned contents of 1734 additional files at 6.15 per second'),(23715,1728266895.640936,2,'info','Scanned contents of 1755 additional files at 6.20 per second'),(23716,1728266896.667516,2,'info','Scanned contents of 1769 additional files at 6.23 per second'),(23717,1728266897.689270,2,'info','Scanned contents of 1789 additional files at 6.27 per second'),(23718,1728266898.820877,2,'info','Scanned contents of 1803 additional files at 6.30 per second'),(23719,1728266899.898762,2,'info','Scanned contents of 1817 additional files at 6.32 per second'),(23720,1728266900.978096,2,'info','Scanned contents of 1826 additional files at 6.33 per second'),(23721,1728266901.988528,2,'info','Scanned contents of 1836 additional files at 6.34 per second'),(23722,1728266903.022201,2,'info','Scanned contents of 1860 additional files at 6.40 per second'),(23723,1728266904.073492,2,'info','Scanned contents of 1874 additional files at 6.43 per second'),(23724,1728266905.403439,2,'info','Scanned contents of 1898 additional files at 6.48 per second'),(23725,1728266906.412754,2,'info','Scanned contents of 1903 additional files at 6.47 per second'),(23726,1728266907.457521,2,'info','Scanned contents of 1914 additional files at 6.49 per second'),(23727,1728266908.628949,2,'info','Scanned contents of 1927 additional files at 6.51 per second'),(23728,1728266909.640321,2,'info','Scanned contents of 1951 additional files at 6.57 per second'),(23729,1728266910.642094,2,'info','Scanned contents of 1961 additional files at 6.58 per second'),(23730,1728266911.644131,2,'info','Scanned contents of 1973 additional files at 6.60 per second'),(23731,1728266912.753154,2,'info','Scanned contents of 1980 additional files at 6.59 per second'),(23732,1728266913.812292,2,'info','Scanned contents of 1997 additional files at 6.63 per second'),(23733,1728266941.812952,2,'info','Scanned contents of 1999 additional files at 6.07 per second'),(23734,1728266942.816540,2,'info','Scanned contents of 2004 additional files at 6.07 per second'),(23735,1728266943.923865,2,'info','Scanned contents of 2019 additional files at 6.09 per second'),(23736,1728266945.445510,2,'info','Scanned contents of 2036 additional files at 6.12 per second'),(23737,1728266946.484053,2,'info','Scanned contents of 2048 additional files at 6.13 per second'),(23738,1728266947.551668,2,'info','Scanned contents of 2057 additional files at 6.14 per second'),(23739,1728266948.570565,2,'info','Scanned contents of 2066 additional files at 6.15 per second'),(23740,1728266949.591369,2,'info','Scanned contents of 2078 additional files at 6.16 per second'),(23741,1728266950.601154,2,'info','Scanned contents of 2088 additional files at 6.18 per second'),(23742,1728266951.647638,2,'info','Scanned contents of 2101 additional files at 6.20 per second'),(23743,1728266952.728790,2,'info','Scanned contents of 2119 additional files at 6.23 per second'),(23744,1728266953.878178,2,'info','Scanned contents of 2121 additional files at 6.21 per second'),(23745,1728266954.991928,2,'info','Scanned contents of 2132 additional files at 6.23 per second'),(23746,1728266956.029671,2,'info','Scanned contents of 2148 additional files at 6.25 per second'),(23747,1728266957.079909,2,'info','Scanned contents of 2167 additional files at 6.29 per second'),(23748,1728266958.122780,2,'info','Scanned contents of 2192 additional files at 6.34 per second'),(23749,1728266959.258137,2,'info','Scanned contents of 2202 additional files at 6.35 per second'),(23750,1728266960.271405,2,'info','Scanned contents of 2223 additional files at 6.39 per second'),(23751,1728266961.290158,2,'info','Scanned contents of 2239 additional files at 6.42 per second'),(23752,1728266962.302476,2,'info','Scanned contents of 2263 additional files at 6.47 per second'),(23753,1728266963.361985,2,'info','Scanned contents of 2281 additional files at 6.50 per second'),(23754,1728266964.450944,2,'info','Scanned contents of 2300 additional files at 6.54 per second'),(23755,1728266965.610850,2,'info','Scanned contents of 2312 additional files at 6.55 per second'),(23756,1728266966.749933,2,'info','Scanned contents of 2329 additional files at 6.57 per second'),(23757,1728266967.899138,2,'info','Scanned contents of 2347 additional files at 6.60 per second'),(23758,1728266969.026969,2,'info','Scanned contents of 2360 additional files at 6.62 per second'),(23759,1728266970.111268,2,'info','Scanned contents of 2377 additional files at 6.65 per second'),(23760,1728266971.143985,2,'info','Scanned contents of 2396 additional files at 6.68 per second'),(23761,1728266993.254240,2,'info','Scanned contents of 2405 additional files at 6.32 per second'),(23762,1728266994.346333,2,'info','Scanned contents of 2413 additional files at 6.32 per second'),(23763,1728266995.498325,2,'info','Scanned contents of 2418 additional files at 6.31 per second'),(23764,1728266996.512236,2,'info','Scanned contents of 2435 additional files at 6.34 per second'),(23765,1728266997.577341,2,'info','Scanned contents of 2450 additional files at 6.36 per second'),(23766,1728266998.669043,2,'info','Scanned contents of 2464 additional files at 6.38 per second'),(23767,1728266999.821533,2,'info','Scanned contents of 2472 additional files at 6.38 per second'),(23768,1728267000.838355,2,'info','Scanned contents of 2485 additional files at 6.40 per second'),(23769,1728267002.027606,2,'info','Scanned contents of 2488 additional files at 6.39 per second'),(23770,1728267003.070728,2,'info','Scanned contents of 2499 additional files at 6.40 per second'),(23771,1728267003.789037,2,'info','Scanned contents of 2507 additional files at 6.41 per second'),(23772,1728267003.789545,2,'info','Asking Wordfence to check URLs against malware list.'),(23773,1728267003.803702,2,'info','Checking 2398 host keys against Wordfence scanning servers.'),(23774,1728267004.124887,2,'info','Done host key check.'),(23775,1728267004.139932,2,'info','Done file contents scan'),(23776,1728267004.140936,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(23777,1728267004.144428,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(23778,1728267004.148195,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(23779,1728267004.149655,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(23780,1728267004.153309,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(23781,1728267004.215236,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(23782,1728267004.215637,2,'info','Checking 105 host keys against Wordfence scanning servers.'),(23783,1728267004.579499,2,'info','Done host key check.'),(23784,1728267004.583838,2,'info','Done examining URLs'),(23785,1728267004.587263,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(23786,1728267004.592342,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(23787,1728267004.598891,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(23788,1728267004.603643,10,'info','SUM_START:Scanning for weak passwords'),(23789,1728267004.605536,2,'info','Starting password strength check on 3 users.'),(23790,1728267004.614844,10,'info','SUM_ENDOK:Scanning for weak passwords'),(23791,1728267004.619449,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23792,1728267006.890701,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23793,1728267006.897733,10,'info','SUM_START:Scanning for suspicious site options'),(23794,1728267006.902993,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(23795,1728267006.903625,2,'info','Done examining URLs'),(23796,1728267006.906129,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(23797,1728267006.910552,1,'info','-------------------'),(23798,1728267006.911044,2,'info','Wordfence used 38.34 MB of memory for scan. Server peak memory usage was: 80.34 MB'),(23799,1728267006.912398,1,'info','Scan Complete. Scanned 9304 files, 11 plugins, 2 themes, 33 posts, 0 comments and 11176 URLs in 9 minutes 41 seconds.'),(23800,1728267006.912654,10,'info','SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.'),(23801,1728312681.322747,10,'info','SUM_PREP:Preparing a new scan.'),(23802,1728312681.325033,1,'info','Initiating quick scan'),(23803,1728312681.328133,10,'info','SUM_START:Checking Web Application Firewall status'),(23804,1728312681.328508,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23805,1728312681.331973,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23806,1728312682.332002,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23807,1728312682.335393,1,'info','-------------------'),(23808,1728312682.336619,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(23809,1728312682.338446,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23810,1728312682.338904,10,'info','SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.'),(23811,1728399106.387522,10,'info','SUM_PREP:Preparing a new scan.'),(23812,1728399106.389415,1,'info','Initiating quick scan'),(23813,1728399106.392292,10,'info','SUM_START:Checking Web Application Firewall status'),(23814,1728399106.392703,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23815,1728399106.397018,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23816,1728399107.455803,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23817,1728399107.458799,1,'info','-------------------'),(23818,1728399107.460541,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 100 MB'),(23819,1728399107.463661,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23820,1728399107.464212,10,'info','SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.'),(23821,1728485536.134346,10,'info','SUM_PREP:Preparing a new scan.'),(23822,1728485536.138886,1,'info','Initiating quick scan'),(23823,1728485536.144489,10,'info','SUM_START:Checking Web Application Firewall status'),(23824,1728485536.145246,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23825,1728485536.153340,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23826,1728485537.348868,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23827,1728485537.351669,1,'info','-------------------'),(23828,1728485537.353081,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 102.36 MB'),(23829,1728485537.355195,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23830,1728485537.355620,10,'info','SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.'),(23831,1728525610.545359,1,'info','Scheduled Wordfence scan starting at Thursday 10th of October 2024 02:00:10 AM'),(23832,1728525611.447126,1,'info','Using low resource scanning'),(23833,1728525611.448976,10,'info','SUM_PREP:Preparing a new scan.'),(23834,1728525611.452968,1,'info','Contacting Wordfence to initiate scan'),(23835,1728525611.890391,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(23836,1728525613.891315,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(23837,1728525615.892459,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(23838,1728525617.896245,10,'info','SUM_START:Checking Web Application Firewall status'),(23839,1728525617.898649,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23840,1728525617.904102,10,'info','SUM_START:Checking for future GeoIP support'),(23841,1728525617.908002,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(23842,1728525617.914158,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(23843,1728525617.924161,10,'info','SUM_ENDOK:Checking for paths skipped due to scan settings'),(23844,1728525617.931312,2,'info','Getting plugin list from WordPress'),(23845,1728525617.933596,2,'info','Found 11 plugins'),(23846,1728525617.933821,2,'info','Getting theme list from WordPress'),(23847,1728525617.941737,2,'info','Found 2 themes'),(23848,1728525617.953154,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(23849,1728525618.772868,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(23850,1728525618.775851,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(23851,1728525618.778506,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(23852,1728525618.781351,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(23853,1728525618.782378,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(23854,1728525618.786036,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(23855,1728525618.790168,10,'info','SUM_START:Comparing open source themes against WordPress.org originals'),(23856,1728525618.794066,10,'info','SUM_START:Comparing plugins against WordPress.org originals'),(23857,1728525618.797153,10,'info','SUM_START:Scanning for known malware files'),(23858,1728525618.799517,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(23859,1728525618.983914,2,'info','500 files indexed'),(23860,1728525619.169148,2,'info','1000 files indexed'),(23861,1728525619.342979,2,'info','1500 files indexed'),(23862,1728525619.505833,2,'info','2000 files indexed'),(23863,1728525619.685082,2,'info','2500 files indexed'),(23864,1728525619.820511,2,'info','3000 files indexed'),(23865,1728525619.925772,2,'info','3500 files indexed'),(23866,1728525620.081163,2,'info','4000 files indexed'),(23867,1728525620.203356,2,'info','4500 files indexed'),(23868,1728525620.358820,2,'info','5000 files indexed'),(23869,1728525620.520476,2,'info','5500 files indexed'),(23870,1728525620.873846,2,'info','6000 files indexed'),(23871,1728525621.120202,2,'info','6500 files indexed'),(23872,1728525621.200009,2,'info','7000 files indexed'),(23873,1728525621.302739,2,'info','7500 files indexed'),(23874,1728525621.375175,2,'info','8000 files indexed'),(23875,1728525621.489724,2,'info','8500 files indexed'),(23876,1728525621.628337,2,'info','9000 files indexed'),(23877,1728525621.646415,2,'info','9088 files indexed'),(23878,1728525622.723117,2,'info','Analyzed 100 files containing 851.82 KB of data so far'),(23879,1728525623.847620,2,'info','Analyzed 200 files containing 1.99 MB of data so far'),(23880,1728525624.957363,2,'info','Analyzed 300 files containing 4.05 MB of data so far'),(23881,1728525626.169959,2,'info','Analyzed 400 files containing 9.27 MB of data so far'),(23882,1728525627.341680,2,'info','Analyzed 500 files containing 11.54 MB of data so far'),(23883,1728525628.478568,2,'info','Analyzed 600 files containing 13.69 MB of data so far'),(23884,1728525629.605992,2,'info','Analyzed 700 files containing 13.89 MB of data so far'),(23885,1728525630.736283,2,'info','Analyzed 800 files containing 14.26 MB of data so far'),(23886,1728525631.849051,2,'info','Analyzed 900 files containing 14.55 MB of data so far'),(23887,1728525633.033239,2,'info','Analyzed 1000 files containing 14.87 MB of data so far'),(23888,1728525634.181548,2,'info','Analyzed 1100 files containing 15.38 MB of data so far'),(23889,1728525635.319646,2,'info','Analyzed 1200 files containing 15.86 MB of data so far'),(23890,1728525636.451477,2,'info','Analyzed 1300 files containing 16.68 MB of data so far'),(23891,1728525638.070370,2,'info','Analyzed 1400 files containing 36.45 MB of data so far'),(23892,1728525639.216080,2,'info','Analyzed 1500 files containing 37.61 MB of data so far'),(23893,1728525640.320859,2,'info','Analyzed 1600 files containing 38.13 MB of data so far'),(23894,1728525641.507009,2,'info','Analyzed 1700 files containing 41.97 MB of data so far'),(23895,1728525646.686122,2,'info','Analyzed 1800 files containing 43.48 MB of data so far'),(23896,1728525647.831808,2,'info','Analyzed 1900 files containing 45.08 MB of data so far'),(23897,1728525648.950367,2,'info','Analyzed 2000 files containing 46.71 MB of data so far'),(23898,1728525650.088664,2,'info','Analyzed 2100 files containing 47.09 MB of data so far'),(23899,1728525651.252438,2,'info','Analyzed 2200 files containing 47.3 MB of data so far'),(23900,1728525652.448681,2,'info','Analyzed 2300 files containing 47.74 MB of data so far'),(23901,1728525653.618693,2,'info','Analyzed 2400 files containing 48.2 MB of data so far'),(23902,1728525654.769290,2,'info','Analyzed 2500 files containing 48.63 MB of data so far'),(23903,1728525655.933857,2,'info','Analyzed 2600 files containing 49.39 MB of data so far'),(23904,1728525657.055415,2,'info','Analyzed 2700 files containing 50.03 MB of data so far'),(23905,1728525658.239977,2,'info','Analyzed 2800 files containing 50.77 MB of data so far'),(23906,1728525659.394387,2,'info','Analyzed 2900 files containing 51.5 MB of data so far'),(23907,1728525660.565865,2,'info','Analyzed 3000 files containing 53.19 MB of data so far'),(23908,1728525662.084397,2,'info','Analyzed 3100 files containing 55.12 MB of data so far'),(23909,1728525663.413437,2,'info','Analyzed 3200 files containing 62.89 MB of data so far'),(23910,1728525664.574591,2,'info','Analyzed 3300 files containing 64.68 MB of data so far'),(23911,1728525665.690979,2,'info','Analyzed 3400 files containing 65.66 MB of data so far'),(23912,1728525666.812029,2,'info','Analyzed 3500 files containing 66.41 MB of data so far'),(23913,1728525667.938946,2,'info','Analyzed 3600 files containing 66.97 MB of data so far'),(23914,1728525669.066190,2,'info','Analyzed 3700 files containing 67.36 MB of data so far'),(23915,1728525670.239289,2,'info','Analyzed 3800 files containing 68.02 MB of data so far'),(23916,1728525671.547141,2,'info','Analyzed 3900 files containing 74.15 MB of data so far'),(23917,1728525672.701594,2,'info','Analyzed 4000 files containing 74.87 MB of data so far'),(23918,1728525673.804955,2,'info','Analyzed 4100 files containing 75.01 MB of data so far'),(23919,1728525674.938014,2,'info','Analyzed 4200 files containing 75.74 MB of data so far'),(23920,1728525676.075486,2,'info','Analyzed 4300 files containing 76.14 MB of data so far'),(23921,1728525718.627233,2,'info','Analyzed 4400 files containing 76.52 MB of data so far'),(23922,1728525719.735480,2,'info','Analyzed 4500 files containing 76.77 MB of data so far'),(23923,1728525720.865945,2,'info','Analyzed 4600 files containing 77.26 MB of data so far'),(23924,1728525722.019589,2,'info','Analyzed 4700 files containing 77.75 MB of data so far'),(23925,1728525723.136909,2,'info','Analyzed 4800 files containing 78.08 MB of data so far'),(23926,1728525724.337018,2,'info','Analyzed 4900 files containing 79.86 MB of data so far'),(23927,1728525725.475589,2,'info','Analyzed 5000 files containing 80.46 MB of data so far'),(23928,1728525726.603477,2,'info','Analyzed 5100 files containing 80.88 MB of data so far'),(23929,1728525727.709413,2,'info','Analyzed 5200 files containing 81.31 MB of data so far'),(23930,1728525728.837920,2,'info','Analyzed 5300 files containing 81.67 MB of data so far'),(23931,1728525730.016578,2,'info','Analyzed 5400 files containing 82.04 MB of data so far'),(23932,1728525731.144726,2,'info','Analyzed 5500 files containing 82.68 MB of data so far'),(23933,1728525732.299754,2,'info','Analyzed 5600 files containing 83.43 MB of data so far'),(23934,1728525733.834021,2,'info','Analyzed 5700 files containing 95.69 MB of data so far'),(23935,1728525734.985741,2,'info','Analyzed 5800 files containing 96.39 MB of data so far'),(23936,1728525736.196345,2,'info','Analyzed 5900 files containing 98.03 MB of data so far'),(23937,1728525737.369266,2,'info','Analyzed 6000 files containing 99.93 MB of data so far'),(23938,1728525738.516059,2,'info','Analyzed 6100 files containing 100.9 MB of data so far'),(23939,1728525739.675694,2,'info','Analyzed 6200 files containing 102.95 MB of data so far'),(23940,1728525740.770064,2,'info','Analyzed 6300 files containing 103.41 MB of data so far'),(23941,1728525742.012233,2,'info','Analyzed 6400 files containing 106.58 MB of data so far'),(23942,1728525743.233900,2,'info','Analyzed 6500 files containing 110.17 MB of data so far'),(23943,1728525744.368944,2,'info','Analyzed 6600 files containing 111.74 MB of data so far'),(23944,1728525745.476959,2,'info','Analyzed 6700 files containing 112.66 MB of data so far'),(23945,1728525746.673762,2,'info','Analyzed 6800 files containing 115.4 MB of data so far'),(23946,1728525747.811550,2,'info','Analyzed 6900 files containing 116.88 MB of data so far'),(23947,1728525748.934778,2,'info','Analyzed 7000 files containing 117.61 MB of data so far'),(23948,1728525787.607579,2,'info','Analyzed 7100 files containing 119.18 MB of data so far'),(23949,1728525788.714103,2,'info','Analyzed 7200 files containing 119.99 MB of data so far'),(23950,1728525789.826284,2,'info','Analyzed 7300 files containing 120.27 MB of data so far'),(23951,1728525790.913626,2,'info','Analyzed 7400 files containing 120.54 MB of data so far'),(23952,1728525792.024865,2,'info','Analyzed 7500 files containing 120.82 MB of data so far'),(23953,1728525793.191341,2,'info','Analyzed 7600 files containing 121.03 MB of data so far'),(23954,1728525794.296302,2,'info','Analyzed 7700 files containing 121.14 MB of data so far'),(23955,1728525795.406972,2,'info','Analyzed 7800 files containing 121.35 MB of data so far'),(23956,1728525796.553136,2,'info','Analyzed 7900 files containing 122.23 MB of data so far'),(23957,1728525797.747978,2,'info','Analyzed 8000 files containing 124.47 MB of data so far'),(23958,1728525798.994374,2,'info','Analyzed 8100 files containing 127.52 MB of data so far'),(23959,1728525800.121422,2,'info','Analyzed 8200 files containing 128.44 MB of data so far'),(23960,1728525801.245971,2,'info','Analyzed 8300 files containing 129.86 MB of data so far'),(23961,1728525802.672482,2,'info','Analyzed 8400 files containing 144 MB of data so far'),(23962,1728525803.951377,2,'info','Analyzed 8500 files containing 150.89 MB of data so far'),(23963,1728525805.120040,2,'info','Analyzed 8600 files containing 152.37 MB of data so far'),(23964,1728525806.268910,2,'info','Analyzed 8700 files containing 154.78 MB of data so far'),(23965,1728525807.449612,2,'info','Analyzed 8800 files containing 157.64 MB of data so far'),(23966,1728525808.669946,2,'info','Analyzed 8900 files containing 161.01 MB of data so far'),(23967,1728525809.781193,2,'info','Analyzed 9000 files containing 162.13 MB of data so far'),(23968,1728525810.832195,2,'info','Analyzed 9087 files containing 163.61 MB of data.'),(23969,1728525810.832396,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(23970,1728525810.835121,10,'info','SUM_ENDOK:Comparing open source themes against WordPress.org originals'),(23971,1728525810.837522,10,'info','SUM_ENDOK:Comparing plugins against WordPress.org originals'),(23972,1728525810.839875,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(23973,1728525810.842695,10,'info','SUM_ENDOK:Scanning for known malware files'),(23974,1728525810.851486,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(23975,1728525810.971088,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(23976,1728525810.975426,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(23977,1728525810.976794,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(23978,1728525811.970588,2,'info','Starting scan of file contents'),(23979,1728525813.011517,2,'info','Scanned contents of 17 additional files at 16.35 per second'),(23980,1728525814.041132,2,'info','Scanned contents of 39 additional files at 18.85 per second'),(23981,1728525815.051743,2,'info','Scanned contents of 67 additional files at 21.75 per second'),(23982,1728525816.063866,2,'info','Scanned contents of 85 additional files at 20.77 per second'),(23983,1728525871.599733,2,'info','Scanned contents of 105 additional files at 1.76 per second'),(23984,1728525872.601186,2,'info','Scanned contents of 117 additional files at 1.93 per second'),(23985,1728525873.605922,2,'info','Scanned contents of 137 additional files at 2.22 per second'),(23986,1728525874.626157,2,'info','Scanned contents of 149 additional files at 2.38 per second'),(23987,1728525875.637004,2,'info','Scanned contents of 173 additional files at 2.72 per second'),(23988,1728525876.934159,2,'info','Scanned contents of 188 additional files at 2.89 per second'),(23989,1728525878.136807,2,'info','Scanned contents of 201 additional files at 3.04 per second'),(23990,1728525879.149796,2,'info','Scanned contents of 210 additional files at 3.13 per second'),(23991,1728525880.240794,2,'info','Scanned contents of 237 additional files at 3.47 per second'),(23992,1728525881.242406,2,'info','Scanned contents of 260 additional files at 3.75 per second'),(23993,1728525882.267805,2,'info','Scanned contents of 275 additional files at 3.91 per second'),(23994,1728525883.289852,2,'info','Scanned contents of 295 additional files at 4.14 per second'),(23995,1728525884.435739,2,'info','Scanned contents of 305 additional files at 4.21 per second'),(23996,1728525885.518610,2,'info','Scanned contents of 328 additional files at 4.46 per second'),(23997,1728525886.624097,2,'info','Scanned contents of 339 additional files at 4.54 per second'),(23998,1728525887.694499,2,'info','Scanned contents of 353 additional files at 4.66 per second'),(23999,1728525888.796943,2,'info','Scanned contents of 368 additional files at 4.79 per second'),(24000,1728525889.856714,2,'info','Scanned contents of 385 additional files at 4.94 per second'),(24001,1728525891.007712,2,'info','Scanned contents of 396 additional files at 5.01 per second'),(24002,1728525892.133491,2,'info','Scanned contents of 412 additional files at 5.14 per second'),(24003,1728525893.227369,2,'info','Scanned contents of 433 additional files at 5.33 per second'),(24004,1728525894.235816,2,'info','Scanned contents of 443 additional files at 5.39 per second'),(24005,1728525895.306421,2,'info','Scanned contents of 461 additional files at 5.53 per second'),(24006,1728525896.318254,2,'info','Scanned contents of 476 additional files at 5.64 per second'),(24007,1728525897.348722,2,'info','Scanned contents of 485 additional files at 5.68 per second'),(24008,1728525898.405267,2,'info','Scanned contents of 501 additional files at 5.80 per second'),(24009,1728525899.495843,2,'info','Scanned contents of 516 additional files at 5.90 per second'),(24010,1728525900.703273,2,'info','Scanned contents of 527 additional files at 5.94 per second'),(24011,1728525901.717324,2,'info','Scanned contents of 538 additional files at 5.99 per second'),(24012,1728525942.742233,2,'info','Scanned contents of 540 additional files at 4.13 per second'),(24013,1728525943.912259,2,'info','Scanned contents of 560 additional files at 4.24 per second'),(24014,1728525944.922867,2,'info','Scanned contents of 578 additional files at 4.35 per second'),(24015,1728525946.044594,2,'info','Scanned contents of 596 additional files at 4.45 per second'),(24016,1728525947.073943,2,'info','Scanned contents of 617 additional files at 4.57 per second'),(24017,1728525948.119238,2,'info','Scanned contents of 631 additional files at 4.63 per second'),(24018,1728525949.195289,2,'info','Scanned contents of 655 additional files at 4.77 per second'),(24019,1728525950.366684,2,'info','Scanned contents of 668 additional files at 4.83 per second'),(24020,1728525951.405451,2,'info','Scanned contents of 686 additional files at 4.92 per second'),(24021,1728525952.463698,2,'info','Scanned contents of 697 additional files at 4.96 per second'),(24022,1728525953.493942,2,'info','Scanned contents of 715 additional files at 5.05 per second'),(24023,1728525954.573671,2,'info','Scanned contents of 725 additional files at 5.08 per second'),(24024,1728525955.752639,2,'info','Scanned contents of 730 additional files at 5.08 per second'),(24025,1728525956.776653,2,'info','Scanned contents of 744 additional files at 5.14 per second'),(24026,1728525957.975253,2,'info','Scanned contents of 761 additional files at 5.21 per second'),(24027,1728525959.021193,2,'info','Scanned contents of 770 additional files at 5.24 per second'),(24028,1728525960.205801,2,'info','Scanned contents of 784 additional files at 5.29 per second'),(24029,1728525961.285102,2,'info','Scanned contents of 792 additional files at 5.30 per second'),(24030,1728525962.317353,2,'info','Scanned contents of 802 additional files at 5.33 per second'),(24031,1728525963.326501,2,'info','Scanned contents of 814 additional files at 5.38 per second'),(24032,1728525964.342149,2,'info','Scanned contents of 843 additional files at 5.53 per second'),(24033,1728525965.379400,2,'info','Scanned contents of 865 additional files at 5.64 per second'),(24034,1728525966.449395,2,'info','Scanned contents of 876 additional files at 5.67 per second'),(24035,1728525967.499345,2,'info','Scanned contents of 886 additional files at 5.70 per second'),(24036,1728525968.504743,2,'info','Scanned contents of 896 additional files at 5.72 per second'),(24037,1728525969.603080,2,'info','Scanned contents of 912 additional files at 5.79 per second'),(24038,1728525970.694260,2,'info','Scanned contents of 928 additional files at 5.85 per second'),(24039,1728525971.719595,2,'info','Scanned contents of 942 additional files at 5.90 per second'),(24040,1728525972.721716,2,'info','Scanned contents of 954 additional files at 5.93 per second'),(24041,1728526015.902725,2,'info','Scanned contents of 960 additional files at 4.71 per second'),(24042,1728526016.971343,2,'info','Scanned contents of 982 additional files at 4.79 per second'),(24043,1728526018.175179,2,'info','Scanned contents of 997 additional files at 4.84 per second'),(24044,1728526019.212238,2,'info','Scanned contents of 1011 additional files at 4.88 per second'),(24045,1728526020.315783,2,'info','Scanned contents of 1023 additional files at 4.91 per second'),(24046,1728526021.387109,2,'info','Scanned contents of 1034 additional files at 4.94 per second'),(24047,1728526022.438575,2,'info','Scanned contents of 1044 additional files at 4.96 per second'),(24048,1728526023.579994,2,'info','Scanned contents of 1052 additional files at 4.97 per second'),(24049,1728526024.602463,2,'info','Scanned contents of 1062 additional files at 4.99 per second'),(24050,1728526025.624136,2,'info','Scanned contents of 1079 additional files at 5.05 per second'),(24051,1728526026.634824,2,'info','Scanned contents of 1093 additional files at 5.09 per second'),(24052,1728526027.659646,2,'info','Scanned contents of 1104 additional files at 5.12 per second'),(24053,1728526028.715140,2,'info','Scanned contents of 1126 additional files at 5.20 per second'),(24054,1728526029.798665,2,'info','Scanned contents of 1144 additional files at 5.25 per second'),(24055,1728526030.822928,2,'info','Scanned contents of 1160 additional files at 5.30 per second'),(24056,1728526032.077967,2,'info','Scanned contents of 1168 additional files at 5.31 per second'),(24057,1728526033.142600,2,'info','Scanned contents of 1175 additional files at 5.31 per second'),(24058,1728526034.227913,2,'info','Scanned contents of 1194 additional files at 5.37 per second'),(24059,1728526035.242315,2,'info','Scanned contents of 1210 additional files at 5.42 per second'),(24060,1728526036.294951,2,'info','Scanned contents of 1227 additional files at 5.47 per second'),(24061,1728526037.373418,2,'info','Scanned contents of 1232 additional files at 5.47 per second'),(24062,1728526038.595817,2,'info','Scanned contents of 1245 additional files at 5.49 per second'),(24063,1728526040.187595,2,'info','Scanned contents of 1259 additional files at 5.52 per second'),(24064,1728526041.187674,2,'info','Scanned contents of 1271 additional files at 5.54 per second'),(24065,1728526042.300313,2,'info','Scanned contents of 1285 additional files at 5.58 per second'),(24066,1728526043.366151,2,'info','Scanned contents of 1297 additional files at 5.61 per second'),(24067,1728526044.375666,2,'info','Scanned contents of 1310 additional files at 5.64 per second'),(24068,1728526045.511867,2,'info','Scanned contents of 1317 additional files at 5.64 per second'),(24069,1728526088.942728,2,'info','Scanned contents of 1323 additional files at 4.78 per second'),(24070,1728526090.025393,2,'info','Scanned contents of 1333 additional files at 4.79 per second'),(24071,1728526091.210972,2,'info','Scanned contents of 1340 additional files at 4.80 per second'),(24072,1728526092.308796,2,'info','Scanned contents of 1347 additional files at 4.80 per second'),(24073,1728526093.324461,2,'info','Scanned contents of 1363 additional files at 4.84 per second'),(24074,1728526094.333572,2,'info','Scanned contents of 1383 additional files at 4.90 per second'),(24075,1728526095.407142,2,'info','Scanned contents of 1404 additional files at 4.95 per second'),(24076,1728526096.630730,2,'info','Scanned contents of 1414 additional files at 4.97 per second'),(24077,1728526097.659441,2,'info','Scanned contents of 1441 additional files at 5.04 per second'),(24078,1728526098.659747,2,'info','Scanned contents of 1464 additional files at 5.11 per second'),(24079,1728526099.667248,2,'info','Scanned contents of 1476 additional files at 5.13 per second'),(24080,1728526100.686055,2,'info','Scanned contents of 1495 additional files at 5.18 per second'),(24081,1728526101.693431,2,'info','Scanned contents of 1513 additional files at 5.22 per second'),(24082,1728526102.732905,2,'info','Scanned contents of 1525 additional files at 5.24 per second'),(24083,1728526103.753902,2,'info','Scanned contents of 1531 additional files at 5.25 per second'),(24084,1728526104.886733,2,'info','Scanned contents of 1544 additional files at 5.27 per second'),(24085,1728526105.913375,2,'info','Scanned contents of 1560 additional files at 5.31 per second'),(24086,1728526106.982240,2,'info','Scanned contents of 1575 additional files at 5.34 per second'),(24087,1728526108.057307,2,'info','Scanned contents of 1587 additional files at 5.36 per second'),(24088,1728526109.108276,2,'info','Scanned contents of 1596 additional files at 5.37 per second'),(24089,1728526110.333153,2,'info','Scanned contents of 1603 additional files at 5.37 per second'),(24090,1728526111.337332,2,'info','Scanned contents of 1610 additional files at 5.38 per second'),(24091,1728526112.354792,2,'info','Scanned contents of 1622 additional files at 5.40 per second'),(24092,1728526113.669007,2,'info','Scanned contents of 1633 additional files at 5.41 per second'),(24093,1728526114.856522,2,'info','Scanned contents of 1649 additional files at 5.44 per second'),(24094,1728526115.939546,2,'info','Scanned contents of 1660 additional files at 5.46 per second'),(24095,1728526116.976592,2,'info','Scanned contents of 1669 additional files at 5.47 per second'),(24096,1728526118.024307,2,'info','Scanned contents of 1678 additional files at 5.48 per second'),(24097,1728526156.902033,2,'info','Scanned contents of 1690 additional files at 4.90 per second'),(24098,1728526157.912976,2,'info','Scanned contents of 1708 additional files at 4.94 per second'),(24099,1728526159.043578,2,'info','Scanned contents of 1720 additional files at 4.96 per second'),(24100,1728526160.348927,2,'info','Scanned contents of 1732 additional files at 4.97 per second'),(24101,1728526161.411248,2,'info','Scanned contents of 1747 additional files at 5.00 per second'),(24102,1728526162.455815,2,'info','Scanned contents of 1753 additional files at 5.00 per second'),(24103,1728526163.571074,2,'info','Scanned contents of 1767 additional files at 5.03 per second'),(24104,1728526164.574433,2,'info','Scanned contents of 1783 additional files at 5.06 per second'),(24105,1728526165.601555,2,'info','Scanned contents of 1791 additional files at 5.06 per second'),(24106,1728526166.628870,2,'info','Scanned contents of 1802 additional files at 5.08 per second'),(24107,1728526167.665153,2,'info','Scanned contents of 1810 additional files at 5.09 per second'),(24108,1728526168.701879,2,'info','Scanned contents of 1831 additional files at 5.13 per second'),(24109,1728526169.721431,2,'info','Scanned contents of 1846 additional files at 5.16 per second'),(24110,1728526170.739222,2,'info','Scanned contents of 1853 additional files at 5.16 per second'),(24111,1728526171.782369,2,'info','Scanned contents of 1867 additional files at 5.19 per second'),(24112,1728526172.849155,2,'info','Scanned contents of 1880 additional files at 5.21 per second'),(24113,1728526173.877622,2,'info','Scanned contents of 1890 additional files at 5.22 per second'),(24114,1728526174.972029,2,'info','Scanned contents of 1903 additional files at 5.24 per second'),(24115,1728526176.013243,2,'info','Scanned contents of 1919 additional files at 5.27 per second'),(24116,1728526177.071380,2,'info','Scanned contents of 1931 additional files at 5.29 per second'),(24117,1728526178.097690,2,'info','Scanned contents of 1942 additional files at 5.30 per second'),(24118,1728526179.110571,2,'info','Scanned contents of 1954 additional files at 5.32 per second'),(24119,1728526180.120603,2,'info','Scanned contents of 1966 additional files at 5.34 per second'),(24120,1728526181.203048,2,'info','Scanned contents of 1977 additional files at 5.35 per second'),(24121,1728526182.389474,2,'info','Scanned contents of 1989 additional files at 5.37 per second'),(24122,1728526183.436241,2,'info','Scanned contents of 1999 additional files at 5.38 per second'),(24123,1728526184.448737,2,'info','Scanned contents of 2008 additional files at 5.39 per second'),(24124,1728526185.496935,2,'info','Scanned contents of 2016 additional files at 5.40 per second'),(24125,1728526186.635764,2,'info','Scanned contents of 2024 additional files at 5.40 per second'),(24126,1728526231.445543,2,'info','Scanned contents of 2030 additional files at 4.84 per second'),(24127,1728526232.585198,2,'info','Scanned contents of 2050 additional files at 4.87 per second'),(24128,1728526233.601850,2,'info','Scanned contents of 2061 additional files at 4.89 per second'),(24129,1728526234.633567,2,'info','Scanned contents of 2077 additional files at 4.91 per second'),(24130,1728526235.712767,2,'info','Scanned contents of 2090 additional files at 4.93 per second'),(24131,1728526236.727959,2,'info','Scanned contents of 2103 additional files at 4.95 per second'),(24132,1728526237.800007,2,'info','Scanned contents of 2118 additional files at 4.97 per second'),(24133,1728526238.811104,2,'info','Scanned contents of 2139 additional files at 5.01 per second'),(24134,1728526240.102361,2,'info','Scanned contents of 2161 additional files at 5.05 per second'),(24135,1728526241.123839,2,'info','Scanned contents of 2179 additional files at 5.08 per second'),(24136,1728526242.264184,2,'info','Scanned contents of 2196 additional files at 5.10 per second'),(24137,1728526243.293853,2,'info','Scanned contents of 2207 additional files at 5.12 per second'),(24138,1728526244.370832,2,'info','Scanned contents of 2218 additional files at 5.13 per second'),(24139,1728526245.559139,2,'info','Scanned contents of 2230 additional files at 5.14 per second'),(24140,1728526246.627633,2,'info','Scanned contents of 2242 additional files at 5.16 per second'),(24141,1728526247.746207,2,'info','Scanned contents of 2255 additional files at 5.17 per second'),(24142,1728526248.767881,2,'info','Scanned contents of 2269 additional files at 5.19 per second'),(24143,1728526249.787872,2,'info','Scanned contents of 2286 additional files at 5.22 per second'),(24144,1728526250.814569,2,'info','Scanned contents of 2305 additional files at 5.25 per second'),(24145,1728526251.842840,2,'info','Scanned contents of 2318 additional files at 5.27 per second'),(24146,1728526252.966905,2,'info','Scanned contents of 2329 additional files at 5.28 per second'),(24147,1728526253.987455,2,'info','Scanned contents of 2341 additional files at 5.30 per second'),(24148,1728526255.050971,2,'info','Scanned contents of 2354 additional files at 5.31 per second'),(24149,1728526256.164447,2,'info','Scanned contents of 2364 additional files at 5.32 per second'),(24150,1728526257.237711,2,'info','Scanned contents of 2383 additional files at 5.35 per second'),(24151,1728526258.266005,2,'info','Scanned contents of 2399 additional files at 5.38 per second'),(24152,1728526259.339387,2,'info','Scanned contents of 2407 additional files at 5.38 per second'),(24153,1728526260.388322,2,'info','Scanned contents of 2421 additional files at 5.40 per second'),(24154,1728526261.449748,2,'info','Scanned contents of 2432 additional files at 5.41 per second'),(24155,1728526306.554630,2,'info','Scanned contents of 2440 additional files at 4.93 per second'),(24156,1728526307.656931,2,'info','Scanned contents of 2455 additional files at 4.95 per second'),(24157,1728526308.669193,2,'info','Scanned contents of 2463 additional files at 4.96 per second'),(24158,1728526309.839247,2,'info','Scanned contents of 2476 additional files at 4.97 per second'),(24159,1728526310.964364,2,'info','Scanned contents of 2486 additional files at 4.98 per second'),(24160,1728526311.966679,2,'info','Scanned contents of 2498 additional files at 5.00 per second'),(24161,1728526313.071038,2,'info','Scanned contents of 2523 additional files at 5.03 per second'),(24162,1728526314.099729,2,'info','Scanned contents of 2532 additional files at 5.04 per second'),(24163,1728526315.117425,2,'info','Scanned contents of 2548 additional files at 5.06 per second'),(24164,1728526316.128813,2,'info','Scanned contents of 2564 additional files at 5.09 per second'),(24165,1728526317.169705,2,'info','Scanned contents of 2581 additional files at 5.11 per second'),(24166,1728526318.227970,2,'info','Scanned contents of 2598 additional files at 5.13 per second'),(24167,1728526319.243508,2,'info','Scanned contents of 2611 additional files at 5.15 per second'),(24168,1728526320.254824,2,'info','Scanned contents of 2617 additional files at 5.15 per second'),(24169,1728526321.316053,2,'info','Scanned contents of 2627 additional files at 5.16 per second'),(24170,1728526322.495859,2,'info','Scanned contents of 2640 additional files at 5.17 per second'),(24171,1728526323.618872,2,'info','Scanned contents of 2651 additional files at 5.18 per second'),(24172,1728526324.789532,2,'info','Scanned contents of 2667 additional files at 5.20 per second'),(24173,1728526326.244875,2,'info','Scanned contents of 2676 additional files at 5.20 per second'),(24174,1728526327.258876,2,'info','Scanned contents of 2695 additional files at 5.23 per second'),(24175,1728526328.430595,2,'info','Scanned contents of 2713 additional files at 5.25 per second'),(24176,1728526329.450471,2,'info','Scanned contents of 2726 additional files at 5.27 per second'),(24177,1728526330.621674,2,'info','Scanned contents of 2741 additional files at 5.28 per second'),(24178,1728526331.662700,2,'info','Scanned contents of 2755 additional files at 5.30 per second'),(24179,1728526332.719526,2,'info','Scanned contents of 2768 additional files at 5.32 per second'),(24180,1728526333.730628,2,'info','Scanned contents of 2775 additional files at 5.32 per second'),(24181,1728526334.741411,2,'info','Scanned contents of 2783 additional files at 5.32 per second'),(24182,1728526335.749415,2,'info','Scanned contents of 2794 additional files at 5.33 per second'),(24183,1728526336.783880,2,'info','Scanned contents of 2801 additional files at 5.34 per second'),(24184,1728526374.558694,2,'info','Scanned contents of 2805 additional files at 4.99 per second'),(24185,1728526375.841405,2,'info','Scanned contents of 2816 additional files at 4.99 per second'),(24186,1728526376.962227,2,'info','Scanned contents of 2830 additional files at 5.01 per second'),(24187,1728526377.995449,2,'info','Scanned contents of 2842 additional files at 5.02 per second'),(24188,1728526379.083714,2,'info','Scanned contents of 2858 additional files at 5.04 per second'),(24189,1728526380.163421,2,'info','Scanned contents of 2882 additional files at 5.07 per second'),(24190,1728526381.321045,2,'info','Scanned contents of 2898 additional files at 5.09 per second'),(24191,1728526382.355023,2,'info','Scanned contents of 2905 additional files at 5.09 per second'),(24192,1728526383.559843,2,'info','Scanned contents of 2921 additional files at 5.11 per second'),(24193,1728526384.953971,2,'info','Scanned contents of 2936 additional files at 5.12 per second'),(24194,1728526386.009325,2,'info','Scanned contents of 2942 additional files at 5.13 per second'),(24195,1728526387.091867,2,'info','Scanned contents of 2950 additional files at 5.13 per second'),(24196,1728526388.134826,2,'info','Scanned contents of 2957 additional files at 5.13 per second'),(24197,1728526389.215725,2,'info','Scanned contents of 2972 additional files at 5.15 per second'),(24198,1728526390.403407,2,'info','Scanned contents of 2978 additional files at 5.15 per second'),(24199,1728526391.462588,2,'info','Scanned contents of 2995 additional files at 5.17 per second'),(24200,1728526392.519373,2,'info','Scanned contents of 3015 additional files at 5.19 per second'),(24201,1728526393.576875,2,'info','Scanned contents of 3032 additional files at 5.21 per second'),(24202,1728526394.582944,2,'info','Scanned contents of 3045 additional files at 5.23 per second'),(24203,1728526395.641479,2,'info','Scanned contents of 3061 additional files at 5.24 per second'),(24204,1728526396.715572,2,'info','Scanned contents of 3079 additional files at 5.27 per second'),(24205,1728526397.794067,2,'info','Scanned contents of 3089 additional files at 5.27 per second'),(24206,1728526398.868035,2,'info','Scanned contents of 3102 additional files at 5.29 per second'),(24207,1728526400.007252,2,'info','Scanned contents of 3111 additional files at 5.29 per second'),(24208,1728526401.020555,2,'info','Scanned contents of 3120 additional files at 5.30 per second'),(24209,1728526402.037404,2,'info','Scanned contents of 3138 additional files at 5.32 per second'),(24210,1728526403.314155,2,'info','Scanned contents of 3142 additional files at 5.31 per second'),(24211,1728526404.365567,2,'info','Scanned contents of 3155 additional files at 5.33 per second'),(24212,1728526448.242891,2,'info','Scanned contents of 3163 additional files at 4.97 per second'),(24213,1728526449.276178,2,'info','Scanned contents of 3175 additional files at 4.98 per second'),(24214,1728526450.354159,2,'info','Scanned contents of 3191 additional files at 5.00 per second'),(24215,1728526451.475312,2,'info','Scanned contents of 3201 additional files at 5.01 per second'),(24216,1728526452.485964,2,'info','Scanned contents of 3212 additional files at 5.01 per second'),(24217,1728526453.539229,2,'info','Scanned contents of 3227 additional files at 5.03 per second'),(24218,1728526454.685257,2,'info','Scanned contents of 3239 additional files at 5.04 per second'),(24219,1728526456.326856,2,'info','Scanned contents of 3251 additional files at 5.05 per second'),(24220,1728526457.503667,2,'info','Scanned contents of 3262 additional files at 5.05 per second'),(24221,1728526459.587356,2,'info','Scanned contents of 3283 additional files at 5.07 per second'),(24222,1728526460.720426,2,'info','Scanned contents of 3292 additional files at 5.07 per second'),(24223,1728526461.838379,2,'info','Scanned contents of 3301 additional files at 5.08 per second'),(24224,1728526462.891483,2,'info','Scanned contents of 3312 additional files at 5.09 per second'),(24225,1728526463.902743,2,'info','Scanned contents of 3325 additional files at 5.10 per second'),(24226,1728526464.907209,2,'info','Scanned contents of 3337 additional files at 5.11 per second'),(24227,1728526466.022535,2,'info','Scanned contents of 3348 additional files at 5.12 per second'),(24228,1728526467.053607,2,'info','Scanned contents of 3366 additional files at 5.14 per second'),(24229,1728526468.054591,2,'info','Scanned contents of 3384 additional files at 5.16 per second'),(24230,1728526469.384672,2,'info','Scanned contents of 3396 additional files at 5.17 per second'),(24231,1728526470.613186,2,'info','Scanned contents of 3404 additional files at 5.17 per second'),(24232,1728526471.624366,2,'info','Scanned contents of 3419 additional files at 5.18 per second'),(24233,1728526472.718472,2,'info','Scanned contents of 3430 additional files at 5.19 per second'),(24234,1728526473.727517,2,'info','Scanned contents of 3449 additional files at 5.21 per second'),(24235,1728526474.825485,2,'info','Scanned contents of 3463 additional files at 5.22 per second'),(24236,1728526475.862180,2,'info','Scanned contents of 3470 additional files at 5.23 per second'),(24237,1728526476.880215,2,'info','Scanned contents of 3488 additional files at 5.25 per second'),(24238,1728526477.892032,2,'info','Scanned contents of 3509 additional files at 5.27 per second'),(24239,1728526478.964333,2,'info','Scanned contents of 3526 additional files at 5.29 per second'),(24240,1728526512.166856,2,'info','Scanned contents of 3528 additional files at 5.04 per second'),(24241,1728526513.218393,2,'info','Scanned contents of 3546 additional files at 5.06 per second'),(24242,1728526514.230523,2,'info','Scanned contents of 3569 additional files at 5.08 per second'),(24243,1728526515.241244,2,'info','Scanned contents of 3584 additional files at 5.10 per second'),(24244,1728526516.255420,2,'info','Scanned contents of 3595 additional files at 5.10 per second'),(24245,1728526517.352839,2,'info','Scanned contents of 3610 additional files at 5.12 per second'),(24246,1728526518.481824,2,'info','Scanned contents of 3621 additional files at 5.13 per second'),(24247,1728526519.586767,2,'info','Scanned contents of 3625 additional files at 5.12 per second'),(24248,1728526520.607293,2,'info','Scanned contents of 3631 additional files at 5.12 per second'),(24249,1728526521.631585,2,'info','Scanned contents of 3650 additional files at 5.14 per second'),(24250,1728526522.644241,2,'info','Scanned contents of 3658 additional files at 5.15 per second'),(24251,1728526523.691666,2,'info','Scanned contents of 3662 additional files at 5.15 per second'),(24252,1728526525.047810,2,'info','Scanned contents of 3675 additional files at 5.15 per second'),(24253,1728526526.221784,2,'info','Scanned contents of 3685 additional files at 5.16 per second'),(24254,1728526527.439006,2,'info','Scanned contents of 3708 additional files at 5.18 per second'),(24255,1728526528.480019,2,'info','Scanned contents of 3718 additional files at 5.19 per second'),(24256,1728526529.605118,2,'info','Scanned contents of 3732 additional files at 5.20 per second'),(24257,1728526530.649592,2,'info','Scanned contents of 3741 additional files at 5.21 per second'),(24258,1728526531.767792,2,'info','Scanned contents of 3747 additional files at 5.21 per second'),(24259,1728526532.809246,2,'info','Scanned contents of 3759 additional files at 5.21 per second'),(24260,1728526533.938780,2,'info','Scanned contents of 3765 additional files at 5.21 per second'),(24261,1728526535.324865,2,'info','Scanned contents of 3781 additional files at 5.23 per second'),(24262,1728526536.457223,2,'info','Scanned contents of 3789 additional files at 5.23 per second'),(24263,1728526537.522830,2,'info','Scanned contents of 3800 additional files at 5.24 per second'),(24264,1728526538.530219,2,'info','Scanned contents of 3814 additional files at 5.25 per second'),(24265,1728526539.607474,2,'info','Scanned contents of 3828 additional files at 5.26 per second'),(24266,1728526540.692016,2,'info','Scanned contents of 3843 additional files at 5.27 per second'),(24267,1728526541.857269,2,'info','Scanned contents of 3856 additional files at 5.28 per second'),(24268,1728526542.920609,2,'info','Scanned contents of 3866 additional files at 5.29 per second'),(24269,1728526566.645539,2,'info','Scanned contents of 3868 additional files at 5.13 per second'),(24270,1728526567.658136,2,'info','Scanned contents of 3879 additional files at 5.13 per second'),(24271,1728526568.687062,2,'info','Scanned contents of 3893 additional files at 5.14 per second'),(24272,1728526569.428678,2,'info','Scanned contents of 3901 additional files at 5.15 per second'),(24273,1728526569.429027,2,'info','Asking Wordfence to check URLs against malware list.'),(24274,1728526569.439114,2,'info','Checking 3370 host keys against Wordfence scanning servers.'),(24275,1728526569.778976,2,'info','Done host key check.'),(24276,1728526569.794749,2,'info','Done file contents scan'),(24277,1728526569.796626,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(24278,1728526569.800118,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(24279,1728526569.804501,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(24280,1728526569.806206,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(24281,1728526569.810441,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(24282,1728526569.873433,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(24283,1728526569.873985,2,'info','Checking 105 host keys against Wordfence scanning servers.'),(24284,1728526570.252234,2,'info','Done host key check.'),(24285,1728526570.252793,2,'info','Done examining URLs'),(24286,1728526570.255523,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(24287,1728526570.260369,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(24288,1728526570.267872,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(24289,1728526570.272396,10,'info','SUM_START:Scanning for weak passwords'),(24290,1728526570.283529,2,'info','Starting password strength check on 3 users.'),(24291,1728526570.292645,10,'info','SUM_ENDOK:Scanning for weak passwords'),(24292,1728526570.297500,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(24293,1728526572.705532,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(24294,1728526572.710386,10,'info','SUM_START:Scanning for suspicious site options'),(24295,1728526572.715921,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(24296,1728526572.716395,2,'info','Done examining URLs'),(24297,1728526572.719048,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(24298,1728526572.724081,1,'info','-------------------'),(24299,1728526572.724682,2,'info','Wordfence used 80.63 MB of memory for scan. Server peak memory usage was: 114.63 MB'),(24300,1728526572.726141,1,'info','Scan Complete. Scanned 9087 files, 11 plugins, 2 themes, 33 posts, 0 comments and 12651 URLs in 16 minutes 1 second.'),(24301,1728526572.726399,10,'info','SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.'),(24302,1728571902.010683,10,'info','SUM_PREP:Preparing a new scan.'),(24303,1728571902.017387,1,'info','Initiating quick scan'),(24304,1728571902.022076,10,'info','SUM_START:Checking Web Application Firewall status'),(24305,1728571902.022430,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(24306,1728571902.029963,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(24307,1728571903.028412,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(24308,1728571903.031493,1,'info','-------------------'),(24309,1728571903.032573,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 26 MB'),(24310,1728571903.034628,1,'info','Quick Scan Complete. Scanned in 1 second.'),(24311,1728571903.034991,10,'info','SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.');
/*!40000 ALTER TABLE `hyu_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wftrafficrates`
--

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

--
-- Dumping data for table `hyu_wftrafficrates`
--

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

--
-- Table structure for table `hyu_wfwaffailures`
--

DROP TABLE IF EXISTS `hyu_wfwaffailures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_wfwaffailures` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `throwable` text NOT NULL,
  `rule_id` int(10) unsigned DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_wfwaffailures`
--

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

--
-- Table structure for table `hyu_wpil_report_links`
--

DROP TABLE IF EXISTS `hyu_wpil_report_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_wpil_report_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `clean_url` text DEFAULT NULL,
  `raw_url` text DEFAULT NULL,
  `host` text DEFAULT NULL,
  `anchor` text DEFAULT NULL,
  `internal` tinyint(1) DEFAULT 0,
  `has_links` tinyint(1) NOT NULL DEFAULT 0,
  `post_type` text DEFAULT NULL,
  `location` varchar(20) DEFAULT NULL,
  `broken_link_scanned` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`link_id`),
  KEY `post_id` (`post_id`),
  KEY `clean_url` (`clean_url`(500)),
  KEY `host` (`host`(64))
) ENGINE=InnoDB AUTO_INCREMENT=26726 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_wpil_report_links`
--

LOCK TABLES `hyu_wpil_report_links` WRITE;
/*!40000 ALTER TABLE `hyu_wpil_report_links` DISABLE KEYS */;
INSERT INTO `hyu_wpil_report_links` VALUES (17195,2396,'https://support.google.com/adspolicy/answer/6008942/','https://support.google.com/adspolicy/answer/6008942?hl=en&amp;visit_id=638456876419726489-885632823&amp;rd=1','support.google.com','Google Ads policies.',0,1,'post',NULL,0),(17196,2396,'https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/','https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/#sthash.0FdRbT51.dpuf','consumercal.org','California Online Privacy Protection Act (CalOPPA)',0,1,'post',NULL,0),(17197,2396,'https://atlantagynecomastia.com/tel:5512011110/','https://atlantagynecomastia.com/tel:5512011110','atlantagynecomastia.com','(551) 201-1110',1,1,'post',NULL,0),(18664,2056,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','please contact the New Jersey Gynecomastia Center',1,1,'post',NULL,0),(18940,1275,'https://upenn.edu/','https://www.upenn.edu/','upenn.edu','University of Pennsylvania',0,1,'post',NULL,0),(18941,1275,'https://nsuh.northwell.edu/','https://nsuh.northwell.edu/','nsuh.northwell.edu','North Shore-New York University Hospital',0,1,'post',NULL,0),(18942,1275,'https://nyp.org/locations/newyork-presbyterian-weill-cornell-medical-center/','https://www.nyp.org/locations/newyork-presbyterian-weill-cornell-medical-center','nyp.org','New York Hospital-Cornell Medical Center',0,1,'post',NULL,0),(18943,1275,'https://mskcc.org/','https://www.mskcc.org/','mskcc.org','Memorial Sloan Kettering Cancer Center',0,1,'post',NULL,0),(18944,1275,'https://plasticsurgery.org/','https://www.plasticsurgery.org/','plasticsurgery.org','American Society of Plastic Surgeons',0,1,'post',NULL,0),(18945,1275,'https://abplasticsurgery.org/','https://www.abplasticsurgery.org/','abplasticsurgery.org','American Board of Plastic Surgery',0,1,'post',NULL,0),(18946,1275,'https://dare.org/','https://dare.org/','dare.org','D.A.R.E.',0,1,'post',NULL,0),(18947,1275,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','compassionate care',1,1,'post',NULL,0),(18948,1275,'https://northwestern.edu/','https://www.northwestern.edu/','northwestern.edu','Northwestern University',0,1,'post',NULL,0),(18949,1275,'https://brighamandwomens.org/about-bwh/','https://www.brighamandwomens.org/about-bwh','brighamandwomens.org','Harvard Medical School &#8211; Brigham &amp; Women&#8217;s Hospital',0,1,'post',NULL,0),(18950,1275,'https://utsouthwestern.edu/','https://www.utsouthwestern.edu/','utsouthwestern.edu','University of Texas Southwestern',0,1,'post',NULL,0),(18951,1275,'https://meeth.northwell.edu/','https://meeth.northwell.edu/','meeth.northwell.edu','Manhattan Eye, Ear, and Throat Hospital',0,1,'post',NULL,0),(18952,1275,'https://abplasticsurgery.org/','https://www.abplasticsurgery.org/','abplasticsurgery.org','American Board of Plastic Surgery',0,1,'post',NULL,0),(18953,1275,'https://absurgery.org/','https://www.absurgery.org/','absurgery.org','American Board of Surgery',0,1,'post',NULL,0),(18954,1275,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','gynecomastia services',1,1,'post',NULL,0),(18955,1275,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','atlantagynecomastia.com','gynecomastia costs in NJ',1,1,'post',NULL,0),(18956,1275,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(22237,3481,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Schedule an in-person or virtual consultation today',1,1,'post',NULL,0),(22238,3481,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','extra tissue around the nipples',1,1,'post',NULL,0),(22239,3481,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','doctors at the New Jersey Gynecomastia Center',1,1,'post',NULL,0),(22240,3481,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','causes of gynecomastia',1,1,'post',NULL,0),(22241,3481,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','https://atlantagynecomastia.com/gynecomastia-grades-stages/','atlantagynecomastia.com','severity of the condition',1,1,'post',NULL,0),(22242,3481,'https://health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age/','https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age','health.harvard.edu','wound healing',0,1,'post',NULL,0),(22243,3481,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','recovery process following gynecomastia surgery',1,1,'post',NULL,0),(22244,3481,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','gyno candidate',1,1,'post',NULL,0),(22245,3481,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule a free in person or virtual consultation',1,1,'post',NULL,0),(22246,3481,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','frequently asked gynecomastia questions',1,1,'post',NULL,0),(22247,3481,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(22324,2886,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Schedule your in-person or virtual consultation',1,1,'post',NULL,0),(22325,2886,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','frequently asked gynecomastia questions',1,1,'post',NULL,0),(22326,2886,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','if you are a gyno candidate',1,1,'post',NULL,0),(22327,2886,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Rosenberg and Dr. Pathak',1,1,'post',NULL,0),(22328,2886,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','procedure',1,1,'post',NULL,0),(22329,2886,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','surgery',1,1,'post',NULL,0),(22330,2886,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','consultation',1,1,'post',NULL,0),(22331,2886,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(22392,1563,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','our doctors',1,1,'post',NULL,0),(22393,1563,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','candidate for gyno surgery',1,1,'post',NULL,0),(22394,1563,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','https://atlantagynecomastia.com/gynecomastia-grades-stages/','atlantagynecomastia.com','stages of gynecomastia',1,1,'post',NULL,0),(22395,1563,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','their experiences',1,1,'post',NULL,0),(22396,1563,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(22526,1482,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','contact us today',1,1,'post',NULL,0),(22527,1482,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gyno',1,1,'post',NULL,0),(22528,1482,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gyno',1,1,'post',NULL,0),(22529,1482,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gyno',1,1,'post',NULL,0),(22530,1482,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Revision Gyno',1,1,'post',NULL,0),(22531,1482,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedo Gyno',1,1,'post',NULL,0),(22532,1482,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple',1,1,'post',NULL,0),(22533,1482,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gyno',1,1,'post',NULL,0),(22534,1482,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gyno After Weight Loss',1,1,'post',NULL,0),(22535,1482,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(22536,1482,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(22537,1482,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(22538,1482,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(22539,1482,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(22540,1482,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(22541,1482,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(22542,1482,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(22543,1482,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(23776,2657,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','doctors at the New Jersey Gynecomastia Center',1,1,'post',NULL,0),(23777,2657,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','Gynecomastia',1,1,'post',NULL,0),(23778,2657,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','seek treatment options,',1,1,'post',NULL,0),(23779,2657,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','underlying causes',1,1,'post',NULL,0),(23780,2657,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','anabolic steroids',1,1,'post',NULL,0),(23781,2657,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','hormone changes during infancy or adolescence',1,1,'post',NULL,0),(23782,2657,'https://ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf/','https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf','ucdenver.edu','cardiovascular training',0,1,'post',NULL,0),(23783,2657,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(23784,2657,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(23785,2657,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(23786,2657,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(23787,2657,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(23788,2657,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(23789,2657,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(23790,2657,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(23791,2657,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(23792,2657,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(24128,1906,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule your free in-person or virtual consultation',1,1,'post',NULL,0),(24129,1906,'https://webmd.com/men/best-exercises-gynecomastia/','https://www.webmd.com/men/best-exercises-gynecomastia','webmd.com','diet and exercise',0,1,'post',NULL,0),(24130,1906,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','given your candidacy',1,1,'post',NULL,0),(24131,1906,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','adult surgery',1,1,'post',NULL,0),(24132,1906,'https://plasticsurgery.org/cosmetic-procedures/liposuction/','https://www.plasticsurgery.org/cosmetic-procedures/liposuction','plasticsurgery.org','liposuction',0,1,'post',NULL,0),(24133,1906,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','before and after photos',1,1,'post',NULL,0),(24134,1906,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','frequently asked questions',1,1,'post',NULL,0),(24135,1906,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','primary cause of adolescent gynecomastia',1,1,'post',NULL,0),(24136,1906,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','puffy nipples',1,1,'post',NULL,0),(24137,1906,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','pseudogynecomastia',1,1,'post',NULL,0),(24138,1906,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','reach out to the New Jersey Gynecomastia Center',1,1,'post',NULL,0),(24139,1906,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(24140,1906,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(24141,1906,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(24142,1906,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(24143,1906,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(24144,1906,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(24145,1906,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(24146,1906,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(24147,1906,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(24166,1908,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule your free in-person or virtual consultation today',1,1,'post',NULL,0),(24167,1908,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','pseudogynecomastia',1,1,'post',NULL,0),(24168,1908,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','causes of adult gynecomastia',1,1,'post',NULL,0),(24169,1908,'https://healthline.com/health/low-testosterone/male-breasts-gynecomastia/','https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia','healthline.com','testosterone levels',0,1,'post',NULL,0),(24170,1908,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','gynecomastia candidates',1,1,'post',NULL,0),(24171,1908,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','male breast reduction surgery',1,1,'post',NULL,0),(24172,1908,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','before and after gynecomastia surgery',1,1,'post',NULL,0),(24173,1908,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','atlantagynecomastia.com','navigating insurance',1,1,'post',NULL,0),(24174,1908,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule your free consultation',1,1,'post',NULL,0),(24175,1908,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(24176,1908,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(24177,1908,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(24178,1908,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(24179,1908,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(24180,1908,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(24181,1908,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(24182,1908,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(24183,1908,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(24204,1911,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','frequently asked gyno questions',1,1,'post',NULL,0),(24205,1911,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule your free virtual or in-person consultation',1,1,'post',NULL,0),(24206,1911,'https://webmd.com/men/anabolic-steroids/','https://www.webmd.com/men/anabolic-steroids','webmd.com','anabolic steroids',0,1,'post',NULL,0),(24207,1911,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','primary cause of gynecomastia',1,1,'post',NULL,0),(24208,1911,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','adult gynecomastia',1,1,'post',NULL,0),(24209,1911,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','adolescent gynecomastia',1,1,'post',NULL,0),(24210,1911,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','gynecomastia surgery',1,1,'post',NULL,0),(24211,1911,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','before and after gyno surgery photos',1,1,'post',NULL,0),(24212,1911,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','atlantagynecomastia.com','insurance inquiries and financing options',1,1,'post',NULL,0),(24213,1911,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','assess your candidacy',1,1,'post',NULL,0),(24214,1911,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','contact us today to schedule your consultation',1,1,'post',NULL,0),(24215,1911,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(24216,1911,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(24217,1911,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(24218,1911,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(24219,1911,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(24220,1911,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(24221,1911,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(24222,1911,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(24223,1911,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(24240,1901,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule a free virtual or in-person consultation',1,1,'post',NULL,0),(24241,1901,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','surgery to treat gynecomastia',1,1,'post',NULL,0),(24242,1901,'https://my.clevelandclinic.org/health/treatments/11009-liposuction/','https://my.clevelandclinic.org/health/treatments/11009-liposuction','my.clevelandclinic.org','fat liposuction',0,1,'post',NULL,0),(24243,1901,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule your free consultation',1,1,'post',NULL,0),(24244,1901,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(24245,1901,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(24246,1901,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(24247,1901,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(24248,1901,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(24249,1901,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(24250,1901,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(24251,1901,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(24252,1901,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','frequently asked gyno questions',1,1,'post',NULL,0),(24253,1901,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','Candidates for gynecomastia revision surgery',1,1,'post',NULL,0),(24254,1901,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','atlantagynecomastia.com','insurance',1,1,'post',NULL,0),(24255,1901,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(24268,3473,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Schedule a free virtual or in-person consultation today',1,1,'post',NULL,0),(24269,3473,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','Gynecomastia is commonly caused',1,1,'post',NULL,0),(24270,3473,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','during puberty due to hormonal changes',1,1,'post',NULL,0),(24271,3473,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia',1,1,'post',NULL,0),(24272,3473,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','Gynecomastia surgery',1,1,'post',NULL,0),(24273,3473,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','book an in person or virtual evaluation',1,1,'post',NULL,0),(24274,3473,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','patient&#8217;s medical history and goals',1,1,'post',NULL,0),(24275,3473,'https://healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits/','https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits','healthline.com','healthy lifestyle',0,1,'post',NULL,0),(24276,3473,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','frequently asked gynecomastia questions',1,1,'post',NULL,0),(24277,3473,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','candidate for gynecomastia surgery',1,1,'post',NULL,0),(24278,3473,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule a free in person or virtual consultation',1,1,'post',NULL,0),(24279,3473,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(24280,2668,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','traditional gynecomastia',1,1,'post',NULL,0),(24281,2668,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','particularly during infancy and adolescence',1,1,'post',NULL,0),(24282,2668,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','https://atlantagynecomastia.com/gynecomastia-grades-stages/','atlantagynecomastia.com','grades and stages of gynecomastia',1,1,'post',NULL,0),(24283,2668,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','surgical interventions may be considered for candidates',1,1,'post',NULL,0),(24284,2668,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','scheduling a virtual or in-person consultation at the New Jersey Gynecomastia Center',1,1,'post',NULL,0),(24285,2668,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','causes of nipple enlargement',1,1,'post',NULL,0),(24286,2668,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','consult our doctors',1,1,'post',NULL,0),(24287,2668,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(24288,2668,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(24289,2668,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(24290,2668,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(24291,2668,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(24292,2668,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(24293,2668,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(24294,2668,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(24295,2668,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25395,1511,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','adult gyno',1,1,'post',NULL,0),(25396,1511,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','gynecomastia caused by steroids',1,1,'post',NULL,0),(25397,1511,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','free consultation today',1,1,'post',NULL,0),(25398,1511,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Infancy and Puberty',1,1,'post',NULL,0),(25399,1511,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Aging',1,1,'post',NULL,0),(25400,1511,'https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism/','https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism','my.clevelandclinic.org','Hypogonadism',0,1,'post',NULL,0),(25401,1511,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','causes of gynecomastia',1,1,'post',NULL,0),(25402,1511,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','https://atlantagynecomastia.com/gynecomastia-grades-stages/','atlantagynecomastia.com','gynecomastia grades and stages',1,1,'post',NULL,0),(25403,1511,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','pseudogynecomastia',1,1,'post',NULL,0),(25404,1511,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','surgical procedure',1,1,'post',NULL,0),(25405,1511,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','before and after results',1,1,'post',NULL,0),(25406,1511,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','scheduling an appointment',1,1,'post',NULL,0),(25407,1511,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25452,1525,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Schedule a consultation today',1,1,'post',NULL,0),(25453,1525,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','Gynecomastia',1,1,'post',NULL,0),(25454,1525,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','pseudogynecomastia',1,1,'post',NULL,0),(25455,1525,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Gynecomastia is common in adolescent boys',1,1,'post',NULL,0),(25456,1525,'https://ncbi.nlm.nih.gov/pmc/articles/PMC2860825/','https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/','ncbi.nlm.nih.gov','substances can lead to cases of gynecomastia',0,1,'post',NULL,0),(25457,1525,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','develop senior gyno',1,1,'post',NULL,0),(25458,1525,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','bodybuilder gynecomastia',1,1,'post',NULL,0),(25459,1525,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','achieve your ideal results',1,1,'post',NULL,0),(25460,1525,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Schedule your consultation with a New Jersey gyno specialist',1,1,'post',NULL,0),(25461,1525,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25476,2743,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','our experienced doctors',1,1,'post',NULL,0),(25477,2743,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','Gynecomastia',1,1,'post',NULL,0),(25478,2743,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','swelling beneath the nipples',1,1,'post',NULL,0),(25479,2743,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','adolescent males',1,1,'post',NULL,0),(25480,2743,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','causes that result in gynecomastia',1,1,'post',NULL,0),(25481,2743,'https://pennmedicine.org/for-patients-and-visitors/patient-information/conditions-treated-a-to-z/hyperthyroidism-overactive-thyroid/','https://www.pennmedicine.org/for-patients-and-visitors/patient-information/conditions-treated-a-to-z/hyperthyroidism-overactive-thyroid','pennmedicine.org','hyperthyroidism',0,1,'post',NULL,0),(25482,2743,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','gynecomastia among bodybuilders',1,1,'post',NULL,0),(25483,2743,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','hormonal fluctuations associated with aging',1,1,'post',NULL,0),(25484,2743,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Pseudogynecomastia',1,1,'post',NULL,0),(25485,2743,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','https://atlantagynecomastia.com/gynecomastia-grades-stages/','atlantagynecomastia.com','Gynecomastia is often classified into four grades',1,1,'post',NULL,0),(25486,2743,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','atlantagynecomastia.com','cost of gynecomastia surgery',1,1,'post',NULL,0),(25487,2743,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','natural-looking results',1,1,'post',NULL,0),(25488,2743,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','free in-person or virtual consultation',1,1,'post',NULL,0),(25489,2743,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25646,1666,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','what to expect',1,1,'post',NULL,0),(25647,1666,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','top New Jersey gynecomastia doctors',1,1,'post',NULL,0),(25648,1666,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','https://atlantagynecomastia.com/gynecomastia-grades-stages/','atlantagynecomastia.com','gynecomastia grade',1,1,'post',NULL,0),(25649,1666,'https://asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/','https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/','asahq.org','anesthetic used',0,1,'post',NULL,0),(25650,1666,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia',1,1,'post',NULL,0),(25651,1666,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia',1,1,'post',NULL,0),(25652,1666,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia',1,1,'post',NULL,0),(25653,1666,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gyno Revision Surgery',1,1,'post',NULL,0),(25654,1666,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Pseudogynecomastia',1,1,'post',NULL,0),(25655,1666,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipples',1,1,'post',NULL,0),(25656,1666,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(25657,1666,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(25658,1666,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','pre-op photos taken',1,1,'post',NULL,0),(25659,1666,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','speak to our office beforehand',1,1,'post',NULL,0),(25660,1666,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','frequently asked questions',1,1,'post',NULL,0),(25661,1666,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25737,1668,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','main questions and concerns about Gynecomastia surgery',1,1,'post',NULL,0),(25738,1668,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','https://atlantagynecomastia.com/gynecomastia-grades-stages/','atlantagynecomastia.com','stages and types of gynecomastia',1,1,'post',NULL,0),(25739,1668,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia',1,1,'post',NULL,0),(25740,1668,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','gynecomastia revision surgery',1,1,'post',NULL,0),(25741,1668,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','team of gynecomastia experts',1,1,'post',NULL,0),(25742,1668,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','consultation with our doctors',1,1,'post',NULL,0),(25743,1668,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','discuss pricing with the New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25744,1668,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','before and after gynecomastia results',1,1,'post',NULL,0),(25745,1668,'https://patientfi.com/','https://patientfi.com/','patientfi.com','PatientFi',0,1,'post',NULL,0),(25746,1668,'https://carecredit.com/','https://www.carecredit.com/','carecredit.com','visit CareCredit&#8217;s website',0,1,'post',NULL,0),(25747,1668,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Schedule your appointment',1,1,'post',NULL,0),(25748,1668,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','unparalleled care and expertise',1,1,'post',NULL,0),(25749,1668,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25830,3418,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Schedule a consultation today',1,1,'post',NULL,0),(25831,3418,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia surgery in New Jersey',1,1,'post',NULL,0),(25832,3418,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','types of gyno',1,1,'post',NULL,0),(25833,3418,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','adult men',1,1,'post',NULL,0),(25834,3418,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','contribute to gynecomastia',1,1,'post',NULL,0),(25835,3418,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','gynecomastia in adolescents',1,1,'post',NULL,0),(25836,3418,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','gyno becomes increasingly prevalent among seniors',1,1,'post',NULL,0),(25837,3418,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Anabolic steroid use',1,1,'post',NULL,0),(25838,3418,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','particularly those who have undergone significant weight loss',1,1,'post',NULL,0),(25839,3418,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','underlying cause of enlarged breast tissue',1,1,'post',NULL,0),(25840,3418,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','initial consultation',1,1,'post',NULL,0),(25841,3418,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','atlantagynecomastia.com','cost of gynecomastia surgery',1,1,'post',NULL,0),(25842,3418,'https://emedicine.medscape.com/article/1271543-overview/','https://emedicine.medscape.com/article/1271543-overview','emedicine.medscape.com','general anesthesia',0,1,'post',NULL,0),(25843,3418,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','aesthetically pleasing results',1,1,'post',NULL,0),(25844,3418,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','gynecomastia surgery',1,1,'post',NULL,0),(25845,3418,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','our doctors',1,1,'post',NULL,0),(25846,3418,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule a free in person or virtual consultation',1,1,'post',NULL,0),(25847,3418,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25857,1551,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','atlantagynecomastia.com','surgery costs',1,1,'post',NULL,0),(25858,1551,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia is defined as overdeveloped breast gland tissue',1,1,'post',NULL,0),(25859,1551,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','pseudogynecomastia',1,1,'post',NULL,0),(25860,1551,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','gynecomastia procedure',1,1,'post',NULL,0),(25861,1551,'https://hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia/','https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia','hopkinsmedicine.org','gynecomastia',0,1,'post',NULL,0),(25862,1551,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','nipple puffiness',1,1,'post',NULL,0),(25863,1551,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','tailor our approach to address each patient&#8217;s unique needs',1,1,'post',NULL,0),(25864,1551,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','schedule a free consultation',1,1,'post',NULL,0),(25865,1551,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25980,2858,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(25981,2858,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','gynecomastia candidacy',1,1,'post',NULL,0),(25982,2858,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','gynecomastia reviews',1,1,'post',NULL,0),(25983,2858,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(25984,2858,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(25985,2858,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(25986,2858,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(25987,2858,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(25988,2858,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(25989,2858,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(25990,2858,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(25991,2858,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(25992,2858,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(25993,2858,'https://jointcommission.org/','https://www.jointcommission.org/','jointcommission.org','Joint Commission',0,1,'post',NULL,0),(25994,2858,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD',1,1,'post',NULL,0),(25995,2858,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(25996,2858,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(25997,2858,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(25998,2858,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(25999,2858,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26000,2858,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26001,2858,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26002,2858,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26003,2858,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26004,2858,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26005,2858,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26270,2787,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26271,2787,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Rosenberg and Dr. Pathak',1,1,'post',NULL,0),(26272,2787,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','gynecomastia reviews',1,1,'post',NULL,0),(26273,2787,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(26274,2787,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(26275,2787,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(26276,2787,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(26277,2787,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(26278,2787,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(26279,2787,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(26280,2787,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(26281,2787,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(26282,2787,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(26283,2787,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(26284,2787,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(26285,2787,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(26286,2787,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(26287,2787,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26288,2787,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26289,2787,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26290,2787,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26291,2787,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26292,2787,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26293,2787,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26318,2868,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26319,2868,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','gynecomastia reviews',1,1,'post',NULL,0),(26320,2868,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(26321,2868,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(26322,2868,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(26323,2868,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(26324,2868,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(26325,2868,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(26326,2868,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(26327,2868,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(26328,2868,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(26329,2868,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(26330,2868,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD',1,1,'post',NULL,0),(26331,2868,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(26332,2868,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(26333,2868,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(26334,2868,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(26335,2868,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26336,2868,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26337,2868,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26338,2868,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26339,2868,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26340,2868,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26341,2868,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26366,2854,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26367,2854,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','gynecomastia reviews',1,1,'post',NULL,0),(26368,2854,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(26369,2854,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(26370,2854,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(26371,2854,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(26372,2854,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(26373,2854,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(26374,2854,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(26375,2854,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(26376,2854,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(26377,2854,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(26378,2854,'https://jointcommission.org/','https://www.jointcommission.org/','jointcommission.org','Joint Commission',0,1,'post',NULL,0),(26379,2854,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(26380,2854,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(26381,2854,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(26382,2854,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(26383,2854,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26384,2854,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26385,2854,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26386,2854,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26387,2854,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26388,2854,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26389,2854,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26437,2872,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26438,2872,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Rosenberg and Dr. Pathak',1,1,'post',NULL,0),(26439,2872,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','gynecomastia reviews',1,1,'post',NULL,0),(26440,2872,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(26441,2872,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(26442,2872,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(26443,2872,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(26444,2872,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(26445,2872,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(26446,2872,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(26447,2872,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(26448,2872,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(26449,2872,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(26450,2872,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(26451,2872,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(26452,2872,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(26453,2872,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(26454,2872,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26455,2872,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26456,2872,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26457,2872,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26458,2872,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26459,2872,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26460,2872,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26486,2881,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26487,2881,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','gynecomastia reviews',1,1,'post',NULL,0),(26488,2881,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(26489,2881,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(26490,2881,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(26491,2881,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(26492,2881,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(26493,2881,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(26494,2881,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(26495,2881,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(26496,2881,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(26497,2881,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(26498,2881,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(26499,2881,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(26500,2881,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(26501,2881,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(26502,2881,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26503,2881,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26504,2881,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26505,2881,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26506,2881,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26507,2881,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26508,2881,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26509,2844,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26510,2844,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','gynecomastia reviews',1,1,'post',NULL,0),(26511,2844,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(26512,2844,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(26513,2844,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(26514,2844,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(26515,2844,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(26516,2844,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(26517,2844,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(26518,2844,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(26519,2844,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(26520,2844,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(26521,2844,'https://jointcommission.org/','https://www.jointcommission.org/','jointcommission.org','Joint Commission',0,1,'post',NULL,0),(26522,2844,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD',1,1,'post',NULL,0),(26523,2844,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(26524,2844,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(26525,2844,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(26526,2844,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(26527,2844,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26528,2844,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26529,2844,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26530,2844,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26531,2844,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26532,2844,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26533,2844,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26558,2862,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26559,2862,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','gynecomastia reviews',1,1,'post',NULL,0),(26560,2862,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(26561,2862,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(26562,2862,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(26563,2862,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(26564,2862,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(26565,2862,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(26566,2862,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(26567,2862,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(26568,2862,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(26569,2862,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(26570,2862,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Paul Rosenberg MD and Dr. Abraham Pathak MD',1,1,'post',NULL,0),(26571,2862,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(26572,2862,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(26573,2862,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(26574,2862,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(26575,2862,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26576,2862,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26577,2862,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26578,2862,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26579,2862,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26580,2862,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26581,2862,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26610,1329,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Contact Us Today!',1,1,'post',NULL,0),(26611,1329,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','Learn More About Gyno',1,1,'post',NULL,0),(26612,1329,'https://atlantagynecomastia.com/causes-of-gynecomastia/','https://atlantagynecomastia.com/causes-of-gynecomastia/','atlantagynecomastia.com','What Causes Gyno?',1,1,'post',NULL,0),(26613,1329,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','https://atlantagynecomastia.com/gynecomastia-grades-stages/','atlantagynecomastia.com','Gyno Grades',1,1,'post',NULL,0),(26614,1329,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions-new-jersey/','atlantagynecomastia.com','Gyno FAQs',1,1,'post',NULL,0),(26615,1329,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','reach out and schedule a consultation',1,1,'post',NULL,0),(26616,1329,'https://atlantagynecomastia.com/gynecomastia-candidates/','https://atlantagynecomastia.com/gynecomastia-candidates/','atlantagynecomastia.com','Are You a Candidate?',1,1,'post',NULL,0),(26617,1329,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia',1,1,'post',NULL,0),(26618,1329,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia',1,1,'post',NULL,0),(26619,1329,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia',1,1,'post',NULL,0),(26620,1329,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Revision Gynecomastia',1,1,'post',NULL,0),(26621,1329,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Pseudogynecomastia',1,1,'post',NULL,0),(26622,1329,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipples',1,1,'post',NULL,0),(26623,1329,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26624,1329,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Post Weight Loss',1,1,'post',NULL,0),(26625,1329,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','Book a Consultation Today!',1,1,'post',NULL,0),(26626,1329,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','Surgery Timeline',1,1,'post',NULL,0),(26627,1329,'https://atlantagynecomastia.com/before-after-results/','https://atlantagynecomastia.com/before-after-results/','atlantagynecomastia.com','Before &amp; After Photos',1,1,'post',NULL,0),(26628,1329,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','atlantagynecomastia.com','See All Plans &amp; Pricing',1,1,'post',NULL,0),(26629,1329,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Meet the Doctors',1,1,'post',NULL,0),(26630,1329,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','Check Out Some More Reviews',1,1,'post',NULL,0),(26631,1329,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(26632,1329,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(26633,1329,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester',1,1,'post',NULL,0),(26634,1329,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','out of town',1,1,'post',NULL,0),(26635,1329,'https://atlantagynecomastia.com/tel:5512011110/','https://atlantagynecomastia.com/tel:5512011110','atlantagynecomastia.com','(551) 201-1110',1,1,'post',NULL,0),(26636,1329,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=13&#038;maptype=roadmap&#038;q=1567+Palisade+Avenue%2C+Fort+Lee+NJ','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26637,1329,'https://atlantagynecomastia.com/tel:5512011110/','https://atlantagynecomastia.com/tel:5512011110','atlantagynecomastia.com','(551) 201-1110',1,1,'post',NULL,0),(26652,1484,'https://atlantagynecomastia.com/contact/newark-new-jersey/','https://atlantagynecomastia.com/contact/newark-new-jersey/','atlantagynecomastia.com','Newark',1,1,'post',NULL,0),(26653,1484,'https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','https://atlantagynecomastia.com/contact/jersey-city-new-jersey/','atlantagynecomastia.com','Jersey City',1,1,'post',NULL,0),(26654,1484,'https://atlantagynecomastia.com/contact/edgewater-new-jersey/','https://atlantagynecomastia.com/contact/edgewater-new-jersey/','atlantagynecomastia.com','Edgewater',1,1,'post',NULL,0),(26655,1484,'https://atlantagynecomastia.com/contact/westchester-county-new-york/','https://atlantagynecomastia.com/contact/westchester-county-new-york/','atlantagynecomastia.com','Westchester County',1,1,'post',NULL,0),(26656,1484,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','Manhattan',1,1,'post',NULL,0),(26657,1484,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','Staten Island',1,1,'post',NULL,0),(26658,1484,'https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','https://atlantagynecomastia.com/contact/elizabeth-new-jersey/','atlantagynecomastia.com','Elizabeth',1,1,'post',NULL,0),(26659,1484,'https://atlantagynecomastia.com/contact/hackensack-new-jersey/','https://atlantagynecomastia.com/contact/hackensack-new-jersey/','atlantagynecomastia.com','Hackensack',1,1,'post',NULL,0),(26660,1484,'https://atlantagynecomastia.com/contact/out-of-town-patients/','https://atlantagynecomastia.com/contact/out-of-town-patients/','atlantagynecomastia.com','Out of Town Patients',1,1,'post',NULL,0),(26661,1484,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Rosenberg and Dr. Pathak',1,1,'post',NULL,0),(26662,1484,'https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','https://atlantagynecomastia.com/gynecomastia-reviews-new-jersey/','atlantagynecomastia.com','read through some reviews',1,1,'post',NULL,0),(26663,1484,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','different types of gynecomastia',1,1,'post',NULL,0),(26664,1484,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26665,1484,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26696,3490,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0),(26697,3490,'https://atlantagynecomastia.com/contact/manhattan-nyc/','https://atlantagynecomastia.com/contact/manhattan-nyc/','atlantagynecomastia.com','gynecomastia surgery near Manhattan',1,1,'post',NULL,0),(26698,3490,'https://atlantagynecomastia.com/contact/staten-island-new-york/','https://atlantagynecomastia.com/contact/staten-island-new-york/','atlantagynecomastia.com','surgery near Staten Island',1,1,'post',NULL,0),(26699,3490,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','https://atlantagynecomastia.com/gynecomastia-surgery-doctors-new-jersey/','atlantagynecomastia.com','Dr. Rosenberg and Dr. Pathak',1,1,'post',NULL,0),(26700,3490,'https://atlantagynecomastia.com/contact/','https://atlantagynecomastia.com/contact/','atlantagynecomastia.com','free phone or video consultations',1,1,'post',NULL,0),(26701,3490,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','surgery timeline',1,1,'post',NULL,0),(26702,3490,'https://newarkairport.com/','https://www.newarkairport.com/','newarkairport.com','Newark Airport:',0,1,'post',NULL,0),(26703,3490,'https://laguardiaairport.com/','https://www.laguardiaairport.com/','laguardiaairport.com','LaGuardia Airport',0,1,'post',NULL,0),(26704,3490,'https://jfkairport.com/','https://www.jfkairport.com/','jfkairport.com','JFK Airport:',0,1,'post',NULL,0),(26705,3490,'https://amtrak.com/','https://www.amtrak.com/','amtrak.com','Amtrak',0,1,'post',NULL,0),(26706,3490,'https://uber.com/','https://www.uber.com/','uber.com','Uber',0,1,'post',NULL,0),(26707,3490,'https://lyft.com/','https://www.lyft.com/','lyft.com','Lyft',0,1,'post',NULL,0),(26708,3490,'https://new.mta.info/agency/metro-north-railroad/','https://new.mta.info/agency/metro-north-railroad','new.mta.info','Metro-North Railroad',0,1,'post',NULL,0),(26709,3490,'https://new.mta.info/agency/long-island-rail-road/','https://new.mta.info/agency/long-island-rail-road','new.mta.info','Long Island Railroad',0,1,'post',NULL,0),(26710,3490,'https://njtransit.com/','https://www.njtransit.com/','njtransit.com','New Jersey Transit',0,1,'post',NULL,0),(26711,3490,'https://hilton.com/en/hotels/ftlfldt-doubletree-fort-lee-george-washington-bridge/','https://www.hilton.com/en/hotels/ftlfldt-doubletree-fort-lee-george-washington-bridge/','hilton.com','DoubleTree by Hilton Fort Lee',0,1,'post',NULL,0),(26712,3490,'https://hyatt.com/en-US/hotel/new-jersey/hyatt-place-fort-lee-george-washington-bridge/ewrzl/','https://www.hyatt.com/en-US/hotel/new-jersey/hyatt-place-fort-lee-george-washington-bridge/ewrzl','hyatt.com','Hyatt Place Fort Lee',0,1,'post',NULL,0),(26713,3490,'https://atlantagynecomastia.com/what-is-gyno/','https://atlantagynecomastia.com/what-is-gyno/','atlantagynecomastia.com','gynecomastia (male breast reduction)',1,1,'post',NULL,0),(26714,3490,'https://atlantagynecomastia.com/gynecomastia-types/','https://atlantagynecomastia.com/gynecomastia-types/','atlantagynecomastia.com','type of gynecomastia surgery',1,1,'post',NULL,0),(26715,3490,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','atlantagynecomastia.com','Adult Gynecomastia Surgery',1,1,'post',NULL,0),(26716,3490,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','atlantagynecomastia.com','Adolescent Gynecomastia Surgery',1,1,'post',NULL,0),(26717,3490,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','atlantagynecomastia.com','Bodybuilder Gynecomastia Surgery',1,1,'post',NULL,0),(26718,3490,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','atlantagynecomastia.com','Gynecomastia Revision Surgery',1,1,'post',NULL,0),(26719,3490,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','atlantagynecomastia.com','Psuedogynecomastia Surgery',1,1,'post',NULL,0),(26720,3490,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','atlantagynecomastia.com','Puffy Nipple Gynecomastia Surgery',1,1,'post',NULL,0),(26721,3490,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','atlantagynecomastia.com','Senior Gynecomastia',1,1,'post',NULL,0),(26722,3490,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','atlantagynecomastia.com','Gynecomastia After Weight Loss',1,1,'post',NULL,0),(26723,3490,'https://atlantagynecomastia.com/gynecomastia-surgery/','https://atlantagynecomastia.com/gynecomastia-surgery/','atlantagynecomastia.com','minimally invasive surgery',1,1,'post',NULL,0),(26724,3490,'https://google.com/maps/embed/v1/place/','https://www.google.com/maps/embed/v1/place?key=AIzaSyBAM2o7PiQqwk15LC1XRH2e_KJ-jUa7KYk&#038;zoom=11&#038;maptype=roadmap&#038;q=1567+palisade+avenue+fort+lee','google.com','No anchor text, link is for an iframe',0,1,'post',NULL,0),(26725,3490,'https://atlantagynecomastia.com/','https://atlantagynecomastia.com/','atlantagynecomastia.com','New Jersey Gynecomastia Center',1,1,'post',NULL,0);
/*!40000 ALTER TABLE `hyu_wpil_report_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wpr_above_the_fold`
--

DROP TABLE IF EXISTS `hyu_wpr_above_the_fold`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_wpr_above_the_fold` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `lcp` longtext DEFAULT '',
  `viewport` longtext DEFAULT '',
  `error_message` longtext DEFAULT NULL,
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `status_index` (`status`(191))
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_wpr_above_the_fold`
--

LOCK TABLES `hyu_wpr_above_the_fold` WRITE;
/*!40000 ALTER TABLE `hyu_wpr_above_the_fold` DISABLE KEYS */;
INSERT INTO `hyu_wpr_above_the_fold` VALUES (15,'https://atlantagynecomastia.com/causes-of-gynecomastia',0,'{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}','[]','','completed','2024-09-18 00:21:54','2024-09-18 00:21:54'),(16,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance',1,'{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}','[]','','completed','2024-09-18 20:59:01','2024-09-18 20:59:01'),(17,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia',1,'not found','[]','','completed','2024-09-21 02:54:46','2024-09-21 02:54:46'),(18,'https://atlantagynecomastia.com/contact/athens-georgia',0,'{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}','[]','','completed','2024-09-21 08:20:32','2024-09-21 08:20:32'),(19,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia',0,'{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/What-is-Gynecomastia-Atlanta-1024x586.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/What-is-Gynecomastia-Atlanta-1024x586.png 1024w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/What-is-Gynecomastia-Atlanta-300x172.png 300w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/What-is-Gynecomastia-Atlanta-768x440.png 768w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/What-is-Gynecomastia-Atlanta.png 1223w\",\"sizes\":\"(max-width: 1024px) 100vw, 1024px\"}','[{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}]','','completed','2024-09-21 08:20:46','2024-09-21 08:20:46'),(21,'https://atlantagynecomastia.com/contact',1,'{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}','[]','','completed','2024-10-11 02:15:15','2024-10-11 02:15:15'),(22,'https://atlantagynecomastia.com',0,'not found','[{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}]','','completed','2024-10-11 02:15:16','2024-10-11 02:15:16'),(23,'https://atlantagynecomastia.com',1,'not found','[{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}]','','completed','2024-10-11 02:15:17','2024-10-11 02:15:17'),(24,'https://atlantagynecomastia.com/author/aspiegel',0,'{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}','[{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo_White.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo_White.png 459w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo_White-300x65.png 300w\",\"sizes\":\"(max-width: 459px) 100vw, 459px\"}]','','completed','2024-10-11 02:15:26','2024-10-11 02:15:26'),(25,'https://atlantagynecomastia.com/contact',0,'{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}','[]','','completed','2024-10-11 02:15:33','2024-10-11 02:15:33'),(26,'https://atlantagynecomastia.com/author/aspiegel',1,'{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo_White.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo_White.png 459w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo_White-300x65.png 300w\",\"sizes\":\"(max-width: 459px) 100vw, 459px\"}','[{\"type\":\"img-srcset\",\"src\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png\",\"srcset\":\"https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1.png 457w, https:\\/\\/atlantagynecomastia.com\\/wp-content\\/uploads\\/2024\\/03\\/Atlanta_Gynecomastia_Center_Logo-1-300x66.png 300w\",\"sizes\":\"(max-width: 457px) 100vw, 457px\"}]','','completed','2024-10-11 02:15:59','2024-10-11 02:15:59');
/*!40000 ALTER TABLE `hyu_wpr_above_the_fold` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wpr_rocket_cache`
--

DROP TABLE IF EXISTS `hyu_wpr_rocket_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_wpr_rocket_cache` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `is_locked` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`)
) ENGINE=InnoDB AUTO_INCREMENT=250 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_wpr_rocket_cache`
--

LOCK TABLES `hyu_wpr_rocket_cache` WRITE;
/*!40000 ALTER TABLE `hyu_wpr_rocket_cache` DISABLE KEYS */;
INSERT INTO `hyu_wpr_rocket_cache` VALUES (2,'https://atlantagynecomastia.com/accessibility-policy','completed','2024-10-11 13:04:00','2024-10-11 13:04:00',0),(3,'https://atlantagynecomastia.com/contact/out-of-town-patients','completed','2024-10-11 13:04:02','2024-10-11 13:04:02',0),(4,'https://atlantagynecomastia.com/contact/columbus-georgia','completed','2024-10-11 13:04:04','2024-10-11 13:04:04',0),(5,'https://atlantagynecomastia.com/contact/sandy-springs-georgia','completed','2024-10-11 13:04:06','2024-10-11 13:04:06',0),(6,'https://atlantagynecomastia.com/contact/roswell-georgia','completed','2024-10-11 13:04:08','2024-10-11 13:04:08',0),(7,'https://atlantagynecomastia.com/contact/decatur-georgia','completed','2024-10-11 13:04:58','2024-10-11 13:04:58',0),(8,'https://atlantagynecomastia.com/contact/alpharetta-georgia','completed','2024-10-11 13:05:00','2024-10-11 13:05:00',0),(9,'https://atlantagynecomastia.com/contact/fulton-county-georgia','completed','2024-10-11 13:05:03','2024-10-11 13:05:03',0),(10,'https://atlantagynecomastia.com/contact/buckhead-georgia','completed','2024-10-11 13:05:05','2024-10-11 13:05:05',0),(11,'https://atlantagynecomastia.com/contact/athens-georgia','completed','2024-10-11 13:05:07','2024-10-11 13:05:07',0),(12,'https://atlantagynecomastia.com/contact/marietta-georgia','completed','2024-10-11 13:05:09','2024-10-11 13:05:09',0),(13,'https://atlantagynecomastia.com/gynecomastia-candidates','completed','2024-10-11 13:05:11','2024-10-11 13:05:11',0),(14,'https://atlantagynecomastia.com/gynecomastia-reviews','completed','2024-10-11 13:05:14','2024-10-11 13:05:14',0),(16,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions','completed','2024-10-11 13:05:16','2024-10-11 13:05:16',0),(17,'https://atlantagynecomastia.com/gynecomastia-grades-stages','completed','2024-10-11 13:05:18','2024-10-11 13:05:18',0),(19,'https://atlantagynecomastia.com/privacy-policy','completed','2024-10-11 13:05:20','2024-10-11 13:05:20',0),(20,'https://atlantagynecomastia.com/gynecomastia-types','completed','2024-10-11 13:05:59','2024-10-11 13:05:59',0),(21,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia','completed','2024-10-11 13:06:01','2024-10-11 13:06:01',0),(22,'https://atlantagynecomastia.com/before-after-results','completed','2024-10-11 13:06:03','2024-10-11 13:06:03',0),(23,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia','completed','2024-10-11 13:06:05','2024-10-11 13:06:05',0),(24,'https://atlantagynecomastia.com/gynecomastia-surgery','completed','2024-10-11 13:06:07','2024-10-11 13:06:07',0),(25,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia','completed','2024-10-11 13:06:09','2024-10-11 13:06:09',0),(26,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision','completed','2024-10-11 13:06:12','2024-10-11 13:06:12',0),(27,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia','completed','2024-10-11 13:06:14','2024-10-11 13:06:14',0),(28,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss','completed','2024-10-11 13:06:16','2024-10-11 13:06:16',0),(29,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance','completed','2024-10-11 13:06:18','2024-10-11 13:06:18',0),(30,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia','completed','2024-10-11 13:06:20','2024-10-11 13:06:20',0),(31,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia','completed','2024-10-11 13:06:59','2024-10-11 13:06:59',0),(32,'https://atlantagynecomastia.com/what-is-gyno','completed','2024-10-11 13:07:01','2024-10-11 13:07:01',0),(33,'https://atlantagynecomastia.com/contact','completed','2024-10-11 13:07:03','2024-10-11 13:07:03',0),(50,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors','completed','2024-10-11 13:07:05','2024-10-11 13:07:05',0),(51,'https://atlantagynecomastia.com/author/davidb','completed','2024-10-11 13:07:07','2024-10-11 13:07:07',0),(53,'https://atlantagynecomastia.com/causes-of-gynecomastia','completed','2024-10-11 13:07:09','2024-10-11 13:07:09',0),(247,'https://atlantagynecomastia.com/author/aspiegel','completed','2024-10-11 13:07:11','2024-10-11 13:07:11',0),(249,'https://atlantagynecomastia.com','completed','2024-10-11 13:07:12','2024-10-11 13:07:12',0);
/*!40000 ALTER TABLE `hyu_wpr_rocket_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_wpr_rucss_used_css`
--

DROP TABLE IF EXISTS `hyu_wpr_rucss_used_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_wpr_rucss_used_css` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `css` longtext DEFAULT NULL,
  `hash` varchar(32) DEFAULT '',
  `error_code` varchar(32) DEFAULT NULL,
  `error_message` longtext DEFAULT NULL,
  `unprocessedcss` longtext DEFAULT NULL,
  `retries` tinyint(1) NOT NULL DEFAULT 1,
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `job_id` varchar(255) NOT NULL DEFAULT '',
  `queue_name` varchar(255) NOT NULL DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `submitted_at` timestamp NULL DEFAULT NULL,
  `next_retry_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `status_index` (`status`(191)),
  KEY `error_code_index` (`error_code`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=102 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_wpr_rucss_used_css`
--

LOCK TABLES `hyu_wpr_rucss_used_css` WRITE;
/*!40000 ALTER TABLE `hyu_wpr_rucss_used_css` DISABLE KEYS */;
INSERT INTO `hyu_wpr_rucss_used_css` VALUES (3,'https://atlantagynecomastia.com/contact/out-of-town-patients','','976fa031dc84d7ff4ad1d6a09e6dcf8e','','',NULL,0,0,'WORKER4_CA_OVH--01HTCZP45PY7QVHZNHTP44Z026','US','completed','2024-10-11 13:04:01','2024-10-11 13:04:01','2024-04-01 19:05:51','0000-00-00 00:00:00'),(4,'https://atlantagynecomastia.com/contact/columbus-georgia','','83d992505b42bb713cba7df2468e1743','','',NULL,0,0,'WORKER15_CA_OVH--01HTCZP4NSD5X0SC32XQC1JQNP','US','completed','2024-10-11 13:04:03','2024-10-11 13:04:03','2024-04-01 19:05:52','0000-00-00 00:00:00'),(5,'https://atlantagynecomastia.com/contact/sandy-springs-georgia','','19636f0521473fd83fce4b3f1573c129','','',NULL,0,0,'WORKER2_CA_OVH--01HTCZP5DH1787YVQJ2J1Y8XMG','US','completed','2024-10-11 13:04:05','2024-10-11 13:04:05','2024-04-01 19:05:53','0000-00-00 00:00:00'),(6,'https://atlantagynecomastia.com/contact/roswell-georgia','','3f543aab3e5d7f3c1a1bed2732dd501c','','',NULL,0,0,'WORKER11_CA_OVH--01HTCZP5XTRFXFAQ8J36CJ5BHD','US','completed','2024-10-11 13:04:07','2024-10-11 13:04:07','2024-04-01 19:05:53','0000-00-00 00:00:00'),(7,'https://atlantagynecomastia.com/contact/decatur-georgia','','58af87a9a7499f6d1c4de24ddad09c27','','',NULL,0,0,'WORKER11_CA_OVH--01HTCZP6MZTSDPRMFMCPVPES5X','US','completed','2024-10-11 13:04:57','2024-10-11 13:04:57','2024-04-01 19:05:54','0000-00-00 00:00:00'),(8,'https://atlantagynecomastia.com/contact/alpharetta-georgia','','e428f5760aad0951bf203ffbef666c1d','','',NULL,0,0,'WORKER8_CA_OVH--01HTCZP77016TSHYDF7H7FHCDY','US','completed','2024-10-11 13:04:59','2024-10-11 13:04:59','2024-04-01 19:05:55','0000-00-00 00:00:00'),(9,'https://atlantagynecomastia.com/contact/fulton-county-georgia','','e0ca82df1d19ef40ca872c8493f98af3','','',NULL,0,0,'WORKER15_CA_OVH--01HTCZP7YZTY64K37JT41N1QE0','US','completed','2024-10-11 13:05:02','2024-10-11 13:05:02','2024-04-01 19:05:55','0000-00-00 00:00:00'),(10,'https://atlantagynecomastia.com/contact/buckhead-georgia','','09f787a3ee191dab74b2c18dfff058e4','','',NULL,0,0,'WORKER6_CA_OVH--01HTCZP8Q2EPVTEKSQY9GNBCC0','US','completed','2024-10-11 13:05:04','2024-10-11 13:05:04','2024-04-01 19:05:56','0000-00-00 00:00:00'),(11,'https://atlantagynecomastia.com/contact/athens-georgia','','4a2dd8d63844a6b495746987253630c7','','',NULL,0,0,'WORKER12_CA_OVH--01HTCZP9763V9ZQD9R1NDRJCTN','US','completed','2024-10-11 13:05:06','2024-10-11 13:05:06','2024-04-01 19:05:56','0000-00-00 00:00:00'),(12,'https://atlantagynecomastia.com/contact/marietta-georgia','','09fbb482fc12c51dc81b2e41b5c9c5cf','','',NULL,0,0,'WORKER2_CA_OVH--01HTCZP9QRARGC22069QT28S12','US','completed','2024-10-11 13:05:08','2024-10-11 13:05:08','2024-04-01 19:05:57','0000-00-00 00:00:00'),(14,'https://atlantagynecomastia.com/gynecomastia-reviews','','66ed2610908eda77a712ca9b2efcb372','','',NULL,0,0,'WORKER15_CA_OVH--01HTCZPAT86PH6AVCQKNPSW6A1','US','completed','2024-10-11 13:05:13','2024-10-11 13:05:13','2024-04-01 19:05:58','0000-00-00 00:00:00'),(35,'https://atlantagynecomastia.com/accessibility-policy','','4e1df92075ee42b121379d904923c66b','',' - 2024-04-25 14:40:35 400: Job has no result',NULL,1,0,'WORKER14_CA_OVH--01HWAV62V0JTXG9WNXPXAJX6AT','US','completed','2024-10-11 13:03:58','2024-10-11 13:03:58','2024-04-25 19:40:06','2024-04-25 19:41:35'),(36,'https://atlantagynecomastia.com/gynecomastia-candidates','','4f2587f72f16bd7fd72cc54145483588','','',NULL,0,0,'WORKER25_EU_OVH--01HWAV63D67VEVMRJ5HZQ41AYB','US','completed','2024-10-11 13:05:10','2024-10-11 13:05:10','2024-04-25 19:40:07','0000-00-00 00:00:00'),(37,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions','','49af11dda18ef82ea12c4ba8b2295e75','',' - 2024-04-25 14:40:37 400: Job has no result',NULL,1,0,'WORKER13_CA_OVH--01HWAV63WK5SGSWRN935131YFP','US','completed','2024-10-11 13:05:15','2024-10-11 13:05:15','2024-04-25 19:40:07','2024-04-25 19:41:37'),(38,'https://atlantagynecomastia.com/gynecomastia-grades-stages','','9bebe9e742dbc66eede7887c8fb363be','','',NULL,0,0,'WORKER8_CA_OVH--01HWAV64H25860K1WA8EMWCHWY','US','completed','2024-10-11 13:05:17','2024-10-11 13:05:17','2024-04-25 19:40:08','0000-00-00 00:00:00'),(39,'https://atlantagynecomastia.com/privacy-policy','','4e1df92075ee42b121379d904923c66b','','',NULL,0,0,'WORKER14_CA_OVH--01HWAV651MYXEEMPRQ164TCYQK','US','completed','2024-10-11 13:05:19','2024-10-11 13:05:19','2024-04-25 19:40:09','0000-00-00 00:00:00'),(41,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia','','504fa293a83923640c4cf1d08dc4a409','','',NULL,0,0,'WORKER1_EU_OVH--01HWAV66EH7ZMC8R3E3P26CE44','US','completed','2024-10-11 13:06:00','2024-10-11 13:06:00','2024-04-25 19:40:10','0000-00-00 00:00:00'),(42,'https://atlantagynecomastia.com/before-after-results','','ee3d1f747a7b56a2f70fcded6b7328c1','',' - 2024-04-25 14:41:00 400: Job has no result',NULL,1,0,'WORKER1_EU_OVH--01HWAV7DBB9ZHNWTCPDS88QS08','US','completed','2024-10-11 13:06:02','2024-10-11 13:06:02','2024-04-25 19:40:50','2024-04-25 19:42:00'),(43,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia','','ce745e6e09afd8748840934d69645dd3','',' - 2024-04-25 14:41:01 400: Job has no result',NULL,1,0,'WORKER9_CA_OVH--01HWAV7DWCZ2P0E0JYPV62DC0B','US','completed','2024-10-11 13:06:04','2024-10-11 13:06:04','2024-04-25 19:40:51','2024-04-25 19:42:01'),(44,'https://atlantagynecomastia.com/gynecomastia-surgery','','954bd6854581ad7f671db8bfe0309ee1','',' - 2024-04-25 14:41:02 400: Job has no result',NULL,1,0,'WORKER1_EU_OVH--01HWAV7EPEQN70X0ST6MXH5W3A','US','completed','2024-10-11 13:06:06','2024-10-11 13:06:06','2024-04-25 19:40:51','2024-04-25 19:42:02'),(45,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia','','83a6fa8fa763b342d2e4adc59a95ad65','',' - 2024-04-25 14:41:02 400: Job has no result',NULL,1,0,'WORKER1_EU_OVH--01HWAV7F76Q182Z060F08A5C62','US','completed','2024-10-11 13:06:08','2024-10-11 13:06:08','2024-04-25 19:40:52','2024-04-25 19:42:02'),(46,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision','','489aff313b1f2bd64ed3e2fd5e1cd351','',' - 2024-04-25 14:41:03 400: Job has no result',NULL,1,0,'WORKER7_CA_OVH--01HWAV7FNAW0D3GBK269PPQCSP','US','completed','2024-10-11 13:06:10','2024-10-11 13:06:10','2024-04-25 19:40:52','2024-04-25 19:42:03'),(47,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia','','cb970ebba3cbb2b7e8696bfca1ebfb32','',' - 2024-04-25 14:41:04 400: Job has no result',NULL,1,0,'WORKER4_CA_OVH--01HWAV7G6V4GWHNB02SYWMJG59','US','completed','2024-10-11 13:06:13','2024-10-11 13:06:13','2024-04-25 19:40:53','2024-04-25 19:42:04'),(48,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss','','b715c1e41d0fcb64b7757971db48df11','','',NULL,0,0,'WORKER1_EU_OVH--01HWAV7GRFMNPGBPQVT068HCT7','US','completed','2024-10-11 13:06:15','2024-10-11 13:06:15','2024-04-25 19:40:53','0000-00-00 00:00:00'),(49,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance','','a881f6bde834dbaefb8f881e347af01a','',' - 2024-04-25 14:41:05 400: Job has no result',NULL,1,0,'WORKER10_CA_OVH--01HWAV7H8NZJA3TJTN6E0EJCAP','US','completed','2024-10-11 13:06:17','2024-10-11 13:06:17','2024-04-25 19:40:54','2024-04-25 19:42:05'),(50,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia','','0d41497836543f0039a8056fd09afa19','',' - 2024-04-25 14:41:05 400: Job has no result',NULL,1,0,'WORKER13_CA_OVH--01HWAV7HSA9063BB4DV8DY9CMK','US','completed','2024-10-11 13:06:19','2024-10-11 13:06:19','2024-04-25 19:40:54','2024-04-25 19:42:05'),(51,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia','','d0045d8088d5bc6862dc4d3aa91d1bf8','',' - 2024-04-25 14:41:06 400: Job has no result',NULL,1,0,'WORKER25_EU_OVH--01HWAV7JJQE8M8W9PXJTHD5G1Q','US','completed','2024-10-11 13:06:57','2024-10-11 13:06:57','2024-04-25 19:40:55','2024-04-25 19:42:06'),(52,'https://atlantagynecomastia.com/what-is-gyno','','1f995ad703a0768ba31ad8c55e86bf5f','','',NULL,0,0,'WORKER6_CA_OVH--01HWAV7K3BM60KYDN14YMFYPMC','US','completed','2024-10-11 13:07:00','2024-10-11 13:07:00','2024-04-25 19:40:56','0000-00-00 00:00:00'),(55,'https://atlantagynecomastia.com/author/davidb','','0c074bbf4ecf12066cd6657ccb5fe157','','',NULL,0,0,'WORKER13_CA_OVH--01HWAV7MZ8TRWJKKWCB9HQV0RR','US','completed','2024-10-11 13:07:06','2024-10-11 13:07:06','2024-04-25 19:40:58','0000-00-00 00:00:00'),(56,'https://atlantagynecomastia.com/causes-of-gynecomastia','','09c632b6ad194917f841b3845d858958','','',NULL,0,0,'WORKER5_CA_OVH--01HWAV7NGPA03526QDF4PATJF7','US','completed','2024-10-11 13:07:08','2024-10-11 13:07:08','2024-04-25 19:40:58','0000-00-00 00:00:00'),(57,'https://atlantagynecomastia.com/accessibility-policy','','15f2d08e0a5cbf73611ada5f90160da1','','',NULL,0,1,'SaaS-proxy--LIVE2_CPH3_PROD_1--01HZN6MHXV12GP0SBBFTQJSWQV','EU','completed','2024-10-11 13:04:00','2024-10-11 13:04:00','2024-06-06 02:59:44','0000-00-00 00:00:00'),(58,'https://atlantagynecomastia.com/contact/out-of-town-patients','','c76b2b8387fa5ff777f6040185694bd1','','',NULL,0,1,'SaaS-proxy--WORKER10_CA_OVH--01HZN6MJEJWRVGMEDCZMBHHCTJ','EU','completed','2024-10-11 13:04:02','2024-10-11 13:04:02','2024-06-06 02:59:45','0000-00-00 00:00:00'),(59,'https://atlantagynecomastia.com/contact/columbus-georgia','','ce6ed294ee0bdd59025385b756c77a2a','','',NULL,0,1,'SaaS-proxy--WORKER23_EU_OVH--01HZN6MK0A2R1M35K9FS7EE969','EU','completed','2024-10-11 13:04:04','2024-10-11 13:04:04','2024-06-06 02:59:46','0000-00-00 00:00:00'),(60,'https://atlantagynecomastia.com/contact/sandy-springs-georgia','','262adeeb282933f9553e73d53d843691','','',NULL,0,1,'SaaS-proxy--WORKER12_EU_OVH--01HZN6MKJJ6GHKY08H6X1QW8CK','EU','completed','2024-10-11 13:04:06','2024-10-11 13:04:06','2024-06-06 02:59:46','0000-00-00 00:00:00'),(61,'https://atlantagynecomastia.com/contact/roswell-georgia','','48762955c14db9833db6b851ba272149','','',NULL,0,1,'SaaS-proxy--WORKER24_EU_OVH--01HZN6MM28C9KR4XNPA1A8QYAV','EU','completed','2024-10-11 13:04:08','2024-10-11 13:04:08','2024-06-06 02:59:47','0000-00-00 00:00:00'),(62,'https://atlantagynecomastia.com/contact/decatur-georgia','','f099857d9e7b6d2a21dcfc5c43dac91a','','',NULL,0,1,'SaaS-proxy--WORKER15_EU_OVH--01HZN6MMJF2H4C9AJFBD5P4R4E','EU','completed','2024-10-11 13:04:58','2024-10-11 13:04:58','2024-06-06 02:59:47','0000-00-00 00:00:00'),(63,'https://atlantagynecomastia.com/contact/alpharetta-georgia','','6fa069330024230316ddb72bd55089d7','','',NULL,0,1,'SaaS-proxy--WORKER24_EU_OVH--01HZN6MN7XWT9PJ7GEEBQCCFW9','EU','completed','2024-10-11 13:05:00','2024-10-11 13:05:00','2024-06-06 02:59:48','0000-00-00 00:00:00'),(64,'https://atlantagynecomastia.com/contact/fulton-county-georgia','','dc81f1c5f28ec49c7c52abbdb0a65ca1','','',NULL,0,1,'SaaS-proxy--WORKER24_EU_OVH--01HZN6MNTZR195QBXPNJG1VAJZ','EU','completed','2024-10-11 13:05:03','2024-10-11 13:05:03','2024-06-06 02:59:48','0000-00-00 00:00:00'),(65,'https://atlantagynecomastia.com/contact/buckhead-georgia','','512d1b086d16182006b53cca988b0697','','',NULL,0,1,'SaaS-proxy--WORKER21_EU_OVH--01HZN6MP8XAW00K2ERCZVFERM4','EU','completed','2024-10-11 13:05:05','2024-10-11 13:05:05','2024-06-06 02:59:49','0000-00-00 00:00:00'),(66,'https://atlantagynecomastia.com/contact/athens-georgia','','b8af671e0ea7268b17037afed3adbcb4','','',NULL,0,1,'SaaS-proxy--LIVE2_CPH3_PROD_3--01HZN6MPRYDG4QKEDSDKSHPF3X','EU','completed','2024-10-11 13:05:07','2024-10-11 13:05:07','2024-06-06 02:59:50','0000-00-00 00:00:00'),(67,'https://atlantagynecomastia.com/contact/marietta-georgia','','778c23230e79428248c8e50d7c6b2a56','',' - 2024-06-25 22:33:03 400: Job has no result',NULL,1,1,'WORKER9_EU_OVH--01J18RE26JEF0C0ABSARKAW82J','EU','completed','2024-10-11 13:05:09','2024-10-11 13:05:09','2024-06-26 03:32:02','2024-06-26 03:34:03'),(68,'https://atlantagynecomastia.com/gynecomastia-candidates','','64165f11e5575f7d4c78d45ce3c13285','','',NULL,0,1,'SaaS-proxy--WORKER15_EU_OVH--01HZN6NNV2VCX2HW4PJWFJVSNG','EU','completed','2024-10-11 13:05:11','2024-10-11 13:05:11','2024-06-06 03:00:21','0000-00-00 00:00:00'),(69,'https://atlantagynecomastia.com/gynecomastia-reviews','','711d6ad8484cdd130620c1431668ff26','','',NULL,0,1,'SaaS-proxy--WORKER7_CA_OVH--01HZN6NP9PH3GS93FGPKDQYYGN','EU','completed','2024-10-11 13:05:14','2024-10-11 13:05:14','2024-06-06 03:00:22','0000-00-00 00:00:00'),(70,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions','','41468a266c555b02b5fcd324d5ef127b','','',NULL,0,1,'SaaS-proxy--WORKER16_EU_OVH--01HZN6NQ0T57THJN8P6180TTWT','EU','completed','2024-10-11 13:05:16','2024-10-11 13:05:16','2024-06-06 03:00:22','0000-00-00 00:00:00'),(71,'https://atlantagynecomastia.com/gynecomastia-grades-stages','','3c2ac72540b9552d966904bf125eb64b','','',NULL,0,1,'SaaS-proxy--WORKER10_CA_OVH--01HZN6NQK53FVG30S51Y86EYAR','EU','completed','2024-10-11 13:05:18','2024-10-11 13:05:18','2024-06-06 03:00:23','0000-00-00 00:00:00'),(72,'https://atlantagynecomastia.com/privacy-policy','','15f2d08e0a5cbf73611ada5f90160da1','','',NULL,0,1,'SaaS-proxy--WORKER14_CA_OVH--01HZN6NR5EH3GKV4704G8E04HQ','EU','completed','2024-10-11 13:05:20','2024-10-11 13:05:20','2024-06-06 03:00:24','0000-00-00 00:00:00'),(74,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia','','ae645cad89e00113ab9233641a843a92','','',NULL,0,1,'SaaS-proxy--WORKER2_EU_OVH--01HZN6NWDBM4TCZ1884YKZE1F3','EU','completed','2024-10-11 13:06:01','2024-10-11 13:06:01','2024-06-06 03:00:28','0000-00-00 00:00:00'),(75,'https://atlantagynecomastia.com/before-after-results','','137dbb9cab84b3151532c16545b19f55','','',NULL,0,1,'SaaS-proxy--WORKER15_EU_OVH--01HZN6NWY3Q6MC1ZW1D7YF6X4S','EU','completed','2024-10-11 13:06:03','2024-10-11 13:06:03','2024-06-06 03:00:29','0000-00-00 00:00:00'),(76,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia','','2287b3a751376e775d9c696b6883ccca','','',NULL,0,1,'SaaS-proxy--LIVE2_CPH3_PROD_3--01HZN6QF7J9JR3J0WF1J2HSSQF','EU','completed','2024-10-11 13:06:05','2024-10-11 13:06:05','2024-06-06 03:01:20','0000-00-00 00:00:00'),(78,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia','','9471be3e3b25db93ccfc3aad63d771a2','','',NULL,0,1,'SaaS-proxy--WORKER15_EU_OVH--01HZN6QMJ7S99JRQSGSN9P7QF5','EU','completed','2024-10-11 13:06:09','2024-10-11 13:06:09','2024-06-06 03:01:25','0000-00-00 00:00:00'),(79,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision','','5172eabbbbdea4d9e7d5ed0af235638e','','',NULL,0,1,'SaaS-proxy--WORKER24_EU_OVH--01HZN6QN3340QNBXJN6KZ1APCJ','EU','completed','2024-10-11 13:06:12','2024-10-11 13:06:12','2024-06-06 03:01:26','0000-00-00 00:00:00'),(80,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia','','e72a2f1907061010f4c77cec2248432d','','',NULL,0,1,'SaaS-proxy--WORKER20_EU_OVH--01HZN6QNJHYFYS3VZ3QD63497Z','EU','completed','2024-10-11 13:06:14','2024-10-11 13:06:14','2024-06-06 03:01:26','0000-00-00 00:00:00'),(81,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss','','a3c909d658cf0719161dfcfbe0011099','','',NULL,0,1,'SaaS-proxy--WORKER6_EU_OVH--01HZN6QP2STPGRYKY2JG8R6AZ9','EU','completed','2024-10-11 13:06:16','2024-10-11 13:06:16','2024-06-06 03:01:27','0000-00-00 00:00:00'),(82,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance','','f41f965a0a7a15eb0898d9a065418e3f','','',NULL,0,1,'SaaS-proxy--WORKER5_CA_OVH--01HZN6QPJ2SNGJE5DV0M6YHS03','EU','completed','2024-10-11 13:06:18','2024-10-11 13:06:18','2024-06-06 03:01:28','0000-00-00 00:00:00'),(83,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia','','ed65e576af18e33808094638af503a2d','','',NULL,0,1,'SaaS-proxy--WORKER3_EU_OVH--01HZN6QQ2VHC5E7FWNK812JBF2','EU','completed','2024-10-11 13:06:20','2024-10-11 13:06:20','2024-06-06 03:01:28','0000-00-00 00:00:00'),(84,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia','','8820759a0b9b3577b04d1e97b5d13636','','',NULL,0,1,'SaaS-proxy--WORKER17_EU_OVH--01HZN6QQHN311MFZESMM0S91W6','EU','completed','2024-10-11 13:06:59','2024-10-11 13:06:59','2024-06-06 03:01:28','0000-00-00 00:00:00'),(85,'https://atlantagynecomastia.com/what-is-gyno','','914fdc4dd95df01a44bc0c6936ebe743','','',NULL,0,1,'SaaS-proxy--WORKER2_EU_OVH--01HZN6QR26CDE6M7CC8RGEZSVW','EU','completed','2024-10-11 13:07:01','2024-10-11 13:07:01','2024-06-06 03:01:29','0000-00-00 00:00:00'),(88,'https://atlantagynecomastia.com/author/davidb','','2cd28813f567036253a8e01de57e7e88','','',NULL,0,1,'SaaS-proxy--WORKER20_EU_OVH--01HZN6S6P53RBE1QQ6VWBJBESW','EU','completed','2024-10-11 13:07:07','2024-10-11 13:07:07','2024-06-06 03:02:17','0000-00-00 00:00:00'),(89,'https://atlantagynecomastia.com/causes-of-gynecomastia','','cc029e48b76ce149529e1c27f1b81907','','',NULL,0,1,'SaaS-proxy--WORKER6_EU_OVH--01HZN6S77SDDCF7M41AGYNSYJX','EU','completed','2024-10-11 13:07:09','2024-10-11 13:07:09','2024-06-06 03:02:17','0000-00-00 00:00:00'),(91,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors','','898592e851b5ecbb9e083a6ea4ee3f1d','',' - 2024-06-05 22:09:25 400: Job has no result',NULL,1,0,'SaaS-proxy--WORKER7_CA_OVH--01HZN74RTH6V5MNG156W8QSTWX','EU','completed','2024-10-11 13:07:04','2024-10-11 13:07:04','2024-06-06 03:08:36','2024-06-06 03:10:25'),(92,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors','','293b30f4b955deaab3a9d9515dd781b6','','',NULL,0,1,'SaaS-proxy--WORKER22_EU_OVH--01HZN74SC5XSTQZDQSYG4R2C7G','EU','completed','2024-10-11 13:07:05','2024-10-11 13:07:05','2024-06-06 03:08:36','0000-00-00 00:00:00'),(93,'https://atlantagynecomastia.com/gynecomastia-surgery','','6caeb5eec3ae229a8981539646af7464','','',NULL,0,1,'WORKER23_EU_OVH--01J2GD83APTRG9D6TPS33190RB','EU','completed','2024-10-11 13:06:07','2024-10-11 13:06:07','2024-07-11 13:06:10','0000-00-00 00:00:00'),(94,'https://atlantagynecomastia.com/gynecomastia-types','','ee758b3c0f8ee15bd0257c974cfe8a58','','',NULL,0,0,'WORKER9_EU_OVH--01J2J0JP0V3W9CGHMW8ENPHJH2','EU','completed','2024-10-11 13:05:58','2024-10-11 13:05:58','2024-07-12 04:03:14','0000-00-00 00:00:00'),(95,'https://atlantagynecomastia.com/gynecomastia-types','','bb56e1189d8daabac54809a6250241f8','','',NULL,0,1,'WORKER18_EU_OVH--01J2J0JPG5YHWBWAXAVM7TH45S','EU','completed','2024-10-11 13:05:59','2024-10-11 13:05:59','2024-07-12 04:03:14','0000-00-00 00:00:00'),(96,'https://atlantagynecomastia.com/contact','','794c9164622a11af91b432091f642a80','','',NULL,0,0,'K8SPOD1_CPH3_PROD_6--01J9W4J6C50W0776SKCZVSR981','EU','completed','2024-10-11 13:07:02','2024-10-11 13:07:02','2024-10-11 02:15:09','0000-00-00 00:00:00'),(97,'https://atlantagynecomastia.com/contact','','0d4f9707a11c540c2d1f31bb801d5dce','','',NULL,0,1,'K8SPOD2_CPH3_PROD_5--01J9W4J6V9F6PPZBG89HW3CRZ8','EU','completed','2024-10-11 13:07:03','2024-10-11 13:07:03','2024-10-11 02:15:10','0000-00-00 00:00:00'),(98,'https://atlantagynecomastia.com/author/aspiegel','','0d68951edbdaeeedf58ea8d33ea99717','','',NULL,0,0,'K8SPOD2_CPH3_PROD_5--01J9W4J7ADPT995P68H4AE092Z','EU','completed','2024-10-11 13:07:10','2024-10-11 13:07:10','2024-10-11 02:15:10','0000-00-00 00:00:00'),(99,'https://atlantagynecomastia.com/author/aspiegel','','8e834fd2ba58405bdaa803e16a07d90b','','',NULL,0,1,'WORKER15_EU_OVH--01J9W4J7QKWFZS80G3G5FF6TPR','EU','completed','2024-10-11 13:07:11','2024-10-11 13:07:11','2024-10-11 02:15:11','0000-00-00 00:00:00'),(100,'https://atlantagynecomastia.com','','01d7405b1f0cbca86c68ec48f4342c0d','','',NULL,0,0,'WORKER14_CA_OVH--01J9W4J87KFPZKN7X3RQEE9X6J','EU','completed','2024-10-11 13:07:12','2024-10-11 13:07:12','2024-10-11 02:15:11','0000-00-00 00:00:00'),(101,'https://atlantagynecomastia.com','','32629f48d5be69ee0554016aeb9f6ca5','','',NULL,0,1,'WORKER24_EU_OVH--01J9W4J8TC80XPJP051NW8PHG5','EU','completed','2024-10-11 13:04:03','2024-10-11 13:04:03','2024-10-11 02:15:12','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `hyu_wpr_rucss_used_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_yoast_indexable`
--

DROP TABLE IF EXISTS `hyu_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hyu_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext DEFAULT NULL,
  `permalink_hash` varchar(40) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) NOT NULL,
  `object_sub_type` varchar(32) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `breadcrumb_title` text DEFAULT NULL,
  `post_status` varchar(20) 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(11) unsigned DEFAULT NULL,
  `canonical` longtext DEFAULT NULL,
  `primary_focus_keyword` varchar(191) DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) 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 DEFAULT NULL,
  `twitter_image` longtext DEFAULT NULL,
  `twitter_description` longtext DEFAULT NULL,
  `twitter_image_id` varchar(191) DEFAULT NULL,
  `twitter_image_source` text DEFAULT NULL,
  `open_graph_title` text DEFAULT NULL,
  `open_graph_description` longtext DEFAULT NULL,
  `open_graph_image` longtext DEFAULT NULL,
  `open_graph_image_id` varchar(191) DEFAULT NULL,
  `open_graph_image_source` text DEFAULT NULL,
  `open_graph_image_meta` mediumtext DEFAULT NULL,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  `schema_page_type` varchar(64) DEFAULT NULL,
  `schema_article_type` varchar(64) DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT 0,
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT 1,
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hyu_yoast_indexable`
--

LOCK TABLES `hyu_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `hyu_yoast_indexable` DISABLE KEYS */;
INSERT INTO `hyu_yoast_indexable` VALUES (1,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,'2024-01-27 22:50:40','2024-02-13 06:57:33',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(2,'https://atlantagynecomastia.com/','32:f649013e8d5d7d669d499291f08aafbc',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Gynecomastia Plastic Surgeon in Atlanta, Georgia','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,46,NULL,'2024-01-27 22:50:40','2024-10-11 02:09:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-10 21:09:57',NULL,NULL),(3,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/','61:6a0e2353e88106a1508c5a883b74dbe4',1275,'post','page',5,0,'Meet the Doctors at the Atlanta Gynecomastia Center','Learn more about our board-certified plastic surgeons at the Atlanta Gynecomastia Center, and how they can help you achieve your results.','Meet the Doctors','publish',NULL,0,NULL,NULL,NULL,'gynecomastia doctors',65,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Doctors-Atlanta.jpg',NULL,'4327','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Doctors-Atlanta.jpg','4327','featured-image','{\"width\":1280,\"height\":853,\"filesize\":37643,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Doctors-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Gynecomastia-Doctors-Atlanta.jpg\",\"size\":\"full\",\"id\":4327,\"alt\":\"Gynecomastia Doctors Atlanta\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',1,14,NULL,'2024-01-27 22:51:02','2024-06-06 03:08:00',1,NULL,NULL,'ProfilePage',NULL,0,2,2,'2024-06-05 22:08:00','2024-03-26 10:08:00',0),(7,'https://atlantagynecomastia.com/','32:f649013e8d5d7d669d499291f08aafbc',1329,'post','page',5,0,'Atlanta Gynecomastia Center | Male Breast Reduction Surgery','Visit the Atlanta Gynecomastia Center for your free consultation with one of the best gynecomastia plastic surgeons in Georgia. Our top rated male breast reduction specialists will help with your gyno surgery needs.','Home','publish',NULL,0,NULL,NULL,NULL,'Atlanta Gynecomastia Center',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Homepage.jpg',NULL,'4340','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Homepage.jpg','4340','featured-image','{\"width\":1223,\"height\":700,\"filesize\":17449,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Homepage.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Homepage.jpg\",\"size\":\"full\",\"id\":4340,\"alt\":\"Atlanta Gynecomastia Homepage\",\"pixels\":856100,\"type\":\"image/jpeg\"}',25,NULL,NULL,'2024-01-27 22:51:02','2024-10-11 02:09:57',1,NULL,NULL,NULL,NULL,0,11,2,'2024-10-10 21:09:57','2024-03-25 10:45:25',0),(13,'https://atlantagynecomastia.com/gynecomastia-types/','51:0602cf78f0efa20b110f2d645ceb49dd',1482,'post','page',5,0,'Types of Gynecomastia (Atlanta Gynecomastia Center)','Learn more about the different types of gynecomastia including adolescent, adult, bodybuilder, and even gyno revision surgery.','Types of Gynecomastia','publish',NULL,0,NULL,NULL,NULL,'types of gynecomastia',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Types-of-Gynecomastia-Atlanta.jpg',NULL,'4318','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Types-of-Gynecomastia-Atlanta.jpg','4318','featured-image','{\"width\":1280,\"height\":1176,\"filesize\":75929,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Types-of-Gynecomastia-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Types-of-Gynecomastia-Atlanta.jpg\",\"size\":\"full\",\"id\":4318,\"alt\":\"Types of Gynecomastia Atlanta\",\"pixels\":1505280,\"type\":\"image/jpeg\"}',20,14,NULL,'2024-01-27 22:52:30','2024-07-12 03:56:23',1,NULL,NULL,'MedicalWebPage',NULL,0,4,2,'2024-07-11 22:56:22','2024-03-26 22:56:16',0),(14,'https://atlantagynecomastia.com/contact/','40:4f7e2af2ea76bf4c73a4a6c6ba101b54',1484,'post','page',3,0,'Contact the Atlanta Gynecomastia Center & Book an Appointment','Contact the Atlanta Gynecomastia Center today to book your appointment and get scheduled with a doctor consultation.','Contact the Atlanta Gynecomastia Center','publish',NULL,0,NULL,NULL,NULL,'contact',50,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',23,37,NULL,'2024-01-27 22:54:49','2024-10-11 02:09:38',1,NULL,NULL,'ContactPage',NULL,0,1,2,'2024-10-10 21:09:38','2024-03-25 22:56:04',0),(15,'https://atlantagynecomastia.com/category/uncategorized/','55:f407f18707113308b78881469d488bde',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,'2024-01-27 22:56:02','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(16,'https://atlantagynecomastia.com/?p=1407','39:54d377ee87f08c7c07eba18c0627763b',1407,'post','post',5,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2021/01/pexels-mentatdgt-1138903.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2021/01/pexels-mentatdgt-1138903.jpg',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2024-01-27 22:58:25','2024-04-25 14:37:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-27 18:19:48','0000-00-00 00:00:00',0),(24,'https://atlantagynecomastia.com/category/law/','45:aed78f9f33fc24b329a9731d64565cf4',2,'term','category',NULL,NULL,NULL,NULL,'Law',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-28 00:48:46','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(25,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,'2024-01-28 00:48:46','2024-02-13 06:57:33',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(26,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,'2024-01-28 00:48:46','2024-02-13 06:57:33',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(28,'https://atlantagynecomastia.com/what-is-gyno/','45:546ecd957009ec5de9382be41fd63ecf',1511,'post','page',5,0,'What is Gynecomastia Overview (Atlanta Gynecomastia Center)','Learn more about what exactly is gynecomastia, its causes, various grades, and more at the Atlanta Gynecomastia Center.','What is Gynecomastia?','publish',NULL,0,NULL,NULL,NULL,'gynecomastia',70,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta.png',NULL,'4305','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta.png','4305','featured-image','{\"width\":1223,\"height\":700,\"filesize\":93676,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta.png\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta.png\",\"size\":\"full\",\"id\":4305,\"alt\":\"What is Gynecomastia Atlanta\",\"pixels\":856100,\"type\":\"image/png\"}',12,16,NULL,'2024-01-28 19:12:45','2024-10-11 17:04:24',1,NULL,NULL,'MedicalWebPage',NULL,0,5,2,'2024-03-31 00:57:33','2024-03-24 19:28:42',0),(29,'https://atlantagynecomastia.com/causes-of-gynecomastia/','76:5603955724741d381fd7231d22631c5e',1525,'post','page',5,0,'Main Causes of Gynecomastia (Atlanta Gynecomastia Center)','Learn more about the main causes of gynecomastia and why you may be experiencing gyno yourself. Come in for a consultation today.','Causes of Gynecomastia','publish',NULL,0,NULL,NULL,NULL,'gynecomastia causes',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Causes.jpg',NULL,'4329','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Causes.jpg','4329','featured-image','{\"width\":1280,\"height\":960,\"filesize\":69915,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Causes.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Gynecomastia-Causes.jpg\",\"size\":\"full\",\"id\":4329,\"alt\":\"Gynecomastia Causes\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',9,11,NULL,'2024-01-28 19:52:43','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,0,6,2,'2024-03-30 23:00:58','2024-03-25 20:27:35',0),(30,'https://atlantagynecomastia.com/gynecomastia-grades-stages/','59:e589d765b08bf2d0cb0485b8b3a717e3',1551,'post','page',5,0,'Gynecomastia Grades & Stages (Atlanta Gynecomastia Center)','Learn more about the various gynecomastia grades and stages that the Atlanta Gynecomastia Center can help you with.','Gynecomastia Grades &amp; Stages','publish',NULL,0,NULL,NULL,NULL,'gynecomastia grades',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png',NULL,'4304','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png','4304','featured-image','{\"width\":1223,\"height\":700,\"filesize\":95329,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png\",\"size\":\"full\",\"id\":4304,\"alt\":\"Stages and Grades of Gynecomastia Atlanta\",\"pixels\":856100,\"type\":\"image/png\"}',7,8,NULL,'2024-01-31 15:17:52','2024-10-11 17:04:24',1,NULL,NULL,'MedicalWebPage',NULL,0,4,2,'2024-03-30 23:52:32','2024-03-26 15:34:36',0),(32,'https://atlantagynecomastia.com/before-after-results/','74:8f8880a8dc0b67a5fde4dfe4d232be91',1563,'post','page',5,0,'Atlanta Gynecomastia Surgery: Before & After Results','Check out these gynecomastia before and after photos of grade 1 to grade 4 gyno surgery to better understand potential surgery results.','Atlanta Gynecomastia Surgery: Before &#038; After Results','publish',NULL,0,NULL,NULL,NULL,'Before and After Gynecomastia',58,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Before-and-After-Results-Gynecomastia-Atlanta.jpg',NULL,'4332','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Before-and-After-Results-Gynecomastia-Atlanta.jpg','4332','featured-image','{\"width\":1280,\"height\":854,\"filesize\":41792,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Before-and-After-Results-Gynecomastia-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Before-and-After-Results-Gynecomastia-Atlanta.jpg\",\"size\":\"full\",\"id\":4332,\"alt\":\"Before and After Results Gynecomastia Atlanta\",\"pixels\":1093120,\"type\":\"image/jpeg\"}',5,12,NULL,'2024-01-31 15:39:41','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,0,2,2,'2024-03-31 00:20:10','2024-03-25 17:00:28',0),(34,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/','84:e32d2cf094df71608a6fd3e31d3395bb',1668,'post','page',5,0,'Atlanta Gynecomastia Surgery Cost and Insurance Overview','Learn more about how much gynecomastia surgery costs in Atlanta and the available insurance options at the Atlanta Gynecomastia Center.','Atlanta Gynecomastia Cost &#038; Insurance','publish',NULL,0,NULL,NULL,NULL,'gynecomastia cost',69,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Cost-Atlanta.jpg',NULL,'4328','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Cost-Atlanta.jpg','4328','featured-image','{\"width\":1280,\"height\":723,\"filesize\":31550,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Cost-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Gynecomastia-Cost-Atlanta.jpg\",\"size\":\"full\",\"id\":4328,\"alt\":\"Gynecomastia Cost Atlanta\",\"pixels\":925440,\"type\":\"image/jpeg\"}',10,6,NULL,'2024-01-31 17:03:10','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,0,7,2,'2024-03-31 00:42:42','2024-03-26 17:04:34',0),(35,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/','94:505c2cddaee6946e856aa9bae6e8b445',1901,'post','page',5,1482,'Gynecomastia Revision Surgery (Atlanta Gyno Plastic Surgeons)','Learn more about why you may need Gynecomastia revision surgery and how the Atlanta Gynecomastia Center can help.','Gynecomastia Revision Surgery in Atlanta','publish',NULL,0,NULL,NULL,NULL,'gynecomastia revision',83,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg',NULL,'4325','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg','4325','featured-image','{\"width\":1280,\"height\":853,\"filesize\":56374,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg\",\"size\":\"full\",\"id\":4325,\"alt\":\"Gynecomastia Revision Surgery\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',17,15,NULL,'2024-02-09 03:09:59','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,1,10,2,'2024-03-31 00:34:38','2024-03-24 03:27:28',0),(36,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/','96:56a4a7dff8f026ebc69fee56d5d1cfdc',1906,'post','page',5,1482,'Adolescent Gynecomastia Surgery at Atlanta Gynecomastia Center','Learn more about how to treat adolescent gynecomastia near Atlanta and when surgery may be the right option to choose for yourself.','Adolescent Gynecomastia Surgery in Atlanta','publish',NULL,0,NULL,NULL,NULL,'adolescent gynecomastia',80,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg',NULL,'4335','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg','4335','featured-image','{\"width\":1280,\"height\":853,\"filesize\":64542,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg\",\"size\":\"full\",\"id\":4335,\"alt\":\"Adolescent Gynecomastia Atlanta\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',19,22,NULL,'2024-02-09 03:30:48','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,1,11,2,'2024-03-31 00:11:12','2024-03-26 03:45:22',0),(37,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/','91:4a111308f138f62b1338b435d0dee13c',1908,'post','page',5,1482,'Adult Gynecomastia Surgery (Atlanta Gyno Plastic Surgeons)','Learn more about how to treat adult gynecomastia in Atlanta and when surgery may be the right option to choose for yourself.','Adult Gynecomastia Surgery in Atlanta','publish',NULL,0,NULL,NULL,NULL,'adult gynecomastia',78,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg',NULL,'4334','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg','4334','featured-image','{\"width\":1280,\"height\":854,\"filesize\":30789,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg\",\"size\":\"full\",\"id\":4334,\"alt\":\"Adult Gynecomastia Atlanta\",\"pixels\":1093120,\"type\":\"image/jpeg\"}',18,18,NULL,'2024-02-09 03:45:31','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,1,12,2,'2024-03-31 00:22:44','2024-03-24 03:50:44',0),(38,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/','97:bfdc5fdf9f9255314b2ffe9b2a15842c',1911,'post','page',5,1482,'Bodybuilder Gynecomastia Surgery (Atlanta Gynecomastia Center)','Learn more about how to treat bodybuilder gynecomastia near Atlanta, Georgia and when surgery may be the right option to choose for yourself.','Bodybuilder Gynecomastia Surgery in Atlanta','publish',NULL,0,NULL,NULL,NULL,'bodybuilder gynecomastia',80,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg',NULL,'4331','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg','4331','featured-image','{\"width\":1280,\"height\":852,\"filesize\":21217,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg\",\"size\":\"full\",\"id\":4331,\"alt\":\"Bodybuilder Gynecomastia Atlanta\",\"pixels\":1090560,\"type\":\"image/jpeg\"}',20,20,NULL,'2024-02-09 19:11:46','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,1,12,2,'2024-03-31 00:29:37','2024-03-24 19:20:59',0),(39,'https://atlantagynecomastia.com/accessibility-policy/','74:5a2412ca4768183ace42e6ba6efa0029',2056,'post','page',5,0,'Accessibility Policy | Atlanta Gynecomastia Center','The accessibility policy for the Atlanta Gynecomastia Center.','Accessibility Policy','publish',NULL,0,NULL,NULL,NULL,'Accessibility Policy',61,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-02-11 00:40:53','2024-04-25 14:37:13',1,NULL,NULL,NULL,NULL,0,2,2,'2024-03-27 21:20:22','2024-03-25 00:45:20',0),(40,'https://atlantagynecomastia.com/gynecomastia-surgery/','74:61772a3f7c71af2bf85c67986e46d01a',1666,'post','page',5,0,'Atlanta Gynecomastia Pre & Post Surgery Timeline','Learn about the pre and post surgery timeline when going about a procedure at the Atlanta Gynecomastia Center.','Atlanta Gynecomastia Pre &#038; Post Surgery Timeline','publish',NULL,0,NULL,NULL,NULL,'gynecomastia surgery',81,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Surgery-Atlanta.jpg',NULL,'4324','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Surgery-Atlanta.jpg','4324','featured-image','{\"width\":1280,\"height\":854,\"filesize\":39854,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Surgery-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Gynecomastia-Surgery-Atlanta.jpg\",\"size\":\"full\",\"id\":4324,\"alt\":\"Gynecomastia Surgery Atlanta\",\"pixels\":1093120,\"type\":\"image/jpeg\"}',15,17,NULL,'2024-02-21 02:39:50','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,0,10,2,'2024-03-31 00:25:02','2024-03-26 17:04:19',0),(41,'https://atlantagynecomastia.com/privacy-policy/','68:00f9b9030917af0431af1c26ce642001',2396,'post','page',5,0,'Privacy Policy | Atlanta Gynecomastia Center','The privacy policy of the Atlanta Gynecomastia Center.','Privacy Policy','publish',NULL,0,NULL,NULL,NULL,'Privacy Policy',69,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-23 21:27:22','2024-04-25 14:37:13',1,NULL,NULL,NULL,NULL,0,6,2,'2024-03-30 23:57:52','2024-03-26 21:27:22',0),(42,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/','91:2e159378ae24e6b0db826e3a68750976',2657,'post','page',5,1482,'Gynecomastia vs. Pseudogynecomastia (Atlanta Gyno Surgeon)','Just because you have enlarged male breasts doesn\'t mean you have gynecomastia. Learn more about pseudogynecomastia treatment near Atlanta.','Gynecomastia vs. Pseudogynecomastia','publish',NULL,0,NULL,NULL,NULL,'Pseudogynecomastia',70,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta.png',NULL,'4303','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta.png','4303','featured-image','{\"width\":1223,\"height\":700,\"filesize\":168569,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta.png\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta.png\",\"size\":\"full\",\"id\":4303,\"alt\":\"Gynecomastia vs. Pseudogynecomastia Atlanta\",\"pixels\":856100,\"type\":\"image/png\"}',18,20,NULL,'2024-03-02 20:33:37','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,1,9,2,'2024-03-31 00:38:29','2024-03-24 20:33:37',0),(43,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/','99:5d60b1cad793aa08ba198331f85aa002',2668,'post','page',5,1482,'Puffy Nipples Syndrome (Causes, Treatment, and Consultation)','Are you looking to learn more about puffy nipples? Check out this overview that talks through causes, treatments, and more.','Puffy Nipples Surgery in Atlanta','publish',NULL,0,NULL,NULL,NULL,'puffy nipples',80,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg',NULL,'4320','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg','4320','featured-image','{\"width\":1280,\"height\":854,\"filesize\":43417,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg\",\"size\":\"full\",\"id\":4320,\"alt\":\"Puffy Nipple Treatment\",\"pixels\":1093120,\"type\":\"image/jpeg\"}',18,17,NULL,'2024-03-02 21:24:23','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,1,7,2,'2024-03-31 00:47:17','2024-03-24 21:24:22',0),(44,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/','93:330b4746866bded9fbbda38c0ea4f14e',2743,'post','page',5,0,'Frequently Asked Questions for Gynecomastia in Atlanta, Georgia','Check out some of the most frequently asked questions when it comes to having gynecomastia surgery and our gyno specialists in Atlanta.','Gynecomastia Frequently Asked Questions','publish',NULL,0,NULL,NULL,NULL,'frequently asked questions',77,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Frequently-Asked-Questions.jpg',NULL,'4326','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Frequently-Asked-Questions.jpg','4326','featured-image','{\"width\":1280,\"height\":1039,\"filesize\":52369,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Frequently-Asked-Questions.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Gynecomastia-Frequently-Asked-Questions.jpg\",\"size\":\"full\",\"id\":4326,\"alt\":\"Gynecomastia Frequently Asked Questions\",\"pixels\":1329920,\"type\":\"image/jpeg\"}',12,8,NULL,'2024-03-04 22:37:35','2024-04-25 14:37:13',1,NULL,NULL,'FAQPage',NULL,0,7,2,'2024-03-30 23:48:48','2024-03-26 22:37:35',0),(45,'https://atlantagynecomastia.com/contact/athens-georgia/','76:0980d530ba785cee3acf5a96e39e5c16',2787,'post','page',3,1484,'Gynecomastia Surgeon Near Athens, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Athens, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery Near Athens, Georgia','publish',NULL,0,NULL,NULL,NULL,'near Athens',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',24,19,NULL,'2024-03-05 18:42:52','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,4,2,'2024-03-29 22:17:39','2024-03-26 18:42:52',0),(46,'https://atlantagynecomastia.com/contact/alpharetta-georgia/','80:41562708a170111d0b471099051206c3',2844,'post','page',3,1484,'Gynecomastia Surgeon Near Alpharetta, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Alpharetta, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery Near Alpharetta, Georgia','publish',NULL,0,NULL,NULL,NULL,'near clearwater',54,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',23,19,NULL,'2024-03-05 22:07:27','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,3,2,'2024-03-29 22:14:26','2024-03-26 22:07:27',0),(47,'https://atlantagynecomastia.com/contact/decatur-georgia/','77:59073c967f9208327a40566e3859c9d9',2854,'post','page',3,1484,'Gynecomastia Surgeon Near Decatur, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Decatur, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery Near Decatur, Georgia','publish',NULL,0,NULL,NULL,NULL,'near decatur',60,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',23,19,NULL,'2024-03-05 22:23:02','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,3,2,'2024-03-29 22:13:56','2024-03-26 22:23:02',0),(48,'https://atlantagynecomastia.com/contact/columbus-georgia/','78:f9ba4a09d77dea247dbe1d76017a163b',2858,'post','page',3,1484,'Gynecomastia Surgeon Near Columbus, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Columbus, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery Near Columbus, Georgia','publish',NULL,0,NULL,NULL,NULL,'near Columbus',69,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',24,19,NULL,'2024-03-05 22:56:53','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,3,2,'2024-03-29 22:11:22','2024-03-26 22:56:53',0),(49,'https://atlantagynecomastia.com/contact/roswell-georgia/','77:22f6242ec7d5fb037fb1a7f4b41d4779',2862,'post','page',3,1484,'Gynecomastia Surgeon Near Roswell, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Roswell, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery Near Roswell, Georgia','publish',NULL,0,NULL,NULL,NULL,'near Roswell',60,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',23,19,NULL,'2024-03-05 23:06:58','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,3,2,'2024-03-29 22:13:29','2024-03-26 23:06:58',0),(50,'https://atlantagynecomastia.com/contact/fulton-county-georgia/','83:4f7ca3e934089cf1c006ef6d567c1305',2868,'post','page',3,1484,'Gynecomastia Surgeon in Fulton County, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Fulton County, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery in Fulton County, Georgia','publish',NULL,0,NULL,NULL,NULL,'near Fulton County',57,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',23,19,NULL,'2024-03-05 23:12:51','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,3,2,'2024-03-29 22:15:03','2024-03-26 23:12:51',0),(51,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/','83:82bb625f6c9a8400b228b3000f4f5486',2872,'post','page',3,1484,'Gynecomastia Surgeon Near Sandy Springs, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Sandy Springs, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery Near Sandy Springs, Georgia','publish',NULL,0,NULL,NULL,NULL,'near Sandy Springs',57,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',24,20,NULL,'2024-03-06 15:57:43','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,3,2,'2024-03-29 22:12:43','2024-03-26 15:57:43',0),(52,'https://atlantagynecomastia.com/contact/marietta-georgia/','78:00d4a3a9215750aa0f22465d83566e49',2881,'post','page',3,1484,'Gynecomastia Surgeon Near Marietta, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Marietta, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery Near Marietta, Georgia','publish',NULL,0,NULL,NULL,NULL,'near Marietta',60,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',23,20,NULL,'2024-03-06 16:05:50','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,3,2,'2024-03-29 22:17:40','2024-03-26 16:05:50',0),(53,'https://atlantagynecomastia.com/gynecomastia-reviews/','74:a003579d1131eb77c24deead3bcf21b5',2886,'post','page',3,0,'Gynecomastia Reviews for Best Rated Atlanta Plastic Surgeon','Check out some gynecomastia reviews for the best rated plastic surgeons at the Atlanta Gynecomastia Center.','Atlanta Gynecomastia Center Surgery Reviews','publish',NULL,0,NULL,NULL,NULL,'reviews',65,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Center-Reviews.jpg',NULL,'4333','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Center-Reviews.jpg','4333','featured-image','{\"width\":1280,\"height\":853,\"filesize\":24772,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Center-Reviews.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Atlanta-Gynecomastia-Center-Reviews.jpg\",\"size\":\"full\",\"id\":4333,\"alt\":\"Atlanta Gynecomastia Center Reviews\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',4,14,NULL,'2024-03-06 16:42:36','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,0,2,2,'2024-03-30 22:23:39','2024-03-26 16:42:36',0),(54,'https://atlantagynecomastia.com/gynecomastia-candidates/','77:e3e6127b9575fd952b7f97ff8b3a132c',3418,'post','page',5,0,'Am I A Candidate for Gynecomastia Surgery (Atlanta Gyno Surgeons)','Are you asking yourself, if you are a candidate for gynecomastia surgery in Atlanta? Schedule your free consultation today to get started.','Are You a Candidate for Gynecomastia Surgery?','publish',NULL,0,NULL,NULL,NULL,'candidate',71,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Surgery-Candidate.jpg',NULL,'4323','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Surgery-Candidate.jpg','4323','featured-image','{\"width\":1280,\"height\":853,\"filesize\":49747,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Surgery-Candidate.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Gynecomastia-Surgery-Candidate.jpg\",\"size\":\"full\",\"id\":4323,\"alt\":\"Gynecomastia Surgery Candidate\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',16,12,NULL,'2024-03-12 22:40:49','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,0,8,2,'2024-03-30 22:21:09','2024-03-25 22:40:49',0),(55,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/','103:313a9ef486b08c1c6bc9d26b4c824a4f',3473,'post','page',5,1482,'Gynecomastia Surgery After Weight Loss at Atlanta Gyno Center','Learn more about how to treat gynecomastia after weight loss in Atlanta and when surgery may be the right option to choose for yourself.','Post Weight Loss Gynecomastia Surgery','publish',NULL,0,NULL,NULL,NULL,'weight loss',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg',NULL,'4321','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg','4321','featured-image','{\"width\":1280,\"height\":854,\"filesize\":74015,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg\",\"size\":\"full\",\"id\":4321,\"alt\":\"Post Weight Loss Gynecomastia\",\"pixels\":1093120,\"type\":\"image/jpeg\"}',22,15,NULL,'2024-03-12 23:35:42','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,1,8,2,'2024-03-31 00:42:36','2024-03-24 23:35:42',0),(56,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/','92:614168ec51a2dd03013e3af1e1a39f5a',3481,'post','page',5,1482,'Senior Gynecomastia Surgery near Atlanta, Georgia','Learn more about how to treat senior gynecomastia in Atlanta and when surgery may be the right option to choose for yourself.','Senior Gynecomastia Surgery in Atlanta','publish',NULL,0,NULL,NULL,NULL,'senior',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg',NULL,'4319','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg','4319','featured-image','{\"width\":1280,\"height\":853,\"filesize\":39408,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg\",\"size\":\"full\",\"id\":4319,\"alt\":\"Senior Gynecomastia Surgery Atlanta\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',20,17,NULL,'2024-03-14 23:53:11','2024-04-25 14:37:13',1,NULL,NULL,'MedicalWebPage',NULL,1,10,2,'2024-03-31 00:53:01','2024-03-24 23:53:10',0),(57,'https://atlantagynecomastia.com/contact/out-of-town-patients/','82:6124c23eab7513b3f061c5e53a200d3f',3490,'post','page',3,1484,'Out of Town Patients at the Atlanta Gynecomastia Center','Check out some lodging and travel information for patients who are traveling from out of town to Atlanta, GA for gynecomastia plastic surgery.','Out of Town Patients','publish',NULL,0,NULL,NULL,NULL,'out-of-town',69,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Out-of-Town-Patients-Atlanta-Gynecomastia-Center.jpg',NULL,'4322','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Out-of-Town-Patients-Atlanta-Gynecomastia-Center.jpg','4322','featured-image','{\"width\":1280,\"height\":874,\"filesize\":18670,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Out-of-Town-Patients-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Out-of-Town-Patients-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4322,\"alt\":\"Out of Town Patients Atlanta Gynecomastia Center\",\"pixels\":1118720,\"type\":\"image/jpeg\"}',26,20,NULL,'2024-03-15 20:17:28','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,6,2,'2024-03-27 21:21:08','2024-03-25 20:17:28',0),(58,'https://atlantagynecomastia.com/contact/buckhead-georgia/','78:dae444555730b8ee67332dcab1f01b7c',4381,'post','page',3,1484,'Gynecomastia Surgeon Near Buckhead, GA (Male Breast Reduction)','If you are looking for a gynecomastia plastic surgeon near Buckhead, Georgia, reach out to the Atlanta Gynecomastia Center.','Gynecomastia Surgery Near Buckhead, Georgia','publish',NULL,0,NULL,NULL,NULL,'near Buckhead',57,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg',NULL,'4330','featured-image',NULL,NULL,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg','4330','featured-image','{\"width\":1280,\"height\":960,\"filesize\":124141,\"url\":\"https://atlantagynecomastia.com/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"path\":\"/home/nginx/domains/atlantagynecomastia.com/public/wp-content/uploads/2024/03/Contact-Atlanta-Gynecomastia-Center.jpg\",\"size\":\"full\",\"id\":4330,\"alt\":\"Contact Atlanta Gynecomastia Center\",\"pixels\":1228800,\"type\":\"image/jpeg\"}',24,19,NULL,'2024-03-29 00:32:40','2024-03-31 01:34:29',1,NULL,NULL,NULL,NULL,1,3,2,'2024-03-29 22:17:38','2024-03-29 00:32:40',0);
/*!40000 ALTER TABLE `hyu_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_yoast_indexable_hierarchy`
--

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

--
-- Dumping data for table `hyu_yoast_indexable_hierarchy`
--

LOCK TABLES `hyu_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `hyu_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `hyu_yoast_indexable_hierarchy` VALUES (2,0,0,1),(3,0,0,1),(7,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(16,0,0,1),(24,0,0,1),(25,0,0,1),(28,0,0,1),(29,0,0,1),(30,0,0,1),(32,0,0,1),(34,0,0,1),(35,13,1,1),(36,13,1,1),(37,13,1,1),(38,13,1,1),(39,0,0,1),(40,0,0,1),(41,0,0,1),(42,13,1,1),(43,13,1,1),(44,0,0,1),(45,14,1,1),(46,14,1,1),(47,14,1,1),(48,14,1,1),(49,14,1,1),(50,14,1,1),(51,14,1,1),(52,14,1,1),(53,0,0,1),(54,0,0,1),(55,13,1,1),(56,13,1,1),(57,14,1,1),(58,14,1,1);
/*!40000 ALTER TABLE `hyu_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_yoast_migrations`
--

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

--
-- Dumping data for table `hyu_yoast_migrations`
--

LOCK TABLES `hyu_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `hyu_yoast_migrations` DISABLE KEYS */;
INSERT INTO `hyu_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'),(24,'20230417083836');
/*!40000 ALTER TABLE `hyu_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hyu_yoast_primary_term`
--

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

--
-- Dumping data for table `hyu_yoast_primary_term`
--

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

--
-- Table structure for table `hyu_yoast_seo_links`
--

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

--
-- Dumping data for table `hyu_yoast_seo_links`
--

LOCK TABLES `hyu_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `hyu_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `hyu_yoast_seo_links` VALUES (62,'https://atlantagynecomastia.com/what-is-gyno/',1329,1511,'internal',7,28,NULL,NULL,NULL,NULL,NULL),(63,'https://atlantagynecomastia.com/causes-of-gynecomastia/',1329,1525,'internal',7,29,NULL,NULL,NULL,NULL,NULL),(65,'https://atlantagynecomastia.com/gynecomastia-grades-stages/',1329,1551,'internal',7,30,NULL,NULL,NULL,NULL,NULL),(103,'https://atlantagynecomastia.com/gynecomastia-grades-stages/',1668,1551,'internal',34,30,NULL,NULL,NULL,NULL,NULL),(108,'https://atlantagynecomastia.com/causes-of-gynecomastia/',1511,1525,'internal',28,29,NULL,NULL,NULL,NULL,NULL),(109,'https://atlantagynecomastia.com/gynecomastia-grades-stages/',1511,1551,'internal',28,30,NULL,NULL,NULL,NULL,NULL),(118,'https://atlantagynecomastia.com/causes-of-gynecomastia/',1908,1525,'internal',37,29,NULL,NULL,NULL,NULL,NULL),(137,'https://atlantagynecomastia.com/what-is-gyno/',1525,1511,'internal',29,28,NULL,NULL,NULL,NULL,NULL),(148,'https://www.plasticsurgery.org/',1275,NULL,'external',3,NULL,NULL,NULL,NULL,NULL,NULL),(149,'https://www.abplasticsurgery.org/',1275,NULL,'external',3,NULL,NULL,NULL,NULL,NULL,NULL),(156,'https://www.abplasticsurgery.org/',1275,NULL,'external',3,NULL,NULL,NULL,NULL,NULL,NULL),(189,'https://atlantagynecomastia.com/',1906,NULL,'internal',36,2,NULL,NULL,NULL,NULL,NULL),(190,'https://atlantagynecomastia.com/',1511,NULL,'internal',28,2,NULL,NULL,NULL,NULL,NULL),(191,'https://atlantagynecomastia.com/',1908,NULL,'internal',37,2,NULL,NULL,NULL,NULL,NULL),(192,'https://atlantagynecomastia.com/',1563,NULL,'internal',32,2,NULL,NULL,NULL,NULL,NULL),(193,'https://atlantagynecomastia.com/',1911,NULL,'internal',38,2,NULL,NULL,NULL,NULL,NULL),(196,'https://atlantagynecomastia.com/',1551,NULL,'internal',30,2,NULL,NULL,NULL,NULL,NULL),(199,'https://atlantagynecomastia.com/',1275,NULL,'internal',3,2,NULL,NULL,NULL,NULL,NULL),(200,'https://atlantagynecomastia.com/',1668,NULL,'internal',34,2,NULL,NULL,NULL,NULL,NULL),(201,'https://atlantagynecomastia.com/',1482,NULL,'internal',13,2,NULL,NULL,NULL,NULL,NULL),(226,'https://www.webmd.com/men/best-exercises-gynecomastia',1906,NULL,'external',36,NULL,NULL,NULL,NULL,NULL,NULL),(228,'https://www.plasticsurgery.org/cosmetic-procedures/liposuction',1906,NULL,'external',36,NULL,NULL,NULL,NULL,NULL,NULL),(229,'https://www.healthline.com/health/low-testosterone/male-breasts-gynecomastia',1908,NULL,'external',37,NULL,NULL,NULL,NULL,NULL,NULL),(231,'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2860825/',1525,NULL,'external',29,NULL,NULL,NULL,NULL,NULL,NULL),(233,'https://atlantagynecomastia.com/gynecomastia-surgery/',1551,1666,'internal',30,NULL,NULL,NULL,NULL,NULL,NULL),(234,'https://www.hopkinsmedicine.org/health/conditions-and-diseases/gynecomastia',1551,NULL,'external',30,NULL,NULL,NULL,NULL,NULL,NULL),(237,'https://my.clevelandclinic.org/health/diseases/15603-low-testosterone-male-hypogonadism',1511,NULL,'external',28,NULL,NULL,NULL,NULL,NULL,NULL),(238,'https://atlantagynecomastia.com/gynecomastia-surgery/',1511,1666,'internal',28,NULL,NULL,NULL,NULL,NULL,NULL),(239,'https://my.clevelandclinic.org/health/treatments/11009-liposuction',1901,NULL,'external',35,NULL,NULL,NULL,NULL,NULL,NULL),(240,'https://atlantagynecomastia.com/gynecomastia-types/',1668,1482,'internal',34,13,NULL,NULL,NULL,NULL,NULL),(246,'https://atlantagynecomastia.com/gynecomastia-grades-stages/',1666,1551,'internal',40,30,NULL,NULL,NULL,NULL,NULL),(247,'https://www.asahq.org/madeforthismoment/anesthesia-101/types-of-anesthesia/',1666,NULL,'external',40,NULL,NULL,NULL,NULL,NULL,NULL),(249,'https://atlantagynecomastia.com/',1666,NULL,'internal',40,2,NULL,NULL,NULL,NULL,NULL),(250,'https://atlantagynecomastia.com/before-after-results/',1906,1563,'internal',36,32,NULL,NULL,NULL,NULL,NULL),(251,'https://atlantagynecomastia.com/before-after-results/',1908,1563,'internal',37,32,NULL,NULL,NULL,NULL,NULL),(253,'https://atlantagynecomastia.com/before-after-results/',1911,1563,'internal',38,32,NULL,NULL,NULL,NULL,NULL),(266,'https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/#sthash.0FdRbT51.dpuf',2396,NULL,'external',41,NULL,NULL,NULL,NULL,NULL,NULL),(274,'https://atlantagynecomastia.com/gynecomastia-surgery/',2657,1666,'internal',42,40,NULL,NULL,NULL,NULL,NULL),(278,'https://atlantagynecomastia.com/what-is-gyno/',2657,1511,'internal',42,28,NULL,NULL,NULL,NULL,NULL),(280,'https://www.ucdenver.edu/docs/librariesprovider65/clinical-services/sports-medicine/training-for-cardiovascular-fitness.pdf',2657,NULL,'external',42,NULL,NULL,NULL,NULL,NULL,NULL),(295,'https://atlantagynecomastia.com/',2668,NULL,'internal',43,2,NULL,NULL,NULL,NULL,NULL),(300,'https://patientfi.com/',1668,NULL,'external',34,NULL,NULL,NULL,NULL,NULL,NULL),(301,'https://www.carecredit.com/',1668,NULL,'external',34,NULL,NULL,NULL,NULL,NULL,NULL),(307,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/',1911,1668,'internal',38,34,NULL,NULL,NULL,NULL,NULL),(310,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/',1901,1668,'internal',35,34,NULL,NULL,NULL,NULL,NULL),(311,'https://atlantagynecomastia.com/gynecomastia-grades-stages/',2668,1551,'internal',43,30,NULL,NULL,NULL,NULL,NULL),(346,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/',2743,1668,'internal',44,34,NULL,NULL,NULL,NULL,NULL),(348,'https://atlantagynecomastia.com/',2743,NULL,'internal',44,2,NULL,NULL,NULL,NULL,NULL),(351,'https://atlantagynecomastia.com/gynecomastia-surgery/',1329,1666,'internal',7,40,NULL,NULL,NULL,NULL,NULL),(352,'https://atlantagynecomastia.com/before-after-results/',1329,1563,'internal',7,32,NULL,NULL,NULL,NULL,NULL),(366,'https://atlantagynecomastia.com/',2787,NULL,'internal',45,2,NULL,NULL,NULL,NULL,NULL),(376,'https://atlantagynecomastia.com/',2787,NULL,'internal',45,2,NULL,NULL,NULL,NULL,NULL),(377,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/',1329,1668,'internal',7,34,NULL,NULL,NULL,NULL,NULL),(379,'https://atlantagynecomastia.com/what-is-gyno/',2787,1511,'internal',45,28,NULL,NULL,NULL,NULL,NULL),(380,'https://atlantagynecomastia.com/gynecomastia-types/',2787,1482,'internal',45,13,NULL,NULL,NULL,NULL,NULL),(388,'https://atlantagynecomastia.com/gynecomastia-surgery/',2787,1666,'internal',45,40,NULL,NULL,NULL,NULL,NULL),(415,'https://atlantagynecomastia.com/',2844,NULL,'internal',46,2,NULL,NULL,NULL,NULL,NULL),(417,'https://atlantagynecomastia.com/',2844,NULL,'internal',46,2,NULL,NULL,NULL,NULL,NULL),(426,'https://atlantagynecomastia.com/what-is-gyno/',2844,1511,'internal',46,28,NULL,NULL,NULL,NULL,NULL),(427,'https://atlantagynecomastia.com/gynecomastia-types/',2844,1482,'internal',46,13,NULL,NULL,NULL,NULL,NULL),(436,'https://atlantagynecomastia.com/gynecomastia-surgery/',2844,1666,'internal',46,40,NULL,NULL,NULL,NULL,NULL),(437,'https://atlantagynecomastia.com/',2844,NULL,'internal',46,2,NULL,NULL,NULL,NULL,NULL),(463,'https://atlantagynecomastia.com/',2854,NULL,'internal',47,2,NULL,NULL,NULL,NULL,NULL),(465,'https://atlantagynecomastia.com/',2854,NULL,'internal',47,2,NULL,NULL,NULL,NULL,NULL),(474,'https://atlantagynecomastia.com/what-is-gyno/',2854,1511,'internal',47,28,NULL,NULL,NULL,NULL,NULL),(475,'https://atlantagynecomastia.com/gynecomastia-types/',2854,1482,'internal',47,13,NULL,NULL,NULL,NULL,NULL),(484,'https://atlantagynecomastia.com/gynecomastia-surgery/',2854,1666,'internal',47,40,NULL,NULL,NULL,NULL,NULL),(485,'https://atlantagynecomastia.com/',2854,NULL,'internal',47,2,NULL,NULL,NULL,NULL,NULL),(510,'https://atlantagynecomastia.com/',2858,NULL,'internal',48,2,NULL,NULL,NULL,NULL,NULL),(512,'https://atlantagynecomastia.com/',2858,NULL,'internal',48,2,NULL,NULL,NULL,NULL,NULL),(521,'https://atlantagynecomastia.com/what-is-gyno/',2858,1511,'internal',48,28,NULL,NULL,NULL,NULL,NULL),(522,'https://atlantagynecomastia.com/gynecomastia-types/',2858,1482,'internal',48,13,NULL,NULL,NULL,NULL,NULL),(531,'https://atlantagynecomastia.com/gynecomastia-surgery/',2858,1666,'internal',48,40,NULL,NULL,NULL,NULL,NULL),(532,'https://atlantagynecomastia.com/',2858,NULL,'internal',48,2,NULL,NULL,NULL,NULL,NULL),(557,'https://atlantagynecomastia.com/',2862,NULL,'internal',49,2,NULL,NULL,NULL,NULL,NULL),(559,'https://atlantagynecomastia.com/',2862,NULL,'internal',49,2,NULL,NULL,NULL,NULL,NULL),(568,'https://atlantagynecomastia.com/what-is-gyno/',2862,1511,'internal',49,28,NULL,NULL,NULL,NULL,NULL),(569,'https://atlantagynecomastia.com/gynecomastia-types/',2862,1482,'internal',49,13,NULL,NULL,NULL,NULL,NULL),(578,'https://atlantagynecomastia.com/gynecomastia-surgery/',2862,1666,'internal',49,40,NULL,NULL,NULL,NULL,NULL),(579,'https://atlantagynecomastia.com/',2862,NULL,'internal',49,2,NULL,NULL,NULL,NULL,NULL),(604,'https://atlantagynecomastia.com/',2868,NULL,'internal',50,2,NULL,NULL,NULL,NULL,NULL),(606,'https://atlantagynecomastia.com/',2868,NULL,'internal',50,2,NULL,NULL,NULL,NULL,NULL),(615,'https://atlantagynecomastia.com/what-is-gyno/',2868,1511,'internal',50,28,NULL,NULL,NULL,NULL,NULL),(616,'https://atlantagynecomastia.com/gynecomastia-types/',2868,1482,'internal',50,13,NULL,NULL,NULL,NULL,NULL),(625,'https://atlantagynecomastia.com/gynecomastia-surgery/',2868,1666,'internal',50,40,NULL,NULL,NULL,NULL,NULL),(626,'https://atlantagynecomastia.com/',2868,NULL,'internal',50,2,NULL,NULL,NULL,NULL,NULL),(651,'https://atlantagynecomastia.com/',2872,NULL,'internal',51,2,NULL,NULL,NULL,NULL,NULL),(653,'https://atlantagynecomastia.com/',2872,NULL,'internal',51,2,NULL,NULL,NULL,NULL,NULL),(673,'https://atlantagynecomastia.com/',2872,NULL,'internal',51,2,NULL,NULL,NULL,NULL,NULL),(698,'https://atlantagynecomastia.com/',2881,NULL,'internal',52,2,NULL,NULL,NULL,NULL,NULL),(700,'https://atlantagynecomastia.com/',2881,NULL,'internal',52,2,NULL,NULL,NULL,NULL,NULL),(709,'https://atlantagynecomastia.com/what-is-gyno/',2881,1511,'internal',52,28,NULL,NULL,NULL,NULL,NULL),(710,'https://atlantagynecomastia.com/gynecomastia-types/',2881,1482,'internal',52,13,NULL,NULL,NULL,NULL,NULL),(719,'https://atlantagynecomastia.com/gynecomastia-surgery/',2881,1666,'internal',52,40,NULL,NULL,NULL,NULL,NULL),(720,'https://atlantagynecomastia.com/',2881,NULL,'internal',52,2,NULL,NULL,NULL,NULL,NULL),(798,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',1329,1908,'internal',7,37,NULL,NULL,NULL,NULL,NULL),(799,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',1482,1908,'internal',13,37,NULL,NULL,NULL,NULL,NULL),(800,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',1511,1908,'internal',28,37,NULL,NULL,NULL,NULL,NULL),(801,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',1666,1908,'internal',40,37,NULL,NULL,NULL,NULL,NULL),(802,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',1906,1908,'internal',36,37,NULL,NULL,NULL,NULL,NULL),(803,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',1911,1908,'internal',38,37,NULL,NULL,NULL,NULL,NULL),(804,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2668,1908,'internal',43,37,NULL,NULL,NULL,NULL,NULL),(805,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2787,1908,'internal',45,37,NULL,NULL,NULL,NULL,NULL),(806,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2844,1908,'internal',46,37,NULL,NULL,NULL,NULL,NULL),(807,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2854,1908,'internal',47,37,NULL,NULL,NULL,NULL,NULL),(808,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2858,1908,'internal',48,37,NULL,NULL,NULL,NULL,NULL),(809,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2862,1908,'internal',49,37,NULL,NULL,NULL,NULL,NULL),(810,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2868,1908,'internal',50,37,NULL,NULL,NULL,NULL,NULL),(812,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2881,1908,'internal',52,37,NULL,NULL,NULL,NULL,NULL),(813,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',1329,1906,'internal',7,36,NULL,NULL,NULL,NULL,NULL),(814,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',1482,1906,'internal',13,36,NULL,NULL,NULL,NULL,NULL),(815,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',1511,1906,'internal',28,36,NULL,NULL,NULL,NULL,NULL),(816,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',1511,1906,'internal',28,36,NULL,NULL,NULL,NULL,NULL),(817,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',1525,1906,'internal',29,36,NULL,NULL,NULL,NULL,NULL),(818,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',1666,1906,'internal',40,36,NULL,NULL,NULL,NULL,NULL),(819,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',1911,1906,'internal',38,36,NULL,NULL,NULL,NULL,NULL),(820,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2657,1906,'internal',42,36,NULL,NULL,NULL,NULL,NULL),(822,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2743,1906,'internal',44,36,NULL,NULL,NULL,NULL,NULL),(823,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2787,1906,'internal',45,36,NULL,NULL,NULL,NULL,NULL),(824,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2844,1906,'internal',46,36,NULL,NULL,NULL,NULL,NULL),(825,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2854,1906,'internal',47,36,NULL,NULL,NULL,NULL,NULL),(826,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2858,1906,'internal',48,36,NULL,NULL,NULL,NULL,NULL),(827,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2862,1906,'internal',49,36,NULL,NULL,NULL,NULL,NULL),(828,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2868,1906,'internal',50,36,NULL,NULL,NULL,NULL,NULL),(830,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2881,1906,'internal',52,36,NULL,NULL,NULL,NULL,NULL),(831,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',1329,1911,'internal',7,38,NULL,NULL,NULL,NULL,NULL),(832,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',1482,1911,'internal',13,38,NULL,NULL,NULL,NULL,NULL),(833,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',1511,1911,'internal',28,38,NULL,NULL,NULL,NULL,NULL),(834,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',1511,1911,'internal',28,38,NULL,NULL,NULL,NULL,NULL),(835,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',1525,1911,'internal',29,38,NULL,NULL,NULL,NULL,NULL),(836,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',1666,1911,'internal',40,38,NULL,NULL,NULL,NULL,NULL),(837,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2657,1911,'internal',42,38,NULL,NULL,NULL,NULL,NULL),(839,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2787,1911,'internal',45,38,NULL,NULL,NULL,NULL,NULL),(840,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2844,1911,'internal',46,38,NULL,NULL,NULL,NULL,NULL),(841,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2854,1911,'internal',47,38,NULL,NULL,NULL,NULL,NULL),(842,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2858,1911,'internal',48,38,NULL,NULL,NULL,NULL,NULL),(843,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2862,1911,'internal',49,38,NULL,NULL,NULL,NULL,NULL),(844,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2868,1911,'internal',50,38,NULL,NULL,NULL,NULL,NULL),(846,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2881,1911,'internal',52,38,NULL,NULL,NULL,NULL,NULL),(847,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',1329,1901,'internal',7,35,NULL,NULL,NULL,NULL,NULL),(848,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',1482,1901,'internal',13,35,NULL,NULL,NULL,NULL,NULL),(849,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',1666,1901,'internal',40,35,NULL,NULL,NULL,NULL,NULL),(850,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',1668,1901,'internal',34,35,NULL,NULL,NULL,NULL,NULL),(851,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',2787,1901,'internal',45,35,NULL,NULL,NULL,NULL,NULL),(852,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',2844,1901,'internal',46,35,NULL,NULL,NULL,NULL,NULL),(853,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',2854,1901,'internal',47,35,NULL,NULL,NULL,NULL,NULL),(854,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',2858,1901,'internal',48,35,NULL,NULL,NULL,NULL,NULL),(855,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',2862,1901,'internal',49,35,NULL,NULL,NULL,NULL,NULL),(856,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',2868,1901,'internal',50,35,NULL,NULL,NULL,NULL,NULL),(858,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',2881,1901,'internal',52,35,NULL,NULL,NULL,NULL,NULL),(859,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1329,2657,'internal',7,42,NULL,NULL,NULL,NULL,NULL),(860,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1482,2657,'internal',13,42,NULL,NULL,NULL,NULL,NULL),(861,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1511,2657,'internal',28,42,NULL,NULL,NULL,NULL,NULL),(862,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1525,2657,'internal',29,42,NULL,NULL,NULL,NULL,NULL),(863,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1551,2657,'internal',30,42,NULL,NULL,NULL,NULL,NULL),(864,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1666,2657,'internal',40,42,NULL,NULL,NULL,NULL,NULL),(865,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1906,2657,'internal',36,42,NULL,NULL,NULL,NULL,NULL),(866,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1908,2657,'internal',37,42,NULL,NULL,NULL,NULL,NULL),(868,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2787,2657,'internal',45,42,NULL,NULL,NULL,NULL,NULL),(869,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2844,2657,'internal',46,42,NULL,NULL,NULL,NULL,NULL),(870,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2854,2657,'internal',47,42,NULL,NULL,NULL,NULL,NULL),(871,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2858,2657,'internal',48,42,NULL,NULL,NULL,NULL,NULL),(872,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2862,2657,'internal',49,42,NULL,NULL,NULL,NULL,NULL),(873,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2868,2657,'internal',50,42,NULL,NULL,NULL,NULL,NULL),(875,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2881,2657,'internal',52,42,NULL,NULL,NULL,NULL,NULL),(876,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',1329,2668,'internal',7,43,NULL,NULL,NULL,NULL,NULL),(877,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',1482,2668,'internal',13,43,NULL,NULL,NULL,NULL,NULL),(878,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',1551,2668,'internal',30,43,NULL,NULL,NULL,NULL,NULL),(879,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',1666,2668,'internal',40,43,NULL,NULL,NULL,NULL,NULL),(881,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2743,2668,'internal',44,43,NULL,NULL,NULL,NULL,NULL),(882,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2787,2668,'internal',45,43,NULL,NULL,NULL,NULL,NULL),(883,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2844,2668,'internal',46,43,NULL,NULL,NULL,NULL,NULL),(884,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2854,2668,'internal',47,43,NULL,NULL,NULL,NULL,NULL),(885,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2858,2668,'internal',48,43,NULL,NULL,NULL,NULL,NULL),(886,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2862,2668,'internal',49,43,NULL,NULL,NULL,NULL,NULL),(887,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2868,2668,'internal',50,43,NULL,NULL,NULL,NULL,NULL),(889,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2881,2668,'internal',52,43,NULL,NULL,NULL,NULL,NULL),(890,'https://support.google.com/adspolicy/answer/6008942?hl=en&amp;visit_id=638456876419726489-885632823&amp;rd=1',2396,NULL,'external',41,NULL,NULL,NULL,NULL,NULL,NULL),(955,'https://atlantagynecomastia.com/contact/',1901,1484,'internal',35,14,NULL,NULL,NULL,NULL,NULL),(956,'https://atlantagynecomastia.com/contact/',1901,1484,'internal',35,14,NULL,NULL,NULL,NULL,NULL),(957,'https://atlantagynecomastia.com/contact/',2056,1484,'internal',39,14,NULL,NULL,NULL,NULL,NULL),(958,'https://atlantagynecomastia.com/contact/',2886,1484,'internal',53,14,NULL,NULL,NULL,NULL,NULL),(959,'https://atlantagynecomastia.com/contact/',2886,1484,'internal',53,14,NULL,NULL,NULL,NULL,NULL),(960,'https://atlantagynecomastia.com/contact/',1511,1484,'internal',28,14,NULL,NULL,NULL,NULL,NULL),(961,'https://atlantagynecomastia.com/contact/',1511,1484,'internal',28,14,NULL,NULL,NULL,NULL,NULL),(962,'https://atlantagynecomastia.com/contact/',1511,1484,'internal',28,14,NULL,NULL,NULL,NULL,NULL),(963,'https://atlantagynecomastia.com/contact/',1511,1484,'internal',28,14,NULL,NULL,NULL,NULL,NULL),(964,'https://atlantagynecomastia.com/contact/',1525,1484,'internal',29,14,NULL,NULL,NULL,NULL,NULL),(965,'https://atlantagynecomastia.com/contact/',1525,1484,'internal',29,14,NULL,NULL,NULL,NULL,NULL),(966,'https://atlantagynecomastia.com/contact/',1668,1484,'internal',34,14,NULL,NULL,NULL,NULL,NULL),(967,'https://atlantagynecomastia.com/contact/',1668,1484,'internal',34,14,NULL,NULL,NULL,NULL,NULL),(968,'https://atlantagynecomastia.com/contact/',1908,1484,'internal',37,14,NULL,NULL,NULL,NULL,NULL),(969,'https://atlantagynecomastia.com/contact/',1908,1484,'internal',37,14,NULL,NULL,NULL,NULL,NULL),(970,'https://atlantagynecomastia.com/contact/',1911,1484,'internal',38,14,NULL,NULL,NULL,NULL,NULL),(971,'https://atlantagynecomastia.com/contact/',1911,1484,'internal',38,14,NULL,NULL,NULL,NULL,NULL),(972,'https://atlantagynecomastia.com/contact/',2657,1484,'internal',42,14,NULL,NULL,NULL,NULL,NULL),(973,'https://atlantagynecomastia.com/contact/',2668,1484,'internal',43,14,NULL,NULL,NULL,NULL,NULL),(974,'https://atlantagynecomastia.com/contact/',1329,1484,'internal',7,14,NULL,NULL,NULL,NULL,NULL),(975,'https://atlantagynecomastia.com/contact/',1482,1484,'internal',13,14,NULL,NULL,NULL,NULL,NULL),(976,'https://atlantagynecomastia.com/contact/',1551,1484,'internal',30,14,NULL,NULL,NULL,NULL,NULL),(977,'https://atlantagynecomastia.com/contact/',1666,1484,'internal',40,14,NULL,NULL,NULL,NULL,NULL),(978,'https://atlantagynecomastia.com/contact/',1906,1484,'internal',36,14,NULL,NULL,NULL,NULL,NULL),(979,'https://atlantagynecomastia.com/contact/',1906,1484,'internal',36,14,NULL,NULL,NULL,NULL,NULL),(980,'https://atlantagynecomastia.com/contact/',2743,1484,'internal',44,14,NULL,NULL,NULL,NULL,NULL),(993,'https://atlantagynecomastia.com/what-is-gyno/',2743,1511,'internal',44,28,NULL,NULL,NULL,NULL,NULL),(1066,'https://atlantagynecomastia.com/contact/',3418,1484,'internal',54,14,NULL,NULL,NULL,NULL,NULL),(1067,'https://atlantagynecomastia.com/what-is-gyno/',3418,1511,'internal',54,28,NULL,NULL,NULL,NULL,NULL),(1068,'https://atlantagynecomastia.com/gynecomastia-types/',3418,1482,'internal',54,13,NULL,NULL,NULL,NULL,NULL),(1070,'https://atlantagynecomastia.com/causes-of-gynecomastia/',3418,1525,'internal',54,29,NULL,NULL,NULL,NULL,NULL),(1071,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',3418,1906,'internal',54,36,NULL,NULL,NULL,NULL,NULL),(1072,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',3418,1911,'internal',54,38,NULL,NULL,NULL,NULL,NULL),(1073,'https://atlantagynecomastia.com/contact/',3418,1484,'internal',54,14,NULL,NULL,NULL,NULL,NULL),(1074,'https://emedicine.medscape.com/article/1271543-overview',3418,NULL,'external',54,NULL,NULL,NULL,NULL,NULL,NULL),(1075,'https://atlantagynecomastia.com/gynecomastia-surgery/',3418,1666,'internal',54,40,NULL,NULL,NULL,NULL,NULL),(1077,'https://atlantagynecomastia.com/contact/',3418,1484,'internal',54,14,NULL,NULL,NULL,NULL,NULL),(1078,'https://atlantagynecomastia.com/',3418,NULL,'internal',54,2,NULL,NULL,NULL,NULL,NULL),(1090,'https://atlantagynecomastia.com/contact/',3473,1484,'internal',55,14,NULL,NULL,NULL,NULL,NULL),(1091,'https://atlantagynecomastia.com/causes-of-gynecomastia/',3473,1525,'internal',55,29,NULL,NULL,NULL,NULL,NULL),(1092,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',3473,1906,'internal',55,36,NULL,NULL,NULL,NULL,NULL),(1093,'https://atlantagynecomastia.com/what-is-gyno/',3473,1511,'internal',55,28,NULL,NULL,NULL,NULL,NULL),(1094,'https://atlantagynecomastia.com/gynecomastia-surgery/',3473,1666,'internal',55,40,NULL,NULL,NULL,NULL,NULL),(1095,'https://atlantagynecomastia.com/contact/',3473,1484,'internal',55,14,NULL,NULL,NULL,NULL,NULL),(1096,'https://atlantagynecomastia.com/gynecomastia-candidates/',3473,3418,'internal',55,54,NULL,NULL,NULL,NULL,NULL),(1097,'https://www.healthline.com/health/fitness-nutrition/healthy-lifestyle-benefits',3473,NULL,'external',55,NULL,NULL,NULL,NULL,NULL,NULL),(1099,'https://atlantagynecomastia.com/contact/',3473,1484,'internal',55,14,NULL,NULL,NULL,NULL,NULL),(1100,'https://atlantagynecomastia.com/',3473,NULL,'internal',55,2,NULL,NULL,NULL,NULL,NULL),(1112,'https://atlantagynecomastia.com/contact/',3481,1484,'internal',56,14,NULL,NULL,NULL,NULL,NULL),(1113,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',3481,2668,'internal',56,43,NULL,NULL,NULL,NULL,NULL),(1115,'https://atlantagynecomastia.com/causes-of-gynecomastia/',3481,1525,'internal',56,29,NULL,NULL,NULL,NULL,NULL),(1116,'https://atlantagynecomastia.com/gynecomastia-grades-stages/',3481,1551,'internal',56,30,NULL,NULL,NULL,NULL,NULL),(1117,'https://www.health.harvard.edu/diseases-and-conditions/why-wound-healing-gets-harder-as-we-age',3481,NULL,'external',56,NULL,NULL,NULL,NULL,NULL,NULL),(1118,'https://atlantagynecomastia.com/gynecomastia-surgery/',3481,1666,'internal',56,40,NULL,NULL,NULL,NULL,NULL),(1119,'https://atlantagynecomastia.com/gynecomastia-candidates/',3481,3418,'internal',56,54,NULL,NULL,NULL,NULL,NULL),(1120,'https://atlantagynecomastia.com/contact/',3481,1484,'internal',56,14,NULL,NULL,NULL,NULL,NULL),(1122,'https://atlantagynecomastia.com/',3481,NULL,'internal',56,2,NULL,NULL,NULL,NULL,NULL),(1123,'https://atlantagynecomastia.com/gynecomastia-candidates/',1329,3418,'internal',7,54,NULL,NULL,NULL,NULL,NULL),(1124,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',1329,3481,'internal',7,56,NULL,NULL,NULL,NULL,NULL),(1125,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',1329,3473,'internal',7,55,NULL,NULL,NULL,NULL,NULL),(1129,'https://atlantagynecomastia.com/gynecomastia-candidates/',2886,3418,'internal',53,54,NULL,NULL,NULL,NULL,NULL),(1130,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',1666,3481,'internal',40,56,NULL,NULL,NULL,NULL,NULL),(1131,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',1666,3473,'internal',40,55,NULL,NULL,NULL,NULL,NULL),(1133,'https://atlantagynecomastia.com/gynecomastia-candidates/',1563,3418,'internal',32,54,NULL,NULL,NULL,NULL,NULL),(1135,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',1482,3481,'internal',13,56,NULL,NULL,NULL,NULL,NULL),(1136,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',1482,3473,'internal',13,55,NULL,NULL,NULL,NULL,NULL),(1140,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',1511,3481,'internal',28,56,NULL,NULL,NULL,NULL,NULL),(1141,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',3418,3481,'internal',54,56,NULL,NULL,NULL,NULL,NULL),(1142,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',3418,3473,'internal',54,55,NULL,NULL,NULL,NULL,NULL),(1143,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',1525,3481,'internal',29,56,NULL,NULL,NULL,NULL,NULL),(1145,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',2858,3481,'internal',48,56,NULL,NULL,NULL,NULL,NULL),(1146,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',2858,3473,'internal',48,55,NULL,NULL,NULL,NULL,NULL),(1147,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',2854,3481,'internal',47,56,NULL,NULL,NULL,NULL,NULL),(1148,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',2854,3473,'internal',47,55,NULL,NULL,NULL,NULL,NULL),(1151,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',2881,3481,'internal',52,56,NULL,NULL,NULL,NULL,NULL),(1152,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',2881,3473,'internal',52,55,NULL,NULL,NULL,NULL,NULL),(1153,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',2844,3481,'internal',46,56,NULL,NULL,NULL,NULL,NULL),(1154,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',2844,3473,'internal',46,55,NULL,NULL,NULL,NULL,NULL),(1155,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',2862,3481,'internal',49,56,NULL,NULL,NULL,NULL,NULL),(1156,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',2862,3473,'internal',49,55,NULL,NULL,NULL,NULL,NULL),(1157,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',2787,3481,'internal',45,56,NULL,NULL,NULL,NULL,NULL),(1158,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',2787,3473,'internal',45,55,NULL,NULL,NULL,NULL,NULL),(1159,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',2868,3481,'internal',50,56,NULL,NULL,NULL,NULL,NULL),(1160,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',2868,3473,'internal',50,55,NULL,NULL,NULL,NULL,NULL),(1188,'https://atlantagynecomastia.com/contact/',3490,1484,'internal',57,14,NULL,NULL,NULL,NULL,NULL),(1190,'https://atlantagynecomastia.com/contact/',3490,1484,'internal',57,14,NULL,NULL,NULL,NULL,NULL),(1192,'https://atlantagynecomastia.com/gynecomastia-surgery/',3490,1666,'internal',57,40,NULL,NULL,NULL,NULL,NULL),(1204,'https://atlantagynecomastia.com/what-is-gyno/',3490,1511,'internal',57,28,NULL,NULL,NULL,NULL,NULL),(1205,'https://atlantagynecomastia.com/gynecomastia-types/',3490,1482,'internal',57,13,NULL,NULL,NULL,NULL,NULL),(1207,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',3490,1908,'internal',57,37,NULL,NULL,NULL,NULL,NULL),(1208,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',3490,1906,'internal',57,36,NULL,NULL,NULL,NULL,NULL),(1209,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',3490,1911,'internal',57,38,NULL,NULL,NULL,NULL,NULL),(1210,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',3490,1901,'internal',57,35,NULL,NULL,NULL,NULL,NULL),(1211,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',3490,2657,'internal',57,42,NULL,NULL,NULL,NULL,NULL),(1212,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',3490,2668,'internal',57,43,NULL,NULL,NULL,NULL,NULL),(1213,'https://atlantagynecomastia.com/gynecomastia-surgery/',3490,1666,'internal',57,40,NULL,NULL,NULL,NULL,NULL),(1214,'https://atlantagynecomastia.com/',3490,NULL,'internal',57,2,NULL,NULL,NULL,NULL,NULL),(1216,'https://atlantagynecomastia.com/gynecomastia-types/',1484,1482,'internal',14,13,NULL,NULL,NULL,NULL,NULL),(1217,'https://atlantagynecomastia.com/causes-of-gynecomastia/',1906,1525,'internal',36,29,NULL,NULL,NULL,NULL,NULL),(1218,'https://atlantagynecomastia.com/causes-of-gynecomastia/',1911,1525,'internal',38,29,NULL,NULL,NULL,NULL,NULL),(1219,'https://atlantagynecomastia.com/causes-of-gynecomastia/',2657,1525,'internal',42,29,NULL,NULL,NULL,NULL,NULL),(1220,'https://atlantagynecomastia.com/causes-of-gynecomastia/',2668,1525,'internal',43,29,NULL,NULL,NULL,NULL,NULL),(1223,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',3490,3481,'internal',57,56,NULL,NULL,NULL,NULL,NULL),(1224,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',3490,3473,'internal',57,55,NULL,NULL,NULL,NULL,NULL),(1225,'https://atlantagynecomastia.com/gynecomastia-candidates/',1906,3418,'internal',36,54,NULL,NULL,NULL,NULL,NULL),(1226,'https://atlantagynecomastia.com/gynecomastia-candidates/',1908,3418,'internal',37,54,NULL,NULL,NULL,NULL,NULL),(1227,'https://atlantagynecomastia.com/gynecomastia-candidates/',1911,3418,'internal',38,54,NULL,NULL,NULL,NULL,NULL),(1228,'https://atlantagynecomastia.com/gynecomastia-candidates/',1901,3418,'internal',35,54,NULL,NULL,NULL,NULL,NULL),(1229,'https://atlantagynecomastia.com/gynecomastia-candidates/',2668,3418,'internal',43,54,NULL,NULL,NULL,NULL,NULL),(1230,'https://atlantagynecomastia.com/gynecomastia-candidates/',2858,3418,'internal',48,54,NULL,NULL,NULL,NULL,NULL),(1246,'https://atlantagynecomastia.com/before-after-results/',1511,1563,'internal',28,32,NULL,NULL,NULL,NULL,NULL),(1247,'https://atlantagynecomastia.com/before-after-results/',3418,1563,'internal',54,32,NULL,NULL,NULL,NULL,NULL),(1248,'https://atlantagynecomastia.com/before-after-results/',1525,1563,'internal',29,32,NULL,NULL,NULL,NULL,NULL),(1249,'https://atlantagynecomastia.com/before-after-results/',2743,1563,'internal',44,32,NULL,NULL,NULL,NULL,NULL),(1250,'https://atlantagynecomastia.com/before-after-results/',1551,1563,'internal',30,32,NULL,NULL,NULL,NULL,NULL),(1251,'https://atlantagynecomastia.com/before-after-results/',1666,1563,'internal',40,32,NULL,NULL,NULL,NULL,NULL),(1252,'https://atlantagynecomastia.com/before-after-results/',1668,1563,'internal',34,32,NULL,NULL,NULL,NULL,NULL),(1253,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/',3418,1668,'internal',54,34,NULL,NULL,NULL,NULL,NULL),(1254,'https://atlantagynecomastia.com/gynecomastia-pricing-insurance/',1551,1668,'internal',30,34,NULL,NULL,NULL,NULL,NULL),(1255,'https://atlantagynecomastia.com/contact/out-of-town-patients/',1484,3490,'internal',14,57,NULL,NULL,NULL,NULL,NULL),(1256,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2858,3490,'internal',48,57,NULL,NULL,NULL,NULL,NULL),(1257,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2854,3490,'internal',47,57,NULL,NULL,NULL,NULL,NULL),(1259,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2881,3490,'internal',52,57,NULL,NULL,NULL,NULL,NULL),(1260,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2844,3490,'internal',46,57,NULL,NULL,NULL,NULL,NULL),(1261,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2862,3490,'internal',49,57,NULL,NULL,NULL,NULL,NULL),(1262,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2787,3490,'internal',45,57,NULL,NULL,NULL,NULL,NULL),(1263,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2868,3490,'internal',50,57,NULL,NULL,NULL,NULL,NULL),(1264,'https://atlantagynecomastia.com/contact/out-of-town-patients/',1329,3490,'internal',7,57,NULL,NULL,NULL,NULL,NULL),(1279,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2743,2657,'internal',44,42,NULL,NULL,NULL,NULL,NULL),(1280,'https://atlantagynecomastia.com/causes-of-gynecomastia/',2743,1525,'internal',44,29,NULL,NULL,NULL,NULL,NULL),(1281,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2743,1911,'internal',44,38,NULL,NULL,NULL,NULL,NULL),(1282,'https://pubmed.ncbi.nlm.nih.gov/2310274/',2743,NULL,'external',44,NULL,NULL,NULL,NULL,NULL,NULL),(1283,'https://atlantagynecomastia.com/gynecomastia-candidates/',2743,3418,'internal',44,54,NULL,NULL,NULL,NULL,NULL),(1284,'https://www.carecredit.com/',2743,NULL,'external',44,NULL,NULL,NULL,NULL,NULL,NULL),(1292,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2872,3490,'internal',51,57,NULL,NULL,NULL,NULL,NULL),(1293,'https://atlantagynecomastia.com/what-is-gyno/',2872,1511,'internal',51,28,NULL,NULL,NULL,NULL,NULL),(1294,'https://atlantagynecomastia.com/gynecomastia-types/',2872,1482,'internal',51,13,NULL,NULL,NULL,NULL,NULL),(1295,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',2872,1908,'internal',51,37,NULL,NULL,NULL,NULL,NULL),(1296,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',2872,1906,'internal',51,36,NULL,NULL,NULL,NULL,NULL),(1297,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',2872,1911,'internal',51,38,NULL,NULL,NULL,NULL,NULL),(1298,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',2872,1901,'internal',51,35,NULL,NULL,NULL,NULL,NULL),(1299,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',2872,2657,'internal',51,42,NULL,NULL,NULL,NULL,NULL),(1300,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',2872,2668,'internal',51,43,NULL,NULL,NULL,NULL,NULL),(1301,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',2872,3481,'internal',51,56,NULL,NULL,NULL,NULL,NULL),(1302,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',2872,3473,'internal',51,55,NULL,NULL,NULL,NULL,NULL),(1303,'https://atlantagynecomastia.com/gynecomastia-surgery/',2872,1666,'internal',51,40,NULL,NULL,NULL,NULL,NULL),(1352,'https://atlantagynecomastia.com/contact/out-of-town-patients/',1482,3490,'internal',13,57,NULL,NULL,NULL,NULL,NULL),(1358,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/',1906,2743,'internal',36,44,NULL,NULL,NULL,NULL,NULL),(1367,'https://atlantagynecomastia.com/contact/out-of-town-patients/',1906,3490,'internal',36,57,NULL,NULL,NULL,NULL,NULL),(1377,'https://atlantagynecomastia.com/contact/out-of-town-patients/',1908,3490,'internal',37,57,NULL,NULL,NULL,NULL,NULL),(1380,'https://www.dea.gov/factsheets/steroids',1911,NULL,'external',38,NULL,NULL,NULL,NULL,NULL,NULL),(1389,'https://atlantagynecomastia.com/contact/out-of-town-patients/',1911,3490,'internal',38,57,NULL,NULL,NULL,NULL,NULL),(1399,'https://atlantagynecomastia.com/contact/out-of-town-patients/',1901,3490,'internal',35,57,NULL,NULL,NULL,NULL,NULL),(1410,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2657,3490,'internal',42,57,NULL,NULL,NULL,NULL,NULL),(1484,'https://atlantagynecomastia.com/contact/out-of-town-patients/',2668,3490,'internal',43,57,NULL,NULL,NULL,NULL,NULL),(1486,'https://atlantagynecomastia.com/gynecomastia-types/',2668,1482,'internal',43,13,NULL,NULL,NULL,NULL,NULL),(1495,'https://atlantagynecomastia.com/contact/out-of-town-patients/',3473,3490,'internal',55,57,NULL,NULL,NULL,NULL,NULL),(1506,'https://atlantagynecomastia.com/gynecomastia-reviews/',1666,2886,'internal',40,53,NULL,NULL,NULL,NULL,NULL),(1507,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',1668,1275,'internal',34,3,NULL,NULL,NULL,NULL,NULL),(1508,'https://atlantagynecomastia.com/gynecomastia-reviews/',1668,2886,'internal',34,53,NULL,NULL,NULL,NULL,NULL),(1509,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/',1668,2743,'internal',34,44,NULL,NULL,NULL,NULL,NULL),(1510,'https://atlantagynecomastia.com/gynecomastia-reviews/',2844,2886,'internal',46,53,NULL,NULL,NULL,NULL,NULL),(1511,'https://atlantagynecomastia.com/gynecomastia-reviews/',2858,2886,'internal',48,53,NULL,NULL,NULL,NULL,NULL),(1512,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',1563,1275,'internal',32,3,NULL,NULL,NULL,NULL,NULL),(1513,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/',2886,2743,'internal',53,44,NULL,NULL,NULL,NULL,NULL),(1514,'https://atlantagynecomastia.com/gynecomastia-reviews/',1563,2886,'internal',32,53,NULL,NULL,NULL,NULL,NULL),(1515,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',3418,1275,'internal',54,3,NULL,NULL,NULL,NULL,NULL),(1516,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',2743,1275,'internal',44,3,NULL,NULL,NULL,NULL,NULL),(1517,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/',1901,2743,'internal',35,44,NULL,NULL,NULL,NULL,NULL),(1518,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/',1666,2743,'internal',40,44,NULL,NULL,NULL,NULL,NULL),(1519,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',1329,1275,'internal',7,3,NULL,NULL,NULL,NULL,NULL),(1520,'https://atlantagynecomastia.com/gynecomastia-reviews/',1329,2886,'internal',7,53,NULL,NULL,NULL,NULL,NULL),(1521,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/',1329,2743,'internal',7,44,NULL,NULL,NULL,NULL,NULL),(1522,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/',3473,2743,'internal',55,44,NULL,NULL,NULL,NULL,NULL),(1523,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',3481,1275,'internal',56,3,NULL,NULL,NULL,NULL,NULL),(1524,'https://atlantagynecomastia.com/gynecomastia-frequently-asked-questions/',3481,2743,'internal',56,44,NULL,NULL,NULL,NULL,NULL),(1525,'https://www.healthline.com/health/estrogen-in-men',2668,NULL,'external',43,NULL,NULL,NULL,NULL,NULL,NULL),(1528,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',2657,1275,'internal',42,3,NULL,NULL,NULL,NULL,NULL),(1529,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',2668,1275,'internal',43,3,NULL,NULL,NULL,NULL,NULL),(1538,'https://atlantagynecomastia.com/contact/out-of-town-patients/',3481,3490,'internal',56,57,NULL,NULL,NULL,NULL,NULL),(1539,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',1484,1275,'internal',14,3,NULL,NULL,NULL,NULL,NULL),(1540,'https://atlantagynecomastia.com/gynecomastia-reviews/',1484,2886,'internal',14,53,NULL,NULL,NULL,NULL,NULL),(1541,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',3490,1275,'internal',57,3,NULL,NULL,NULL,NULL,NULL),(1543,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',2872,1275,'internal',51,3,NULL,NULL,NULL,NULL,NULL),(1544,'https://atlantagynecomastia.com/gynecomastia-reviews/',2881,2886,'internal',52,53,NULL,NULL,NULL,NULL,NULL),(1545,'https://atlantagynecomastia.com/gynecomastia-reviews/',2862,2886,'internal',49,53,NULL,NULL,NULL,NULL,NULL),(1546,'https://atlantagynecomastia.com/gynecomastia-reviews/',2868,2886,'internal',50,53,NULL,NULL,NULL,NULL,NULL),(1547,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',2787,1275,'internal',45,3,NULL,NULL,NULL,NULL,NULL),(1548,'https://atlantagynecomastia.com/gynecomastia-reviews/',2787,2886,'internal',45,53,NULL,NULL,NULL,NULL,NULL),(1549,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',1666,1275,'internal',40,3,NULL,NULL,NULL,NULL,NULL),(1550,'https://atlantagynecomastia.com/gynecomastia-grades-stages/',1563,1551,'internal',32,30,NULL,NULL,NULL,NULL,NULL),(1551,'https://atlantagynecomastia.com/gynecomastia-reviews/',2854,2886,'internal',47,53,NULL,NULL,NULL,NULL,NULL),(1552,'https://atlantagynecomastia.com/gynecomastia-reviews/',2872,2886,'internal',51,53,NULL,NULL,NULL,NULL,NULL),(1561,'https://www.uga.edu/',1275,NULL,'external',3,NULL,NULL,NULL,NULL,NULL,NULL),(1562,'https://atlantagynecomastia.com/gynecomastia-surgery/',1908,1666,'internal',37,40,NULL,NULL,NULL,NULL,NULL),(1565,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2881,2872,'internal',52,51,NULL,NULL,NULL,NULL,NULL),(1568,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2862,2872,'internal',49,51,NULL,NULL,NULL,NULL,NULL),(1570,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2868,2872,'internal',50,51,NULL,NULL,NULL,NULL,NULL),(1572,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2787,2872,'internal',45,51,NULL,NULL,NULL,NULL,NULL),(1574,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2858,2872,'internal',48,51,NULL,NULL,NULL,NULL,NULL),(1575,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',1484,2872,'internal',14,51,NULL,NULL,NULL,NULL,NULL),(1576,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',3490,2872,'internal',57,51,NULL,NULL,NULL,NULL,NULL),(1577,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',3490,2868,'internal',57,50,NULL,NULL,NULL,NULL,NULL),(1578,'https://www.atl.com/',3490,NULL,'external',57,NULL,NULL,NULL,NULL,NULL,NULL),(1579,'https://www.marriott.com/en-us/hotels/atlms-atlanta-marriott-suites-midtown/overview/',3490,NULL,'external',57,NULL,NULL,NULL,NULL,NULL,NULL),(1580,'https://www.loewshotels.com/atlanta-hotel',3490,NULL,'external',57,NULL,NULL,NULL,NULL,NULL,NULL),(1581,'https://atlantagynecomastia.com/contact/decatur-georgia/',3481,2854,'internal',56,47,NULL,NULL,NULL,NULL,NULL),(1582,'https://atlantagynecomastia.com/contact/athens-georgia/',3481,2787,'internal',56,45,NULL,NULL,NULL,NULL,NULL),(1583,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',3481,2844,'internal',56,46,NULL,NULL,NULL,NULL,NULL),(1584,'https://atlantagynecomastia.com/contact/columbus-georgia/',3481,2858,'internal',56,48,NULL,NULL,NULL,NULL,NULL),(1585,'https://atlantagynecomastia.com/contact/roswell-georgia/',3481,2862,'internal',56,49,NULL,NULL,NULL,NULL,NULL),(1586,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',3481,2868,'internal',56,50,NULL,NULL,NULL,NULL,NULL),(1587,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',3481,2872,'internal',56,51,NULL,NULL,NULL,NULL,NULL),(1588,'https://atlantagynecomastia.com/contact/marietta-georgia/',3481,2881,'internal',56,52,NULL,NULL,NULL,NULL,NULL),(1589,'https://atlantagynecomastia.com/contact/decatur-georgia/',1484,2854,'internal',14,47,NULL,NULL,NULL,NULL,NULL),(1590,'https://atlantagynecomastia.com/contact/athens-georgia/',1484,2787,'internal',14,45,NULL,NULL,NULL,NULL,NULL),(1591,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',1484,2844,'internal',14,46,NULL,NULL,NULL,NULL,NULL),(1592,'https://atlantagynecomastia.com/contact/columbus-georgia/',1484,2858,'internal',14,48,NULL,NULL,NULL,NULL,NULL),(1593,'https://atlantagynecomastia.com/contact/roswell-georgia/',1484,2862,'internal',14,49,NULL,NULL,NULL,NULL,NULL),(1594,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',1484,2868,'internal',14,50,NULL,NULL,NULL,NULL,NULL),(1595,'https://atlantagynecomastia.com/contact/marietta-georgia/',1484,2881,'internal',14,52,NULL,NULL,NULL,NULL,NULL),(1596,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',1329,2872,'internal',7,51,NULL,NULL,NULL,NULL,NULL),(1597,'https://atlantagynecomastia.com/contact/marietta-georgia/',1329,2881,'internal',7,52,NULL,NULL,NULL,NULL,NULL),(1598,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta-1024x586.png',1511,4305,'image-in',28,NULL,700,1223,398625,NULL,NULL),(1599,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta-1024x586.png',1511,4304,'image-in',28,NULL,700,1223,411893,NULL,NULL),(1600,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png',1511,4303,'image-in',28,NULL,700,1223,779942,NULL,NULL),(1601,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Stages-and-Grades-of-Gynecomastia-Atlanta.png',1551,4304,'image-in',30,NULL,700,1223,95329,NULL,NULL),(1602,'https://atlantagynecomastia.com/contact/decatur-georgia/',2657,2854,'internal',42,47,NULL,NULL,NULL,NULL,NULL),(1603,'https://atlantagynecomastia.com/contact/athens-georgia/',2657,2787,'internal',42,45,NULL,NULL,NULL,NULL,NULL),(1604,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2657,2844,'internal',42,46,NULL,NULL,NULL,NULL,NULL),(1605,'https://atlantagynecomastia.com/contact/columbus-georgia/',2657,2858,'internal',42,48,NULL,NULL,NULL,NULL,NULL),(1606,'https://atlantagynecomastia.com/contact/roswell-georgia/',2657,2862,'internal',42,49,NULL,NULL,NULL,NULL,NULL),(1607,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2657,2868,'internal',42,50,NULL,NULL,NULL,NULL,NULL),(1608,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2657,2872,'internal',42,51,NULL,NULL,NULL,NULL,NULL),(1609,'https://atlantagynecomastia.com/contact/marietta-georgia/',2657,2881,'internal',42,52,NULL,NULL,NULL,NULL,NULL),(1610,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png',2657,4303,'image-in',42,NULL,700,1223,168569,NULL,NULL),(1611,'https://atlantagynecomastia.com/contact/decatur-georgia/',1908,2854,'internal',37,47,NULL,NULL,NULL,NULL,NULL),(1612,'https://atlantagynecomastia.com/contact/athens-georgia/',1908,2787,'internal',37,45,NULL,NULL,NULL,NULL,NULL),(1613,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',1908,2844,'internal',37,46,NULL,NULL,NULL,NULL,NULL),(1614,'https://atlantagynecomastia.com/contact/columbus-georgia/',1908,2858,'internal',37,48,NULL,NULL,NULL,NULL,NULL),(1615,'https://atlantagynecomastia.com/contact/roswell-georgia/',1908,2862,'internal',37,49,NULL,NULL,NULL,NULL,NULL),(1616,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',1908,2868,'internal',37,50,NULL,NULL,NULL,NULL,NULL),(1617,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',1908,2872,'internal',37,51,NULL,NULL,NULL,NULL,NULL),(1618,'https://atlantagynecomastia.com/contact/marietta-georgia/',1908,2881,'internal',37,52,NULL,NULL,NULL,NULL,NULL),(1619,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Gynecomastia-Atlanta-1024x586.png',1908,4305,'image-in',37,NULL,700,1223,93676,NULL,NULL),(1620,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-vs.-Pseudogynecomastia-Atlanta-1024x586.png',1908,4303,'image-in',37,NULL,700,1223,168569,NULL,NULL),(1621,'https://atlantagynecomastia.com/contact/decatur-georgia/',2844,2854,'internal',46,47,NULL,NULL,NULL,NULL,NULL),(1622,'https://atlantagynecomastia.com/contact/athens-georgia/',2844,2787,'internal',46,45,NULL,NULL,NULL,NULL,NULL),(1623,'https://atlantagynecomastia.com/contact/columbus-georgia/',2844,2858,'internal',46,48,NULL,NULL,NULL,NULL,NULL),(1624,'https://atlantagynecomastia.com/contact/roswell-georgia/',2844,2862,'internal',46,49,NULL,NULL,NULL,NULL,NULL),(1625,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2844,2868,'internal',46,50,NULL,NULL,NULL,NULL,NULL),(1626,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2844,2872,'internal',46,51,NULL,NULL,NULL,NULL,NULL),(1627,'https://atlantagynecomastia.com/contact/marietta-georgia/',2844,2881,'internal',46,52,NULL,NULL,NULL,NULL,NULL),(1628,'https://atlantagynecomastia.com/contact/decatur-georgia/',3490,2854,'internal',57,47,NULL,NULL,NULL,NULL,NULL),(1629,'https://atlantagynecomastia.com/contact/athens-georgia/',3490,2787,'internal',57,45,NULL,NULL,NULL,NULL,NULL),(1630,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',3490,2844,'internal',57,46,NULL,NULL,NULL,NULL,NULL),(1631,'https://atlantagynecomastia.com/contact/columbus-georgia/',3490,2858,'internal',57,48,NULL,NULL,NULL,NULL,NULL),(1632,'https://atlantagynecomastia.com/contact/roswell-georgia/',3490,2862,'internal',57,49,NULL,NULL,NULL,NULL,NULL),(1633,'https://atlantagynecomastia.com/contact/marietta-georgia/',3490,2881,'internal',57,52,NULL,NULL,NULL,NULL,NULL),(1634,'https://atlantagynecomastia.com/contact/decatur-georgia/',2787,2854,'internal',45,47,NULL,NULL,NULL,NULL,NULL),(1635,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2787,2844,'internal',45,46,NULL,NULL,NULL,NULL,NULL),(1636,'https://atlantagynecomastia.com/contact/columbus-georgia/',2787,2858,'internal',45,48,NULL,NULL,NULL,NULL,NULL),(1637,'https://atlantagynecomastia.com/contact/roswell-georgia/',2787,2862,'internal',45,49,NULL,NULL,NULL,NULL,NULL),(1638,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2787,2868,'internal',45,50,NULL,NULL,NULL,NULL,NULL),(1639,'https://atlantagynecomastia.com/contact/marietta-georgia/',2787,2881,'internal',45,52,NULL,NULL,NULL,NULL,NULL),(1640,'https://atlantagynecomastia.com/contact/decatur-georgia/',2858,2854,'internal',48,47,NULL,NULL,NULL,NULL,NULL),(1641,'https://atlantagynecomastia.com/contact/athens-georgia/',2858,2787,'internal',48,45,NULL,NULL,NULL,NULL,NULL),(1642,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2858,2844,'internal',48,46,NULL,NULL,NULL,NULL,NULL),(1643,'https://atlantagynecomastia.com/contact/roswell-georgia/',2858,2862,'internal',48,49,NULL,NULL,NULL,NULL,NULL),(1644,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2858,2868,'internal',48,50,NULL,NULL,NULL,NULL,NULL),(1645,'https://atlantagynecomastia.com/contact/marietta-georgia/',2858,2881,'internal',48,52,NULL,NULL,NULL,NULL,NULL),(1646,'https://atlantagynecomastia.com/contact/athens-georgia/',2854,2787,'internal',47,45,NULL,NULL,NULL,NULL,NULL),(1647,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2854,2844,'internal',47,46,NULL,NULL,NULL,NULL,NULL),(1648,'https://atlantagynecomastia.com/contact/columbus-georgia/',2854,2858,'internal',47,48,NULL,NULL,NULL,NULL,NULL),(1649,'https://atlantagynecomastia.com/contact/roswell-georgia/',2854,2862,'internal',47,49,NULL,NULL,NULL,NULL,NULL),(1650,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2854,2868,'internal',47,50,NULL,NULL,NULL,NULL,NULL),(1651,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2854,2872,'internal',47,51,NULL,NULL,NULL,NULL,NULL),(1652,'https://atlantagynecomastia.com/contact/marietta-georgia/',2854,2881,'internal',47,52,NULL,NULL,NULL,NULL,NULL),(1653,'https://atlantagynecomastia.com/contact/decatur-georgia/',2868,2854,'internal',50,47,NULL,NULL,NULL,NULL,NULL),(1654,'https://atlantagynecomastia.com/contact/athens-georgia/',2868,2787,'internal',50,45,NULL,NULL,NULL,NULL,NULL),(1655,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2868,2844,'internal',50,46,NULL,NULL,NULL,NULL,NULL),(1656,'https://atlantagynecomastia.com/contact/columbus-georgia/',2868,2858,'internal',50,48,NULL,NULL,NULL,NULL,NULL),(1657,'https://atlantagynecomastia.com/contact/roswell-georgia/',2868,2862,'internal',50,49,NULL,NULL,NULL,NULL,NULL),(1658,'https://atlantagynecomastia.com/contact/marietta-georgia/',2868,2881,'internal',50,52,NULL,NULL,NULL,NULL,NULL),(1659,'https://atlantagynecomastia.com/contact/decatur-georgia/',2881,2854,'internal',52,47,NULL,NULL,NULL,NULL,NULL),(1660,'https://atlantagynecomastia.com/contact/athens-georgia/',2881,2787,'internal',52,45,NULL,NULL,NULL,NULL,NULL),(1661,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2881,2844,'internal',52,46,NULL,NULL,NULL,NULL,NULL),(1662,'https://atlantagynecomastia.com/contact/columbus-georgia/',2881,2858,'internal',52,48,NULL,NULL,NULL,NULL,NULL),(1663,'https://atlantagynecomastia.com/contact/roswell-georgia/',2881,2862,'internal',52,49,NULL,NULL,NULL,NULL,NULL),(1664,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2881,2868,'internal',52,50,NULL,NULL,NULL,NULL,NULL),(1665,'https://atlantagynecomastia.com/contact/decatur-georgia/',2862,2854,'internal',49,47,NULL,NULL,NULL,NULL,NULL),(1666,'https://atlantagynecomastia.com/contact/athens-georgia/',2862,2787,'internal',49,45,NULL,NULL,NULL,NULL,NULL),(1667,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2862,2844,'internal',49,46,NULL,NULL,NULL,NULL,NULL),(1668,'https://atlantagynecomastia.com/contact/columbus-georgia/',2862,2858,'internal',49,48,NULL,NULL,NULL,NULL,NULL),(1669,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2862,2868,'internal',49,50,NULL,NULL,NULL,NULL,NULL),(1670,'https://atlantagynecomastia.com/contact/marietta-georgia/',2862,2881,'internal',49,52,NULL,NULL,NULL,NULL,NULL),(1671,'https://atlantagynecomastia.com/contact/decatur-georgia/',2872,2854,'internal',51,47,NULL,NULL,NULL,NULL,NULL),(1672,'https://atlantagynecomastia.com/contact/athens-georgia/',2872,2787,'internal',51,45,NULL,NULL,NULL,NULL,NULL),(1673,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2872,2844,'internal',51,46,NULL,NULL,NULL,NULL,NULL),(1674,'https://atlantagynecomastia.com/contact/columbus-georgia/',2872,2858,'internal',51,48,NULL,NULL,NULL,NULL,NULL),(1675,'https://atlantagynecomastia.com/contact/roswell-georgia/',2872,2862,'internal',51,49,NULL,NULL,NULL,NULL,NULL),(1676,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2872,2868,'internal',51,50,NULL,NULL,NULL,NULL,NULL),(1677,'https://atlantagynecomastia.com/contact/marietta-georgia/',2872,2881,'internal',51,52,NULL,NULL,NULL,NULL,NULL),(1678,'https://atlantagynecomastia.com/contact/decatur-georgia/',1482,2854,'internal',13,47,NULL,NULL,NULL,NULL,NULL),(1679,'https://atlantagynecomastia.com/contact/athens-georgia/',1482,2787,'internal',13,45,NULL,NULL,NULL,NULL,NULL),(1680,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',1482,2844,'internal',13,46,NULL,NULL,NULL,NULL,NULL),(1681,'https://atlantagynecomastia.com/contact/columbus-georgia/',1482,2858,'internal',13,48,NULL,NULL,NULL,NULL,NULL),(1682,'https://atlantagynecomastia.com/contact/roswell-georgia/',1482,2862,'internal',13,49,NULL,NULL,NULL,NULL,NULL),(1683,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',1482,2868,'internal',13,50,NULL,NULL,NULL,NULL,NULL),(1684,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',1482,2872,'internal',13,51,NULL,NULL,NULL,NULL,NULL),(1685,'https://atlantagynecomastia.com/contact/marietta-georgia/',1482,2881,'internal',13,52,NULL,NULL,NULL,NULL,NULL),(1686,'https://atlantagynecomastia.com/contact/decatur-georgia/',1906,2854,'internal',36,47,NULL,NULL,NULL,NULL,NULL),(1687,'https://atlantagynecomastia.com/contact/athens-georgia/',1906,2787,'internal',36,45,NULL,NULL,NULL,NULL,NULL),(1688,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',1906,2844,'internal',36,46,NULL,NULL,NULL,NULL,NULL),(1689,'https://atlantagynecomastia.com/contact/columbus-georgia/',1906,2858,'internal',36,48,NULL,NULL,NULL,NULL,NULL),(1690,'https://atlantagynecomastia.com/contact/roswell-georgia/',1906,2862,'internal',36,49,NULL,NULL,NULL,NULL,NULL),(1691,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',1906,2868,'internal',36,50,NULL,NULL,NULL,NULL,NULL),(1692,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',1906,2872,'internal',36,51,NULL,NULL,NULL,NULL,NULL),(1693,'https://atlantagynecomastia.com/contact/marietta-georgia/',1906,2881,'internal',36,52,NULL,NULL,NULL,NULL,NULL),(1694,'https://atlantagynecomastia.com/contact/decatur-georgia/',1911,2854,'internal',38,47,NULL,NULL,NULL,NULL,NULL),(1695,'https://atlantagynecomastia.com/contact/athens-georgia/',1911,2787,'internal',38,45,NULL,NULL,NULL,NULL,NULL),(1696,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',1911,2844,'internal',38,46,NULL,NULL,NULL,NULL,NULL),(1697,'https://atlantagynecomastia.com/contact/columbus-georgia/',1911,2858,'internal',38,48,NULL,NULL,NULL,NULL,NULL),(1698,'https://atlantagynecomastia.com/contact/roswell-georgia/',1911,2862,'internal',38,49,NULL,NULL,NULL,NULL,NULL),(1699,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',1911,2868,'internal',38,50,NULL,NULL,NULL,NULL,NULL),(1700,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',1911,2872,'internal',38,51,NULL,NULL,NULL,NULL,NULL),(1701,'https://atlantagynecomastia.com/contact/marietta-georgia/',1911,2881,'internal',38,52,NULL,NULL,NULL,NULL,NULL),(1702,'https://atlantagynecomastia.com/contact/decatur-georgia/',1901,2854,'internal',35,47,NULL,NULL,NULL,NULL,NULL),(1703,'https://atlantagynecomastia.com/contact/athens-georgia/',1901,2787,'internal',35,45,NULL,NULL,NULL,NULL,NULL),(1704,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',1901,2844,'internal',35,46,NULL,NULL,NULL,NULL,NULL),(1705,'https://atlantagynecomastia.com/contact/columbus-georgia/',1901,2858,'internal',35,48,NULL,NULL,NULL,NULL,NULL),(1706,'https://atlantagynecomastia.com/contact/roswell-georgia/',1901,2862,'internal',35,49,NULL,NULL,NULL,NULL,NULL),(1707,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',1901,2868,'internal',35,50,NULL,NULL,NULL,NULL,NULL),(1708,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',1901,2872,'internal',35,51,NULL,NULL,NULL,NULL,NULL),(1709,'https://atlantagynecomastia.com/contact/marietta-georgia/',1901,2881,'internal',35,52,NULL,NULL,NULL,NULL,NULL),(1710,'https://atlantagynecomastia.com/contact/decatur-georgia/',3473,2854,'internal',55,47,NULL,NULL,NULL,NULL,NULL),(1711,'https://atlantagynecomastia.com/contact/athens-georgia/',3473,2787,'internal',55,45,NULL,NULL,NULL,NULL,NULL),(1712,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',3473,2844,'internal',55,46,NULL,NULL,NULL,NULL,NULL),(1713,'https://atlantagynecomastia.com/contact/columbus-georgia/',3473,2858,'internal',55,48,NULL,NULL,NULL,NULL,NULL),(1714,'https://atlantagynecomastia.com/contact/roswell-georgia/',3473,2862,'internal',55,49,NULL,NULL,NULL,NULL,NULL),(1715,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',3473,2868,'internal',55,50,NULL,NULL,NULL,NULL,NULL),(1716,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',3473,2872,'internal',55,51,NULL,NULL,NULL,NULL,NULL),(1717,'https://atlantagynecomastia.com/contact/marietta-georgia/',3473,2881,'internal',55,52,NULL,NULL,NULL,NULL,NULL),(1718,'https://atlantagynecomastia.com/contact/decatur-georgia/',2668,2854,'internal',43,47,NULL,NULL,NULL,NULL,NULL),(1719,'https://atlantagynecomastia.com/contact/athens-georgia/',2668,2787,'internal',43,45,NULL,NULL,NULL,NULL,NULL),(1720,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',2668,2844,'internal',43,46,NULL,NULL,NULL,NULL,NULL),(1721,'https://atlantagynecomastia.com/contact/columbus-georgia/',2668,2858,'internal',43,48,NULL,NULL,NULL,NULL,NULL),(1722,'https://atlantagynecomastia.com/contact/roswell-georgia/',2668,2862,'internal',43,49,NULL,NULL,NULL,NULL,NULL),(1723,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',2668,2868,'internal',43,50,NULL,NULL,NULL,NULL,NULL),(1724,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',2668,2872,'internal',43,51,NULL,NULL,NULL,NULL,NULL),(1725,'https://atlantagynecomastia.com/contact/marietta-georgia/',2668,2881,'internal',43,52,NULL,NULL,NULL,NULL,NULL),(1726,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adult-Gynecomastia-Atlanta.jpg',1329,4334,'image-in',7,NULL,854,1280,30789,NULL,NULL),(1727,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Adolescent-Gynecomastia-Atlanta.jpg',1329,4335,'image-in',7,NULL,853,1280,64542,NULL,NULL),(1728,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Bodybuilder-Gynecomastia-Atlanta.jpg',1329,4331,'image-in',7,NULL,852,1280,21217,NULL,NULL),(1729,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Gynecomastia-Revision-Surgery.jpg',1329,4325,'image-in',7,NULL,853,1280,56374,NULL,NULL),(1730,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/What-is-Pseudogynecomastia.jpg',1329,4339,'image-in',7,NULL,853,1280,56415,NULL,NULL),(1731,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Puffy-Nipple-Treatment.jpg',1329,4320,'image-in',7,NULL,854,1280,43417,NULL,NULL),(1732,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Senior-Gynecomastia-Surgery-Atlanta.jpg',1329,4319,'image-in',7,NULL,853,1280,39408,NULL,NULL),(1733,'https://atlantagynecomastia.com/wp-content/uploads/2024/03/Post-Weight-Loss-Gynecomastia.jpg',1329,4321,'image-in',7,NULL,854,1280,74015,NULL,NULL),(1757,'https://atlantagynecomastia.com/',4381,NULL,'internal',58,2,NULL,NULL,NULL,NULL,NULL),(1758,'https://atlantagynecomastia.com/gynecomastia-surgery-doctors/',4381,1275,'internal',58,3,NULL,NULL,NULL,NULL,NULL),(1759,'https://atlantagynecomastia.com/gynecomastia-reviews/',4381,2886,'internal',58,53,NULL,NULL,NULL,NULL,NULL),(1760,'https://atlantagynecomastia.com/contact/decatur-georgia/',4381,2854,'internal',58,47,NULL,NULL,NULL,NULL,NULL),(1761,'https://atlantagynecomastia.com/contact/athens-georgia/',4381,2787,'internal',58,45,NULL,NULL,NULL,NULL,NULL),(1762,'https://atlantagynecomastia.com/contact/alpharetta-georgia/',4381,2844,'internal',58,46,NULL,NULL,NULL,NULL,NULL),(1763,'https://atlantagynecomastia.com/contact/columbus-georgia/',4381,2858,'internal',58,48,NULL,NULL,NULL,NULL,NULL),(1764,'https://atlantagynecomastia.com/contact/roswell-georgia/',4381,2862,'internal',58,49,NULL,NULL,NULL,NULL,NULL),(1765,'https://atlantagynecomastia.com/contact/fulton-county-georgia/',4381,2868,'internal',58,50,NULL,NULL,NULL,NULL,NULL),(1766,'https://atlantagynecomastia.com/contact/sandy-springs-georgia/',4381,2872,'internal',58,51,NULL,NULL,NULL,NULL,NULL),(1767,'https://atlantagynecomastia.com/contact/marietta-georgia/',4381,2881,'internal',58,52,NULL,NULL,NULL,NULL,NULL),(1768,'https://atlantagynecomastia.com/contact/out-of-town-patients/',4381,3490,'internal',58,57,NULL,NULL,NULL,NULL,NULL),(1769,'https://atlantagynecomastia.com/what-is-gyno/',4381,1511,'internal',58,28,NULL,NULL,NULL,NULL,NULL),(1770,'https://atlantagynecomastia.com/gynecomastia-types/',4381,1482,'internal',58,13,NULL,NULL,NULL,NULL,NULL),(1771,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',4381,1908,'internal',58,37,NULL,NULL,NULL,NULL,NULL),(1772,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',4381,1906,'internal',58,36,NULL,NULL,NULL,NULL,NULL),(1773,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',4381,1911,'internal',58,38,NULL,NULL,NULL,NULL,NULL),(1774,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',4381,1901,'internal',58,35,NULL,NULL,NULL,NULL,NULL),(1775,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',4381,2657,'internal',58,42,NULL,NULL,NULL,NULL,NULL),(1776,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',4381,2668,'internal',58,43,NULL,NULL,NULL,NULL,NULL),(1777,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',4381,3481,'internal',58,56,NULL,NULL,NULL,NULL,NULL),(1778,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',4381,3473,'internal',58,55,NULL,NULL,NULL,NULL,NULL),(1779,'https://atlantagynecomastia.com/gynecomastia-surgery/',4381,1666,'internal',58,40,NULL,NULL,NULL,NULL,NULL),(1781,'https://atlantagynecomastia.com/contact/buckhead-georgia/',1484,4381,'internal',14,58,NULL,NULL,NULL,NULL,NULL),(1782,'https://atlantagynecomastia.com/contact/buckhead-georgia/',1329,4381,'internal',7,58,NULL,NULL,NULL,NULL,NULL),(1783,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2858,4381,'internal',48,58,NULL,NULL,NULL,NULL,NULL),(1784,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2872,4381,'internal',51,58,NULL,NULL,NULL,NULL,NULL),(1785,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2862,4381,'internal',49,58,NULL,NULL,NULL,NULL,NULL),(1786,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2854,4381,'internal',47,58,NULL,NULL,NULL,NULL,NULL),(1787,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2844,4381,'internal',46,58,NULL,NULL,NULL,NULL,NULL),(1788,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2868,4381,'internal',50,58,NULL,NULL,NULL,NULL,NULL),(1789,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2881,4381,'internal',52,58,NULL,NULL,NULL,NULL,NULL),(1790,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2787,4381,'internal',45,58,NULL,NULL,NULL,NULL,NULL),(1792,'https://atlantagynecomastia.com/gynecomastia-types/adult-gynecomastia/',1484,1908,'internal',14,37,NULL,NULL,NULL,NULL,NULL),(1793,'https://atlantagynecomastia.com/gynecomastia-types/adolescent-gynecomastia/',1484,1906,'internal',14,36,NULL,NULL,NULL,NULL,NULL),(1794,'https://atlantagynecomastia.com/gynecomastia-types/bodybuilder-gynecomastia/',1484,1911,'internal',14,38,NULL,NULL,NULL,NULL,NULL),(1795,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-revision/',1484,1901,'internal',14,35,NULL,NULL,NULL,NULL,NULL),(1796,'https://atlantagynecomastia.com/gynecomastia-types/pseudogynecomastia/',1484,2657,'internal',14,42,NULL,NULL,NULL,NULL,NULL),(1797,'https://atlantagynecomastia.com/gynecomastia-types/puffy-nipples-gynecomastia/',1484,2668,'internal',14,43,NULL,NULL,NULL,NULL,NULL),(1798,'https://atlantagynecomastia.com/gynecomastia-types/senior-gynecomastia/',1484,3481,'internal',14,56,NULL,NULL,NULL,NULL,NULL),(1799,'https://atlantagynecomastia.com/gynecomastia-types/gynecomastia-after-weight-loss/',1484,3473,'internal',14,55,NULL,NULL,NULL,NULL,NULL),(1801,'https://atlantagynecomastia.com/',1484,NULL,'internal',14,2,NULL,NULL,NULL,NULL,NULL),(1802,'https://atlantagynecomastia.com/before-after-results/',1484,1563,'internal',14,32,NULL,NULL,NULL,NULL,NULL),(1803,'https://atlantagynecomastia.com/',2886,NULL,'internal',53,2,NULL,NULL,NULL,NULL,NULL),(1804,'https://atlantagynecomastia.com/',1525,NULL,'internal',29,2,NULL,NULL,NULL,NULL,NULL),(1805,'https://atlantagynecomastia.com/contact/buckhead-georgia/',1482,4381,'internal',13,58,NULL,NULL,NULL,NULL,NULL),(1806,'https://atlantagynecomastia.com/contact/buckhead-georgia/',1906,4381,'internal',36,58,NULL,NULL,NULL,NULL,NULL),(1807,'https://atlantagynecomastia.com/contact/buckhead-georgia/',1908,4381,'internal',37,58,NULL,NULL,NULL,NULL,NULL),(1808,'https://atlantagynecomastia.com/contact/buckhead-georgia/',1911,4381,'internal',38,58,NULL,NULL,NULL,NULL,NULL),(1809,'https://atlantagynecomastia.com/contact/buckhead-georgia/',1901,4381,'internal',35,58,NULL,NULL,NULL,NULL,NULL),(1810,'https://atlantagynecomastia.com/',1901,NULL,'internal',35,2,NULL,NULL,NULL,NULL,NULL),(1811,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2657,4381,'internal',42,58,NULL,NULL,NULL,NULL,NULL),(1812,'https://atlantagynecomastia.com/',2657,NULL,'internal',42,2,NULL,NULL,NULL,NULL,NULL),(1813,'https://atlantagynecomastia.com/contact/buckhead-georgia/',3473,4381,'internal',55,58,NULL,NULL,NULL,NULL,NULL),(1814,'https://atlantagynecomastia.com/contact/buckhead-georgia/',2668,4381,'internal',43,58,NULL,NULL,NULL,NULL,NULL),(1815,'https://atlantagynecomastia.com/contact/buckhead-georgia/',3481,4381,'internal',56,58,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `hyu_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 2024-10-11  7:17:46
